I have the following code:
我有以下代码:
namespace WebService1
{
[System.Web.Services.WebService(Namespace = "mynamespace",
Name = "ControlModuleService")]
[System.ComponentModel.ToolboxItem(false)]
[System.Web.Services.WebServiceBindingAttribute(Name = "ControlModulePort"),
SoapDocumentService(SoapBindingUse.Literal,SoapParameterStyle.Bare)]
public class Service1 : CommandCenter
{
[WebMethod, SoapDocumentMethod(
ResponseElementName = "setConfigurationResponse")]
public setConfigurationResponse setConfiguration(setConfigurationRequest request)
{
return new setConfigurationResponse();
}
}
namespac