SOAP connection to Java Web Service from PHP Source: http://coding.derkeiler.com/Archive/PHP/alt.php/2006−09/msg00127.html · From: tayze@xxxxxxxxx · Date: 9 Sep 2006 08:43:35 −0700 I've been struggling with this for a while and am finally resorting to asking for help. Below is the code that works in java: −−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−− import java.net.URL; import java.util.Vector; import org.apache.soap.Constants; import org.apache.soap.Fault; import org.apache.soap.SOAPException; import org.apache.soap.rpc.Call; import org.apache.soap.rpc.Parameter; import org.apache.soap.rpc.Response; import java.io.*; import java.util.*; public class TopXCall { public static void main(String argv[]) { try { String endpoint = "http://infao5501.ag5.mpi−sb.mpg.de:8080/soap/servlet/rpcrouter; // Initialize the method parameters Vector params = new Vector(); // Create the call. Call call = new Call(); call.setTargetObjectURI("TopXService"); call.setMethodName(...