Codota Logo
EndpointImpl.getAddress
Code IndexAdd Codota to your IDE (free)

How to use
getAddress
method
in
org.apache.cxf.jaxws.EndpointImpl

Best Java code snippets using org.apache.cxf.jaxws.EndpointImpl.getAddress (Showing top 4 results out of 315)

  • Common ways to obtain EndpointImpl
private void myMethod () {
EndpointImpl e =
  • Codota IconObject implementor;(EndpointImpl) Endpoint.create(implementor)
  • Smart code suggestions by Codota
}
origin: org.apache.cxf/cxf-rt-frontend-jaxws

public void publish() {
  publish(getAddress());
}
origin: apache/cxf

public void publish() {
  publish(getAddress());
}
origin: Talend/tesb-rt-se

private void doHandleSoapMessage(SoapMessage message) throws Fault {
  final Object callbackEndpoint = message.getContextualProperty(
      RequestCallbackFeature.CALLBACK_ENDPOINT_PROPERTY_NAME);
  if (callbackEndpoint != null) {
    final String callbackEndpointAddress;
    if (callbackEndpoint instanceof String) {
      callbackEndpointAddress = (String) callbackEndpoint;
    } else if (callbackEndpoint instanceof EndpointImpl) {
      callbackEndpointAddress = ((EndpointImpl) callbackEndpoint).getAddress();
    } else {
      throw new IllegalArgumentException("Unsupported type of endpoint. ");
    }
    doHandleRequestSoapMessage(message, callbackEndpointAddress);
    return;
  }
  final CallContext ctx = (CallContext) message.getContextualProperty(
      RequestCallbackFeature.CALLCONTEXT_PROPERTY_NAME);
  if (ctx != null) {
    doHandleCallbackSoapMessage(message, ctx);
    return;
  }
}
origin: Talend/tesb-rt-se

  @Override
  public void afterPropertiesSet() throws Exception {
    final JmsUriConfigurator cfg = JmsUriConfigurator.create(endpoint);
    if (cfg == null) {
      return;
    }
    final EndpointImpl ei = (EndpointImpl) endpoint;
    CallContext.setupEndpoint(ei);
    cfg.setPresetJmsAddress(ei.getAddress());
    ei.setAddress(cfg.createJmsAddress());
    if (publishEndpoint) {
      ei.publish();
    }
  }
}
org.apache.cxf.jaxwsEndpointImplgetAddress

Popular methods of EndpointImpl

  • publish
  • <init>
  • setWsdlLocation
  • setServiceName
  • getInInterceptors
  • getServer
  • getFeatures
  • getOutInterceptors
  • stop
  • getProperties
  • setAddress
  • setEndpointName
  • setAddress,
  • setEndpointName,
  • getOutFaultInterceptors,
  • getBinding,
  • getService,
  • doPublish,
  • getServerFactory,
  • setFeatures,
  • setImplementorClass

Popular in Java

  • Making http post requests using okhttp
  • onCreateOptionsMenu (Activity)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • getApplicationContext (Context)
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • URI (java.net)
    Represents a Uniform Resource Identifier (URI) reference. Aside from some minor deviations noted bel
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registery of org.quartz
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now