gpt4 book ai didi

delphi - Delphi 2007没有生成要发送到Java-WS Web服务的XML

转载 作者:行者123 更新时间:2023-12-03 18:39:46 25 4
gpt4 key购买 nike

我有一个Java Web服务,已使用WSDL Importer从Delphi 2007应用程序链接到该Java Web服务。设置它已经是rocky road了,但是我快到了!

现在,我的阵列无法以Java Web服务可以使用的方式进行序列化。我已经在.Net中编写了相同的应用程序以对其进行测试(效果很好),而我希望生成的XML如下所示:-

<?xml version="1.0"?>
<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"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body xmlns:NS2="http://path.to.service">
<NS1:addActivities xmlns:NS1="http://path.to.service/">
<login href="#1"/>
<project xsi:type="xsd:string">PROJ001</project>
<activities>
<id xsi:type="xsd:string">DELPHITEST</id>
<name xsi:type="xsd:string">This is a test</name>
</activities>
<activities>
<id xsi:type="xsd:string">DELPHITEST2</id>
<name xsi:type="xsd:string">This is another test</name>
</activities>
</NS1:addActivities>
<NS2:login id="1" xsi:type="NS2:login">
<database xsi:type="xsd:string">My_database</database>
<password xsi:type="xsd:string">neverUmind</password>
<username xsi:type="xsd:string">bob</username>
</NS2:login>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>


但是,Delphi生成的XML如下:-

<?xml version="1.0"?>
<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"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body xmlns:NS2="http://path.to.service/">
<NS1:addActivities xmlns:NS1="http://path.to.service/">
<login href="#1"/>
<project xsi:type="xsd:string">PROJ001</project>
<activities xsi:type="SOAP-ENC:Array"
SOAP-ENC:arrayType="NS2:activity[2]">
<item href="#2"/>
<item href="#3"/>
</activities>
</NS1:addActivities>
<NS2:login id="1" xsi:type="NS2:login">
<database xsi:type="xsd:string">My_database</database>
<password xsi:type="xsd:string">neverUmind</password>
<username xsi:type="xsd:string">bob</username>
</NS2:login>
<NS2:activity id="2" xsi:type="NS2:activity">
<id xsi:type="xsd:string">DELPHITEST</id>
<name xsi:type="xsd:string">This is a test</name>
</NS2:activity>
<NS2:activity id="3" xsi:type="NS2:activity">
<id xsi:type="xsd:string">DELPHITEST2</id>
<name xsi:type="xsd:string">This is another test</name>
</NS2:activity>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>


基本上,我需要Delphi停止在activity元素内创建activity元素,而只是将每个ID和Name放在一个activity元素内(就像.Net一样,Java似乎期望如此)。

我已经对InvRegistry.RegisterInvokeOptions和RemClassRegistry.RegisterSerializeOptions进行了争论,但是似乎没有一种组合有效。老实说,我正在为此编写自己的XML解析器,因为它已经花了很长时间才能弄清楚。但是,如果有人对如何工作有任何建议,我将不胜感激。

当然,肯定有人在之前通过Delphi 2007使用过Java-WS Web服务:)

TIA

最佳答案

看来Delphi 2007中的XMLDocument组件已损坏。我已经安装了Alcinoe组件,并且很吸引人。仅仅浪费了一周的时间... grrrr

关于delphi - Delphi 2007没有生成要发送到Java-WS Web服务的XML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/597196/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com