Delphi 7 webservice Java 传参null
-------Delphi客户端调用服务端的java webservice 刚开始时
InvRegistry.RegisterInvokeOptions(TypeInfo(TestWebservice), ioLiteral);
------报错“cannot find dispatch method for{null}terminalNo using"payload Qname-based dispatcher" ”
然后修改
InvRegistry.RegisterInvokeOptions(TypeInfo(TestWebservice), ioDocument);
------就是把 ioLiteral 改成 ioDocument,
现在不报错,可是 服务端收到的参数是null , 这是什么原因呢? 等待高
手...
-------Delphi客户端调用服务端的java webservice