[wsf-c-dev] [jira] Created: (WSFPHP-44) If WSF/PHP is installed and
one runs a
normal non web service script on command line, the log is shown on the
console
Samisa Abeysinghe (JIRA)
jira at wso2.org
Thu Feb 15 05:03:10 PST 2007
If WSF/PHP is installed and one runs a normal non web service script on command line, the log is shown on the console
---------------------------------------------------------------------------------------------------------------------
Key: WSFPHP-44
URL: http://www.wso2.org/jira/browse/WSFPHP-44
Project: WSO2 WSF/PHP
Issue Type: Bug
Reporter: Samisa Abeysinghe
If I have the following script in test.php:
<?php
echo "Test\n";
?>
and I run
php test.php
I get the following output; Note the Axis2/C log printed to the console
[samisa at localhost /home/samisa/tungsten/wsf/php]$ php tt.php
[Thu Feb 15 18:30:47 2007] [debug] phase.c(280) axis2_handler_t *request_uri_based_dispatcher added to the index 0 of the phase Transport
[Thu Feb 15 18:30:47 2007] [debug] phase.c(280) axis2_handler_t *soap_message_body_based_dispatcher added to the index 0 of the phase Dispatch
[Thu Feb 15 18:30:47 2007] [debug] phase.c(280) axis2_handler_t *addressing_based_dispatcher added to the index 1 of the phase Dispatch
[Thu Feb 15 18:30:47 2007] [debug] phase.c(280) axis2_handler_t *soap_action_based_dispatcher added to the index 2 of the phase Dispatch
[Thu Feb 15 18:30:47 2007] [debug] phase.c(280) axis2_handler_t *dispatch_post_conditions_evaluator added to the index 0 of the phase PostDispatch
[Thu Feb 15 18:30:47 2007] [debug] phase.c(280) axis2_handler_t *context_handler added to the index 1 of the phase PostDispatch
[Thu Feb 15 18:30:47 2007] [debug] conf_builder.c(286) no custom dispatching order found continue with default dispatcing order
[Thu Feb 15 18:30:47 2007] [debug] conf_builder.c(393) module addressing found in axis2.xml
[Thu Feb 15 18:30:47 2007] [debug] class_loader.c(218) transport sender loaded successfully
[Thu Feb 15 18:30:47 2007] [debug] class_loader.c(201) transport receiver loaded successfully
[Thu Feb 15 18:30:47 2007] [debug] dep_engine.c(1285) axis2_dep_engine_load_module_dll; dll path is : /home/samisa/axis2/c/deploy/modules/addressing/libaxis2_mod_addr.so
[Thu Feb 15 18:30:47 2007] [debug] dep_engine.c(1285) axis2_dep_engine_load_module_dll; dll path is : /home/samisa/axis2/c/deploy/modules/logging/libaxis2_mod_log.so
[Thu Feb 15 18:30:47 2007] [debug] svc_builder.c(344) dll path is : /home/samisa/axis2/c/deploy/services/Calculator/libCalculator.so
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(218) svc name is:Calculator
[Thu Feb 15 18:30:47 2007] [debug] svc_builder.c(344) dll path is : /home/samisa/axis2/c/deploy/services/echo/libecho.so
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(218) svc name is:echo
[Thu Feb 15 18:30:47 2007] [debug] svc_builder.c(344) dll path is : /home/samisa/axis2/c/deploy/services/math/libmath.so
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(218) svc name is:math
[Thu Feb 15 18:30:47 2007] [debug] svc_builder.c(344) dll path is : /home/samisa/axis2/c/deploy/services/mtom/libmtom.so
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(218) svc name is:mtom
[Thu Feb 15 18:30:47 2007] [debug] svc_builder.c(344) dll path is : /home/samisa/axis2/c/deploy/services/notify/libnotify.so
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(218) svc name is:notify
[Thu Feb 15 18:30:47 2007] [debug] svc_builder.c(344) dll path is : /home/samisa/axis2/c/deploy/services/sg_math/libadd.so
[Thu Feb 15 18:30:47 2007] [debug] svc_builder.c(344) dll path is : /home/samisa/axis2/c/deploy/services/sg_math/libsub.so
[Thu Feb 15 18:30:47 2007] [debug] svc_builder.c(344) dll path is : /home/samisa/axis2/c/deploy/services/sg_math/libmul.so
[Thu Feb 15 18:30:47 2007] [debug] svc_builder.c(344) dll path is : /home/samisa/axis2/c/deploy/services/sg_math/libdiv.so
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(218) svc name is:add
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(218) svc name is:sub
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(218) svc name is:mul
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(218) svc name is:div
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingInHandler to phase PreDispatch
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1049) svc name is:div
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(218) svc name is:div
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1123) op name is:div
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1049) svc name is:add
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(218) svc name is:add
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1123) op name is:add
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1049) svc name is:sub
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(218) svc name is:sub
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1123) op name is:sub
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1049) svc name is:mul
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(218) svc name is:mul
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1123) op name is:mul
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1049) svc name is:notify
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(218) svc name is:notify
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1123) op name is:notify
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1049) svc name is:Calculator
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(218) svc name is:Calculator
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1123) op name is:div
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1123) op name is:add
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1123) op name is:sub
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1123) op name is:mul
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1049) svc name is:math
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(218) svc name is:math
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1123) op name is:div
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1123) op name is:add
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1123) op name is:sub
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1123) op name is:mul
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1049) svc name is:mtom
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(218) svc name is:mtom
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1123) op name is:mtomSample
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1049) svc name is:echo
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(218) svc name is:echo
[Thu Feb 15 18:30:47 2007] [debug] phase_resolver.c(1123) op name is:echoString
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
[Thu Feb 15 18:30:47 2007] [debug] phase_holder.c(199) Add handler AddressingOutHandler to phase MessageOut
Test
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://www.wso2.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the Wsf-c-dev
mailing list