A simple .NET webservice deployed in IIS server. Form that wsdl, i have created the stub and proxies (using weblogic 9.2 "clientgen" ant task).
When I try to invoke the service, I get the following error.
Before calling the service !
java.rmi.RemoteException: SOAPFaultException - FaultCode [{http://schemas.xmlsoap.org/soap/envelope/}Server] FaultString [System.Web.Services.Protocols.SoapHeaderException: Server unavailable, please try later ---> System.ApplicationException: An error occured processing an outgoing fault response
--- End of inner exception stack trace ---] FaultActor [http://w2lzkf0p01/ACDR/Service1.asmx]No Detail; nested exception is:
javax.xml.rpc.soap.SOAPFaultException: System.Web.Services.Protocols.SoapHeaderException: Server unavailable, please try later ---> System.ApplicationException: An error occured processing an outgoing fault response
--- End of inner exception stack trace ---
Could anyone help me in this. thanks in advance.
My client code is
public class WindowsClient {
/**
* @param args
*/
public static void main(String[] args) {
String wsdl_path = "http://w2lzkf0p01/ACDR/Service1.asmx?wsdl";
try {
System.out.println("Before calling the service !");
Service1 service1 = new Service1_Impl(wsdl_path);
Service1Soap service1Soap = service1.getService1Soap();
service1Soap.invokeDiadem("a", "b", "c", "d", "e", "f");
System.out.println("Service is Called !");
} catch (ServiceException e) {
System.out.println(e);
} catch (RemoteException e) {
System.out.println(e);
}
}
}