本文整理汇总了Java中org.apache.axis.client.Service类的典型用法代码示例。如果您正苦于以下问题:Java Service类的具体用法?Java Service怎么用?Java Service使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
Service类属于org.apache.axis.client包,在下文中一共展示了Service类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createCall
import org.apache.axis.client.Service; //导入依赖的package包/类
/**
* Creates and returns an RPC SOAP call.
*
* @return an RPC SOAP call
*/
protected Call createCall() throws Exception {
QName workFlowInputQName = new QName(RPROT_DATA_NAMESPACE,
"WorkFlowInputType");
QName workFlowOuputQName = new QName(RPROT_DATA_NAMESPACE,
"WorkFlowOutputType");
Service service = new Service();
Call call = (Call) service.createCall();
System.out.println("Calling : " + urlString);
call.setTargetEndpointAddress(new java.net.URL(urlString));
call.setOperationName("startWorkFlow");
call.addParameter("parameters", workFlowInputQName, ParameterMode.IN);
call.setReturnType(workFlowOuputQName, WorkFlowOutputType.class);
register(call, WorkFlowInputType.class, workFlowInputQName);
register(call, WorkFlowOutputType.class, workFlowOuputQName);
return call;
}
示例2: main
import org.apache.axis.client.Service; //导入依赖的package包/类
public static void main(String [] args) {
try {
String endpoint =
"http://nagoya.apache.org:5049/axis/services/echo";
Service service = new Service();
Call call = (Call) service.createCall();
call.setTargetEndpointAddress( new java.net.URL(endpoint) );
call.setOperationName(new QName("http://soapinterop.org/", "echoString") );
// Call to addParameter/setReturnType as described in user-guide.html
//call.addParameter("testParam",
// org.apache.axis.Constants.XSD_STRING,
// javax.xml.rpc.ParameterMode.IN);
//call.setReturnType(org.apache.axis.Constants.XSD_STRING);
String ret = (String) call.invoke( new Object[] { "Hello!" } );
System.out.println("Sent 'Hello!', got '" + ret + "'");
} catch (Exception e) {
System.err.println(e.toString());
}
}
示例3: _get
import org.apache.axis.client.Service; //导入依赖的package包/类
private CacheEntry _get(String cacheName,String method,String key) throws ServiceException, MalformedURLException, RemoteException {
Service service = new Service();
Call call = (Call) service.createCall();
call.registerTypeMapping(
Element.class,
element,
BeanSerializerFactory.class,
BeanDeserializerFactory.class);
call.setTargetEndpointAddress( new java.net.URL(endpoint) );
call.setOperationName(new QName("http://soap.server.ehcache.sf.net/", method));
call.addParameter("arg0", Constants.XSD_STRING, String.class, ParameterMode.IN);
call.addParameter("arg1", Constants.XSD_STRING, String.class, ParameterMode.IN);
call.setReturnClass(Element.class);
call.setReturnQName(element);
return new SoapCacheEntry((Element) call.invoke( new Object[] {cacheName,key } ));
}
示例4: _remove
import org.apache.axis.client.Service; //导入依赖的package包/类
private boolean _remove(String cacheName,String method,String key) throws ServiceException, MalformedURLException, RemoteException {
Service service = new Service();
Call call = (Call) service.createCall();
call.registerTypeMapping(
Element.class,
element,
BeanSerializerFactory.class,
BeanDeserializerFactory.class);
call.setTargetEndpointAddress( new java.net.URL(endpoint) );
call.setOperationName(new QName("http://soap.server.ehcache.sf.net/", method));
call.addParameter("arg0", Constants.XSD_STRING, String.class, ParameterMode.IN);
call.addParameter("arg1", Constants.XSD_STRING, String.class, ParameterMode.IN);
call.setReturnClass(boolean.class);
call.setReturnQName(Constants.XSD_BOOLEAN);
return ((Boolean)call.invoke( new Object[] {cacheName,key } )).booleanValue();
}
示例5: _put
import org.apache.axis.client.Service; //导入依赖的package包/类
private void _put(String cacheName,String method,Element el) throws ServiceException, MalformedURLException, RemoteException {
Service service = new Service();
Call call = (Call) service.createCall();
el.setResourceUri(endpoint);
call.registerTypeMapping(
Element.class,
element,
BeanSerializerFactory.class,
BeanDeserializerFactory.class);
call.setTargetEndpointAddress( new java.net.URL(endpoint) );
call.setOperationName(new QName("http://soap.server.ehcache.sf.net/", method));
call.addParameter("arg0", Constants.XSD_STRING, String.class, ParameterMode.IN);
call.addParameter("arg1", element, Element.class, ParameterMode.IN);
call.setReturnType(Constants.XSD_ANYSIMPLETYPE);
call.invoke( new Object[] {cacheName,el } );
//call.invokeOneWay(new Object[] {cacheName,el } );
}
示例6: createServiceEndpoint
import org.apache.axis.client.Service; //导入依赖的package包/类
public Remote createServiceEndpoint() throws ServiceException {
//TODO figure out why this can't be called in readResolve!
// synchronized (this) {
// if (!initialized) {
// initialize();
// initialized = true;
// }
// }
Service service = ((ServiceImpl) serviceImpl).getService();
GenericServiceEndpoint serviceEndpoint = new GenericServiceEndpoint(portQName, service, location);
Callback callback = new ServiceEndpointMethodInterceptor(serviceEndpoint, sortedOperationInfos, credentialsName);
Callback[] callbacks = new Callback[]{NoOp.INSTANCE, callback};
Enhancer.registerCallbacks(serviceEndpointClass, callbacks);
try {
return (Remote) constructor.newInstance(new Object[]{serviceEndpoint});
} catch (InvocationTargetException e) {
throw (ServiceException) new ServiceException("Could not construct service instance", e.getTargetException()).initCause(e);
}
}
示例7: checkServer
import org.apache.axis.client.Service; //导入依赖的package包/类
private boolean checkServer (String url, String identifier) {
try {
String endpoint =url+"/ClusterManager.jws";
Service service = new Service();
Call call = (Call) service.createCall();
call.setTargetEndpointAddress( new java.net.URL(endpoint) );
call.setOperationName(new QName("http://soapinterop.org/", "doYouOwn"));
boolean ret = ((Boolean) call.invoke( new Object[] { identifier } )).booleanValue();
if (ret) {
owners.put (identifier, url);
}
BrokerFactory.getLoggingBroker().logDebug (url +" will "+(ret?"not":"")+" run "+identifier);
return ret;
} catch (Exception e) {
BrokerFactory.getLoggingBroker().logError(e.getMessage());
}
return false;
}
示例8: sendPersistrentNotificationToDevice
import org.apache.axis.client.Service; //导入依赖的package包/类
public void sendPersistrentNotificationToDevice (
String serviceName,
String notificationUuid,
String deviceUuid) {
try {
String url = getURLForService(serviceName);
String endpoint =url+"/ClusterManager.jws";
Service service = new Service();
Call call = (Call) service.createCall();
call.setTargetEndpointAddress( new java.net.URL(endpoint) );
call.setOperationName(new QName("http://soapinterop.org/", "sendPersistentNotificationToDevice"));
call.invoke( new Object[] { notificationUuid, deviceUuid } );
} catch (Exception e) {
BrokerFactory.getLoggingBroker().logWarn(e);
}
}
示例9: sendNonpersistrentNotificationToDevice
import org.apache.axis.client.Service; //导入依赖的package包/类
public void sendNonpersistrentNotificationToDevice (
String serviceName,
String recipientUuid,
String subject, String message,
String senderName,
String deviceUuid) {
try {
String url = getURLForService(serviceName);
String endpoint =url+"/ClusterManager.jws";
Service service = new Service();
Call call = (Call) service.createCall();
call.setTargetEndpointAddress( new java.net.URL(endpoint) );
call.setOperationName(new QName("http://soapinterop.org/", "sendNonpersistentNotificationToDevice"));
call.invoke( new Object[] { recipientUuid, subject, message, senderName, deviceUuid } );
} catch (Exception e) {
BrokerFactory.getLoggingBroker().logWarn(e);
}
}
示例10: testSendNotificationToOne
import org.apache.axis.client.Service; //导入依赖的package包/类
public void testSendNotificationToOne() {
try {
String endpoint = "http://localhost:8080/paging/SendNotification.jws";
Service service = new Service();
Call call = (Call) service.createCall();
call.setTargetEndpointAddress(new java.net.URL(endpoint));
call.setOperationName(new QName("http://soapinterop.org/",
"sendPage"));
String[] ret = (String[])call.invoke(new Object[] {"[email protected]",
"Test SOAP", "Test SOAP Notification from JUnit"});
for (int i = 0; i < ret.length; i++) {
System.out.println (ret[i]);
}
} catch (Exception e) {
e.printStackTrace();
}
}
示例11: getCookiesForUrl
import org.apache.axis.client.Service; //导入依赖的package包/类
@SuppressWarnings("unchecked")
public List<String> getCookiesForUrl(URL url)
{
// Really, REALLY dodgical hax
Method transportGetter;
try
{
transportGetter = Service.class.getDeclaredMethod("getTransportForURL", URL.class); //$NON-NLS-1$
transportGetter.setAccessible(true);
final HTTPTransport t = (HTTPTransport) transportGetter.invoke(this, url);
final Field f = HTTPTransport.class.getDeclaredField("cookie"); //$NON-NLS-1$
f.setAccessible(true);
Object cooks = f.get(t);
if( cooks == null )
{
return Collections.EMPTY_LIST;
}
else if( cooks instanceof String )
{
return Collections.singletonList((String) cooks);
}
else
{
return Arrays.asList((String[]) cooks);
}
}
catch( Exception e )
{
throw new RuntimeException(e);
}
}
示例12: getQuote
import org.apache.axis.client.Service; //导入依赖的package包/类
/**
* This will use the WSDL to prefill all of the info needed to make
* the call. All that's left is filling in the args to invoke().
*/
public float getQuote(String args[]) throws Exception {
Options opts = new Options( args );
args = opts.getRemainingArgs();
if ( args == null ) {
System.err.println( "Usage: GetQuote <symbol>" );
System.exit(1);
}
/* Define the service QName and port QName */
/*******************************************/
QName servQN = new QName("urn:xmltoday-delayed-quotes","GetQuoteService");
QName portQN = new QName("urn:xmltoday-delayed-quotes","GetQuoteJava");
/* Now use those QNames as pointers into the WSDL doc */
/******************************************************/
Service service = new Service( new URL("file:GetQuote.wsdl"), servQN );
Call call = (Call) service.createCall( portQN, "getQuote" );
/* Strange - but allows the user to change just certain portions of */
/* the URL we're gonna use to invoke the service. Useful when you */
/* want to run it thru tcpmon (ie. put -p81 on the cmd line). */
/********************************************************************/
opts.setDefaultURL( call.getTargetEndpointAddress() );
call.setTargetEndpointAddress( new URL(opts.getURL()) );
/* Get symbol and invoke the service */
/*************************************/
Object result = call.invoke( new Object[] { symbol = args[0] } );
return( ((Float) result).floatValue() );
}
示例13: main
import org.apache.axis.client.Service; //导入依赖的package包/类
public static void main(String args[]) {
try {
Options opts = new Options( args );
args = opts.getRemainingArgs();
if ( args == null || args.length % 2 != 0 ) {
System.err.println( "Usage: GetInfo <symbol> <datatype>" );
System.exit(1);
}
String symbol = args[0] ;
Service service = new Service();
Call call = (Call) service.createCall();
call.setTargetEndpointAddress( new java.net.URL(opts.getURL()) );
call.setOperationName( new QName("urn:cominfo", "getInfo") );
call.addParameter( "symbol", XMLType.XSD_STRING, ParameterMode.IN );
call.addParameter( "info", XMLType.XSD_STRING, ParameterMode.IN );
call.setReturnType( XMLType.XSD_STRING );
call.setUsername( opts.getUser() );
call.setPassword( opts.getPassword() );
String res = (String) call.invoke( new Object[] { args[0], args[1] } );
System.out.println( symbol + ": " + res );
}
catch( Exception e ) {
e.printStackTrace();
}
}
示例14: getQuote1
import org.apache.axis.client.Service; //导入依赖的package包/类
/**
* This will use the WSDL to prefill all of the info needed to make
* the call. All that's left is filling in the args to invoke().
*/
public float getQuote1(String args[]) throws Exception {
Options opts = new Options( args );
args = opts.getRemainingArgs();
if ( args == null ) {
System.err.println( "Usage: GetQuote <symbol>" );
System.exit(1);
}
/* Define the service QName and port QName */
/*******************************************/
QName servQN = new QName("urn:xmltoday-delayed-quotes","GetQuoteService");
QName portQN = new QName("urn:xmltoday-delayed-quotes","GetQuote");
/* Now use those QNames as pointers into the WSDL doc */
/******************************************************/
Service service = new Service( new URL("file:GetQuote.wsdl"), servQN );
Call call = (Call) service.createCall( portQN, "getQuote" );
/* Strange - but allows the user to change just certain portions of */
/* the URL we're gonna use to invoke the service. Useful when you */
/* want to run it thru tcpmon (ie. put -p81 on the cmd line). */
/********************************************************************/
opts.setDefaultURL( call.getTargetEndpointAddress() );
call.setTargetEndpointAddress( new URL(opts.getURL()) );
/* Define some service specific properties */
/*******************************************/
call.setUsername( opts.getUser() );
call.setPassword( opts.getPassword() );
/* Get symbol and invoke the service */
/*************************************/
Object result = call.invoke( new Object[] { symbol = args[0] } );
return( ((Float) result).floatValue() );
}
示例15: main
import org.apache.axis.client.Service; //导入依赖的package包/类
public static void main(String[] args) throws Exception {
try {
Options opts = new Options(args);
Service service = new Service();
Call call = (Call) service.createCall();
call.setTargetEndpointAddress(new java.net.URL(opts.getURL()));
SOAPEnvelope env = new SOAPEnvelope();
SOAPBodyElement sbe = new SOAPBodyElement(XMLUtils.StringToElement("http://localhost:8080/LogTestService", "testMethod", ""));
env.addBodyElement(sbe);
env = new SignedSOAPEnvelope(env, "http://xml-security");
System.out.println("\n============= Request ==============");
XMLUtils.PrettyElementToStream(env.getAsDOM(), System.out);
call.invoke(env);
MessageContext mc = call.getMessageContext();
System.out.println("\n============= Response ==============");
XMLUtils.PrettyElementToStream(mc.getResponseMessage().getSOAPEnvelope().getAsDOM(), System.out);
}
catch (Exception e) {
e.printStackTrace();
}
}