R
Raj
Here's the signature of the web service i have created:
using WebServiceData;
[SoapHeader("Consumer")]
[WebMethod]
public WebServiceData.Result PutData(WebServiceData.Result res)
{
}
The proxy file generated by wsdl always generates the above function as
public Result PutData(Result)
And hence, after the proxy file is generated every time i need manually
replace Result with WebServiceData.Result otherwise I am getting error while
consuming the web service
Here's the command I have used to generate the proxy file:
wsdl http://../../filename.asmx?WSDL
It is creating successfuly without any error!
I welcome any workaround
Thank you
Regards
Raj
using WebServiceData;
[SoapHeader("Consumer")]
[WebMethod]
public WebServiceData.Result PutData(WebServiceData.Result res)
{
}
The proxy file generated by wsdl always generates the above function as
public Result PutData(Result)
And hence, after the proxy file is generated every time i need manually
replace Result with WebServiceData.Result otherwise I am getting error while
consuming the web service
Here's the command I have used to generate the proxy file:
wsdl http://../../filename.asmx?WSDL
It is creating successfuly without any error!
I welcome any workaround
Thank you
Regards
Raj