RE: [Axis2] question on http transport...

2007-02-07 Thread Raju, Prabhakar \(P.\)
Hi,

I have created this as a jira issue. But, recently I realized that this
problem could be with the server side also. The client could be merely
blocked as server is not responding. Please note that the server was
written using axis2 java with possibly default connection settings.

FYI 

-Original Message-
From: Dinesh Premalal [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 02, 2007 12:13 AM
To: axis-c-user@ws.apache.org
Subject: Re: [Axis2] question on http transport...

Hi,

> how do I send the code? as an attachment?

Please create a jira issue and attach your code there. It will be
easier to track.

thanks,
Dinesh
-- 
Dinesh Premalal
[EMAIL PROTECTED]
WSO2, Inc.; http://www.wso2.com/
GPG Key ID : A255955C
GPG Key Finger Print : C481 E5D4 C27E DC34 9257  0229 4F44 266E A255
955C

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [Axis2] question on http transport...

2007-02-01 Thread Raju, Prabhakar \(P.\)
Hi,
 
well I know that service client works with unlimited messages with one
instance. We are using( for some reasons) call structure given in the
code http/sender/http_client.c with a slightly modified
axis2_http_client_send (fixed for memory leaks). This works fine if we
re-create the client instance every time but uses too many random ports.
If I try to use a single instance of axis2_http_client_t and
axis2_env_t, it does work for 50 calls. Any pointers will be helpful.
 
regards



From: Nabeel Yoosuf [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 01, 2007 4:58 PM
To: Apache AXIS C User List
Subject: Re: [Axis2] question on http transport...


I've used a single client (through service client API) to send many
(thousands) messages without any sorta hanging with axis-.96 on windows.
Please try version 0.96 instead of 0.95. If you still experience the
problem, you might want to post a code sample which demonstrate the
issue. 

Nabeel.


On 2/1/07, Prabhakar Raju <[EMAIL PROTECTED]> wrote: 






Hi,

Is the http client/server designed/built to send multiple
messages with a single instance of axis2_http_client? Apparently it does
it but hangs at CLIENT_RECIEVE_HEADER call after 50 times (on win32) and
about 100 times in linux. I'm also having only one instance of the
environment. I'm using axis-95. 

Regards

Prabha




Get live scores and news about your team: Add the Live.com
Football Page 
- To
unsubscribe, e-mail: [EMAIL PROTECTED] For
additional commands, e-mail: [EMAIL PROTECTED] 




[Axis2] question on http transport...

2007-02-01 Thread Raju, Prabhakar \(P.\)
Hi,

Is the http client/server designed/built to send multiple messages with
a single instance of axis2_http_client? Apparently it does it but hangs
at CLIENT_RECIEVE_HEADER call after 50 times (on win32) and about 100
times in linux. I'm also having only one instance of the environment.

Regards

Prabha


[axis2c] question on http transport...

2007-02-01 Thread Raju, Prabhakar \(P.\)
Hi,

Is the http client/server designed/built to send multiple messages with
a single instance of axis2_http_client? Apparently it does it but hangs
at CLIENT_RECIEVE_HEADER call after 50 times (on win32) and about 100
times in linux. I'm also having only one instance of the environment.

Regards

Prabha


[axis2c] question on http transport...

2007-02-01 Thread Raju, Prabhakar \(P.\)
Hi,

Is the http client/server designed/built to send multiple messages with
a single instance of axis2_http_client? Apparently it does it but hangs
at CLIENT_RECIEVE_HEADER call after 50 times (on win32) and about 100
times in linux. I'm also having only one instance of the environment.

Regards

Prabha


[Axis2] build on solaris...

2006-12-18 Thread Raju, Prabhakar \(P.\)
Hi,

I see some of you have built on solaris 8. Please let us know which
compiler you used and what setting you did for "configure" script.
Initally I tried the default (which chose gcc). I had a bad compilion
error in get_mac_addr. I went past that using CC as my compiler. I get a
bunch of other errors in minizip module (due to old style C syntax of
function declarions).

FYI


[Axis2] Simple svc client or http client crashing in linux...

2006-12-08 Thread Raju, Prabhakar \(P.\)
Hi,
The problem is fixed now. We had to set the client TIMEOUT explicitly.
FYI



[Axis2] questions on axis2/c on linux...

2006-12-08 Thread Raju, Prabhakar \(P.\)
Hi,


1) I built your samples on the SuSE linux (8.1) box with gcc version
3.2.2. When I tried to run the simple axis server, it is dying with this
error.

./axis2_http_server: /lib/libc.so.6: version `GLIBC_2.3' not found
(required by ./axis2_http_server)
./axis2_http_server: /lib/libc.so.6: version `GLIBC_2.3' not found
(required by .../axis2c-bin-0.95-linux/lib/libaxis2_engine.so.0)

When I build the distribution from your source and then create samples,
I don't see this error when I run the server. But, I have other issues
with the client which I have posted (ex. The client crashes after random
no. of calls).

2) which version of gcc  for which this 0.95 release has been built on?

