Search in sources :

Example 1 with Weather

use of sample.pojo.data.Weather in project axis-axis2-java-core by apache.

the class WeatherRPCClient method main.

public static void main(String[] args1) throws AxisFault {
    RPCServiceClient serviceClient = new RPCServiceClient();
    Options options = serviceClient.getOptions();
    EndpointReference targetEPR = new EndpointReference("http://localhost:8080/axis2/services/WeatherService");
    options.setTo(targetEPR);
    // Setting the weather
    QName opSetWeather = new QName("http://service.pojo.sample", "setWeather");
    Weather w = new Weather();
    w.setTemperature((float) 39.3);
    w.setForecast("Cloudy with showers");
    w.setRain(true);
    w.setHowMuchRain((float) 4.5);
    Object[] opSetWeatherArgs = new Object[] { w };
    serviceClient.invokeRobust(opSetWeather, opSetWeatherArgs);
    // Getting the weather
    QName opGetWeather = new QName("http://service.pojo.sample", "getWeather");
    Object[] opGetWeatherArgs = new Object[] {};
    Class[] returnTypes = new Class[] { Weather.class };
    Object[] response = serviceClient.invokeBlocking(opGetWeather, opGetWeatherArgs, returnTypes);
    Weather result = (Weather) response[0];
    if (result == null) {
        System.out.println("Weather didn't initialize!");
        return;
    }
    // Displaying the result
    System.out.println("Temperature               : " + result.getTemperature());
    System.out.println("Forecast                  : " + result.getForecast());
    System.out.println("Rain                      : " + result.getRain());
    System.out.println("How much rain (in inches) : " + result.getHowMuchRain());
}
Also used : Weather(sample.pojo.data.Weather) Options(org.apache.axis2.client.Options) QName(javax.xml.namespace.QName) RPCServiceClient(org.apache.axis2.rpc.client.RPCServiceClient) EndpointReference(org.apache.axis2.addressing.EndpointReference)

Aggregations

QName (javax.xml.namespace.QName)1 EndpointReference (org.apache.axis2.addressing.EndpointReference)1 Options (org.apache.axis2.client.Options)1 RPCServiceClient (org.apache.axis2.rpc.client.RPCServiceClient)1 Weather (sample.pojo.data.Weather)1