I have taken over a project and I ran into a road block yesterday. The current website cleady has a HttpHandler for image retrieval from database and works fine. We are runnning into a situation now to export our data into KML/KMZ files and I am trying to
add the imageurl to these files. The user currently logs in the secure website to export KML/KMZ files.
The current URL for HttpHandler looks like this https://abcd.com/facility.hgx?Id=2357
2357 is the picture id from the database. When I access this URL it is asking me to sigin to the website to show the picute.
I tried removing s from https but it redirects me to the https site login screen
Is there anyway I can expose the HttpHandler so that it won't ask for the login and just returns the image?
talasila80
Member
426 Points
111 Posts
HttpHandler for Image with URL
Dec 11, 2012 09:40 PM|LINK
I have taken over a project and I ran into a road block yesterday. The current website cleady has a HttpHandler for image retrieval from database and works fine. We are runnning into a situation now to export our data into KML/KMZ files and I am trying to add the imageurl to these files. The user currently logs in the secure website to export KML/KMZ files.
The current URL for HttpHandler looks like this https://abcd.com/facility.hgx?Id=2357
2357 is the picture id from the database. When I access this URL it is asking me to sigin to the website to show the picute.
I tried removing s from https but it redirects me to the https site login screen
Is there anyway I can expose the HttpHandler so that it won't ask for the login and just returns the image?
Thanks in advance
Sri
BrockAllen
All-Star
27516 Points
4898 Posts
MVP
Re: HttpHandler for Image with URL
Dec 11, 2012 09:46 PM|LINK
Do you really want to do this? I mean, if it requires authentication in the first place then presumably the data is sensitive, no?
DevelopMentor | http://www.develop.com
thinktecture | http://www.thinktecture.com/
talasila80
Member
426 Points
111 Posts
Re: HttpHandler for Image with URL
Dec 11, 2012 10:10 PM|LINK
Yes, the data is sensitive, We haven't rolled out the website yet to our real clients.
I am not worried about the security here, just trying to see how I can do this and later we will come up with how to give access to clients etc.
BrockAllen
All-Star
27516 Points
4898 Posts
MVP
Re: HttpHandler for Image with URL
Dec 11, 2012 10:16 PM|LINK
Ok, so find out why you're getting access denied -- i'm going to guess it's because of an <authroization> element somewhere in web.config.
You can set one path to be custom settings in web.config, as such:
<location path="handler1.ashx">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
DevelopMentor | http://www.develop.com
thinktecture | http://www.thinktecture.com/
talasila80
Member
426 Points
111 Posts
Re: HttpHandler for Image with URL
Dec 12, 2012 01:49 PM|LINK
That did it, thank you very much.