Groups > Borland > Dellphi web services soap > Re: Unmatched in parameter validate in SOAP call.




Unmatched in parameter validate in SOAP call.

Unmatched in parameter validate in SOAP call.
Sun, 10 Feb 2008 14:03:03 +010
Hi

I try to connect an Java Webservice with an Delphi Client. I receive the 
following error Message:

ERemotableException
Unmatched in parameter validate in SOAP call. Declared parameters : 
p0[{http://systinet.com/xsd/SchemaTypes/}p0]

Can anybody explain me what this Message means?

Nils
Post Reply
Re: Unmatched in parameter validate in SOAP call.
Mon, 11 Feb 2008 13:17:42 -080
Hello,

It's not really possible to explain this error without a little more
information (like the WSDL of the service, the version of Delphi you have,
etc). However, my guess would be the following: (NOTE: This is just a
guess):

- If you have an earlier version of Delphi that did not properly
detect/support newer WebService (namely doc|lit services), Delphi's SOAP
runtime could send an XML request that the service does not know what to do
with.

The fact that the exception you received was an ERemotableException this
means that the service did not like the XML we sent and it sent back a SOAP
fault packet. We parse the SOAP fault and we raised an ERemotableException
for every SOAP fault packet received.

If you don't have the latest Delphi, please use the updated importer/runtime
located here:

   http://cc.codegear.com/Item/24535

I'm happy to investigate a little more if you can post the WSDL and version
of Delphi. As far as the exact meaning of the message, I suspect there's a
parameter named 'validate' and it did not like, or something similar?? I
think it's a generic message

Cheers,

Bruneau.

Post Reply
Re: Unmatched in parameter validate in SOAP call.
Tue, 12 Feb 2008 19:46:20 +010
Hi,

I uses D2006 an it seemd to be that the updated importer works correctly...

(I found errors in checking the WDSL file agains the Pas file manually).

Thank you for you support, I give you feedback If I have any other 
problems..

One Other question... I like to import an URL an have a special output 
past... But I don't understood:

  -=+ Output filename after'=' in URL

how is the syntax for example

WSDLImp -P  "http://soapbox:6060/zav/StreetDirectoryService/"

If I like to write an pas file with the name "test.pas" ???

WSDLImp -P 
"http://soapbox:6060/zav/StreetDirectoryService/"=Test.pas

don't work... ???

Nils




> Hello,
> 
> It's not really possible to explain this error without a little more
> information (like the WSDL of the service, the version of Delphi you have,
> etc). However, my guess would be the following: (NOTE: This is just a
> guess):
> 
> - If you have an earlier version of Delphi that did not properly
> detect/support newer WebService (namely doc|lit services), Delphi's SOAP
> runtime could send an XML request that the service does not know what to
do
> with.
> 
> The fact that the exception you received was an ERemotableException this
> means that the service did not like the XML we sent and it sent back a
SOAP
> fault packet. We parse the SOAP fault and we raised an ERemotableException
> for every SOAP fault packet received.
> 
> If you don't have the latest Delphi, please use the updated
importer/runtime
> located here:
> 
>    http://cc.codegear.com/Item/24535
> 
> I'm happy to investigate a little more if you can post the WSDL and
version
> of Delphi. As far as the exact meaning of the message, I suspect there's a
> parameter named 'validate' and it did not like, or something similar?? I
> think it's a generic message
> 
> Cheers,
> 
> Bruneau.
> 
Post Reply
Re: Unmatched in parameter validate in SOAP call.
Wed, 13 Feb 2008 14:06:38 -080
Hello,

> One Other question... I like to import an URL an have a special output
> past... But I don't understood:
>
>   -=+ Output filename after'=' in URL
>
> how is the syntax for example
>
> WSDLImp -P  "http://soapbox:6060/zav/StreetDirectoryService/"
>
> If I like to write an pas file with the name "test.pas" ???
>
> WSDLImp -P 
"http://soapbox:6060/zav/StreetDirectoryService/"=Test.pas
>
> don't work... ???



Because '=' is often part of a URL (between querystring parameters and their
values), you explicitly have to enable this feature.

So what you want is something along the lines of:


    WSDLImp -P  -=
"http://soapbox:6060/zav/StreetDirectoryService/"=Test.pas

Let me know if that does not work and I'll investigate.

NOTE: You can also create a response file with lines like these in there:

http://soapbox:6060/zav/StreetDirectoryService/=Test.pas

Then you just have to call the importer with the name of the response file
as in:

    WSDLImp -P -= @responsefile.txt


Cheers,

Bruneau.

Post Reply
about | contact