CAPTCHA control working in Azure - asp.net

Can you please point me to an implementation of asp.net CAPTCHA control which work on AZURE?
(It should not employ sessions)
Thanks.

I have successfully deployed the Google Recaptcha on Azure.
I used the NuGet recaptchaNet package, running under MVC 5.
My site is SSL, and there is bug in the NuGet package if you use SSL. Two occurrences of this:
https://api-verify.recaptcha.net/verify
need to be changed to this:
https://www.google.com/recaptcha/api/verify
or the verification of the Captcha fails on SSL Certificate error.

If you don't want to use Session data, then there are solutions out there, e.g. http://www.eggheadcafe.com/articles/20040331.asp - or you could use a human-test instead of a captcha - e.g. asking what 6 times 9 is
However, it's probably best to instead use a third party solution such as http://code.google.com/apis/recaptcha/docs/aspnet.html

Related

Asp.net Core SSRS Viewer

Does anybody know of a way to view SSRS server reports in an asp.net core application (3.0) without purchasing 3rd party solutions? I have found some old solutions/nuget packages but they are outdated, hacky and don't really work well anymore.
Thanks
Unfortunately, the best I've found so far is ngx-ssrs-reportviewer, which you can get from GitHub. I've implemented it in Angular using an IFrame, but it has the downside of requiring the authenticated user have a server account or a second login challenge will happen. For an internal corporate applications this is fine (which I understand to be the use case for SSRS), but for an internet application this is a big problem. A potential solution to this was posted by iceman here:
Angular ngx-ssrs-reportviewer Credential Problems

Qt QWebView/QWebPage Windows Authentication

I'm using a product that utilizes the Qt QWebPage class. I'm surprised I haven't seen posts, but I'm having trouble getting this to load a website that utilizes Windows Authentication. Does anyone know of any support to pass along credentials or load a page as the default user who is executing QT?
The question feels beyond Qt. To deal with Windows Authentication we can probably use QAuthenticator class but the applicability of it remains a question. You want to deal with web interface and use authentication? Then many more details needed and depending on those some specific programmatic solution can be applied. I assume you need to deal with HTTP/Form authentication as well and that needs to drive post/get requests. Somewhat similar answer. My current project involves many types of authentications and we have a specialist on the team just for that. It is all about network/application security logic.
Are you handling proxy inside your code. Also you must use Qt version 5.3 or greater to support NTLM authentication.

How to use Windows Authentication for intranet website?

I'm developing Asp .Net(MVC3) web application for my company.Some users use this site in internal network and some will use internet site.I've to Authenticate Users using the website.How can i do it?
Whether it is possible to check the Authentication code only after deploying the Solution? How can i check it in my local solution?Can Anyone Explain Step by step Process involved in this?
Its hard to give you a step by step procedure given that I don't know much about your infrastructure, or your dev environment.
With that said, it sounds like you want forms authentication for your external site, and integrated authentication for your internal. In both cases, the back end authentication would be done by Active Directory. A VERY common scenario.
All you need to know is the right terms to use, and you'll quickly find examples online. Google up something like "mix form and windows authentication mvc". But again, given all the different versions of IIS and MVC, there are quite a few scenarios so you may not find a definitive guide and instead you'll have to wind up evaluating each and mashing up a solution for your environment.

Salesforce integration(Enterprise API) in windows phone 8

I have done Salesforce integration in .Net but unable to do in windows phone 8. Actually, in .Net we download enterprise API and add it using Add Web Service reference and we get intellisence. Here I there is no option for this. I tried Add Service reference but it did not work. I also tried PCL but still stuck. Please help.
I was also stuck in this problem but I done this through web2Lead. I mean you can integarte this through post data. This is the easy way to do your task done.

What is Open ID ? How to implement on my own blog post?

I have a website and I wanted to become an open ID publisher. How to do that?
Depending on your exact requirements, you might want to try OpenID delegation instead. You can then use your website as a layer of abstraction over a third party provider.
As you're building for asp.net - take a look at DotNetOpenAuth. It's a free, open-source library that can make your asp.net webrite an OpenID provider (your website can be used to identify you) or a relying party (users can log in on your website using OpenID).
In fact, StackOverflow uses it as well, and so do I. It has a number of examples, and it's pretty reliable and secure.. Definitely recommended! :)
If you just want to run your own identity server, then a good place to start looking is here. I run phpMyID on my site that acts as an openID server for me, it was easy to set up, seems to work, and no-one has stolen my identity ..yet.

Resources