Hi,
I have a WS client. All the code is generated by VS.NET 2003.
For me its seems that an attribute is not generated during sending the
request in the SOAPHeader.
The problem is with RFCSendingValue.
There the attribute 'groupeid0 isn't generated in the SOAP request.
The proxy is generated this way:
----------------------------------------------------------------------------
---------
/// <remarks/>
public RFCSending RFCSendingValue;
public EFCSending EFCSendingValue;
[System.Web.Services.Protocols.SoapHeaderAttribute("RFCSendingValue",
Direction=System.Web.Services.Protocols.SoapHeaderDirection.In,
Required=true)]
[System.Web.Services.Protocols.SoapHeaderAttribute("EFCSendingValue",
Direction=System.Web.Services.Protocols.SoapHeaderDirection.Out,
Required=true)]
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("",
Use=System.Web.Services.Description.SoapBindingUse.Literal,
ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Bare)]
[return: System.Xml.Serialization.XmlArrayAttribute("EFCCase",
Namespace=http://www.)]
[return: System.Xml.Serialization.XmlArrayItemAttribute("cardIndex",
Namespace=http://www., IsNullable=false)]
public EFCCaseTypeCardIndex[]
identifyClient([System.Xml.Serialization.XmlArrayAttribute(Namespace=http://
www.)] [System.Xml.Serialization.XmlArrayItemAttribute("cardIndex",
Namespace=http://www., IsNullable=false)] RFCCaseTypeCardIndex[] RFCCase) {
object[] results = this.Invoke("identifyClient", new object[] { RFCCase});
return ((EFCCaseTypeCardIndex[])(results[0]));
}
[System.Xml.Serialization.XmlTypeAttribute(Namespace=http://www.xxx.ch)]
[System.Xml.Serialization.XmlRootAttribute(Namespace=http://www.xxx.ch,
IsNullable=false)]
public class RFCSending : sendingType {
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("cardIndex",
IsNullable=false)]
public RFCCaseTypeCardIndex[] RFCCase;
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute("groupe-id")]
public int groupeid;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool groupeidSpecified;
}
The generated SOAP header looks like:
- <soap:Header>
- <RFCSending sending-date="2004-07-12T10:35:09.2208717+02:00"
sending-id="1" xmlns="http://www.ofac.ch/XEDO">
<sender code="1" />
<recipient code="4" />
</RFCSending>
</soap:Header>
It seems that only the attributes in the base class 'sendingType' are
generated. Why?
Thanks
Eric
Elena Kharitidi - 02 Sep 2004 07:12 GMT
I am going to guess here that the 'groupeid' attribute is defined in the
schema with use="optional" and type="xs:int", the schema type "int" will be
mapped to CLR primitive type System.Int32, which is a ValueType, so after
an instance of RFCSending is deserialized there is no way to tell if the
groupeid=".." attribute was present in the instance. XmlSerializer employs
xxxSpecified pattern to determine if the satellite xxx member was set or
not. When reading an instance of RFCSending, the groupeidSpecified member
will be set to "true" if the xml instance had the groupeid=".." attribute,
otherwise the value of the groupeidSpecified will be false. Unfortunately
this means that user is burdened with responsibility of setting the
groupeidSpecified to true if he/she want is to be serialized:
MyProxy x = new MyProxy();
x.RFCSendingValue = new RFCSending();
x.RFCSendingValue.groupeid = 555;
x.RFCSendingValue. groupeidSpecified = true;