当前位置: 首页>>代码示例>>Java>>正文


Java Options.setPassword方法代码示例

本文整理汇总了Java中org.apache.axis2.client.Options.setPassword方法的典型用法代码示例。如果您正苦于以下问题:Java Options.setPassword方法的具体用法?Java Options.setPassword怎么用?Java Options.setPassword使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.axis2.client.Options的用法示例。


在下文中一共展示了Options.setPassword方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: main

import org.apache.axis2.client.Options; //导入方法依赖的package包/类
public static void main(String[] args) throws Exception {
	String epr = "https://" + HOST_IP + ":" + HOST_HTTPS_PORT + "/services/samples/SecureDataService";
	System.setProperty("javax.net.ssl.trustStore", (new File(CLIENT_JKS_PATH)).getAbsolutePath());
	ConfigurationContext ctx = ConfigurationContextFactory
			.createConfigurationContextFromFileSystem(null, null);
               SecureDataServiceStub stub = new SecureDataServiceStub(ctx, epr);
	ServiceClient client = stub._getServiceClient();
	Options options = client.getOptions();
	client.engageModule("rampart");		
	options.setUserName("admin");
	options.setPassword("admin");

	options.setProperty(RampartMessageData.KEY_RAMPART_POLICY, loadPolicy(SECURITY_POLICY_PATH));
	Office[] offices = stub.showAllOffices();
	for (Office office : offices) {
		System.out.println("\t-----------------------------");
		System.out.println("\tOffice Code: " + office.getOfficeCode());
		System.out.println("\tPhone: " + office.getPhone());
		System.out.println("\tAddress Line 1: " + office.getAddressLine1());
		System.out.println("\tAddress Line 2: " + office.getAddressLine2());
		System.out.println("\tCity: " + office.getCity());			
		System.out.println("\tState: " + office.getState());
		System.out.println("\tPostal Code: " + office.getPostalCode());
		System.out.println("\tCountry: " + office.getCountry());
	}
}
 
开发者ID:wso2,项目名称:product-ei,代码行数:27,代码来源:SecureSample.java

示例2: cloneOptions

import org.apache.axis2.client.Options; //导入方法依赖的package包/类
public static Options cloneOptions(Options options) {

        // create new options object and set the parent
        Options clonedOptions = new Options(options.getParent());

        // copy general options
        clonedOptions.setCallTransportCleanup(options.isCallTransportCleanup());
        clonedOptions.setExceptionToBeThrownOnSOAPFault(options.isExceptionToBeThrownOnSOAPFault());
        clonedOptions.setManageSession(options.isManageSession());
        clonedOptions.setSoapVersionURI(options.getSoapVersionURI());
        clonedOptions.setTimeOutInMilliSeconds(options.getTimeOutInMilliSeconds());
        clonedOptions.setUseSeparateListener(options.isUseSeparateListener());

        // copy transport related options
        clonedOptions.setListener(options.getListener());
        clonedOptions.setTransportIn(options.getTransportIn());
        clonedOptions.setTransportInProtocol(options.getTransportInProtocol());
        clonedOptions.setTransportOut(clonedOptions.getTransportOut());



        // copy username and password options
        clonedOptions.setUserName(options.getUserName());
        clonedOptions.setPassword(options.getPassword());

        // cloen the property set of the current options object
        for (Object o : options.getProperties().keySet()) {
            String key = (String) o;
            clonedOptions.setProperty(key, options.getProperty(key));
        }

        return clonedOptions;
    }
 
开发者ID:wso2,项目名称:carbon-business-process,代码行数:34,代码来源:ServiceUtils.java

示例3: cloneOptions

import org.apache.axis2.client.Options; //导入方法依赖的package包/类
/**
 * Clones the given {@link org.apache.axis2.client.Options} object. This is not a deep copy
 * because this will be called for each and every message going out from synapse. The parent
 * of the cloning options object is kept as a reference.
 *
 * @param options clonning object
 * @return clonned Options object
 */
public static Options cloneOptions(Options options) {

    // create new options object and set the parent
    Options clonedOptions = new Options(options.getParent());

    // copy general options
    clonedOptions.setCallTransportCleanup(options.isCallTransportCleanup());
    clonedOptions.setExceptionToBeThrownOnSOAPFault(options.isExceptionToBeThrownOnSOAPFault());
    clonedOptions.setManageSession(options.isManageSession());
    clonedOptions.setSoapVersionURI(options.getSoapVersionURI());
    clonedOptions.setTimeOutInMilliSeconds(options.getTimeOutInMilliSeconds());
    clonedOptions.setUseSeparateListener(options.isUseSeparateListener());

    // copy transport related options
    clonedOptions.setListener(options.getListener());
    clonedOptions.setTransportIn(options.getTransportIn());
    clonedOptions.setTransportInProtocol(options.getTransportInProtocol());
    clonedOptions.setTransportOut(clonedOptions.getTransportOut());

    // copy username and password options
    clonedOptions.setUserName(options.getUserName());
    clonedOptions.setPassword(options.getPassword());

    // cloen the property set of the current options object
    for (Object o : options.getProperties().keySet()) {
        String key = (String) o;
        clonedOptions.setProperty(key, options.getProperty(key));
    }

    return clonedOptions;
}
 
