Does anyone know of a fix to the follwoing issue.
I am referencing a third party WSDL in .net1.1
The resulting reference.cs produces a method where the
RequestElementN ame is the same value as ResponseElement Name (as below)
This surfaces in an error on construction of the class.
If I alter the RequestElementN ame to something different the Method
works, however the Request object fails to be passed through to the
webservice due to obvious reasons that it no longer maps to
GetNotes..
[SoapDocumentMet hodAttribute(
Action="http://www.madeUpCompa ny/GetNotes",
RequestElementN ame="GetNotes",
RequestNamespac e="http://www.madeUpCompa ny/GetNotes",
ResponseElement Name="GetNotes" ,
ResponseNamespa ce="http://www.madeUpCompa ny/GetNotes",
Use=System.Web. Services.Descri ption.SoapBindi ngUse.Literal,
ParameterStyle= System.Web.Serv ices.Protocols. SoapParameterSt yle.Wrapped)
]
public void GetNotesWSDL(re f PropertiesStruc ture Properties, ref
object Item)
{
//Do some Stuff
}
I am referencing a third party WSDL in .net1.1
The resulting reference.cs produces a method where the
RequestElementN ame is the same value as ResponseElement Name (as below)
This surfaces in an error on construction of the class.
If I alter the RequestElementN ame to something different the Method
works, however the Request object fails to be passed through to the
webservice due to obvious reasons that it no longer maps to
GetNotes..
[SoapDocumentMet hodAttribute(
Action="http://www.madeUpCompa ny/GetNotes",
RequestElementN ame="GetNotes",
RequestNamespac e="http://www.madeUpCompa ny/GetNotes",
ResponseElement Name="GetNotes" ,
ResponseNamespa ce="http://www.madeUpCompa ny/GetNotes",
Use=System.Web. Services.Descri ption.SoapBindi ngUse.Literal,
ParameterStyle= System.Web.Serv ices.Protocols. SoapParameterSt yle.Wrapped)
]
public void GetNotesWSDL(re f PropertiesStruc ture Properties, ref
object Item)
{
//Do some Stuff
}