0 Replies Latest reply on Jul 19, 2005 1:23 AM by itsmesuri

    error while using invoke

    itsmesuri


      hey i am getting this error could someone please help me out


      AxisFault

      faultCode: {http://xml.apache.org/axis/}Server.generalException

      faultString: No client transport named 'null' found!

      faultActor: null

      faultDetail:

      stackTrace: AxisFault

      faultCode: {http://xml.apache.org/axis/}Server.generalException

      faultString: No client transport named 'null' found!

      faultActor: null

      faultDetail:



      No client transport named 'null' found!

      at org.apache.axis.client.AxisClient.invoke(AxisClient.java:185)

      at org.apache.axis.client.Call.invokeEngine(Call.java:2113)

      at org.apache.axis.client.Call.invoke(Call.java:2102)

      at org.apache.axis.client.Call.invoke(Call.java:1851)

      at org.apache.axis.client.Call.invoke(Call.java:1777)

      at org.apache.axis.client.Call.invoke(Call.java:1315)

      at ActuateControl.downLoadFile(ActuateControl.java:177)

      at MigrateReportClient.performAction(MigrateReportClient.java:154)

      at MigrateReportClient.main(MigrateReportClient.java:49)





      No client transport named 'null' found!

      at org.apache.axis.client.AxisClient.invoke(AxisClient.java:185)

      at org.apache.axis.client.Call.invokeEngine(Call.java:2113)

      at org.apache.axis.client.Call.invoke(Call.java:2102)

      at org.apache.axis.client.Call.invoke(Call.java:1851)

      at org.apache.axis.client.Call.invoke(Call.java:1777)

      at org.apache.axis.client.Call.invoke(Call.java:1315)

      at ActuateControl.downLoadFile(ActuateControl.java:177)

      at MigrateReportClient.performAction(MigrateReportClient.java:154)

      at MigrateReportClient.main(MigrateReportClient.java:49)



      the code i am using is

      call.invoke(new Object[] { request });





      This is the code to download that

      // create a call object

      org.apache.axis.client.Call call = (Call) actuateAPI.createCall();



      // set the parameters

      prepareDownloadFileCall(call);



      // set download message

      com.actuate.schemas.DownloadFile request =

      new com.actuate.schemas.DownloadFile();

      request.setDecomposeCompoundDocument(decomposeCompoundDocument);

      request.setDownloadEmbedded(downloadEmbedded);

      request.setFileName(filename);



      // invoke the call object

      Object resp = call.invoke(new Object[] { request });



      And it continues ?the error is in the last line specified here