jadex.webservice.examples.ws.geoip.gen.GeoIPServiceSoap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-applications-webservice Show documentation
Show all versions of jadex-applications-webservice Show documentation
The Jadex web service applications package contains several example applications, benchmarks and testcases using web service integration.
package jadex.webservice.examples.ws.geoip.gen;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.ResponseWrapper;
/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.1.6 in JDK 6
* Generated source version: 2.1
*
*/
@WebService(name = "GeoIPServiceSoap", targetNamespace = "http://www.webservicex.net/")
@XmlSeeAlso({
ObjectFactory.class
})
public interface GeoIPServiceSoap {
/**
* GeoIPService - GetGeoIP enables you to easily look up countries by IP addresses
*
* @param ipAddress
* @return
* returns jadex.webservice.examples.ws.geoip.gen.GeoIP
*/
@WebMethod(operationName = "GetGeoIP", action = "http://www.webservicex.net/GetGeoIP")
@WebResult(name = "GetGeoIPResult", targetNamespace = "http://www.webservicex.net/")
@RequestWrapper(localName = "GetGeoIP", targetNamespace = "http://www.webservicex.net/", className = "jadex.webservice.examples.ws.geoip.gen.GetGeoIP")
@ResponseWrapper(localName = "GetGeoIPResponse", targetNamespace = "http://www.webservicex.net/", className = "jadex.webservice.examples.ws.geoip.gen.GetGeoIPResponse")
public GeoIP getGeoIP(
@WebParam(name = "IPAddress", targetNamespace = "http://www.webservicex.net/")
String ipAddress);
/**
* GeoIPService - GetGeoIPContext enables you to easily look up countries by Context
*
* @return
* returns jadex.webservice.examples.ws.geoip.gen.GeoIP
*/
@WebMethod(operationName = "GetGeoIPContext", action = "http://www.webservicex.net/GetGeoIPContext")
@WebResult(name = "GetGeoIPContextResult", targetNamespace = "http://www.webservicex.net/")
@RequestWrapper(localName = "GetGeoIPContext", targetNamespace = "http://www.webservicex.net/", className = "jadex.webservice.examples.ws.geoip.gen.GetGeoIPContext")
@ResponseWrapper(localName = "GetGeoIPContextResponse", targetNamespace = "http://www.webservicex.net/", className = "jadex.webservice.examples.ws.geoip.gen.GetGeoIPContextResponse")
public GeoIP getGeoIPContext();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy