Hi,
I've created a web service (.asmx) in my asp.net project having the following code
<%@ WebService Language="VB" CodeBehind="App_Code/HttpHandlers/RequestReminder.vb" Class="Reminder" %>
but when I go to browser and navigate to it
This web service is using http://tempuri.org/ as its default namespace.
Recommendation: Change the default namespace before the XML Web service is made public.
Each XML Web service needs a unique namespace in order for client applications to distinguish it from other services on the Web. http://tempuri.org/ is available for XML Web services that are under development, but published XML Web services
should use a more permanent namespace.
Your XML Web service should be identified by a namespace that you control. For example, you can use your company's Internet domain name as par ...
Go to the complete details ...