David: I copied you a small part of the stuff that my system is exchanging. It's a call by SOAP-RPC. As you can see, in the upper part there are no xsi:type attributes. If this is what you are looking for, I can send you the code.
Matthias Wimmer <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SOAP-ENV:Body> <Insurance Name="bim"> <Benefits> <Copay>ENTER</Copay> <Select> <Type>DEDUCTIBLE</Type> <Period>HOUR</Period> </Select> <Enter> <Amount>100</Amount> <Period>DAY</Period> </Enter> <Coinsurance>101</Coinsurance> </Benefits> </Insurance> <ns1:retrieveBenefitsResponse SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="InsuranceWebService"> <retrieveBenefitsReturn xsi:type="xsd:string">ok</retrieveBenefitsReturn> </ns1:retrieveBenefitsResponse> </SOAP-ENV:Body> </SOAP-ENV:Envelope> > -----Original Message----- > From: David Owens [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, July 09, 2002 12:20 PM > To: [EMAIL PROTECTED] > Subject: Removing xsi types from xml. > > > Hi all! > > Right now I am sending xml from axis to axis and I am trying to > decrease the xml size. I changed the configuration on both > the client and server to NOT send xsi types. It worked, in that > the server stopped sending the xsi type, but it blew up on > the client. > > Has anyone else used this feature axis to axis? > Does anyone know if it is supposed to work? > > Thanks in Advance! > > |)ave > [EMAIL PROTECTED] >
