You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tuscany.apache.org by Simon Laws <si...@googlemail.com> on 2007/01/08 18:19:37 UTC

[C++] SCA failure on Axis server run

I'm trying to run up the Axis2C server configured with C++/SCA from svn. The
server crashes on start up having reported the following debug...

C:\simon\apps\axis2c-bin-0.95-win32\bin>axis2_http_server.exe -l 4
7656:6784     >> tuscany::sca::util::ThreadLocal::~ThreadLocal
7656:6784     << tuscany::sca::util::ThreadLocal::~ThreadLocal
7656:6784     >> tuscany::sca::util::Mutex::~Mutex
7656:6784     << tuscany::sca::util::Mutex::~Mutex

I remember seeing a few threading type emails flying past. Is the current
code in svn OK. If so I'll get it in the debugger and dig further.

Thanks

Simon

Re: [C++] SCA failure on Axis server run

Posted by Simon Laws <si...@googlemail.com>.
On 1/9/07, Simon Laws <si...@googlemail.com> wrote:
>
>
>
> On 1/9/07, Jean-Sebastien Delfino <js...@apache.org> wrote:
> >
> > Jean-Sebastien Delfino wrote:
> > > Simon Laws wrote:
> > >> I'm trying to run up the Axis2C server configured with C++/SCA from
> > >> svn. The
> > >> server crashes on start up having reported the following debug...
> > >>
> > >> C:\simon\apps\axis2c-bin-0.95-win32\bin>axis2_http_server.exe -l 4
> > >> 7656:6784     >> tuscany::sca::util::ThreadLocal::~ThreadLocal
> > >> 7656:6784     << tuscany::sca::util::ThreadLocal::~ThreadLocal
> > >> 7656:6784     >> tuscany::sca::util::Mutex::~Mutex
> > >> 7656:6784     << tuscany::sca::util::Mutex::~Mutex
> > >>
> > >> I remember seeing a few threading type emails flying past. Is the
> > >> current
> > >> code in svn OK. If so I'll get it in the debugger and dig further.
> > >>
> > >> Thanks
> > >>
> > >> Simon
> > >>
> > >
> > > Simon,
> > >
> > > I recently added some code to allow SCA runtime to be used in the
> > > multithreaded environment (important on Windows as on Windows Httpd
> > > runs multithreaded), but I have not be running into any startup
> > > crashes. The log  you've included here simply shows that the server is
> >
> > > going down, and doing so invokes the destructors of two static objects
> > > (a ThreadLocal and a Mutex).
> > >
> > > Do you have any more context from your debugging session that could
> > > help us understand what's crashing the server?
> > >
> >
> > Simon,
> >
> > I tried Axis2c 0.94, 0.95 and 0.96 on Windows and they all work for me.
> > Is your environment set up like we usually set it up in our
> > runwsserver.bat files?
> >
> > --
> > Jean-Sebastien
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
> > For additional commands, e-mail: tuscany-dev-help@ws.apache.org
> >
> > Jean-Sebastien
>
> Thanks for that. At least I know it's my set up and not a more general
> program. I'll investigate.
>
> Regards
>
> Simon
>
I eventually tracked this down to somwthing strange that had been added to
my path automatically at some point since I ran this before Christmas. I
have to admit that I haven't tracked it down precisely I reinstalled axis
which had no effect and then reset the PATH which did. So I'm making
progress again now.

Simon

Re: [C++] SCA failure on Axis server run