regards



Simple svc client or http client crashing in linux...

2006-12-07 Thread Raju, Prabhakar \(P.\)
Hi,

If I run the simple server and echo client ( axis2/c) , if the server
dies or hangs for a while (I think) , the client crashes with
segmentation fault. To test this, I ran the sample client echo.c 
Something like this.

 for(i=0;i<10;++i){
ret_node = AXIS2_SVC_CLIENT_SEND_RECEIVE(svc_client, env, payload);
printf("%d times\n", i); 
}

The call ran about 1000 times and the client reported SIGSEGV. I face
the same problem, using http_client for our program. The call fails at
random (either 300 calls or 16000 calls or 5000 calls).

My linux version is Suse 8.1

FYI



Question on namspace prefix...

2006-09-11 Thread Raju, Prabhakar \(P.\)
Title: Question on namspace prefix...






Hi,


I tried removing the automatically generated namespace prefix (something like xmlns:"ns1"…) for method element (for method call) using the serialized call removeNamespacePrefix(ns) after calling createSoapMethod(,). But it did not remove the prefix. What is the appropriate use of this call and should I remove/change  that  prefix only thru' handlers?

regards





RE: Error : Cannot deserialize the requested element

2006-08-29 Thread Raju, Prabhakar \(P.\)



Hi,
 
I think I know this one! Check the path name of the service 
URL. It is case sensitive.
 
FYI


