I've attached two XFire SOAP responses.  The file 'xfire-works.xml'
includes a response from my test Web service that includes a single
element in a collection of a complex type.  'xfire-works-not.xml' is a
response from the same service but includes two elements in a collection
of a complex type.  The latter seems to be interfering with the parsing
of the response, as the parent type POJO has null values for its simple
field types (name and id).  I see the correct values for all types in
the response, but these values are not reflected in my client side
parent POJO.

 

New bug or known issue with a work-around?

 

I tried to log a bug in jira.codehaus.org, but I didn't see the 'XFire'
project as an available project.

 

Regards,

 

Tom

 


This e-mail message, including any attachments, is for the sole use of the 
intended recipient(s) and may contain confidential and privileged information 
that is protected from disclosure. Any unauthorized review, use, disclosure or 
distribution is prohibited. If you are not the intended recipient, please 
contact the sender by reply e-mail and destroy all copies of the original 
message and any attachments.

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
	<soap:Body>
		<saveResponse xmlns="http://service.managedtax.sabrix.com";>
			<out>
				<id>5</id>
				<mockChildren>
					<MockData>
						<id>5</id>
						<mockChildren/>
						<name>mock11</name>
					</MockData>
				</mockChildren>
				<name>mock1</name>
			</out>
		</saveResponse>
	</soap:Body>
</soap:Envelope>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
	<soap:Body>
		<saveResponse xmlns="http://service.managedtax.sabrix.com";>
			<out>
				<id>5</id>
				<mockChildren>
					<MockData>
						<id>5</id>
						<mockChildren/>
						<name>mock11</name>
					</MockData>
					<MockData>
						<id>5</id>
						<mockChildren/>
						<name>mock12</name>
					</MockData>
				</mockChildren>
				<name>mock1</name>
			</out>
		</saveResponse>
	</soap:Body>
</soap:Envelope>
---------------------------------------------------------------------
To unsubscribe from this list please visit:

    http://xircles.codehaus.org/manage_email

Reply via email to