try putting try/catch block around the code in main() routine. Something
like:
try
{
}
catch( AxisException &e)
{
cout << "Exception : " << e.what() << endl;
}
catch(...)
{
cout << "Unknown Exception occured."
Not surebut googling the original message I found this:
http://support.microsoft.com/kb/884538
So you may need to play around with compile options or load some sort of
fix.
Nadir Amra
"ss ak" <[EMAIL PROTECTED]> wrote on 12/04/2008 10:42:42 PM:
> [image removed]
>
> one more error!
Unhandled exception at 0x77e4bee7 in SN.exe: Microsoft C++ exception:
axiscpp::AxisEngineException at memory location 0x0012f834..
what does this mean?
client code just have the stub generated by axis C++ call
int main (int argc, char *argv[])
{
printf("\n Hello main");
PortType stub((const char *)"http://device/xmlService",APTHTTP1_1);
return 0;
}
PortType class declaration(generated by axis c++)
class PortType :*public Stub *
{
pu
Hi,
I have wsdl when I run JAVA AXIS
-it created stubs and there are few interfaces and there are implemented in
the other classes
How can I relate these interfaces and classes in AXIS C++.
when i call the service in c++,i get a runtime error.
I am working in windows...and just client code.
in
Namespaces are taking care of by the stubs.
You may need to configure the axiscpp.conf file to match your
installation.
The axiscpp.conf file is located in either /etc. The following
code shows a sample template configuration file:
ClientLogPath:/test/generated/cpp/ClientLog.taw
Transport_h
don't forget to escape the slashes in you input
it may not like /x... ?
-Message d'origine-
De : ss ak [mailto:[EMAIL PROTECTED]
Envoyé : jeudi, décembre 4, 2008 12:16
À : Apache AXIS C Developers List
Objet : Re: client runtime error
its a runtime...
error pops up...and
tha applic
Hi,
I created stubs using gsoap and axis c++.
Could not get both the client working,,,
Unlike in gsoap namespaces and endpoint...
my gsoap client can talk to the device but the response fails...
my question isgsoap has namespaces...
class sBinding
{ public:
/// Runtime engine context
what is the error
Nadir Amra
"ss ak" <[EMAIL PROTECTED]> wrote on 12/04/2008 10:43:55 AM:
> [image removed]
>
> Re: client runtime error
>
> ss ak
>
> to:
>
> Apache AXIS C Developers List
>
> 12/04/2008 10:46 AM
>
> Please respond to "Apache AXIS C Developers List"
>
> Below the ma
Below the main client ...not yet added the rest of implementation...
IT crashes here...runtime error...
int main (int argc, char *argv[])
{
printf("\n Hello main");
PortType stub("http://device/xmlService";);
printf("\n Hello main 2");
printf("\n Hello main 3");
//session s = open
If endpoint in WSDL file is OK, then you can do
PortType pt;
If you want to specify another endpoint, then
PortType pt("http:.");
Nadir Amra
"ss ak" <[EMAIL PROTECTED]> wrote on 12/04/2008 12:18:00 AM:
> [image removed]
>
> client runtime error
>
> ss ak
>
> to:
>
> axis-c-dev
11 matches
Mail list logo