Hi,
Can anyone help me with following issue:
In the XSD I have a schema defined as follows:
<complexType name="TestObject">
<complexContent>
<sequence>
<element name="xyz_properties" minOccurs="0"
type="ib:bootp_props"/>
<element name="client_name" minOccurs="0" type="string"/>
</sequence>
</complexContent>
</complexType>
Using WsdlToJava the following is the generated class:
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TestObject", propOrder = {
"xyzProperties",
"clientName"}
public class TestObject
{
@XmlElement(name = "xyz_properties")
protected BootpProps bootpProperties;
@XmlElement(name = "client_name")
protected String clientName;
When doing on object read (SOAP) everything gets Unmarshalled correctly
and this TestObject is filled correctly.
BUT: When try do a Object Write (SOAP) the xml response instead of send
the properties as "xyz_properties" or "client_name". It is sending as
xyzProperties & clientName.
Is there any setting we need to do to be able send it as "_" ?
Thanks
Kuga