javax.xml.ws.spi.Provider.createAndPublishEndpoint()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(9.5k)|赞(0)|评价(0)|浏览(137)

本文整理了Java中javax.xml.ws.spi.Provider.createAndPublishEndpoint()方法的一些代码示例,展示了Provider.createAndPublishEndpoint()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Provider.createAndPublishEndpoint()方法的具体详情如下:
包路径:javax.xml.ws.spi.Provider
类名称:Provider
方法名:createAndPublishEndpoint

Provider.createAndPublishEndpoint介绍

[英]Creates and publishes an endpoint object with the specified address and implementation object.
[中]创建并发布具有指定地址和实现对象的端点对象。

代码示例

代码示例来源:origin: org.apache.openejb/openejb-client

@Override
public Endpoint createAndPublishEndpoint(final String address, final Object implementor) {
  return delegate.createAndPublishEndpoint(address, implementor);
}

代码示例来源:origin: org.apache.geronimo.ext.openejb/openejb-core

public Endpoint createAndPublishEndpoint(String address, Object implementor) {
  return delegate.createAndPublishEndpoint(address, implementor);
}

代码示例来源:origin: org.apache.openejb/openejb-core

public Endpoint createAndPublishEndpoint(final String address, final Object implementor) {
  return delegate.createAndPublishEndpoint(address, implementor);
}

代码示例来源:origin: org.apache.geronimo.ext.openejb/openejb-client

public Endpoint createAndPublishEndpoint(String address, Object implementor) {
  return delegate.createAndPublishEndpoint(address, implementor);
}

代码示例来源:origin: org.apache.tomee/openejb-core

public Endpoint createAndPublishEndpoint(final String address, final Object implementor) {
  return delegate.createAndPublishEndpoint(address, implementor);
}

代码示例来源:origin: org.apache.openejb/javaee-api

public static Endpoint publish(String address, Object implementor) {
  return Provider.provider().createAndPublishEndpoint(address, implementor);
}
/**

代码示例来源:origin: org.apache.openejb/javaee-api

public abstract void publish(String s);

代码示例来源:origin: org.apache.axis2/axis2-jaxws-api

public abstract void publish(Object obj);

代码示例来源:origin: javax/javaee-endorsed-api

/**
 * Creates and publishes an endpoint for the specified implementor
 * object at the given address.
 * <p>
 * The necessary server infrastructure will be created and
 * configured by the JAX-WS implementation using some default configuration.
 *
 * In order to get more control over the server configuration, please
 * use the {@link javax.xml.ws.Endpoint#create(String,Object)} and
 * {@link javax.xml.ws.Endpoint#publish(Object)} methods instead.
 *
 * @param address A URI specifying the address and transport/protocol
 *        to use. A http: URI MUST result in the SOAP 1.1/HTTP
 *        binding being used. Implementations may support other
 *        URI schemes.
 * @param implementor The endpoint implementor.
 *
 * @return The newly created endpoint.
 *
 * @throws java.lang.SecurityException 
 *          If a <code>java.lang.SecurityManger</code>
 *          is being used and the application doesn't have the
 *          <code>WebServicePermission("publishEndpoint")</code> permission.
 *
 **/
public static Endpoint publish(String address, Object implementor) {
  return Provider.provider().createAndPublishEndpoint(address, implementor);
}

代码示例来源:origin: org.glassfish.metro/webservices-api-osgi

/**
 * Creates and publishes an endpoint for the specified implementor
 * object at the given address.
 * <p>
 * The necessary server infrastructure will be created and
 * configured by the JAX-WS implementation using some default configuration.
 *
 * In order to get more control over the server configuration, please
 * use the {@link javax.xml.ws.Endpoint#create(String,Object)} and
 * {@link javax.xml.ws.Endpoint#publish(Object)} methods instead.
 *
 * @param address A URI specifying the address and transport/protocol
 *        to use. A http: URI MUST result in the SOAP 1.1/HTTP
 *        binding being used. Implementations may support other
 *        URI schemes.
 * @param implementor The endpoint implementor.
 *
 * @return The newly created endpoint.
 *
 * @throws java.lang.SecurityException
 *          If a {@code java.lang.SecurityManger}
 *          is being used and the application doesn't have the
 *          {@code WebServicePermission("publishEndpoint")} permission.
 *
 **/
public static Endpoint publish(String address, Object implementor) {
  return Provider.provider().createAndPublishEndpoint(address, implementor);
}

代码示例来源:origin: org.glassfish.metro/webservices-api

/**
 * Creates and publishes an endpoint for the specified implementor
 * object at the given address.
 * <p>
 * The necessary server infrastructure will be created and
 * configured by the JAX-WS implementation using some default configuration.
 *
 * In order to get more control over the server configuration, please
 * use the {@link javax.xml.ws.Endpoint#create(String,Object)} and
 * {@link javax.xml.ws.Endpoint#publish(Object)} methods instead.
 *
 * @param address A URI specifying the address and transport/protocol
 *        to use. A http: URI MUST result in the SOAP 1.1/HTTP
 *        binding being used. Implementations may support other
 *        URI schemes.
 * @param implementor The endpoint implementor.
 *
 * @return The newly created endpoint.
 *
 * @throws java.lang.SecurityException
 *          If a {@code java.lang.SecurityManger}
 *          is being used and the application doesn't have the
 *          {@code WebServicePermission("publishEndpoint")} permission.
 *
 **/
