1
2 package com.ontotext.ordi.wsmo4rdf.remote.client.src;
3
4 import java.net.MalformedURLException;
5 import java.net.URL;
6 import javax.xml.namespace.QName;
7 import javax.xml.ws.Service;
8 import javax.xml.ws.WebEndpoint;
9 import javax.xml.ws.WebServiceClient;
10 import com.ontotext.ordi.wsmo4rdf.remote.client.src.WsmoSourceService;
11
12 /**
13 * This class was generated by the CXF 2.0.2-incubator
14 * Wed Mar 19 14:55:14 EET 2008
15 * Generated source version: 2.0.2-incubator
16 *
17 */
18
19 @WebServiceClient(name = "WsmoSourceService", targetNamespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", wsdlLocation = "http://localhost:9000/wsmo4rdf-src?wsdl")
20 public class WsmoSourceService_Service extends Service {
21
22 private final static URL WSDL_LOCATION;
23 private final static QName SERVICE = new QName("http://server.remote.wsmo4rdf.ordi.ontotext.com/", "WsmoSourceService");
24 private final static QName WsmoSourceServiceImplPort = new QName("http://server.remote.wsmo4rdf.ordi.ontotext.com/", "WsmoSourceServiceImplPort");
25 static {
26 URL url = null;
27 try {
28 url = new URL("http://localhost:9000/wsmo4rdf-src?wsdl");
29 } catch (MalformedURLException e) {
30 System.err.println("Can not initialize the default wsdl from http://localhost:9000/wsmo4rdf-src?wsdl");
31
32 }
33 WSDL_LOCATION = url;
34 }
35
36 public WsmoSourceService_Service(URL wsdlLocation, QName serviceName) {
37 super(wsdlLocation, serviceName);
38 }
39
40 public WsmoSourceService_Service() {
41 super(WSDL_LOCATION, SERVICE);
42 }
43
44 /**
45 *
46 * @return
47 * returns WsmoSourceServiceImplPort
48 */
49 @WebEndpoint(name = "WsmoSourceServiceImplPort")
50 public WsmoSourceService getWsmoSourceServiceImplPort() {
51 return (WsmoSourceService)super.getPort(WsmoSourceServiceImplPort, WsmoSourceService.class);
52 }
53
54 }