2

我有一个 Java Web 服务,我使用 WSDL 导入器从 Delphi 2007 应用程序链接到该服务。设置它是一条崎岖的道路,但我快到了!

我现在遇到的情况是我的数组没有以我的 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 停止在活动元素中创建活动元素而只需将每个 ID 和名称放在活动元素中(正如 .Net 所做的那样,Java 似乎也期望如此)。

我对 InvRegistry.RegisterInvokeOptions 和 RemClassRegistry.RegisterSerializeOptions 感到厌烦,但似乎没有一种组合有效。老实说,我即将为此编写自己的 XML 解析器,因为它需要很长时间才能弄清楚。但是,如果有人对这应该如何工作有任何建议,我将不胜感激。

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

TIA

4

1 回答 1

2

Delphi 2007 中的 XMLDocument 组件似乎已损坏。我已经安装了Alcinoe组件,这很有魅力。那只是浪费了一个星期...... grrrr

于 2009-03-06T12:16:33.290 回答