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 Andrew Borley <aj...@gmail.com> on 2006/05/22 13:13:33 UTC

[Axis2] Building samples in MS Visual Studio

Hi All,

I'm trying to get going with Axis2C (0.91) and have started by attempting to
build and run the echo sample in MS Visual C++ .NET v7.1. I can build a dll,
deploy it into the sample http server, and see the service in the list at
http://localhost:9090/axis2/services but I can't invoke the service. I get
an "out of memory" error in the axis2.log file, shown below. On other
occasions I've received the message "dll description has invalid state of
not having valid dll create function, of valid delete function or valid
dll_handler" at the same point (which may mean more). I'm guessing there is
some issue with how I'm building my dll, but I've tried various options and
haven't yet had any success.

Can anyone help?

Many thanks

Andrew Borley


[Mon May 22 11:45:37 2006] [info]  Starting HTTP server thread
[Mon May 22 11:45:54 2006] [debug]
..\..\modules\core\transport\http\http_worker.c(191) Client HTTP version
HTTP/1.1
[Mon May 22 11:45:54 2006] [debug]
..\..\modules\xml\soap\soap_builder.c(840) identified soap version is soap12
[Mon May 22 11:45:54 2006] [debug] ..\..\modules\core\engine\engine.c(881)
Invoking phase TransportIn
[Mon May 22 11:45:54 2006] [debug] ..\..\modules\core\engine\engine.c(881)
Invoking phase PreDispatch
[Mon May 22 11:45:54 2006] [debug] ..\..\modules\core\engine\phase.c(338)
Invoke the handler AddressingInHandler within the phase PreDispatch
[Mon May 22 11:45:54 2006] [info]  Starting addressing in handler .........
[Mon May 22 11:45:54 2006] [debug] ..\..\modules\core\engine\engine.c(881)
Invoking phase Dispatch
[Mon May 22 11:45:54 2006] [debug] ..\..\modules\core\engine\phase.c(338)
Invoke the handler addressing_based_dispatcher within the phase Dispatch
[Mon May 22 11:45:54 2006] [debug]
..\..\modules\core\engine\addr_disp.c(110) Checking for service using WSA
enpoint address : http://localhost:9090/axis2/services/EchoWebService
[Mon May 22 11:45:54 2006] [debug]
..\..\modules\core\engine\addr_disp.c(140) Service found using WSA enpoint
address
[Mon May 22 11:45:54 2006] [debug]
..\..\modules\core\engine\addr_disp.c(182) Checking for operation using WSA
Action : http://ws.apache.org/axis2/c/samples/echoString
[Mon May 22 11:45:54 2006] [debug]
..\..\modules\core\engine\addr_disp.c(188) Operation found using WSA Action
[Mon May 22 11:45:54 2006] [debug] ..\..\modules\core\engine\phase.c(338)
Invoke the handler request_uri_based_dispatcher within the phase Dispatch
[Mon May 22 11:45:54 2006] [debug] ..\..\modules\core\engine\phase.c(338)
Invoke the handler soap_action_based_dispatcher within the phase Dispatch
[Mon May 22 11:45:54 2006] [debug] ..\..\modules\core\engine\phase.c(338)
Invoke the handler soap_message_body_based_dispatcher within the phase
Dispatch
[Mon May 22 11:45:54 2006] [debug] ..\..\modules\core\engine\engine.c(881)
Invoking phase PostDispatch
[Mon May 22 11:45:54 2006] [debug] ..\..\modules\core\engine\phase.c(338)
Invoke the handler dispatch_post_conditions_evaluator within the phase
PostDispatch
[Mon May 22 11:45:54 2006] [debug] ..\..\modules\core\engine\phase.c(338)
Invoke the handler context_handler within the phase PostDispatch
[Mon May 22 11:45:54 2006] [debug] ..\..\modules\core\engine\engine.c(881)
Invoking phase PolicyDetermination
[Mon May 22 11:45:54 2006] [error]
..\..\modules\core\receivers\raw_xml_in_out_msg_recv.c(99) Impl object for
service not set in message receiver 1 :: Out of memory
[Mon May 22 11:45:54 2006] [debug] ..\..\modules\core\engine\engine.c(440)
Axis2 engine receive successful
[Mon May 22 11:45:54 2006] [debug] ..\..\modules\core\engine\engine.c(881)
Invoking phase PolicyDetermination
[Mon May 22 11:45:54 2006] [debug] ..\..\modules\core\engine\engine.c(881)
Invoking phase MessageOut
[Mon May 22 11:45:54 2006] [debug] ..\..\modules\core\engine\phase.c(338)
Invoke the handler AddressingOutHandler within the phase MessageOut
[Mon May 22 11:45:54 2006] [debug] ..\..\modules\core\engine\engine.c(881)
Invoking phase MessageOut
[Mon May 22 11:45:54 2006] [debug] ..\..\modules\core\engine\phase.c(338)
Invoke the handler AddressingOutHandler within the phase MessageOut
[Mon May 22 11:45:54 2006] [info]  Request served successfully

