RE: Axis2c Soap Engine

2008-07-24 Thread Shobha AC
Thank You All..

 

  _  

From: Supun Kamburugamuva [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 24, 2008 11:24 AM
To: Apache AXIS C User List
Subject: Re: Axis2c Soap Engine

 

Hi Shoba,

The directories that contains the core code are

src/core/* 
Ignore the directories src\core\transport\amqp and src\core\transport\tcp

src/modules/mod_addr

util/*

axiom/*

guththila/* (if you use libxml2 this directory is not needed)

neethi/*

All the directories are relative to the root of Axis2/C distribution.

Supun..

On Thu, Jul 24, 2008 at 10:38 AM, Milinda Pathirage
[EMAIL PROTECTED] wrote:

There is a tool called 'sloccount' in Linux. You can use it to calculate the
number of lines.

Thanks
Milinda.

 

On Wed, Jul 23, 2008 at 10:48 AM, Shobha AC [EMAIL PROTECTED] wrote:

Dear All,

Can u pls give me the source code size of (KLOC) ONLY Axis2c
Soap Engine, excluding the Axis2c HTTP server, and source related to Apache,
IIS etc..

 

Regards,

   Shobha





-- 
http://mpathirage.com
http://wso2.org Oxygen for Web Service Developers
http://wsaxc.blogspot.com Web Services With Axis2/C 




-- 
Software Engineer, WSO2 Inc 



Axis CPP new user - how to access an existing web-service

2008-07-24 Thread Deepak Warrier
Hi
 
I am trying to generate client code to access a predefined web-service using 
AxisCPP (on Windows using Eclipse CDT). I was able to generate the client-side 
stubs using WSDL2ws for the corresponding WSDL. Do I need to specify the 
web-service elsewhere explicitly (like a config file)? Are the client-side 
stubs enough to be able to connect to the web-service?
I am getting linking errors within my client code!!
Can someone help?
Thanks much
Deepak



Keep your kids safer online with Windows Live Family Safety. Help protect your 
kids. 
_
Stay in touch when you're away with Windows Live Messenger.
http://www.windowslive.com/messenger/overview.html?ocid=TXT_TAGLM_WL_messenger2_072008

Re: Axis CPP new user - how to access an existing web-service

2008-07-24 Thread Nadir Amra
Have you read the user guides at 
http://ws.apache.org/axis/cpp/documentation.html?

You will need to bind your client application to the axis_client dll.

If the address of the service in wsdl is correct, you do not need to do 
anything.

One last thing.  You should build AXIS from SVN repository since it has 
dozens of fixes that are not in the binaries.  Hopefully. so, we will 
release 1.6 but until then, build axis yourself.



Nadir Amra


Deepak Warrier [EMAIL PROTECTED] wrote on 07/24/2008 10:08:40 
AM:

 
 Hi
 
 I am trying to generate client code to access a predefined web-
 service using AxisCPP (on Windows using Eclipse CDT). I was able to 
 generate the client-side stubs using WSDL2ws for the corresponding 
 WSDL. Do I need to specify the web-service elsewhere explicitly 
 (like a config file)? Are the client-side stubs enough to be able to
 connect to the web-service?
 I am getting linking errors within my client code!!
 Can someone help?
 Thanks much
 Deepak
 
 
 
 
 Keep your kids safer online with Windows Live Family Safety. Help 
 protect your kids. 
 
 Stay in touch when you're away with Windows Live Messenger. IM 
 anytime you're online.

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



RE: Axis CPP new user - how to access an existing web-service

2008-07-24 Thread Deepak Warrier
Hi Nadir,
Thanks much for your response.
I did make some progress- I was able to link and build it using Visual Studio 
2005!! I guess the Axis Win32 binaries were not compatible with Eclipse CDT. 
However while executing the exe I did get an error - The error occurs within 
the following constructor :
 
 AppSBBean::AppSBBean()
 :Stub( , APTHTTP1_1)
 {
   
m_pCall-setEndpointURI(http://localhost:9080/LookAheadWSHttpRouter/services/AppSBBean;);
 }
 The errors is of the form:
   Unhandled exception at 0x7c812a5b in TestWebServiceClient.exe: Microsoft C++ 
exception: HTTPTransportException at memory location 0x0012f550..
 
Do you have an idea what might be going wrong?
Thanks much.
 
Deepak



 To: axis-c-user@ws.apache.org CC: axis-c-user@ws.apache.org Subject: Re: 
 Axis CPP new user - how to access an existing web-service From: [EMAIL 
 PROTECTED] Date: Thu, 24 Jul 2008 10:28:26 -0500  Have you read the user 
 guides at  http://ws.apache.org/axis/cpp/documentation.html?  You will 
 need to bind your client application to the axis_client dll.  If the 
 address of the service in wsdl is correct, you do not need to do  anything. 
  One last thing. You should build AXIS from SVN repository since it has  
 dozens of fixes that are not in the binaries. Hopefully. so, we will  
 release 1.6 but until then, build axis yourself.Nadir Amra   
 Deepak Warrier [EMAIL PROTECTED] wrote on 07/24/2008 10:08:40  AM:
  HiI am trying to generate client code to access a predefined web- 
  service using AxisCPP (on Windows using Eclipse CDT). I was able to   
 generate the client-side stubs using WSDL2ws for the corresponding   WSDL. 
 Do I need to specify the web-service elsewhere explicitly   (like a config 
 file)? Are the client-side stubs enough to be able to  connect to the 
 web-service?  I am getting linking errors within my client code!!  Can 
 someone help?  Thanks much  Deepak  Keep your kids 
 safer online with Windows Live Family Safety. Help   protect your kids.   
   Stay in touch when you're away with Windows Live Messenger. IM   
 anytime you're online.  
 - To 
 unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: 
 [EMAIL PROTECTED] 
_
Keep your kids safer online with Windows Live Family Safety.
http://www.windowslive.com/family_safety/overview.html?ocid=TXT_TAGLM_WL_family_safety_072008

Re: Axis2c Soap Engine

2008-07-24 Thread Rajika Kumarasiri
On Wed, Jul 23, 2008 at 10:48 AM, Shobha AC [EMAIL PROTECTED] wrote:

Interesting! axiom sources (.c) gave me a total of 26046 LOC using

find axiom/  -type f  -name  *.c  -exec wc -l {} \; | awk 'BEGIN { loc = 0;
} {loc += $1;} END{print  loc;} '


-Rajika

  Dear All,

 Can u pls give me the source code size of (KLOC) ONLY Axis2c
 Soap Engine, excluding the Axis2c HTTP server, and source related to Apache,
 IIS etc..



 Regards,

Shobha




-- 
http://wso2.org/
http://llvm.org/


RE: Axis CPP new user - how to access an existing web-service

2008-07-24 Thread Nadir Amra
Not sure VS 2005 is supported.  I think earliest VS we use is 2006.  Not 
sure it matters although I thought I would bring it up. 

Did you rebuilt axis from latest code in svn?

Nadir Amra


Deepak Warrier [EMAIL PROTECTED] wrote on 07/24/2008 11:24:46 
AM:

 Hi Nadir,
 Thanks much for your response.
 I did make some progress- I was able to link and build it using 
 Visual Studio 2005!! I guess the Axis Win32 binaries were not 
 compatible with Eclipse CDT. 
 However while executing the exe I did get an error - The error 
 occurs within the following constructor :
 
  AppSBBean::AppSBBean()
  :Stub( , APTHTTP1_1)
  {
m_pCall-setEndpointURI(http://localhost:
 9080/LookAheadWSHttpRouter/services/AppSBBean);
  }
  The errors is of the form:
Unhandled exception at 0x7c812a5b in TestWebServiceClient.exe: 
 Microsoft C++ exception: HTTPTransportException at memory location 
 0x0012f550..
 
 Do you have an idea what might be going wrong?
 Thanks much.
 
 Deepak
 
 
 
 
 
  To: axis-c-user@ws.apache.org
  CC: axis-c-user@ws.apache.org
  Subject: Re: Axis CPP new user - how to access an existing web-service
  From: [EMAIL PROTECTED]
  Date: Thu, 24 Jul 2008 10:28:26 -0500
  
  Have you read the user guides at 
  http://ws.apache.org/axis/cpp/documentation.html?
  
  You will need to bind your client application to the axis_client dll.
  
  If the address of the service in wsdl is correct, you do not need to 
do 
  anything.
  
  One last thing. You should build AXIS from SVN repository since it has 

  dozens of fixes that are not in the binaries. Hopefully. so, we will 
  release 1.6 but until then, build axis yourself.
  
  
  
  Nadir Amra
  
  
  Deepak Warrier [EMAIL PROTECTED] wrote on 07/24/2008 
10:08:40 
  AM:
  
   
   Hi
   
   I am trying to generate client code to access a predefined web-
   service using AxisCPP (on Windows using Eclipse CDT). I was able to 
   generate the client-side stubs using WSDL2ws for the corresponding 
   WSDL. Do I need to specify the web-service elsewhere explicitly 
   (like a config file)? Are the client-side stubs enough to be able to
   connect to the web-service?
   I am getting linking errors within my client code!!
   Can someone help?
   Thanks much
   Deepak
   
   
   
   
   Keep your kids safer online with Windows Live Family Safety. Help 
   protect your kids. 
   
   Stay in touch when you're away with Windows Live Messenger. IM 
   anytime you're online.
  
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
  
 
 
 Keep your kids safer online with Windows Live Family Safety. Help 
 protect your kids.

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