You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-user@axis.apache.org by Stadelmann Josef <jo...@axa-winterthur.ch> on 2007/09/18 12:17:56 UTC

echo.exe client has "infer transport" error

I have managed to build AXIS2C from sources on windowss 2000 using MS Visual C++ 2005 Express Edition

I have buildt under C:\dsa5\webservices\axis2\trunk\c\ides\vc\axis2c\deploy the kit and now I intend 
to run my sample clients and get hands on debugging it.

>From a console window I can see 

C:\dsa5\webservices\axis2\trunk\c\ides\vc\axis2c\deploy\bin>axis2_http_server.exe
Started Simple Axis2 HTTP Server ...

 ./../axis2.log show me that aserver thread is started, and using from internet explorer

http://localhost:9090/axis2/services

shows me all the services deployed. Also I can see in the log that addressing and logging is deployed.


Starting the echo.exe client fails!

The echo.log shows me

[Tue Sep 18 11:34:34 2007] [error] c:\dsa5\webservices\axis2\trunk\c\src\core\clientapi\op_client.c(863) [axis2c] Cannot infer transport

(log attached)

I do not get any trabnsport_out_desc !but sorry, I dont know where and how to define a transport out description such a way that


It fail's in op_client.c at line 852 not returning me a valid "transport_out_desc"

        conf_ctx =  axis2_svc_ctx_get_conf_ctx(op_client->svc_ctx, env);
        if (conf_ctx)
        {
            conf =  axis2_conf_ctx_get_conf(conf_ctx, env);
            if (conf)
            {
                transport_out_desc =  axis2_conf_get_transport_out(conf, 
                                          env, transport_enum);
            }
        }

        AXIS2_FREE(env->allocator, transport);
        transport = NULL;

    }
    if(!transport_out_desc)
    {
        AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI, 
            "[axis2c] Cannot infer transport");
        AXIS2_ERROR_SET(env->error, AXIS2_ERROR_CANNOT_INFER_TRANSPORT, 
            AXIS2_FAILURE);
    }
    AXIS2_LOG_DEBUG(env->log, AXIS2_LOG_SI, 
        "End:axis2_op_client_infer_transport");
    return transport_out_desc;
}


conf has the following, and I can not say and like to ask you: when and how gets transport_in and _out set?


Thank you very much for your help.
Josef.Stadelmann
@axa-winterthur.ch

-		conf	0x00628618 {svc_grps=0x00628888 transports_in=0x0062861c transports_out=0x00628630 ...}	axis2_conf *
		svc_grps	0x00628888	axutil_hash_t *
-		transports_in	0x0062861c	axis2_transport_in_desc * [5]
+		[0]	0x0063eb98 {in_flow=0x00000000 fault_in_flow=0x00000000 trans_enum=AXIS2_TRANSPORT_ENUM_HTTP ...}	axis2_transport_in_desc *
+		[1]	0x00000000 {in_flow=??? fault_in_flow=??? trans_enum=??? ...}	axis2_transport_in_desc *
+		[2]	0x00000000 {in_flow=??? fault_in_flow=??? trans_enum=??? ...}	axis2_transport_in_desc *
+		[3]	0x00000000 {in_flow=??? fault_in_flow=??? trans_enum=??? ...}	axis2_transport_in_desc *
+		[4]	0x00000000 {in_flow=??? fault_in_flow=??? trans_enum=??? ...}	axis2_transport_in_desc *
-		transports_out	0x00628630	axis2_transport_out_desc * [5]
+		[0]	0x00000000 {out_flow=??? fault_out_flow=??? trans_enum=??? ...}	axis2_transport_out_desc *
+		[1]	0x00000000 {out_flow=??? fault_out_flow=??? trans_enum=??? ...}	axis2_transport_out_desc *
+		[2]	0x00000000 {out_flow=??? fault_out_flow=??? trans_enum=??? ...}	axis2_transport_out_desc *
+		[3]	0x00000000 {out_flow=??? fault_out_flow=??? trans_enum=??? ...}	axis2_transport_out_desc *
+		[4]	0x00000000 {out_flow=??? fault_out_flow=??? trans_enum=??? ...}	axis2_transport_out_desc *
		engaged_modules	0x00628970	axutil_array_list *
		all_modules	0x0062aa00	axutil_hash_t *
		name_to_version_map	0x0062aae8	axutil_hash_t *
		out_phases	0x00000000	axutil_array_list *
		in_fault_phases	0x00000000	axutil_array_list *
		out_fault_phases	0x00000000	axutil_array_list *
		in_phases_upto_and_including_post_dispatch	0x00628b00	axutil_array_list *
+		phases_info	0x00628030 {in_phases=0x0063ea38 out_phases=0x0063f658 in_faultphases=0x0063f8a8 ...}	axis2_phases_info *
		all_svcs	0x0062a578	axutil_hash_t *
		all_init_svcs	0x0062a660	axutil_hash_t *
		msg_recvs	0x0062a748	axutil_hash_t *
		faulty_svcs	0x0062a830	axutil_hash_t *
		faulty_modules	0x0062a918	axutil_hash_t *