public static Endpoint publish(String address, Object implementor) {
  return Provider.provider().createAndPublishEndpoint(address, implementor);
}

代码示例来源:origin: org.jboss.spec.javax.xml.ws/jboss-jaxws-api_2.2_spec

/**
 * Creates and publishes an endpoint for the specified implementor
 * object at the given address.
 * <p>
 * The necessary server infrastructure will be created and
 * configured by the JAX-WS implementation using some default configuration.
 *
 * In order to get more control over the server configuration, please
 * use the {@link javax.xml.ws.Endpoint#create(String,Object)} and
 * {@link javax.xml.ws.Endpoint#publish(Object)} methods instead.
 *
 * @param address A URI specifying the address and transport/protocol
 *        to use. A http: URI MUST result in the SOAP 1.1/HTTP
 *        binding being used. Implementations may support other
 *        URI schemes.
 * @param implementor The endpoint implementor.
 *
 * @return The newly created endpoint.
 *
 * @throws java.lang.SecurityException 
 *          If a <code>java.lang.SecurityManger</code>
 *          is being used and the application doesn't have the
 *          <code>WebServicePermission("publishEndpoint")</code> permission.
 *
 **/
public static Endpoint publish(String address, Object implementor) {
  return Provider.provider().createAndPublishEndpoint(address, implementor);
}

代码示例来源:origin: javax.xml.ws/com.springsource.javax.xml.ws

/**
 * Creates and publishes an endpoint for the specified implementor
 * object at the given address.
 * <p>
 * The necessary server infrastructure will be created and
 * configured by the JAX-WS implementation using some default configuration.
 *
 * In order to get more control over the server configuration, please
 * use the {@link javax.xml.ws.Endpoint#create(String,Object)} and
 * {@link javax.xml.ws.Endpoint#publish(Object)} methods instead.
 *
 * @param address A URI specifying the address and transport/protocol
 *        to use. A http: URI MUST result in the SOAP 1.1/HTTP
 *        binding being used. Implementations may support other
 *        URI schemes.
 * @param implementor The endpoint implementor.
 *
 * @return The newly created endpoint.
 *
 * @throws java.lang.SecurityException 
 *          If a <code>java.lang.SecurityManger</code>
 *          is being used and the application doesn't have the
 *          <code>WebServicePermission("publishEndpoint")</code> permission.
 *
 **/
public static Endpoint publish(String address, Object implementor) {
  return Provider.provider().createAndPublishEndpoint(address, implementor);
}

代码示例来源:origin: jakarta.xml.ws/jakarta.xml.ws-api

/**
 * Creates and publishes an endpoint for the specified implementor
 * object at the given address.
 * <p>
 * The necessary server infrastructure will be created and
 * configured by the JAX-WS implementation using some default configuration.
 *
 * In order to get more control over the server configuration, please
 * use the {@link javax.xml.ws.Endpoint#create(String,Object)} and
 * {@link javax.xml.ws.Endpoint#publish(Object)} methods instead.
 *
 * @param address A URI specifying the address and transport/protocol
 *        to use. A http: URI MUST result in the SOAP 1.1/HTTP
 *        binding being used. Implementations may support other
 *        URI schemes.
 * @param implementor The endpoint implementor.
 *
 * @return The newly created endpoint.
 *
 * @throws java.lang.SecurityException
 *          If a {@code java.lang.SecurityManger}
 *          is being used and the application doesn't have the
 *          {@code WebServicePermission("publishEndpoint")} permission.
 *
 **/
public static Endpoint publish(String address, Object implementor) {
  return Provider.provider().createAndPublishEndpoint(address, implementor);
}

代码示例来源:origin: jboss/jboss-javaee-specs

/**
 * Creates and publishes an endpoint for the specified implementor
 * object at the given address.
 * <p>
 * The necessary server infrastructure will be created and
 * configured by the JAX-WS implementation using some default configuration.
 *
 * In order to get more control over the server configuration, please
 * use the {@link javax.xml.ws.Endpoint#create(String,Object)} and
 * {@link javax.xml.ws.Endpoint#publish(Object)} methods instead.
 *
 * @param address A URI specifying the address and transport/protocol
 *        to use. A http: URI MUST result in the SOAP 1.1/HTTP
 *        binding being used. Implementations may support other
 *        URI schemes.
 * @param implementor The endpoint implementor.
 *
 * @return The newly created endpoint.
 *
 * @throws java.lang.SecurityException
 *          If a {@code java.lang.SecurityManger}
 *          is being used and the application doesn't have the
 *          {@code WebServicePermission("publishEndpoint")} permission.
 *
 **/
public static Endpoint publish(String address, Object implementor) {
  return Provider.provider().createAndPublishEndpoint(address, implementor);
}

代码示例来源:origin: org.jboss.spec.javax.xml.ws/jboss-jaxws-api_2.2_spec

return Provider.provider().createAndPublishEndpoint(address, implementor, features);

代码示例来源:origin: jakarta.xml.ws/jakarta.xml.ws-api

return Provider.provider().createAndPublishEndpoint(address, implementor, features);

代码示例来源:origin: javax/javaee-endorsed-api

return Provider.provider().createAndPublishEndpoint(address, implementor, features);

代码示例来源:origin: org.glassfish.metro/webservices-api-osgi

return Provider.provider().createAndPublishEndpoint(address, implementor, features);

代码示例来源:origin: org.glassfish.metro/webservices-api

return Provider.provider().createAndPublishEndpoint(address, implementor, features);

相关文章