1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- package com.hgwebservice.config;
- import org.springframework.beans.factory.annotation.Configurable;
- import javax.xml.namespace.QName;
- import javax.xml.ws.*;
- import java.net.MalformedURLException;
- import java.net.URL;
- /**
- * This class was generated by the JAX-WS RI.
- * JAX-WS RI 2.2.9-b130926.1035
- * Generated source version: 2.2
- *
- */
- @Configurable
- @WebServiceClient(name = "BSXmlWsEntryClassService", targetNamespace = "http://ws.access.hai/", wsdlLocation = "http://192.168.200.60:9528/hai/WebServiceEntry?wsdl")
- public class BSXmlWsEntryClassService extends Service
- {
- private final static URL BSXMLWSENTRYCLASSSERVICE_WSDL_LOCATION;
- private final static WebServiceException BSXMLWSENTRYCLASSSERVICE_EXCEPTION;
- private final static QName BSXMLWSENTRYCLASSSERVICE_QNAME = new QName("http://ws.access.hai/", "BSXmlWsEntryClassService");
- static {
- URL url = null;
- WebServiceException e = null;
- try {
- url = new URL("http://192.168.200.60:9528/hai/WebServiceEntry?wsdl");
- } catch (MalformedURLException ex) {
- e = new WebServiceException(ex);
- }
- BSXMLWSENTRYCLASSSERVICE_WSDL_LOCATION = url;
- BSXMLWSENTRYCLASSSERVICE_EXCEPTION = e;
- }
- public BSXmlWsEntryClassService() {
- super(__getWsdlLocation(), BSXMLWSENTRYCLASSSERVICE_QNAME);
- }
- public BSXmlWsEntryClassService(WebServiceFeature... features) {
- super(__getWsdlLocation(), BSXMLWSENTRYCLASSSERVICE_QNAME, features);
- }
- public BSXmlWsEntryClassService(URL wsdlLocation) {
- super(wsdlLocation, BSXMLWSENTRYCLASSSERVICE_QNAME);
- }
- public BSXmlWsEntryClassService(URL wsdlLocation, WebServiceFeature... features) {
- super(wsdlLocation, BSXMLWSENTRYCLASSSERVICE_QNAME, features);
- }
- public BSXmlWsEntryClassService(URL wsdlLocation, QName serviceName) {
- super(wsdlLocation, serviceName);
- }
- public BSXmlWsEntryClassService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
- super(wsdlLocation, serviceName, features);
- }
- /**
- *
- * @return
- * returns BSXmlWsEntryClass
- */
- @WebEndpoint(name = "BSXmlWsEntryClassPort")
- public BSXmlWsEntryClass getBSXmlWsEntryClassPort() {
- return super.getPort(new QName("http://ws.access.hai/", "BSXmlWsEntryClassPort"), BSXmlWsEntryClass.class);
- }
- /**
- *
- * @param features
- * A list of {@link WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
- * @return
- * returns BSXmlWsEntryClass
- */
- @WebEndpoint(name = "BSXmlWsEntryClassPort")
- public BSXmlWsEntryClass getBSXmlWsEntryClassPort(WebServiceFeature... features) {
- return super.getPort(new QName("http://ws.access.hai/", "BSXmlWsEntryClassPort"), BSXmlWsEntryClass.class, features);
- }
- private static URL __getWsdlLocation() {
- if (BSXMLWSENTRYCLASSSERVICE_EXCEPTION!= null) {
- throw BSXMLWSENTRYCLASSSERVICE_EXCEPTION;
- }
- return BSXMLWSENTRYCLASSSERVICE_WSDL_LOCATION;
- }
- }
|