开发者ID:wso2,项目名称:carbon-business-process,代码行数:40,代码来源:AxisServiceUtils.java

示例4: addSecurityOptions

import org.apache.axis2.client.Options; //导入方法依赖的package包/类
public void addSecurityOptions ( String policyPath, String keyStore,String userName, String password) throws AxisFault, FileNotFoundException, XMLStreamException {
	ServiceClient client = stub._getServiceClient();

	Policy policy = loadPolicy(policyPath);

	Properties merlinProp = new Properties();
	merlinProp.put("org.apache.ws.security.crypto.merlin.keystore.type", "JKS");
	merlinProp.put("org.apache.ws.security.crypto.merlin.file",
	               keyStore);

	merlinProp.put("org.apache.ws.security.crypto.merlin.keystore.password", "wso2carbon");

	CryptoConfig sigCryptoConfig = new CryptoConfig();
	sigCryptoConfig.setProvider(Merlin.class.getName());
	sigCryptoConfig.setProp(merlinProp);

	CryptoConfig encCryptoConfig = new CryptoConfig();
	encCryptoConfig.setProvider(Merlin.class.getName());
	encCryptoConfig.setProp(merlinProp);

	RampartConfig rampartConfig = new RampartConfig();
	rampartConfig.setEncryptionUser("wso2carbon");
	rampartConfig.setUserCertAlias("wso2carbon");
	rampartConfig.setPwCbClass(PWCBHandler.class.getName());
	rampartConfig.setSigCryptoConfig(sigCryptoConfig);
	rampartConfig.setEncrCryptoConfig(encCryptoConfig);

	policy.addAssertion(rampartConfig);

	Options options = client.getOptions();
	options.setProperty(RampartMessageData.KEY_RAMPART_POLICY, policy);
	options.setUserName(userName);
	options.setPassword(password);

	client.engageModule("rampart");
}
 
开发者ID:wso2,项目名称:carbon-registry,代码行数:37,代码来源:WSRegistryServiceClient.java

示例5: getServiceClient

import org.apache.axis2.client.Options; //导入方法依赖的package包/类
private ServiceClient getServiceClient(String userName, String password,
                                       String endpointReference, String operation,
                                       String securityPolicyPath, String userCertAlias,
                                       String encryptionUser, String keyStorePath,
                                       String keyStorePassword)
        throws AxisFault, FileNotFoundException, XMLStreamException {
    if (log.isDebugEnabled()) {
        log.debug("Key_Path :" + keyStorePath);
        log.debug("securityPolicyPath :" + securityPolicyPath);
    }

    System.setProperty("javax.net.ssl.trustStore", keyStorePath);
    System.setProperty("javax.net.ssl.trustStorePassword", keyStorePassword);

    if (log.isDebugEnabled()) {
        log.debug("javax.net.ssl.trustStore :" + System.getProperty("javax.net.ssl.trustStore"));
        log.debug("javax.net.ssl.trustStorePassword :" + System.getProperty("javax.net.ssl.trustStorePassword"));
    }
    ServiceClient sc = null;
    try {
        sc = new ServiceClient(ConfigurationContextProvider.getInstance().getConfigurationContext(), null);
        sc.engageModule("rampart");
        sc.engageModule("addressing");
        Options opts = new Options();
        opts.setProperty(
                RampartMessageData.KEY_RAMPART_POLICY,
                loadPolicy(userName, securityPolicyPath, keyStorePath, keyStorePassword,
                           userCertAlias, encryptionUser));
        opts.setTo(new EndpointReference(endpointReference));
        opts.setAction("urn:" + operation);
        //setting user credential
        opts.setUserName(userName);
        opts.setPassword(password);
        sc.setOptions(opts);
    } catch (AxisFault axisFault) {
        log.error("AxisFault : " + axisFault.getMessage());
        throw new AxisFault("Axis fault ", axisFault);
    } finally {
        if (sc != null) {
            sc.cleanupTransport();
        }
    }
    Assert.assertNotNull("ServiceClient object is null" + sc);
    return sc;
}
 
开发者ID:wso2,项目名称:carbon-platform-integration-utils,代码行数:46,代码来源:SecureAxisServiceClient.java


注:本文中的org.apache.axis2.client.Options.setPassword方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。