/*

 * Copyright 2004,2005 The Apache Software Foundation.

 *

 * Licensed under the Apache License, Version 2.0 (the "License");

 * you may not use this file except in compliance with the License.

 * You may obtain a copy of the License at

 *

 *      http://www.apache.org/licenses/LICENSE-2.0

 *

 * Unless required by applicable law or agreed to in writing, software

 * distributed under the License is distributed on an "AS IS" BASIS,

 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

 * See the License for the specific language governing permissions and

 * limitations under the License.

 */




#include <stdio.h>

#include <axiom.h>

#include <axis2_util.h>

#include <axiom_soap.h>

#include <axis2_client.h>



axiom_node_t *

build_om_request(const axis2_env_t *env);



axis2_char_t *

process_om_response(const axis2_env_t *env,

        axiom_node_t *node);



int main(int argcchar** argv)

{

    const axis2_env_t *env = NULL;

    const axis2_char_t *address = NULL;

    axis2_endpoint_ref_tendpoint_ref = NULL;

    axis2_options_t *options = NULL;

    const axis2_char_t *client_home = NULL;

    axis2_svc_client_tsvc_client = NULL;

    axiom_node_t *payload = NULL;

    axiom_node_t *ret_node = NULL;



    env = axis2_env_create_all("hello_client.log"AXIS2_LOG_LEVEL_TRACE);



    options = axis2_options_create(env);



    address = "http://localhost:9090/axis2/services/hello";

    if (argc > 1)

        address = argv[1];

    if (AXIS2_STRCMP(address"-h") == 0)

    {

        printf("Usage : %s [endpoint_url]\n"argv[0]);

        printf("use -h for help\n");

        return 0;

    }

    printf("Using endpoint : %s\n"address);

    endpoint_ref = axis2_endpoint_ref_create(envaddress);

    AXIS2_OPTIONS_SET_TO(optionsenvendpoint_ref);



    client_home = AXIS2_GETENV("AXIS2C_HOME");

    if (!client_home && !strcmp(client_home""))

        client_home = "../..";



    svc_client = axis2_svc_client_create(envclient_home);

    if (!svc_client)

    {

        printf("Error creating service client\n");

        AXIS2_LOG_ERROR(env->logAXIS2_LOG_SI"Stub invoke FAILED: Error code:"

                " %d :: %s"env->error->error_number,

                AXIS2_ERROR_GET_MESSAGE(env->error));

        return -1;

    }



    AXIS2_SVC_CLIENT_SET_OPTIONS(svc_clientenvoptions);



    payload = build_om_request(env);



    ret_node = AXIS2_SVC_CLIENT_SEND_RECEIVE(svc_clientenvpayload);



    if (ret_node)

    {

        axis2_char_t *greeting = process_om_response(envret_node);

        if (greeting)

            printf("\nReceived greeting: \"%s\" from service\n"greeting);



        AXIOM_NODE_FREE_TREE(ret_nodeenv);

        ret_node = NULL;

    }

    else

    {

        AXIS2_LOG_ERROR(env->logAXIS2_LOG_SI"Stub invoke FAILED: Error code:"

                " %d :: %s"env->error->error_number,

                AXIS2_ERROR_GET_MESSAGE(env->error));

        printf("hello client invoke FAILED!\n");

    }



    if (payload)

    {

        AXIOM_NODE_FREE_TREE(payloadenv);

        payload = NULL;

    }



    if (svc_client)

    {

        AXIS2_SVC_CLIENT_FREE(svc_clientenv);

        svc_client = NULL;

    }



    if (env)

    {

        axis2_env_free((axis2_env_t *) env);

        env = NULL;

    }



    return 0;

}



axiom_node_t *

build_om_request(const axis2_env_t *env)

{

    axiom_node_tgreet_om_node = NULL;

    axiom_element_t * greet_om_ele = NULL;



    greet_om_ele = axiom_element_create(envNULL"greet"NULL, &greet_om_node);

    AXIOM_ELEMENT_SET_TEXT(greet_om_eleenv"Hello Server!"greet_om_node);



    return greet_om_node;

}



axis2_char_t *

process_om_response(const axis2_env_t *env,

        axiom_node_t *node)

{

    axiom_node_t *service_greeting_node = NULL;

    axiom_node_t *return_node = NULL;



    if (node)

    {

        service_greeting_node = AXIOM_NODE_GET_FIRST_CHILD(nodeenv);

        if (service_greeting_node &&

                AXIOM_NODE_GET_NODE_TYPE(service_greeting_nodeenv) == AXIOM_TEXT)

        {

            axiom_text_t *greeting = (axiom_text_t *)AXIOM_NODE_GET_DATA_ELEMENT(service_greeting_nodeenv);

            if (greeting && AXIOM_TEXT_GET_VALUE(greeting , env))

            {

                return AXIOM_TEXT_GET_VALUE(greetingenv);

            }

        }

    }

    return NULL;

}