Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

nusoap web service error running using vfp9

Status
Not open for further replies.

agusr17

Programmer
Aug 28, 2015
2
ID
I have an error when i try to run web service that developed by nusoap using vfp9. I beg anyonecan help me how to solve that problem, very thanks for your help

Error: 1429 - OLE IDispatch exception code 0 from ?: error in msg parsing:
XML error parsing SOAP payload on line 1: Mismatched tag..
<detail xmlns:xsi=" xsi:type="xsd:string"></detail>
 
What are you using in VFP to receive and parse the soap responses? FFC classes?
VFPs FFC classes hav WSHandler in the ffc library ws3client.vcx, which at the lowest level uses MSSOAP.SoapClient30, and this is outdated, it's not current soap standard version and just replacing that also doesn't help.

You need to wrap the service layer within some module you better write in .NET or some other modern language and pass the data/objects between that module and your main VFP application.

You might find some fix of preprocessing the returned XML and hack into the WSHandler class for that, but it's much easier to lay that aside and turn to something working.

Bye, Olaf.
 
thanks Olaf

do u have information or suggetion that i can solve my problem instanly or more easier, like ..is there any tools that have already developed by anybody to solve this progblem?
 
I already suggested using .NET, either VB.NET or C#. They of course support newer Soap versions.

Bye, Olaf.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top