Hi all, I just start learning WCF. I have created a very simple RESTFul Webservices using WCF Service Application template. When I run it on my local machine, I can access the url like this.
http://localhost/MyServices.svc/GetItem/123
So, I published it and copied all files to the new Virtual Directory in the server which hosts IIS6. I can still access
which shows some information about WCF. However, when I try to access
https://server/MyServices.svc/GetItem/123
I just got HTTP 404 (resource not found) error. Anyone has a clue if I miss any step or did something wrong.
Thanks!
MORE INFO: I think I found the issue. It seems to be some IIS settings. I could do remote desktop to the server and access the service thru localhost and also the normal http. I will look more.