You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.2 KiB
70 lines
2.2 KiB
|
|
package com.eco.plugin.xx.zgrsauth.webservice; |
|
|
|
import com.eco.plugin.xx.zgrsauth.config.PluginSimpleConfig; |
|
import com.eco.plugin.xx.zgrsauth.utils.FRUtils; |
|
|
|
import javax.xml.namespace.QName; |
|
import javax.xml.ws.Service; |
|
import javax.xml.ws.WebEndpoint; |
|
import javax.xml.ws.WebServiceClient; |
|
import javax.xml.ws.WebServiceException; |
|
import java.net.MalformedURLException; |
|
import java.net.URL; |
|
|
|
/** |
|
* This class was generated by the JAX-WS RI. |
|
* JAX-WS RI 2.2.4-b01 |
|
* Generated source version: 2.2 |
|
* |
|
*/ |
|
@WebServiceClient(name = "AuthServerServiceImplService", targetNamespace = "http://xx/") |
|
|
|
public class AuthServerServiceImplService |
|
extends Service |
|
{ |
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
private final static URL AUTHSERVERSERVICEIMPLSERVICE_WSDL_LOCATION; |
|
private final static WebServiceException AUTHSERVERSERVICEIMPLSERVICE_EXCEPTION; |
|
private final static QName AUTHSERVERSERVICEIMPLSERVICE_QNAME = new QName("http://xx/", "AuthServerServiceImplService"); |
|
|
|
static { |
|
URL url = null; |
|
WebServiceException e = null; |
|
try { |
|
FRUtils.FRLogInfo("------AuthServerServiceImplService----------:" + 1); |
|
url = new URL(PluginSimpleConfig.getInstance().getUrl()); |
|
FRUtils.FRLogInfo("------AuthServerServiceImplService----------:" + url); |
|
} catch (MalformedURLException ex) { |
|
e = new WebServiceException(ex); |
|
} |
|
AUTHSERVERSERVICEIMPLSERVICE_WSDL_LOCATION = url; |
|
AUTHSERVERSERVICEIMPLSERVICE_EXCEPTION = e; |
|
} |
|
|
|
public AuthServerServiceImplService() { |
|
super(__getWsdlLocation(), AUTHSERVERSERVICEIMPLSERVICE_QNAME); |
|
} |
|
|
|
|
|
/** |
|
* |
|
* @return |
|
* returns IAuthServerService |
|
*/ |
|
@WebEndpoint(name = "AuthServerServiceImplPort") |
|
public IAuthServerService getAuthServerServiceImplPort() { |
|
return super.getPort(new QName("http://xx/", "AuthServerServiceImplPort"), IAuthServerService.class); |
|
} |
|
|
|
|
|
private static URL __getWsdlLocation() { |
|
if (AUTHSERVERSERVICEIMPLSERVICE_EXCEPTION!= null) { |
|
throw AUTHSERVERSERVICEIMPLSERVICE_EXCEPTION; |
|
} |
|
return AUTHSERVERSERVICEIMPLSERVICE_WSDL_LOCATION; |
|
} |
|
|
|
}
|
|
|