I am writing an application that needs to call web services dynamically based on a wsdl description. WSIF currently works well for this when using primitive types, but for complex types it needs generated code. Since the application requires the calls to be dynamic this will not work (without a headache). What I would like to do is get the raw xml representing the type if it is a complex type.
The sample application ships with a latitude/longitude service example. Is there any way to make the call dynamically to the service and return the GetLatLongResult output message without having to generate code?
Any help is very appreciated.
Jeff De Pons
example return;
<GetLatLongResult>
<ServiceError>false</ServiceError>
<AddressError>false</AddressError>
<City>MILWAUKEE</City>
<StateAbbrev>WI</StateAbbrev>
<ZipCode>53202</ZipCode>
<County>MILWAUKEE</County>
<FromLongitude>-87.913284</FromLongitude>
<FromLatitude>43.027514</FromLatitude>
<ToLongitude>-87.913284</ToLongitude>
<ToLatitude>43.060212</ToLatitude>
<AvgLongitude>-87.895021</AvgLongitude>
<AvgLatitude>43.043863</AvgLatitude>
<CMSA>5082</CMSA>
<PMSA>5080</PMSA>
</GetLatLongResult>
- Re: Getting raw xml back from WSIF jdepons
- Re: Getting raw xml back from WSIF Jeff Greif
