Search Results
OK to copy?
Examples 1 through 10 of
14 (0.432 seconds)
Class:
org.apache.axis.Version
©,
Rating:
0% of 0,
C1
Class: org.apache.axis.soap.SOAPConnectionImpl ©, Rating: 0% of 0, C2
Class: org.apache.axis.client.AxisClientProxy ©, Rating: 0% of 0, C2
Class: org.apache.axis.client.AxisClientProxy ©, Rating: 0% of 0, C2
Class: org.apache.axis.client.AxisClientProxy ©, Rating: 0% of 0, C2
Class: org.apache.axis.client.AdminClient ©, Rating: 0% of 0, C2
Class: org.apache.axis.client.Call ©, Rating: 0% of 0, C3
Class: org.apache.axis.client.Call ©, Rating: 0% of 0, C1
Class: org.apache.axis.client.Call ©, Rating: 0% of 0, C2
Class: org.apache.axis.client.Call ©, Rating: 0% of 0, C1
87 try {
88 Call call = new Call(args[0]);
89 String result = (String)call.invoke("Version", "getVersion",
90 null);
91 System.out.println(result);
Class: org.apache.axis.soap.SOAPConnectionImpl ©, Rating: 0% of 0, C2
103 }
104 call.setReturnClass(SOAPMessage.class);
105 call.invoke(env);
106 return call.getResponseMessage();
107 } catch (java.net.MalformedURLException mue){
Class: org.apache.axis.client.AxisClientProxy ©, Rating: 0% of 0, C2
198 // we don't even know the portName (we don't have wsdl)
199 paramsCall = objects;
200 outValue = call.invoke(method.getName(), paramsCall);
201 }
202 callOutputParams2proxyParams(objects);
Class: org.apache.axis.client.AxisClientProxy ©, Rating: 0% of 0, C2
192 call.setOperation(portName,method.getName());
193 paramsCall = proxyParams2CallParams(objects);
194 outValue = call.invoke(paramsCall);
195 }
196 else
Class: org.apache.axis.client.AxisClientProxy ©, Rating: 0% of 0, C2
184 call.setOperation(method.getName());
185 paramsCall = proxyParams2CallParams(objects);
186 outValue = call.invoke(paramsCall);
187 }
188 else if (portName != null)
Class: org.apache.axis.client.AdminClient ©, Rating: 0% of 0, C2
353 Vector result = null ;
354 Object[] params = new Object[] { new SOAPBodyElement(input) };
355 result = (Vector) call.invoke( params );
356
357 input.close();
Class: org.apache.axis.client.Call ©, Rating: 0% of 0, C3
2246 reqEnv.setMessageType(Message.REQUEST);
2247
2248 invoke();
2249 } catch (Exception e) {
2250 entLog.debug(Messages.getMessage("toAxisFault00"), e);
Class: org.apache.axis.client.Call ©, Rating: 0% of 0, C1
2194 public Object invoke( String method, Object [] args ) throws AxisFault
2195 {
2196 return invoke("", method, args);
2197 }
2198
Class: org.apache.axis.client.Call ©, Rating: 0% of 0, C2
2169 RPCElement body = new RPCElement(namespace, method, getParamList(args));
2170
2171 Object ret = invoke( body );
2172
2173 if (log.isDebugEnabled()) {
Class: org.apache.axis.client.Call ©, Rating: 0% of 0, C1
1751 msg = new Message( env );
1752 setRequestMessage( msg );
1753 invoke();
1754 msg = msgContext.getResponseMessage();
1755 if (msg == null) {