Re: [Axis2] Building samples in MS Visual Studio

Posted by Andrew Borley <aj...@gmail.com>.
Hi Sahan,

Thanks for the reply. I've been putting my built dll into a directory called
$AXIS2_HOME/services/EchoWebService with the dll name as
EchoWebService.dlland the
services.xml file containing the following:

<service name="EchoWebService">
    <parameter name="ServiceClass"
locked="xsd:false">EchoWebService</parameter>
   <description>
        This is a testing service , to test the system is working or not
   </description>
    <operation name="echoString">
            <!--messageReceiver class="axis2_receivers" /-->
            <parameter name="wsamapping" >
http://ws.apache.org/axis2/c/samples/echoString</parameter>
    </operation>
</service>

I removed the original echo sample (in case there was some clash happening)
and the code itself is exactly the same as the sample, but I'm still getting
this error. I attach the full axis2.log trace file.

Thanks

Andrew


On 5/22/06, Sahan Gamage <sa...@wso2.com> wrote:
>
> Hi Andrew,
>
> Where did you put the built dll ? The location should be
> $AXIS2_HOME/services/echo/  If you haven't put the dll in there try
> putting it there. If that doesn't solve the problem let us have the
> complete log file so that we might be able to locate what went wrong.
> IIRC there are no special options (or compiler flags) other than
> standard MSVC stuff when building services.
> - Sahan
>
> Andrew Borley wrote:
>
> > Hi All,
> >
> > I'm trying to get going with Axis2C (0.91) and have started by
> > attempting to build and run the echo sample in MS Visual C++ .NET
> > v7.1. I can build a dll, deploy it into the sample http server, and
> > see the service in the list at http://localhost:9090/axis2/services
> > but I can't invoke the service. I get an "out of memory" error in the
> > axis2.log file, shown below. On other occasions I've received the
> > message "dll description has invalid state of not having valid dll
> > create function, of valid delete function or valid dll_handler" at the
> > same point (which may mean more). I'm guessing there is some issue
> > with how I'm building my dll, but I've tried various options and
> > haven't yet had any success.
> >
> > Can anyone help?
> >
> > Many thanks
> >
> > Andrew Borley
> >
> >
> > [Mon May 22 11:45:37 2006] [info]  Starting HTTP server thread
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\transport\http\http_worker.c(191) Client HTTP
> > version HTTP/1.1
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\xml\soap\soap_builder.c(840) identified soap version is
> > soap12
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\engine.c(881) Invoking phase TransportIn
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\engine.c(881) Invoking phase PreDispatch
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\phase.c(338) Invoke the handler
> > AddressingInHandler within the phase PreDispatch
> > [Mon May 22 11:45:54 2006] [info]  Starting addressing in handler
> > .........
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\engine.c(881) Invoking phase Dispatch
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\phase.c(338) Invoke the handler
> > addressing_based_dispatcher within the phase Dispatch
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\addr_disp.c(110) Checking for service using
> > WSA enpoint address :
> > http://localhost:9090/axis2/services/EchoWebService
> > <http://localhost:9090/axis2/services/EchoWebService>
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\addr_disp.c(140) Service found using WSA
> > enpoint address
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\addr_disp.c(182) Checking for operation
> > using WSA Action : http://ws.apache.org/axis2/c/samples/echoString
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\addr_disp.c(188) Operation found using WSA
> > Action
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\phase.c(338) Invoke the handler
> > request_uri_based_dispatcher within the phase Dispatch
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\phase.c(338) Invoke the handler
> > soap_action_based_dispatcher within the phase Dispatch
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\phase.c(338) Invoke the handler
> > soap_message_body_based_dispatcher within the phase Dispatch
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\engine.c(881) Invoking phase PostDispatch
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\phase.c(338) Invoke the handler
> > dispatch_post_conditions_evaluator within the phase PostDispatch
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\phase.c(338) Invoke the handler
> > context_handler within the phase PostDispatch
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\engine.c(881) Invoking phase
> PolicyDetermination
> > [Mon May 22 11:45:54 2006] [error]
> > ..\..\modules\core\receivers\raw_xml_in_out_msg_recv.c(99) Impl object
> > for service not set in message receiver 1 :: Out of memory
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\engine.c(440) Axis2 engine receive successful
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\engine.c(881) Invoking phase
> > PolicyDetermination
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\engine.c(881) Invoking phase MessageOut
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\phase.c(338) Invoke the handler
> > AddressingOutHandler within the phase MessageOut
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\engine.c(881) Invoking phase MessageOut
> > [Mon May 22 11:45:54 2006] [debug]
> > ..\..\modules\core\engine\phase.c(338) Invoke the handler
> > AddressingOutHandler within the phase MessageOut
> > [Mon May 22 11:45:54 2006] [info]  Request served successfully
> >
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-user-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-user-help@ws.apache.org
>
>


