本文整理汇总了Java中org.apache.axis.configuration.SimpleProvider类的典型用法代码示例。如果您正苦于以下问题:Java SimpleProvider类的具体用法?Java SimpleProvider怎么用?Java SimpleProvider使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SimpleProvider类属于org.apache.axis.configuration包,在下文中一共展示了SimpleProvider类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: main
import org.apache.axis.configuration.SimpleProvider; //导入依赖的package包/类
public static void main(String args[]) {
Call.addTransportPackage("samples.transport");
Call.setTransportForProtocol("tcp", TCPTransport.class);
// Deploy the transport on top of the default client configuration.
EngineConfiguration defaultConfig =
(new DefaultEngineConfigurationFactory()).
getClientEngineConfig();
SimpleProvider config = new SimpleProvider(defaultConfig);
SimpleTargetedChain c = new SimpleTargetedChain(new TCPSender());
config.deployTransport("tcp", c);
AdminClient.setDefaultConfiguration(config);
try {
org.apache.axis.client.AdminClient client =
new org.apache.axis.client.AdminClient(true);
System.out.println(client.process(args));
}
catch( Exception e ) {
System.err.println( e );
e.printStackTrace( System.err );
}
}
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:27,代码来源:AdminClient.java
示例2: initTransport
import org.apache.axis.configuration.SimpleProvider; //导入依赖的package包/类
/**
* Initialize transport for axis (add httpg)
*
* @throws SRMException
*/
private void initTransport() throws SRMException
{
//logger.log(Level.INFO,"--->>> Init SRM v11 Transport <<< ---");
srmServiceLocator = new SRMServerV1Locator();
// Register new protocol HTTPG
SimpleProvider provider = new SimpleProvider();
// Uses Globus Proxy !
GSIHTTPSender gsisender = new GSIHTTPSender();
SimpleTargetedChain chain = new SimpleTargetedChain(gsisender);
provider.deployTransport("httpg", chain);
Util.registerTransport();
// ===========================================
// ===========================================
// connectiont time out ?
srmServiceLocator.setEngine(new AxisClient(provider));
try
{
this._srmService = srmServiceLocator.getISRM(srmUri.toURL());
// Set Axis socket connection timeout
((Stub) this._srmService).setTimeout(connectionTimeout);
}
catch (Exception e)
{
throw SRMException.createConnectionException("SRM Connection Error. Connection failed to:" + srmUri, e);
}
}
开发者ID:NLeSC,项目名称:vbrowser,代码行数:41,代码来源:SRMClientV1.java
示例3: ServiceImpl
import org.apache.axis.configuration.SimpleProvider; //导入依赖的package包/类
public ServiceImpl(Map portToImplementationMap, Map seiClassNameToFactoryMap) {
this.portToImplementationMap = portToImplementationMap;
this.seiClassNameToFactoryMap = seiClassNameToFactoryMap;
TypeMappingRegistryImpl typeMappingRegistry = new TypeMappingRegistryImpl();
typeMappingRegistry.doRegisterFromVersion("1.3");
SimpleProvider engineConfiguration = new SimpleProvider(typeMappingRegistry);
engineConfiguration.deployTransport("http", new SimpleTargetedChain(new HTTPSender()));
AxisClientImpl engine = new AxisClientImpl(engineConfiguration, this.portToImplementationMap);
delegate = new Service(engineConfiguration, engine);
}
开发者ID:apache,项目名称:tomee,代码行数:15,代码来源:ServiceImpl.java
示例4: getQuote
import org.apache.axis.configuration.SimpleProvider; //导入依赖的package包/类
public float getQuote (String args[]) throws Exception {
Call.addTransportPackage("samples.transport");
Call.setTransportForProtocol("tcp", TCPTransport.class);
Options opts = new Options( args );
args = opts.getRemainingArgs();
if ( args == null ) {
System.err.println( "Usage: GetQuote <symbol>" );
System.exit(1);
}
String namespace = "urn:xmltoday-delayed-quotes";
symbol = args[0] ;
EngineConfiguration defaultConfig =
(new DefaultEngineConfigurationFactory()).
getClientEngineConfig();
SimpleProvider config = new SimpleProvider(defaultConfig);
SimpleTargetedChain c = new SimpleTargetedChain(new TCPSender());
config.deployTransport("tcp", c);
Service service = new Service(config);
Call call = (Call)service.createCall();
call.setTransport(new TCPTransport());
call.setTargetEndpointAddress( new URL(opts.getURL()) );
call.setOperationName( new QName("urn:xmltoday-delayed-quotes", "getQuote") );
call.addParameter( "symbol", XMLType.XSD_STRING, ParameterMode.IN );
call.setReturnType( XMLType.XSD_FLOAT );
// TESTING HACK BY ROBJ
if (symbol.equals("XXX_noaction")) {
symbol = "XXX";
}
call.setUsername( opts.getUser() );
call.setPassword( opts.getPassword() );
// useful option for profiling - perhaps we should remove before
// shipping?
String countOption = opts.isValueSet('c');
int count=1;
if ( countOption != null) {
count=Integer.valueOf(countOption).intValue();
System.out.println("Iterating " + count + " times");
}
Float res = new Float(0.0F);
for (int i=0; i<count; i++) {
Object ret = call.invoke(new Object[] {symbol} );
if (ret instanceof String) {
System.out.println("Received problem response from server: "+ret);
throw new AxisFault("", (String)ret, null, null);
}
res = (Float) ret;
}
return res.floatValue();
}
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:63,代码来源:GetQuote.java
注:本文中的org.apache.axis.configuration.SimpleProvider类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论