| 
 | Oracle Fusion Middleware Oracle WebLogic Server API Reference 11g Release 1 (10.3.3) Part Number E13941-03 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectjavax.xml.ws.WebServiceFeature
weblogic.wsee.jaxws.proxy.ClientProxyFeature
public class ClientProxyFeature
 The WebServiceFeature is used to set proxy infomration for per-connection
 proxy feature. It is designed for sevice client.
 It can be used when getting Port or reseting proxy for an existing Port.
 
 Here are two typical usages on the Feature:
 Case 1: Getting port with the ClientProxyFeature
 
 
    Service myService = ... //get the Service
    
    //set proxy info to the ClientProxyFeature
    ClientProxyFeature cpf = new ClientProxyFeature();
    cpf.setProxyHost("localhost");
    cpf.setProxyPort(8888);
    cpf.setProxyUserName("proxyu");
    cpf.setProxyPassword("proxyp");
    
    //get the port with the Feature
    MyPort port = myService.getPort(cpf);
    
    //invoke operations with the port, it will using the proxy setting
    ...
 
 
 Case 2: Reseting port with the ClientProxyFeature
     MyPort port = ... // the port is get with or without ClientProxyFeature
     
     ClientProxyFeature cpf = ... // set proxy info
     cpf.setProxyPort(8888);
     
     //attach the feature to port
     cpf.attachsPort(port);
     
     //invoke operations
     ...
     
     
     //upate the feature with new proxy port
     cpf.setProxyPort(9999);
     
     //reset the port with new proxy info
     cpf.attachsPort(port);
     
     //invoke operations with new proxy
     ...
     
 
 
     ClientProxyFeature cpf = ... // set proxy info
     cpf.setProxyPort(-1);
     
     cpf.attachsPort(port);
  
 Note: This feature could be used in Service Creation, but it need wait 
 JAX-WS 2.2 fully supported.
 
| Field Summary | |
|---|---|
| static String | IDConstant value identifying the ClientProxyFeature | 
| Fields inherited from class javax.xml.ws.WebServiceFeature | 
|---|
| enabled | 
| Constructor Summary | |
|---|---|
| ClientProxyFeature() | |
| Method Summary | |
|---|---|
|  void | attachsPort(Object port)Attachs current ClientProxyFeature to an existing port (override the old proxy info) | 
|  String | getID() | 
|  String | getProxyHost() | 
|  String | getProxyPassword() | 
|  int | getProxyPort() | 
|  String | getProxyUserName() | 
|  Proxy.Type | getType() | 
|  boolean | isUsedInPort() | 
|  void | setProxyHost(String proxyHost) | 
|  void | setProxyPassword(String proxyPassword) | 
|  void | setProxyPort(int proxyPort) | 
|  void | setProxyUserName(String proxyUserName) | 
|  void | setType(Proxy.Type type)Set Proxy Type. | 
| Methods inherited from class javax.xml.ws.WebServiceFeature | 
|---|
| isEnabled | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Field Detail | 
|---|
public static final String ID
| Constructor Detail | 
|---|
public ClientProxyFeature()
| Method Detail | 
|---|
public String getProxyHost()
public void setProxyHost(String proxyHost)
public String getProxyPassword()
public void setProxyPassword(String proxyPassword)
public int getProxyPort()
public void setProxyPort(int proxyPort)
public String getProxyUserName()
public void setProxyUserName(String proxyUserName)
public Proxy.Type getType()
public void setType(Proxy.Type type)
type - public String getID()
getID in class javax.xml.ws.WebServiceFeaturepublic boolean isUsedInPort()
public void attachsPort(Object port)
port - | 
 | Copyright 1996, 2010, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Oracle Fusion Middleware Oracle WebLogic Server 10.3.3 API Reference 11g Release 1 (10.3.3) Part Number E13941-03 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||