Conga Contracts Conga Contracts for API Developers (Deprecated) Conga Contracts for SOAP API Developers Getting Started as a Developer for SOAP API Authentication Current: Proxy Service PDF Download PDF Download page Proxy Service. Current page All pages Proxy Service It is possible to use the API through a proxy; add this code to the session verification: public static void proxyConfigurePort(Object port) { org.apache.cxf.endpoint.Client client = ClientProxy.getClient(port); HTTPConduit http = (HTTPConduit) client.getConduit(); http.getClient().setProxyServer("proxy.com"); http.getClient().setProxyServerPort(8080); http.getProxyAuthorization().setUserName("username"); http.getProxyAuthorization().setPassword("password"); } CODE And this must called with before every instance where the session port is called: proxyConfigurePort(sessionPort); CODE ×