Posted by Simon Laws <si...@googlemail.com>.
On 1/9/07, Jean-Sebastien Delfino <js...@apache.org> wrote:
>
> Jean-Sebastien Delfino wrote:
> > Simon Laws wrote:
> >> I'm trying to run up the Axis2C server configured with C++/SCA from
> >> svn. The
> >> server crashes on start up having reported the following debug...
> >>
> >> C:\simon\apps\axis2c-bin-0.95-win32\bin>axis2_http_server.exe -l 4
> >> 7656:6784     >> tuscany::sca::util::ThreadLocal::~ThreadLocal
> >> 7656:6784     << tuscany::sca::util::ThreadLocal::~ThreadLocal
> >> 7656:6784     >> tuscany::sca::util::Mutex::~Mutex
> >> 7656:6784     << tuscany::sca::util::Mutex::~Mutex
> >>
> >> I remember seeing a few threading type emails flying past. Is the
> >> current
> >> code in svn OK. If so I'll get it in the debugger and dig further.
> >>
> >> Thanks
> >>
> >> Simon
> >>
> >
> > Simon,
> >
> > I recently added some code to allow SCA runtime to be used in the
> > multithreaded environment (important on Windows as on Windows Httpd
> > runs multithreaded), but I have not be running into any startup
> > crashes. The log  you've included here simply shows that the server is
> > going down, and doing so invokes the destructors of two static objects
> > (a ThreadLocal and a Mutex).
> >
> > Do you have any more context from your debugging session that could
> > help us understand what's crashing the server?
> >
>
> Simon,
>
> I tried Axis2c 0.94, 0.95 and 0.96 on Windows and they all work for me.
> Is your environment set up like we usually set it up in our
> runwsserver.bat files?
>
> --
> Jean-Sebastien
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: tuscany-dev-help@ws.apache.org
>
> Jean-Sebastien

Thanks for that. At least I know it's my set up and not a more general
program. I'll investigate.

Regards

Simon

Re: [C++] SCA failure on Axis server run

Posted by Jean-Sebastien Delfino <js...@apache.org>.
Jean-Sebastien Delfino wrote:
> Simon Laws wrote:
>> I'm trying to run up the Axis2C server configured with C++/SCA from 
>> svn. The
>> server crashes on start up having reported the following debug...
>>
>> C:\simon\apps\axis2c-bin-0.95-win32\bin>axis2_http_server.exe -l 4
>> 7656:6784     >> tuscany::sca::util::ThreadLocal::~ThreadLocal
>> 7656:6784     << tuscany::sca::util::ThreadLocal::~ThreadLocal
>> 7656:6784     >> tuscany::sca::util::Mutex::~Mutex
>> 7656:6784     << tuscany::sca::util::Mutex::~Mutex
>>
>> I remember seeing a few threading type emails flying past. Is the 
>> current
>> code in svn OK. If so I'll get it in the debugger and dig further.
>>
>> Thanks
>>
>> Simon
>>
>
> Simon,
>
> I recently added some code to allow SCA runtime to be used in the 
> multithreaded environment (important on Windows as on Windows Httpd 
> runs multithreaded), but I have not be running into any startup 
> crashes. The log  you've included here simply shows that the server is 
> going down, and doing so invokes the destructors of two static objects 
> (a ThreadLocal and a Mutex).
>
> Do you have any more context from your debugging session that could 
> help us understand what's crashing the server?
>

Simon,

I tried Axis2c 0.94, 0.95 and 0.96 on Windows and they all work for me. 
Is your environment set up like we usually set it up in our 
runwsserver.bat files?

-- 
Jean-Sebastien


---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org


Re: [C++] SCA failure on Axis server run

Posted by Jean-Sebastien Delfino <js...@apache.org>.
Simon Laws wrote:
> I'm trying to run up the Axis2C server configured with C++/SCA from 
> svn. The
> server crashes on start up having reported the following debug...
>
> C:\simon\apps\axis2c-bin-0.95-win32\bin>axis2_http_server.exe -l 4
> 7656:6784     >> tuscany::sca::util::ThreadLocal::~ThreadLocal
> 7656:6784     << tuscany::sca::util::ThreadLocal::~ThreadLocal
> 7656:6784     >> tuscany::sca::util::Mutex::~Mutex
> 7656:6784     << tuscany::sca::util::Mutex::~Mutex
>
> I remember seeing a few threading type emails flying past. Is the current
> code in svn OK. If so I'll get it in the debugger and dig further.
>
> Thanks
>
> Simon
>

Simon,

I recently added some code to allow SCA runtime to be used in the 
multithreaded environment (important on Windows as on Windows Httpd runs 
multithreaded), but I have not be running into any startup crashes. The 
log  you've included here simply shows that the server is going down, 
and doing so invokes the destructors of two static objects (a 
ThreadLocal and a Mutex).

Do you have any more context from your debugging session that could help 
us understand what's crashing the server?

-- 
Jean-Sebastien


---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org