+		axis2_repo	0x0068e900 "C:\dsa5\webservices\axis2\trunk\c\ides\vc\axis2c\deploy"	char *
+		dep_engine	0x00623a70 {curr_file=0x00000000 arch_reader=0x0063cf48 conf=0x00628618 ...}	axis2_dep_engine *
		handlers	0x00628a38	axutil_array_list *
		enable_mtom	0	int
		enable_security	0	int
		param_container	0x00628520	axutil_param_container *
+		base	0x0062abd0 {param_container=0x0062ac20 children=0x0062ae18 parent=0x00000000 ...}	axis2_desc *
		security_context	0x00000000	void *

Re: AW: echo.exe client has "infer transport" error

Posted by Dinesh Premalal <xy...@gmail.com>.
Hi,
Mark Nüßler <ma...@9elements.com> writes:

> hello josef,
>
> another tool, that can help you with this kind
> of problems maybe is 'filemon' from sysinternals.
>
> i saw, that you are using vs2005,
> maybe it is helpful to you to build the axis2c from
> scratch using 'DEBUG=1' in build\win32\configure.in
>
> when i run a service in vs2005 i start the
> axis2_http-server from the debug-options
>
> command : axis2_http_server.exe
> args : -p 8081
> workingdir : $(AXIS2_C)\bin
>
> if you are using adb to generate, i
> have written a little tool, that
> creates the vs-project-files [2003/2005]
Doesn't anyone like to document these things for future reference :) 

thanks,
Dinesh

-- 
Dinesh Premalal
http://xydinesh.wordpress.com/
GPG ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255 955C

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-user-help@ws.apache.org


Re: AW: echo.exe client has "infer transport" error

Posted by Mark Nüßler <ma...@9elements.com>.
hello josef,

another tool, that can help you with this kind
of problems maybe is 'filemon' from sysinternals.

i saw, that you are using vs2005,
maybe it is helpful to you to build the axis2c from
scratch using 'DEBUG=1' in build\win32\configure.in

when i run a service in vs2005 i start the
axis2_http-server from the debug-options

command : axis2_http_server.exe
args : -p 8081
workingdir : $(AXIS2_C)\bin

if you are using adb to generate, i
have written a little tool, that
creates the vs-project-files [2003/2005]

mfg derMark


Stadelmann Josef schrieb:
> Hi Dinesh
> 
> thank you very much. Debugging was helpfule/timeconsuming/learningful.
> I was down to step through the processing of phases and transports etc.
> Then I detected that axis2_http_sender.dll was unable to load, and that
> was caused due to the absence of libcurl.dll e all in ./lib
> 
> Missing DLL are flagged YELLOW and question marked in Dependency Walker
> 
> The problem is that LoadLib( ... ) does either return a handle to the
> dll just loaded or zero in case of error but does not tell you why a 
> dll does not load. And the rest is how axis e all interpret this error.
> 
> Now my echo.exe is running
> 
> The tool who helps most in detecting the absence of a dll is the
> 
> 	Dependency Walker for Win32 (X86)
> 	Version 2.0 (or greater)
> 	Developed by Steve P. Miller
> 	Copyright by MS Corp. 
> 
> It gives a nice ide about depedencies among dll's
> 
> The I had to restart the server and the client went OK
> 
> Thank you very much again for your help.
> 
> Josef
> 
> 
> -----Ursprüngliche Nachricht-----
> Von: Dinesh Premalal [mailto:premalal@gmail.com]Im Auftrag von Dinesh
> Premalal
> Gesendet: Dienstag, 18. September 2007 17:20
> An: axis-c-user@ws.apache.org
> Betreff: Re: echo.exe client has "infer transport" error
> 
> 
> Hi Josef,
>       Please find my comments inline.
> "Stadelmann Josef" <jo...@axa-winterthur.ch> writes:
>> Starting the echo.exe client fails!
>>
>> The echo.log shows me
>>
>> [Tue Sep 18 11:34:34 2007] [error] c:\dsa5\webservices\axis2\trunk\c\src\core\clientapi\op_client.c(863) [axis2c] Cannot infer transport
>>
>> (log attached)
>>
>> I do not get any trabnsport_out_desc !but sorry, I dont know where and how to define a transport out description such a way that
> I think, client is unable to find repo location to pickup
> axis2.xml. Most of the time can't infer transport error message
> appears when client unable to pickup axis2.xml.  Because when loading
> axis2 engine, it uses axis2.xml to set transport_out_desc.
> 
> 1. Please check whether you set $AXIS2C_HOME or client can pickup
> axis2.xml from "../.." location.
> 
> <snippet location="axis2c/samples/client/echo/echo.c">
>    client_home = AXIS2_GETENV("AXIS2C_HOME");
>    if (!client_home || !strcmp (client_home, ""))
>        client_home = "../..";
> </snippet>
> 
> thanks,
> Dinesh

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-user-help@ws.apache.org


