vote up 0 vote down star

I'm having an issue with Delphi 2007 when trying to consume a web service I've set up in Java using JAX-WS. The web service can be consumed fine from another Java program and from a C# / ASP.NET 2.0 website. However, when I try to access the same service using the WSDL Importer in Delphi 2007 (17-DEc-2007 patch), the JAX-WS web service doesn't recognise any of the parameters I'm passing it and nulls them.

I've checked the SOAP message that's being passed by Delphi and compared it to the others and they are pretty much identical (with the exception of some negligable namespace decs and a whole lot of view state from the .NET one!)

I've also been around the web (most helpful link was Dr Bob's http://www.bobswart.nl/Weblog/Blog.aspx?RootId=5:798) but no joy.

Has anybody come across this before?

TIA.

flag

6 Answers

vote up 1 vote down

Not the solution for your problem, but I had been in trouble recently with the same environment. I had to change the options many times until find the right way to consume the webservice (writen in C#).

Check:

- THTTPRIO.Converter.Options
- THTTPRIO.HTTPWebNode
- THTTPRIO.HTTPWebNode.InvokeOptions
link|flag
Again, my thanks Cesar! I think you need to give me your speed dial ;) – Urf Jan 20 at 19:02
Sorry, forgot to mark your answer! – Urf Jan 23 at 17:14
Good to know it helps you. – Cesar Romero Jan 23 at 18:06
vote up 1 vote down check

HA HA IT LIVES!!!

Basically I had to take out the recommended

InvRegistry.RegisterInvokeOptions(TypeInfo(ActivityService), ioDocument);

and force it to use Sec. 5 encoding. Namespaces are generated as required and parameters are passed to the Java web service.

Right, need beer, lots of beer :)

link|flag
vote up 0 vote down

Did you solf this issue? - I have the same problem..

Greetings

link|flag
vote up 0 vote down

Sorry, I'm afraid not. I'm still working my way through options, although this project is not a priority at the moment so not spending much time on it.

As soon as I have an answer though, I'll post it.

link|flag
vote up 0 vote down

The saga continues!

After buggering about with the HTTPRIO object to try and get it working I eventually gave up and tried a straight XML transfer over HTTP. Fail.

OK, so I built a simple tester in C# and tried that. Works no problem.

Using Fiddler to see what was being sent backwards and forwards it seemed that the only difference was in the namespaces. I changed the namespaces in the XML send in Delphi and ... it works!

This was a sample of the original XML being generated by the WSDLImporter:

<?xml version="1.0"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Body>
        <version xmlns="http://path.to.service.com/">
            <input>test</input>
        </version>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

and here is what actually works:

<?xml version="1.0"?>
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
    <S:Body>
        <ns2:version xmlns:ns2="http://path.to.service.com/">
            <input>test</input>
        </ns2:version>
    </S:Body>
</S:Envelope>

So, now that I know this, I do I go about changing the namespace values for the WSDLImporter code? I can't see anything obvious on the HTTPRIO properties.

TIA

link|flag
vote up 0 vote down

I banged my head against wall for two days, till I found this post... And Cesars hint to check THTTPRIO.Converter.Options... I tried almost everything, last one was to set soXXXXHdr to true -> then happened something strange, no more nulls to server :O...

I don't know why that setting makes values go through, it just does (at least for me).

Would be great if someone who actually understands whats happening would explain this.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.