通过 SOAP 从/向 Web 服务发送 java 对象时,我遇到了丢失数据的问题。我们有一个名为“User”的类,它有一个属于另一个名为“Company”的类的数据成员。两者都被定义为 SOAP 的复杂类型,使用 java 注释来绑定 XML。由于某种原因,当我尝试向 Web 服务发送用户对象或从 Web 服务发送用户对象时,它会丢失公司成员中的数据,将成员显示为空值。我使用 NetBeans 调试器确定公司对象在发送之前已填充,并使用 NetBeans WS 测试器显示 SOAP 正在正确格式化对象。所以看来问题出在 Java 的 XML/SOAP 到 java 的翻译上。
这是 SOAP 响应:
Method returned
com.lingosys.attask.ws.User : "com.lingosys.attask.ws.User@6f863b" SOAP 请求
<?xml version="1.0" encoding="UTF-8"?><S:Envelope xmlns:S="http://schemas.xmlsoap.org
/soap/envelope/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<S:Body>
<ns2:getUser xmlns:ns2="http://ws.attask.lingosys.com/" xmlns:ns3="http://ws.fault.lingosys.com">
<UserID>85967</UserID>
</ns2:getUser>
</S:Body>
</S:Envelope>
SOAP Response
<?xml version="1.0" encoding="UTF-8"?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<S:Body>
<ns2:getUserResponse xmlns:ns2="http://ws.attask.lingosys.com/" xmlns:ns3="http://ws.fault.lingosys.com">
<return>
<id>85967</id>
<name>Mohamed Abdullahi, Ph.D.</name>
<address>P.O. Box 56046</address>
<address2>407 Laurier Ave. W.</address2>
<adminNotes/>
<agreements xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
<altPhone1/>
<altPhone2/>
<certifications/>
<city>Ottawa</city>
<company>
<id>7029</id>
<name>Mohamed Abdullahi, Ph.D.</name>
<addPMSurchargeforDocTrans>true</addPMSurchargeforDocTrans>
<checkKnowledgeMgt>false</checkKnowledgeMgt>
<clientID>0</clientID>
<docTransPricingScheme>LLS Pricing</docTransPricingScheme>
<greatPlainsID/>
<guid>c71d4c279af611e287980019d15adc73</guid>
<legalEntity>Lingo Systems</legalEntity>
<passTradosLeveraging>false</passTradosLeveraging>
<paymentTerms>0</paymentTerms>
<usLinguistsRequired>false</usLinguistsRequired>
<userDataID/>
</company>
<copyedit>0.0</copyedit>
<country/>
<email>annie@goodie.com</email>
<email2>mdiriye@hotmail.com</email2>
<fax/>
<firstName>Mohamed</firstName>
<helpFuzzy>0.0</helpFuzzy>
<helpNew>0.0</helpNew>
<helpReps>0.0</helpReps>
<hourly>0.0</hourly>
<lastName>Abdullahi, Ph.D.</lastName>
<lingoNetUser>false</lingoNetUser>
<linguistSource>Coto DB</linguistSource>
<llsClientID/>
<medicalFuzzy>0.0</medicalFuzzy>
<medicalNew>0.0</medicalNew>
<medicalReps>0.0</medicalReps>
<memberships xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
<min>0.0</min>
<mktFuzzy>0.0</mktFuzzy>
<mktNew>0.0</mktNew>
<mktReps>0.0</mktReps>
<os/>
<pager/>
<phone/>
<pmComments/>
<postalCode>KIR 7Z0</postalCode>
<qualified xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
<roles>Linguist Account</roles>
<rushFuzzy>0.0</rushFuzzy>
<rushNew>0.0</rushNew>
<rushReps>0.0</rushReps>
<sourceLanguage>English (US)</sourceLanguage>
<specialties xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
<state>ON</state>
<targetLanguage/>
<taxID/>
<techFuzzy>0.0</techFuzzy>
<techNew>0.0</techNew>
<techReps>0.0</techReps>
<timeZone>US/Eastern</timeZone>
<title/>
<tools xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
<trFuzzy>0.0</trFuzzy>
<trNew>0.0</trNew>
<trReps>0.0</trReps>
<translatorSince/>
<trceFuzzy>0.0</trceFuzzy>
<trceNew>0.0</trceNew>
<trceReps>0.0</trceReps>
<uiFuzzy>0.0</uiFuzzy>
<uiNew>0.0</uiNew>
<uiReps>0.0</uiReps>
<userName>mdiriye@hotmail.com</userName>
</return>
</ns2:getUserResponse>
</S:Body>
</S:Envelope>
我已经在 Java Ranch 上发布了这个问题以及比本网站帖子中包含的更多代码:http: //www.coderanch.com/t/622496/Web-Services/java/losing-data-SOAP-Web-Service #2845835
如果有您可能想查看的 soem 代码或文档,请告诉我。有趣的是,这些 Web 服务的版本非常相似,而客户端却在不同的环境中工作。我正在从 NB6.9 Glassfish v2、JDK 1.6 升级到 NB7.3.1、GF4、JDK 1.7。对 Company 和 User 类进行了一些代码更改,但我认为与 SOAP 没有任何关系。
任何帮助将不胜感激