0 Replies Latest reply on Jun 28, 2004 6:21 AM by diegomemo

    attachments

    diegomemo

      Hi,
      I'm developing a client with Axis:

      private static void Connect_Web_Service(String val_micro)throws Exception
      {
      String url_server ="http://localhost:8080/jboss-net/services/ReturnImage";
      String MetodName= "getImage";
      Service service = new Service();
      Call call = (Call) service.createCall();
      call.setTargetEndpointAddress( new java.net.URL(url_server) );
      call.setOperationName(MetodName);
      call.addParameter("nome",org.apache.axis.Constants.XSD_INTEGER,ParameterMode.IN);
      call.setReturnType( ??????? );
      ?????? incomingImage = ( ???? ) call.invoke( new Object[] {new Integer(3)});


      Can i extract the image from multipart ??

      thanks.
      Sorry for my bad english.