06 Dec, 2004

SOAP with C# and Axis

Posted by ben 16:53 | Permalink Permalink | Comments comments (0) | Trackback Trackbacks (1) | Java
I have been playing most the day getting C# to talk to Java over SOAP using AXIS. It is quite wierd how little information their is on this combination or the interoperability issues.

For a start you won't be able to use your basic java objects and SOAP really can't cope with Collections.

Then you have to deal with extremely wierd problems like C# won't accept an Array of strings from Axis. But appears to accept an array of almost any other object. Simple work around it to create a class with a string member variable and send an array of that!

It is just wierd that SOAP is actually quite poor at talking between different platforms!


Comments