-- 

Cheers,

Andrew Borley

Re: [Axis2] Building samples in MS Visual Studio

Posted by Sahan Gamage <sa...@wso2.com>.
Hi Andrew,

Where did you put the built dll ? The location should be
$AXIS2_HOME/services/echo/  If you haven't put the dll in there try
putting it there. If that doesn't solve the problem let us have the
complete log file so that we might be able to locate what went wrong.
IIRC there are no special options (or compiler flags) other than
standard MSVC stuff when building services.
- Sahan

Andrew Borley wrote:

> Hi All,
>
> I'm trying to get going with Axis2C (0.91) and have started by
> attempting to build and run the echo sample in MS Visual C++ .NET
> v7.1. I can build a dll, deploy it into the sample http server, and
> see the service in the list at http://localhost:9090/axis2/services
> but I can't invoke the service. I get an "out of memory" error in the
> axis2.log file, shown below. On other occasions I've received the
> message "dll description has invalid state of not having valid dll
> create function, of valid delete function or valid dll_handler" at the
> same point (which may mean more). I'm guessing there is some issue
> with how I'm building my dll, but I've tried various options and
> haven't yet had any success.
>
> Can anyone help?
>
> Many thanks
>
> Andrew Borley
>
>
> [Mon May 22 11:45:37 2006] [info]  Starting HTTP server thread
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\transport\http\http_worker.c(191) Client HTTP
> version HTTP/1.1
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\xml\soap\soap_builder.c(840) identified soap version is
> soap12
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\engine.c(881) Invoking phase TransportIn
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\engine.c(881) Invoking phase PreDispatch
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\phase.c(338) Invoke the handler
> AddressingInHandler within the phase PreDispatch
> [Mon May 22 11:45:54 2006] [info]  Starting addressing in handler
> .........
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\engine.c(881) Invoking phase Dispatch
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\phase.c(338) Invoke the handler
> addressing_based_dispatcher within the phase Dispatch
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\addr_disp.c(110) Checking for service using
> WSA enpoint address :
> http://localhost:9090/axis2/services/EchoWebService
> <http://localhost:9090/axis2/services/EchoWebService>
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\addr_disp.c(140) Service found using WSA
> enpoint address
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\addr_disp.c(182) Checking for operation
> using WSA Action : http://ws.apache.org/axis2/c/samples/echoString
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\addr_disp.c(188) Operation found using WSA
> Action
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\phase.c(338) Invoke the handler
> request_uri_based_dispatcher within the phase Dispatch
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\phase.c(338) Invoke the handler
> soap_action_based_dispatcher within the phase Dispatch
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\phase.c(338) Invoke the handler
> soap_message_body_based_dispatcher within the phase Dispatch
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\engine.c(881) Invoking phase PostDispatch
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\phase.c(338) Invoke the handler
> dispatch_post_conditions_evaluator within the phase PostDispatch
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\phase.c(338) Invoke the handler
> context_handler within the phase PostDispatch
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\engine.c(881) Invoking phase PolicyDetermination
> [Mon May 22 11:45:54 2006] [error]
> ..\..\modules\core\receivers\raw_xml_in_out_msg_recv.c(99) Impl object
> for service not set in message receiver 1 :: Out of memory
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\engine.c(440) Axis2 engine receive successful
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\engine.c(881) Invoking phase
> PolicyDetermination
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\engine.c(881) Invoking phase MessageOut
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\phase.c(338) Invoke the handler
> AddressingOutHandler within the phase MessageOut
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\engine.c(881) Invoking phase MessageOut
> [Mon May 22 11:45:54 2006] [debug]
> ..\..\modules\core\engine\phase.c(338) Invoke the handler
> AddressingOutHandler within the phase MessageOut
> [Mon May 22 11:45:54 2006] [info]  Request served successfully
>
>


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