Hi there, I'm trying to create a new web service under my site: http://www.kv331audio.com/services/ It's a very basic "Hello World" ASP.NET 2.0 web service. I deployment the files under http://www.kv331audio.com/services folder, and I'm trying to access http://www.kv331audio.com/services/Service.aspx However, I constantly get Page Not Found Error. Am I doing something wrong here? BTW, my IDE is Visual Studio 2005 Thanks! Bulent Biyikoglu
404 is plain and simple. the file you are looking for is NOT there. You probably uploaded it another directory.
No, I did NOT. And that's why I was asking on the forum. I am experienced enough to know the 404 page not found error.
The file in the services directory of your account is Service.asmx. Your link above points to Service.aspx, which isn't there.
That's a typo above, but it doesnt change the fact that I can not access the service! BTW, are "web service extentions" enabled on my server's IIS? Maybe they are not and that's the problemo: http://www.eggheadcafe.com/conversation.aspx?messageid=30388358&threadid=30388349
you are getting this error because of your application is redirecting to an invalid page. http://www.kv331audio.com/GenericErrorPage.htm?aspxerrorpath=/services/service.asmx In this case, genericErrorPage.htm does not exist. Either the customError section in your web.config is redirecting or your global.asax's application_error routine is doing the redirect.
I'm repeating my question: Web service extensions are enabled on my server, right? Checkout the following Microsoft posting on 404 errors: http://support.microsoft.com/kb/248033 My main question remains the same: Why are web services not working on my server?