AW: AW: echo.exe client has "infer transport" error

Posted by Stadelmann Josef <jo...@axa-winterthur.ch>.
Thanks Dinesh
Please find my comment below ++>

-----Ursprüngliche Nachricht-----
Von: Dinesh Premalal [mailto:premalal@gmail.com]Im Auftrag von Dinesh
Premalal
Gesendet: Mittwoch, 21. November 2007 05:26
An: axis-c-user@ws.apache.org
Betreff: Re: AW: echo.exe client has "infer transport" error


Hi Josef,
   Please find my comments inline.

"Stadelmann Josef" <jo...@axa-winterthur.ch> writes:

> Now my simple http server is up and running on OpenVMS, in fact it is waiting within it's first accept() 
> for the client to initiate a conversation.
>
> Now, the echo_blocking client fails with the following
> echo_blocking.log

Can you see the deployed services through the browser ?
++> yes, I can see all deployed services through the browser, 
++> however non of the underlined links seams to work are real delivered to the browser to be able to click on it.

>
>
> [Tue Nov 20 15:36:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.clientapi]op_client.c;3(813) Start:axis2_op_client_infer_transport
> [Tue Nov 20 15:36:31 2007] [error] DSA5:[webservices.axis2.trunk.c.src.core.clientapi]op_client.c;3(863) [axis2c] Cannot infer transport
> [Tue Nov 20 15:36:31 2007] [debug]
> DSA5:[webservices.axis2.trunk.c.src.core.clientapi]op_client.c;3(868)
> End:axis2_op_client_infer_transport

This error usually happens when op_client unable to locate the
transport in/out descriptors (as you mentioned in the later in this
mail). According to my knowledge That happens due to several reasons.
++> When and where in code are this descriptors setup when the client starts?
++> I am glad to set a debugging breakpoint in the OpenVMS debugger by using
++> DBG> set module "xyz_modul"
++> DBG> set break  xyz_modul\abc_function
++> DBG> go

and see how this routin behaves when it is used to setup the transport descriptors
++> I am nearly shure there is a problem with the transport descriptor setup in OpenVMS, 
++> so that the infer of transport which after all referes to transport descriptor does not succeed

++> I create now on VS 2005 Express the echo_blocking client and then I will use the debugger to find 
++> where in code this transport descriptors are setup and what information they use to get setup corectly
++> then I will do the same for OpenVMS


1. axis2.xml has wrong transport sender/receiver information
++> so what is the correct sender/receiver information?

2. Axis2/C engine unable to locate libaxis2_http_sender.so or
libaxis2_http_receiver.so.
++> as we are in OpenVMS there is no such thing as a libaxis2_http_sender.so :-) BUT ...
++> I have axis2_http_sender.olb (object library for static linkage) and I have axis2_http_sender.exe as a 
++> sharable image which is like a dll on OpenVMS so if Axis2/C engine would be unabkle to locate it why is 
++> it then not logged. But all DLL paths are pointing to .lib or .bin or.services. or .modules. regarding this 
++> I cant see any anomality in the log 

3.When there is unloadable (corrupted) library.
++> OpenVMS in contrast to UNix / Linux / Windows can not unload a sharaeable image once this has been loaded.
++> I made my axis2_http_server and all layers below just linking with .olb files (static libs). SO code is 
++> in memory once the server starts. So can you tell me where the client attemps to load a DLL? which DLL's are 
++> loade dynamically when regarding transport issues? I can set a break point at the axutil_class_loader()
++> and see what is requested for a load. Then verify that each path points to a wanted DLL / sharable image.


BTW, what axis2/c version are you using? as per log messages it should
be prior to the Axis2/C 1.1.0.
++> I am using Axis2/C 1.0.0 according NEWS and CHANGELOG
++> I am a one men show and had to create all the make files as MMK description files by hand. THis in absence 
++> of the large bunch of unix tools on OpenVMS and windows. It takes me a while and keeps me very busy. 
++> Axis2/C has not setup all the projects to be used straigth with VS 2005 Express. 
++> But in order to understand Axis2/C code better I have now setup all project files for Windows VS 2005 Express
++> When everything is running under VS 2005 Express, compiles & links correctly, then I move my sources to the 
++> OpenVMS system and read the make files to setup mmk description files for my OpenVMS make.
++> I use this combination for fast traking where a var is declared and defined, to find it more easy in OpenVMS code.
++> Further to that, It toke me a while to port underlying lib's such as ZLIB, LIBXML2 and write a LIBUUID to be used 
++> with LIBXML2 and AXUTIL. But the moste time I wasted so far was with the LF terminated record and the large bunch
++> of xml files just used for testing LIBXML2. But that is over now, and my LIBXML2 lib passt nearly all the test, 
++> passed thousands of tests on OpenVMS. And hence, axutil tests, axiom test such as OM and SOAP run fine amd the
++> server tests are ported too and run fine.

