Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

1) When I create a Webservice (.asmx) in Asp.Net, its default is HTTP, but I need it in HTTPS.. How to do this?

2) And is it possible then to access to the methods on this webservice with "JAVASCRIPT" - even if the Server is HTTPS?

Hope u guys can help me..

share|improve this question

1 Answer

Normally you would adjust IIS on the webserver to make the service HTTPS. You would add a certificate to the website in IIS and check the "Requires Secure Channel (SSL)" check box (this will then redirect people attempting to use HTTP to HTTPS.

You should then be able to make AJAX calls from JavaScript by ensuring that you call your service with an https:// prefix, rather than a http:// prefix.

share|improve this answer
the AJAX Calls from JavaScript doesn't work, because u cannot bypass the server, cause its HTTPS, I don't know why, but for example the XMLHttpRequest, there isn't anything u can do, HTTP works fine.. – eMi Aug 9 '11 at 8:19
You need to abide by the Same Origin Policy - but you should be able to do this. i.e. if you are calling mysite.com/service.asmx from mysite.com/mypage.aspx it will work. You should be on the same DOMAIN, using the same PORT and using the same PROTOCOL. – Steve Fenton Aug 9 '11 at 13:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.