Package uk.ac.soton.itinnovation.grid.client.proxy

Examples of uk.ac.soton.itinnovation.grid.client.proxy.ProxyFactory


     * @param validator a CertificateTrustValidator
     *return service proxy
     */
    private static RemotePesService getServiceProxy(String pesSvcEndpoint, String clientKeystorePath, String password, CertificateTrustValidator validator) {

        ProxyFactory proxyFactory;

        EndpointReferenceType pesEpr;
        RemotePesService pesProxy;


        try {
            proxyFactory = createProxyFactory(clientKeystorePath, password, validator);
            pesEpr = ConversationID.getEPR(pesSvcEndpoint);
            pesProxy = proxyFactory.createProxy(pesEpr, RemotePesService.class);

        } catch (Exception ex) {
            throw new RuntimeException("Error ", ex);
        }

View Full Code Here


     * @param validator a CertificateTrustValidator
     *return resource proxy
     */
    private static PesResource getResourceProxy(EndpointReferenceType resourceEPR, String clientKeystorePath, String password, CertificateTrustValidator validator) {

        ProxyFactory proxyFactory;

        EndpointReferenceType pesEpr;
        PesResource pesResourceProxy;


        try {
            proxyFactory = createProxyFactory(clientKeystorePath, password, validator);
            pesResourceProxy = proxyFactory.createProxy(resourceEPR, PesResource.class);

        } catch (Exception ex) {
            throw new RuntimeException("Error ", ex);
        }

View Full Code Here

        AxisTransport transport;
        IdentityProvider idp;
        WSDLCache cache;
        SAMLTokenCache tokenCache;
        GridClientPluginManager pluginManager;
        ProxyFactory proxyFactory;
        ProxyFactory rawProxyFactory;
        EndpointReferenceType pesEpr;
        RemotePesService pesProxy;
        CertificateTrustValidator manager;

        try {
View Full Code Here

TOP

Related Classes of uk.ac.soton.itinnovation.grid.client.proxy.ProxyFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.