++> I conmit, once my project is over I will upgrade to the most recent version.
++> I was thinking I could use maven-1-0-2 on open VMS to build axis2/C. But in absence of maven build files this is 
++> a no go too. I have build AXIS2 Java using maven-1.0.2 on OpenVMS. If Axis2/C would provide the maven-1.0.2 buuild
++> files to build Axis2/C for windows and or linux and or OpenVMS that would be fine too. In absence of OpenVMS support
++> I would still have to adapt them partly to overcome platform differences. ANT is woring on OpenVMS but can be used used
++> only for Java compiles unless I would have to write a Java class to invoke the HP DECC compiler on OpenVMS. Done by 
++> Netbeans and its distributed counterpart on OpenVMS. 
++> I think at 1.0.0 times, there was just an attempt to use maven to build Axis2/C, just an attempt, -- and I do by far 
++> not know how well maven-1.0.2 or maven-2.0 will handle the build on OpenVMS for Axis2/C out of the box. $
++> I have used maven-1.0.2 and build a complete JAVA release of AXIS2 once for OpenVMS. But found that I can just drop the
++> axis2 war file to the Tomcat running on OpenVMS.
++> Why Axis2/C on OpenVMS? Because I have to integrate a lot legacy code on OpenVMS and debugging uisng i.e. WSIT tool kit
++> from HP through JAVA and it's JVM then diving into C and PASCAL on OpenVMS is anway not supported nicely, but is a large 
++> nigthmar.


> *********************
> Tell me ! if the client code finds all the services and the addr
> module and the logging module why should axis2c_home be the problem
> with this client run?

> *********************
AFAIK, AXIS2C_HOME is not important , but repo_path is
essential. (AXIS2C_HOME use to make the repo_path). Repo path is use
to find axis2.xml. Details in axis2.xml use to build axis2
configuration. 
++> If the axis2_http_server starts and waits to  accept() a connection, it has gone throug all the axis2.xml's initialization
++> Why is the client so much different? I goes and makes use of the same core engine and axuti and axiom routines. 
++> OR IS THER A DIFFERENT axis2.xml file to be used for the client?
++> thanks
++> Josef Stadelmann
++> @axa-winterthur.ch


HTH

thanks,
Dinesh

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-user-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-user-help@ws.apache.org


Re: AW: echo.exe client has "infer transport" error

Posted by Dinesh Premalal <xy...@gmail.com>.
Hi Josef,
   Please find my comments inline.

"Stadelmann Josef" <jo...@axa-winterthur.ch> writes:

> Now my simple http server is up and running on OpenVMS, in fact it is waiting within it's first accept() for the client to initiate a conversation.
>
> Now, the echo_blocking client fails with the following
> echo_blocking.log

Can you see the deployed services through the browser ?

>
>
> [Tue Nov 20 15:36:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.clientapi]op_client.c;3(813) Start:axis2_op_client_infer_transport
> [Tue Nov 20 15:36:31 2007] [error] DSA5:[webservices.axis2.trunk.c.src.core.clientapi]op_client.c;3(863) [axis2c] Cannot infer transport
> [Tue Nov 20 15:36:31 2007] [debug]
> DSA5:[webservices.axis2.trunk.c.src.core.clientapi]op_client.c;3(868)
> End:axis2_op_client_infer_transport

This error usually happens when op_client unable to locate the
transport in/out descriptors (as you mentioned in the later in this
mail). According to my knowledge That happens due to several reasons.

1. axis2.xml has wrong transport sender/receiver information

2. Axis2/C engine unable to locate libaxis2_http_sender.so or
libaxis2_http_receiver.so.

3.When there is unloadable (corrupted) library.

BTW, what axis2/c version are you using? as per log messages it should
be prior to the Axis2/C 1.1.0.

> *********************
> Tell me ! if the client code finds all the services and the addr
> module and the logging module why should axis2c_home be the problem
> with this client run?

> *********************
AFAIK, AXIS2C_HOME is not important , but repo_path is
essential. (AXIS2C_HOME use to make the repo_path). Repo path is use
to find axis2.xml. Details in axis2.xml use to build axis2
configuration. 

HTH

thanks,
Dinesh

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-user-help@ws.apache.org


AW: echo.exe client has "infer transport" error

Posted by Stadelmann Josef <jo...@axa-winterthur.ch>.
Now my simple http server is up and running on OpenVMS, in fact it is waiting within it's first accept() for the client to initiate a conversation.

Now, the echo_blocking client fails with the following echo_blocking.log