From: Vijaya Bhaskar Peddinti 
[mailto:[EMAIL PROTECTED] Sent: Tuesday, August 29, 2006 
7:07 AMTo: Apache AXIS C User ListSubject: Error : Cannot 
deserialize the requested element


Hi 
all,
I am trying to run 
calculator sample given in the sample and I am getting the following 
error:
 
Error : Cannot 
deserialize the requested element
 
 
Guide me in this 
regards.
 
Regards,
Bhaskar.




From: John 
Hawkins [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 29, 2006 2:24 
PMTo: Apache AXIS C User ListSubject: Re: Axis C++ Installation and 
Configuration Guide
 
Ah ! 
 maybe you've been tricked 
by the unix variation whereby the axiscpp.conf file has to be in 
"$AXISCPP_DEPLOY/etc" 

  
  

  Krankurs 
  Leonid <[EMAIL PROTECTED]> 
  
  25/08/2006 
  16:29 
  


  
Please respond 
to"Apache AXIS C User 
List" 

  

  


  
To
  
axis-c-user@ws.apache.org 


  
cc
  
 

  
Subject
  
Re: Axis C++ 
Installation and Configuration 
Guide
   
  


  
 
  
 
  
please look close on         
AXISCPP_DEPLOY="/usr/local/axiscpp_deploy"set LIBRARY_PATHS 
actually did ask about 
      
 LD_LIBRARY_PATHThank 
youJohn Hawkins 
wrote:> 
> AXISCPP_DEPLOY is used on all 
platforms.> 
> > > 
> > > 
> Krankurs Leonid 
<[EMAIL PROTECTED]> > 
25/08/2006 15:52> Please respond 
to> "Apache AXIS C User List" 
> > 
> To> axis-c-user@ws.apache.org> cc> 
> 
Subject> Axis C++ Installation 
and Configuration Guide> 
> > > 
> > > 
> Hi,> > Looks 
like > Axis C++ Installation and 
Configuration Guide is broken in part of > > 
<> Client Installation and 
Configuration> 
> set AXISCPP_DEPLOY 
> 
AXISCPP_DEPLOY="/usr/local/axiscpp_deploy"set LIBRARY_PATHS 
> The library path needs to have 
the xml parser libraries and the axis> libraries included.> > 
Linux:> 
LD_LIBRARY_PATH="> 
directory>/lib:$AXISCPP_DEPLOY/lib:$LD_LIBRARY_PATH"> >>> 
> is this for all platforms 
build? or Linux only? Do one need this env> variable set to run Axis? > > Thank 
you> > > -- 
> View this message in context: 
> 
http://www.nabble.com/Axis-C%2B%2B-Installation-and-Configuration-Guide-tf2165175.html#a5984974> > Sent 
from the Axis - C++ - User forum at Nabble.com.> > 
> 
-> To unsubscribe, e-mail: 
[EMAIL PROTECTED]> For additional commands, e-mail: 
[EMAIL PROTECTED]> 
> > > 
-- View this message in context: 
http://www.nabble.com/Axis-C%2B%2B-Installation-and-Configuration-Guide-tf2165175.html#a5985748Sent from the Axis - C++ - User forum at 
Nabble.com.-To unsubscribe, e-mail: 
[EMAIL PROTECTED]For additional commands, e-mail: 
[EMAIL PROTECTED]

  
  
 CAUTION - 
  Disclaimer *This e-mail contains PRIVILEGED AND 
  CONFIDENTIAL INFORMATION intended solely for the use of the addressee(s). 
  If you are not the intended recipient, please notify the sender by e-mail 
  and delete the original message. Further, you are not to copy, disclose, 
  or distribute this e-mail or its contents to any other person and any such 
  actions are unlawful. This e-mail may contain viruses. Infosys has taken 
  every reasonable precaution to minimize this risk, but is not liable for 
  any damage you may sustain as a result of any virus in this e-mail. You 
  should carry out your own virus checks before opening the e-mail or 
  attachment. Infosys reserves the right to monitor and review the content 
  of all messages sent to or from this e-mail address. Messages sent to or 
  from this e-mail address may be stored on the Infosys e-mail 
  system.***INFOSYS End of Disclaimer 
  INFOSYS***


To see the soap message...

2006-08-23 Thread Raju, Prabhakar \(P.\)
Title: To see the soap message...






Hi,


From axis c++ classes, to see the soap message sent / received, am I to use this method ?


virtual void IWrapperSoapDeSerializer::getChardataAs  (  void *    pValue,  

  XSDTYPE    type 

 )  [pure virtual] 

Deserialize character data, ie the data typically enclosed by an XML tag

 



FYI





RE: What is the best AXIS C++ practice to implement request/response MEP

2006-08-22 Thread Raju, Prabhakar \(P.\)
Me too. Try out the samples to get an idea.

FYI 

-Original Message-
From: leo_k2 [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 22, 2006 9:11 AM
To: axis-c-user@ws.apache.org
Subject: What is the best AXIS C++ practice to implement
request/response MEP


I am a novice to AXIS C++. What would be the best AXIS C++ practice to
implement request/response MEP - no proxy object - just sending a SOAP
request and getting a SOAP response in one call. Is there any sample
implementing this pattern? 
Is that about handles and chains?  Thank you.
-- 
View this message in context:
http://www.nabble.com/What-is-the-best-AXIS-C%2B%2B-practice-to-implemen
t-request-response-MEP-tf2146224.html#a5925179
Sent from the Axis - C++ - User forum at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Apache axis not loading...

2006-08-22 Thread Raju, Prabhakar \(P.\)
Nothig specific I could see. Is there a trace or log of compilation? It
just said failed with error code 1.

 FYI

-Original Message-
From: Adrian Dick [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 22, 2006 3:35 AM
To: Apache AXIS C User List
Subject: Re: Apache axis not loading...

Hi,

This based on the location in the ANT scripts at which failure occured,
it
sounds like the Apache module failed to compile.  What were the
compilation
errors (You should see these just before the point at which the ANT
script
indicated a failure) ?

Adrian
___
Adrian Dick ([EMAIL PROTECTED])


"Raju, Prabhakar \(P.\)" <[EMAIL PROTECTED]> wrote on 21/08/2006 21:09:18:

> Hi,
> The problem is not with apache. My build did not create this file
> libaxiscpp_mod2.so. When I turned the flags on for apache 2 modules,
> g++  failed just before building apache20 libs at line 27 of
> buildApache20Module.xml.
>  Line 27: exceptions="true"
> outtype="shared" multithreaded="true">
> Any clues?
> regards


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Apache axis not loading...

2006-08-21 Thread Raju, Prabhakar \(P.\)
Title: Apache axis not loading...






Hi,


The problem is not with apache. My build did not create this file libaxiscpp_mod2.so. When I turned the flags on for apache 2 modules, g++  failed just before building apache20 libs at line 27 of buildApache20Module.xml.

    

Line 27: exceptions="true" outtype="shared" multithreaded="true">


Any clues?


regards





Apache axis not loading...

2006-08-21 Thread Raju, Prabhakar \(P.\)
Title: Apache axis not loading...






Hi,


I build the axis from src on linux. I set the flags for apache2 to be true. When I start the server, I get this message. As far as I know, this ".so" file is not build by the build from src. I could see it in the bin distribution. What could be the problem?

Httpd.conf lines as follows…


#Axis c++ install

#

LoadModule axis_module modules/libaxiscpp_mod2.so



SetHandler axis







httpd: Syntax error on line 410 of /proj/daps/apache/conf/httpd.conf: API module structure `axis_module' in file /proj/daps/apache/modules/libaxiscpp_mod2.so is garbled - perhaps this is not an Apache module DSO?




RE: axis build issue

2006-08-17 Thread Raju, Prabhakar \(P.\)
Hi,

After setting the environment and running ant, I'm getting this error.
Any help is appreciated. 
...
compileClient:

compileAxisClient:

BUILD FAILED
/ford/.p_daps/daps/ws-axis/c/build.xml:226: The following error occurred
while executing this line:
/ford/.p_daps/daps/ws-axis/c/build.xml:215: The following error occurred
while executing this line:
/ford/.p_daps/daps/ws-axis/c/build.xml:93: The following error occurred
while executing this line:
/ford/.p_daps/daps/ws-axis/c/build/buildClient.xml:8: Directory
/ford/.p_daps/obj/objects creation was not successful for an unknown
reason

--
Also, for a default setup on linux, do I have to copy build.Linux.props
to build.common.props? Or is it on top of common?

HEL! If axis is getting difficult to install, my workplace is
considering alternatives.

regards

-Original Message-
From: Adrian Dick [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 17, 2006 10:23 AM
To: Apache AXIS C User List
Subject: Re: Configure file missing in linux source

Hi,

Assuming you're talking about Axis C++ 1.x, the "configure" system
hasn't
been supported for some time now.
You can find the current build instructions here:
http://ws.apache.org/axis/cpp/antbuild-guide.html
And the installation instructions here:
http://ws.apache.org/axis/cpp/install-guide.html

Regards,
Adrian
___
Adrian Dick ([EMAIL PROTECTED])


"Raju, Prabhakar \(P.\)" <[EMAIL PROTECTED]> wrote on 17/08/2006 15:12:20:

> Hi,
> The file "configure" is missing in linux src download. I couln't
> install. Please help.
> regards


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Configure file missing in linux source

2006-08-17 Thread Raju, Prabhakar \(P.\)
Also, Do I have to build the samples only with ant?

regards 

-Original Message-
From: Adrian Dick [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 17, 2006 10:23 AM
To: Apache AXIS C User List
Subject: Re: Configure file missing in linux source

Hi,

Assuming you're talking about Axis C++ 1.x, the "configure" system
hasn't
been supported for some time now.
You can find the current build instructions here:
http://ws.apache.org/axis/cpp/antbuild-guide.html
And the installation instructions here:
http://ws.apache.org/axis/cpp/install-guide.html

Regards,
Adrian
___
Adrian Dick ([EMAIL PROTECTED])


"Raju, Prabhakar \(P.\)" <[EMAIL PROTECTED]> wrote on 17/08/2006 15:12:20:

> Hi,
> The file "configure" is missing in linux src download. I couln't
> install. Please help.
> regards


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Configure file missing in linux source

2006-08-17 Thread Raju, Prabhakar \(P.\)
Hi,

I'm trying to use the bin distribution you mentioned. Can I have  the
client and server run from same deployment area? Both seems to use the
same axiscpp.conf file.

regards

-Original Message-
From: Adrian Dick [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 17, 2006 10:23 AM
To: Apache AXIS C User List
Subject: Re: Configure file missing in linux source

Hi,

Assuming you're talking about Axis C++ 1.x, the "configure" system
hasn't
been supported for some time now.
You can find the current build instructions here:
http://ws.apache.org/axis/cpp/antbuild-guide.html
And the installation instructions here:
http://ws.apache.org/axis/cpp/install-guide.html

Regards,
Adrian
___
Adrian Dick ([EMAIL PROTECTED])


"Raju, Prabhakar \(P.\)" <[EMAIL PROTECTED]> wrote on 17/08/2006 15:12:20:

> Hi,
> The file "configure" is missing in linux src download. I couln't
> install. Please help.
> regards


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Configure file missing in linux source

2006-08-17 Thread Raju, Prabhakar \(P.\)
Title: Configure file missing in linux source






Hi,


The file "configure" is missing in linux src download. I couln't install. Please help.


regards





Have trouble building c++ samples for axis...

2006-08-15 Thread Raju, Prabhakar \(P.\)
Title: Have trouble building c++ samples for axis...






Hi,


I installed ant, ant-contrib. I created this Axis_Folder. And ran "ant -f buildSamples.xml". I get this message. Please help.

--

BUILD FAILED

C:\Simple_Axis_Server\Axis\buildSamples.xml:29: The following error occurred while executing this line:

C:\Simple_Axis_Server\Axis\build\buildInitialize.xml:25: Cannot find C:\Simple_Axis_Server\Axis/build/Initialize.xml imported from C:\Simple_Axis_Server\Axis\build\buildInitialize.xml

Total time: 0 seconds

C:\Simple_Axis_Server\Axis> 


--

regards