I have a web service in my web app that is within a namespace like so:
using System;
using System.Web;
using System.Web.Services;
using System.Xml;
using System.Web.Services.Protocols;
using System.Web.Script.Services;
using System.Data;
namespace Pebls
{
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[ScriptService]
public class nurse : System.Web.Services.WebService
{
[WebMethod(EnableSession = true)]
public string nurseToPost(string dat)
{ return "hello"; }
}
}
which works fine.
I now added another service - basically ju ...
Go to the complete details ...