[Tue Nov 20 15:36:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.clientapi]op_client.c;3(813) Start:axis2_op_client_infer_transport
[Tue Nov 20 15:36:31 2007] [error] DSA5:[webservices.axis2.trunk.c.src.core.clientapi]op_client.c;3(863) [axis2c] Cannot infer transport
[Tue Nov 20 15:36:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.clientapi]op_client.c;3(868) End:axis2_op_client_infer_transport
[Tue Nov 20 15:38:34 2007] [error] DSA5:[webservices.axis2.trunk.c.samples.user_guide.clients]echo_blocking.c;3(100) Stub invoke FAILED: Error code: 4 :: 
cannot infer transport from URL
[Tue Nov 20 15:38:44 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]arch_file_data.c;4(153) dam_svc_name:Calculator
[Tue Nov 20 15:38:44 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]arch_file_data.c;4(153) dam_svc_name:echo
[Tue Nov 20 15:38:44 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]arch_file_data.c;4(153) dam_svc_name:math
[Tue Nov 20 15:38:44 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]arch_file_data.c;4(153) dam_svc_name:mtom
[Tue Nov 20 15:38:44 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]arch_file_data.c;4(153) dam_svc_name:notify
[Tue Nov 20 15:38:44 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]arch_file_data.c;4(153) dam_svc_name:div
[Tue Nov 20 15:38:44 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]arch_file_data.c;4(153) dam_svc_name:add
[Tue Nov 20 15:38:44 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]arch_file_data.c;4(153) dam_svc_name:sub
[Tue Nov 20 15:38:44 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]arch_file_data.c;4(153) dam_svc_name:mul



"[axis2c] Cannot infer transport"

I have checkt with the OpenVMS debugger and I found that op_client even he has found the correct enumerator does not return a transport_descriptor

What is wrong?



I had that last time with Windows 2000 / Visual Studio Enterprise 2005 but for the server to start up. 
It was a dll missing, as said in my previous mail.

But now my server is up on OpenVMS and axis2c_home is defined and all paths are doubble checked.


Well I add the total echo_blocking.log from the last echo_blocking client run

I have build all test on OpenVMS even for libxml2, axutil, test_om, test_soap, all services - they get all loaded now, they exists a shareable images on OpenVMS, And the simple server loades only services and modules dynamically, all others are static for easy debugging. Later I will switch to sharable images for speed.



*********************
Tell me ! if the client code finds all the services and the addr module and the logging module why should axis2c_home be the problem with this client run?
*********************


[Tue Nov 20 15:33:24 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.engine]phase.c;3(113) axis2_handler_t *request_uri_based_dispatcher added to the index 0 of the phase Transport
[Tue Nov 20 15:33:24 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.engine]phase.c;3(113) axis2_handler_t *addressing_based_dispatcher added to the index 1 of the phase Transport
[Tue Nov 20 15:33:25 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.engine]phase.c;3(113) axis2_handler_t *soap_message_body_based_dispatcher added to the index 0 of the phase Dispatch
[Tue Nov 20 15:33:25 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.engine]phase.c;3(113) axis2_handler_t *soap_action_based_dispatcher added to the index 2 of the phase Dispatch
[Tue Nov 20 15:33:25 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.engine]phase.c;3(113) axis2_handler_t *dispatch_post_conditions_evaluator added to the index 0 of the phase PostDispatch
[Tue Nov 20 15:33:25 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.engine]phase.c;3(113) axis2_handler_t *context_handler added to the index 1 of the phase PostDispatch
[Tue Nov 20 15:33:25 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]conf_builder.c;4(220) no custom dispatching order found continue with default dispatching order
[Tue Nov 20 15:33:25 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]conf_builder.c;4(326) module addressing found in axis2.xml
[Tue Nov 20 15:33:25 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]conf_builder.c;4(672) dam_transport_name:http
[Tue Nov 20 15:33:25 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]dep_engine.c;4(1042) axis2_dep_engine_load_module_dll: DLL path is : /DSA5/webservices/axis2/trunk/c/build/deploy/modules/addressing/axis2_mod_addr.exe
[Tue Nov 20 15:33:26 2007] [debug] DSA5:[webservices.axis2.trunk.c.util.src]class_loader.c;9(135) Object loaded successfully
[Tue Nov 20 15:33:26 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]dep_engine.c;4(1042) axis2_dep_engine_load_module_dll: DLL path is : /DSA5/webservices/axis2/trunk/c/build/deploy/modules/logging/axis2_mod_log.exe
[Tue Nov 20 15:33:26 2007] [debug] DSA5:[webservices.axis2.trunk.c.util.src]class_loader.c;9(135) Object loaded successfully
[Tue Nov 20 15:33:26 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]svc_builder.c;4(292) DLL path is : /DSA5/webservices/axis2/trunk/c/build/deploy/services/Calculator/Calculator.exe
[Tue Nov 20 15:33:26 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(117) Service name is : Calculator
[Tue Nov 20 15:33:26 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]svc_builder.c;4(292) DLL path is : /DSA5/webservices/axis2/trunk/c/build/deploy/services/echo/echo.exe
[Tue Nov 20 15:33:26 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(117) Service name is : echo
[Tue Nov 20 15:33:26 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]svc_builder.c;4(292) DLL path is : /DSA5/webservices/axis2/trunk/c/build/deploy/services/math/math.exe
[Tue Nov 20 15:33:26 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(117) Service name is : math
[Tue Nov 20 15:33:27 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]svc_builder.c;4(292) DLL path is : /DSA5/webservices/axis2/trunk/c/build/deploy/services/mtom/mtom.exe
[Tue Nov 20 15:33:27 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(117) Service name is : mtom
[Tue Nov 20 15:33:27 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]svc_builder.c;4(292) DLL path is : /DSA5/webservices/axis2/trunk/c/build/deploy/services/notify/notify.exe
[Tue Nov 20 15:33:27 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(117) Service name is : notify
[Tue Nov 20 15:33:27 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]svc_builder.c;4(292) DLL path is : /DSA5/webservices/axis2/trunk/c/build/deploy/services/sg_math/add.exe
[Tue Nov 20 15:33:27 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]svc_builder.c;4(292) DLL path is : /DSA5/webservices/axis2/trunk/c/build/deploy/services/sg_math/sub.exe
[Tue Nov 20 15:33:27 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]svc_builder.c;4(292) DLL path is : /DSA5/webservices/axis2/trunk/c/build/deploy/services/sg_math/mul.exe
[Tue Nov 20 15:33:27 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]svc_builder.c;4(292) DLL path is : /DSA5/webservices/axis2/trunk/c/build/deploy/services/sg_math/div.exe
[Tue Nov 20 15:33:27 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(117) Service name is : add
[Tue Nov 20 15:33:27 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(117) Service name is : sub
[Tue Nov 20 15:33:27 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(117) Service name is : mul
[Tue Nov 20 15:33:27 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(117) Service name is : div
[Tue Nov 20 15:33:27 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingInHandler to phase Transport
[Tue Nov 20 15:33:27 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(885) svc name is:div
[Tue Nov 20 15:33:27 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.description]svc.c;4(713) Start:axis2_svc_add_module_ops
[Tue Nov 20 15:33:27 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(117) Service name is : div
[Tue Nov 20 15:33:27 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.description]svc.c;4(790) End:axis2_svc_add_module_ops
[Tue Nov 20 15:33:27 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(952) Operation name is : div
[Tue Nov 20 15:33:28 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:28 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:28 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(885) svc name is:add
[Tue Nov 20 15:33:28 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.description]svc.c;4(713) Start:axis2_svc_add_module_ops
[Tue Nov 20 15:33:28 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(117) Service name is : add
[Tue Nov 20 15:33:28 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.description]svc.c;4(790) End:axis2_svc_add_module_ops
[Tue Nov 20 15:33:28 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(952) Operation name is : add
[Tue Nov 20 15:33:28 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:28 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:28 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(885) svc name is:sub
[Tue Nov 20 15:33:28 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.description]svc.c;4(713) Start:axis2_svc_add_module_ops
[Tue Nov 20 15:33:28 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(117) Service name is : sub
[Tue Nov 20 15:33:28 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.description]svc.c;4(790) End:axis2_svc_add_module_ops
[Tue Nov 20 15:33:28 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(952) Operation name is : sub
[Tue Nov 20 15:33:28 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:28 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:28 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(885) svc name is:mul
[Tue Nov 20 15:33:28 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.description]svc.c;4(713) Start:axis2_svc_add_module_ops
[Tue Nov 20 15:33:29 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(117) Service name is : mul
[Tue Nov 20 15:33:29 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.description]svc.c;4(790) End:axis2_svc_add_module_ops
[Tue Nov 20 15:33:29 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(952) Operation name is : mul
[Tue Nov 20 15:33:29 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:29 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:29 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(885) svc name is:notify
[Tue Nov 20 15:33:29 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.description]svc.c;4(713) Start:axis2_svc_add_module_ops
[Tue Nov 20 15:33:29 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(117) Service name is : notify
[Tue Nov 20 15:33:29 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.description]svc.c;4(790) End:axis2_svc_add_module_ops
[Tue Nov 20 15:33:29 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(952) Operation name is : notify
[Tue Nov 20 15:33:29 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:29 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:29 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(885) svc name is:Calculator
[Tue Nov 20 15:33:29 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.description]svc.c;4(713) Start:axis2_svc_add_module_ops
[Tue Nov 20 15:33:29 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(117) Service name is : Calculator
[Tue Nov 20 15:33:29 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.description]svc.c;4(790) End:axis2_svc_add_module_ops
[Tue Nov 20 15:33:29 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(952) Operation name is : div
[Tue Nov 20 15:33:29 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:30 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:30 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(952) Operation name is : add
[Tue Nov 20 15:33:30 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:30 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:30 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(952) Operation name is : sub
[Tue Nov 20 15:33:30 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:30 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:30 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(952) Operation name is : mul
[Tue Nov 20 15:33:30 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:30 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:30 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(885) svc name is:math
[Tue Nov 20 15:33:30 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.description]svc.c;4(713) Start:axis2_svc_add_module_ops
[Tue Nov 20 15:33:30 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(117) Service name is : math
[Tue Nov 20 15:33:30 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.description]svc.c;4(790) End:axis2_svc_add_module_ops
[Tue Nov 20 15:33:30 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(952) Operation name is : div
[Tue Nov 20 15:33:30 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:30 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(952) Operation name is : add
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(952) Operation name is : sub
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(952) Operation name is : mul
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(885) svc name is:mtom
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.description]svc.c;4(713) Start:axis2_svc_add_module_ops
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(117) Service name is : mtom
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.description]svc.c;4(790) End:axis2_svc_add_module_ops
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(952) Operation name is : mtomSample
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(885) svc name is:echo
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.description]svc.c;4(713) Start:axis2_svc_add_module_ops
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(117) Service name is : echo
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.description]svc.c;4(790) End:axis2_svc_add_module_ops
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(952) Operation name is : echoString
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(117) Service name is : __ANONYMOUS_SERVICE__
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(230) module name is:addressing
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(323) This handler is trying to added to system pre defined phases , but those handlers are already added to global chain which run irrespective of the service
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(230) module name is:addressing
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(230) module name is:addressing
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(230) module name is:addressing
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(230) module name is:addressing
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(323) This handler is trying to added to system pre defined phases , but those handlers are already added to global chain which run irrespective of the service
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(230) module name is:addressing
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(230) module name is:addressing
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(230) module name is:addressing
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(230) module name is:addressing
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(323) This handler is trying to added to system pre defined phases , but those handlers are already added to global chain which run irrespective of the service
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(230) module name is:addressing
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(230) module name is:addressing
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_resolver.c;3(230) module name is:addressing
[Tue Nov 20 15:33:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.phaseresolver]phase_holder.c;3(129) Add handler AddressingOutHandler to phase MessageOut
[Tue Nov 20 15:36:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.clientapi]op_client.c;3(813) Start:axis2_op_client_infer_transport
[Tue Nov 20 15:36:31 2007] [error] DSA5:[webservices.axis2.trunk.c.src.core.clientapi]op_client.c;3(863) [axis2c] Cannot infer transport
[Tue Nov 20 15:36:31 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.clientapi]op_client.c;3(868) End:axis2_op_client_infer_transport
[Tue Nov 20 15:38:34 2007] [error] DSA5:[webservices.axis2.trunk.c.samples.user_guide.clients]echo_blocking.c;3(100) Stub invoke FAILED: Error code: 4 :: cannot infer transport from URL
[Tue Nov 20 15:38:44 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]arch_file_data.c;4(153) dam_svc_name:Calculator
[Tue Nov 20 15:38:44 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]arch_file_data.c;4(153) dam_svc_name:echo
[Tue Nov 20 15:38:44 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]arch_file_data.c;4(153) dam_svc_name:math
[Tue Nov 20 15:38:44 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]arch_file_data.c;4(153) dam_svc_name:mtom
[Tue Nov 20 15:38:44 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]arch_file_data.c;4(153) dam_svc_name:notify
[Tue Nov 20 15:38:44 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]arch_file_data.c;4(153) dam_svc_name:div
[Tue Nov 20 15:38:44 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]arch_file_data.c;4(153) dam_svc_name:add
[Tue Nov 20 15:38:44 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]arch_file_data.c;4(153) dam_svc_name:sub
[Tue Nov 20 15:38:44 2007] [debug] DSA5:[webservices.axis2.trunk.c.src.core.deployment]arch_file_data.c;4(153) dam_svc_name:mul



For any advise thanks and regards
Josef.Stadelmann
@axa-winterthur.ch







-----Ursprüngliche Nachricht-----
Von: Stadelmann Josef [mailto:josef.stadelmann@axa-winterthur.ch]
Gesendet: Mittwoch, 19. September 2007 07:34
An: Apache AXIS C User List
Betreff: AW: echo.exe client has "infer transport" error


Hi Dinesh

thank you very much. Debugging was helpfule/timeconsuming/learningful.
I was down to step through the processing of phases and transports etc.
Then I detected that axis2_http_sender.dll was unable to load, and that
was caused due to the absence of libcurl.dll e all in ./lib

Missing DLL are flagged YELLOW and question marked in Dependency Walker

The problem is that LoadLib( ... ) does either return a handle to the
dll just loaded or zero in case of error but does not tell you why a 
dll does not load. And the rest is how axis e all interpret this error.

Now my echo.exe is running

The tool who helps most in detecting the absence of a dll is the

	Dependency Walker for Win32 (X86)
	Version 2.0 (or greater)
	Developed by Steve P. Miller
	Copyright by MS Corp. 

It gives a nice ide about depedencies among dll's

The I had to restart the server and the client went OK

Thank you very much again for your help.

Josef


-----Ursprüngliche Nachricht-----
Von: Dinesh Premalal [mailto:premalal@gmail.com]Im Auftrag von Dinesh
Premalal
Gesendet: Dienstag, 18. September 2007 17:20
An: axis-c-user@ws.apache.org
Betreff: Re: echo.exe client has "infer transport" error


Hi Josef,
      Please find my comments inline.
"Stadelmann Josef" <jo...@axa-winterthur.ch> writes:
>
> Starting the echo.exe client fails!
>
> The echo.log shows me
>
> [Tue Sep 18 11:34:34 2007] [error] c:\dsa5\webservices\axis2\trunk\c\src\core\clientapi\op_client.c(863) [axis2c] Cannot infer transport
>
> (log attached)
>
> I do not get any trabnsport_out_desc !but sorry, I dont know where and how to define a transport out description such a way that
I think, client is unable to find repo location to pickup
axis2.xml. Most of the time can't infer transport error message
appears when client unable to pickup axis2.xml.  Because when loading
axis2 engine, it uses axis2.xml to set transport_out_desc.

1. Please check whether you set $AXIS2C_HOME or client can pickup
axis2.xml from "../.." location.

<snippet location="axis2c/samples/client/echo/echo.c">
   client_home = AXIS2_GETENV("AXIS2C_HOME");
   if (!client_home || !strcmp (client_home, ""))
       client_home = "../..";
</snippet>

thanks,
Dinesh
-- 
Dinesh Premalal
http://xydinesh.wordpress.com/
GPG ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255 955C

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-user-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-user-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-user-help@ws.apache.org


AW: echo.exe client has "infer transport" error

Posted by Stadelmann Josef <jo...@axa-winterthur.ch>.
Hi Dinesh

thank you very much. Debugging was helpfule/timeconsuming/learningful.
I was down to step through the processing of phases and transports etc.
Then I detected that axis2_http_sender.dll was unable to load, and that
was caused due to the absence of libcurl.dll e all in ./lib

Missing DLL are flagged YELLOW and question marked in Dependency Walker

The problem is that LoadLib( ... ) does either return a handle to the
dll just loaded or zero in case of error but does not tell you why a 
dll does not load. And the rest is how axis e all interpret this error.

Now my echo.exe is running

The tool who helps most in detecting the absence of a dll is the

	Dependency Walker for Win32 (X86)
	Version 2.0 (or greater)
	Developed by Steve P. Miller
	Copyright by MS Corp. 

It gives a nice ide about depedencies among dll's

The I had to restart the server and the client went OK

Thank you very much again for your help.

Josef


-----Ursprüngliche Nachricht-----
Von: Dinesh Premalal [mailto:premalal@gmail.com]Im Auftrag von Dinesh
Premalal
Gesendet: Dienstag, 18. September 2007 17:20
An: axis-c-user@ws.apache.org
Betreff: Re: echo.exe client has "infer transport" error


Hi Josef,
      Please find my comments inline.
"Stadelmann Josef" <jo...@axa-winterthur.ch> writes:
>
> Starting the echo.exe client fails!
>
> The echo.log shows me
>
> [Tue Sep 18 11:34:34 2007] [error] c:\dsa5\webservices\axis2\trunk\c\src\core\clientapi\op_client.c(863) [axis2c] Cannot infer transport
>
> (log attached)
>
> I do not get any trabnsport_out_desc !but sorry, I dont know where and how to define a transport out description such a way that
I think, client is unable to find repo location to pickup
axis2.xml. Most of the time can't infer transport error message
appears when client unable to pickup axis2.xml.  Because when loading
axis2 engine, it uses axis2.xml to set transport_out_desc.

1. Please check whether you set $AXIS2C_HOME or client can pickup
axis2.xml from "../.." location.

<snippet location="axis2c/samples/client/echo/echo.c">
   client_home = AXIS2_GETENV("AXIS2C_HOME");
   if (!client_home || !strcmp (client_home, ""))
       client_home = "../..";
</snippet>

thanks,
Dinesh
-- 
Dinesh Premalal
http://xydinesh.wordpress.com/
GPG ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255 955C

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-user-help@ws.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-user-help@ws.apache.org


Re: echo.exe client has "infer transport" error

Posted by Dinesh Premalal <xy...@gmail.com>.
Hi Josef,
      Please find my comments inline.
"Stadelmann Josef" <jo...@axa-winterthur.ch> writes:
>
> Starting the echo.exe client fails!
>
> The echo.log shows me
>
> [Tue Sep 18 11:34:34 2007] [error] c:\dsa5\webservices\axis2\trunk\c\src\core\clientapi\op_client.c(863) [axis2c] Cannot infer transport
>
> (log attached)
>
> I do not get any trabnsport_out_desc !but sorry, I dont know where and how to define a transport out description such a way that
I think, client is unable to find repo location to pickup
axis2.xml. Most of the time can't infer transport error message
appears when client unable to pickup axis2.xml.  Because when loading
axis2 engine, it uses axis2.xml to set transport_out_desc.

1. Please check whether you set $AXIS2C_HOME or client can pickup
axis2.xml from "../.." location.

<snippet location="axis2c/samples/client/echo/echo.c">
   client_home = AXIS2_GETENV("AXIS2C_HOME");
   if (!client_home || !strcmp (client_home, ""))
       client_home = "../..";
</snippet>

thanks,
Dinesh
-- 
Dinesh Premalal
http://xydinesh.wordpress.com/
GPG ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255 955C

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-user-help@ws.apache.org