AXIX C++ :- Error starting Apache with Axis C++

2007-10-16 Thread Yogender Singh01


Hi All,

I am using [axis-c-1.6b-Win32-trace-bin] and Apache 
[apache_2.2.6-win32-x86-no_ssl.msi].
For xerces I am using [xerces-c2_2_0-win32].

I have copied the xerces-c_2_2_0.dll to respective lib directories and added 
the path in PATH vairiable.
After doing this when I m starting the Apache server using below mentioned 
method I ma getting this error.

C:\Apache2.2\bin>httpd -k start
httpd: Syntax error on line 486 of C:/Apache2.2/conf/httpd.conf: Cannot load C:/
Apache2.2/modules/mod_axis2.so into server: The specified module could not be 
found.

If anybody have encountered this error before please tell me how to resolve this


Now I have deployed everything as mentioned here:-
Setting up the build environment and building Axis

For Xerces Parser

1) Copy [Xerces_Folder]\lib\xerces-c_2.lib to [Checkout_Folder]\lib\xerces\ 
directory.

2) Copy [Xerces_Folder]\include\xercesc to [Checkout_Folder]\include\xerces\ 
directory.

For apache 2.X:

1) Copy the include files in "[Apache_Folder]\include" directory to 
"[Checkout_Folder]\include\apache2_0\"

2) Copy the following lib files libapr.lib, libhttpd.lib files from 
"[Apache_Folder]\lib" to "[Checkout_Folder]\lib\apache2_0".


Deploying Axis in Apache

1) Create a directory structure called "Axis" inside [Apache_Folder] as follows.
(Instead, you can copy the folder [Checkout_Folder]\deploy to [Apache_Folder] 
and rename it to "Axis" and you will find some of the files that you are asked 
to create in this guide, already existing in that folder)

Axis
|__ lib (Copy [Xerces_Folder]\bin\xerces-c_2_2_0.dll and paste it inside)
|__ logs (log files are located here)
|__ conf (server.wsdd file is located here)
|__ webservices (The place to put webservice dlls)
|__ wsdls (wsdl files of the deployed web services are located here)

2) Set an environment variable named AXISCPP_DEPLOY and give 
[Apache_Folder]\Axis as the value.

i) You will find AxisServer.dll and Apache_Module in [Checkout_Folder]\bin 
directory.
ii) Copy mod_axis2.dll to [Apache_Folder]\modules directory of your apache 
installation.

Copy AxisServer.dll, HTTPTransport.dll, HTTPChannel.dll and AxisXMLParser.dll 
to [AXISCPP_DEPLOY]\lib\ directory and add that directory to your PATH 
environment variable. Or to any location specified by your PATH environment 
variable.

3) Set the "PATH" environment variable to the following directories.
   [Apache_Folder]\Axis\lib

4) Include the following lines at the bottom of the apache configuration file 
[Apache_Folder]\conf\httpd.conf

LoadModule axis_module modules/mod_axis2.dll

SetHandler axis


5) Create a file in [Apache_Folder]\Axis named "axiscpp.conf" which should 
contain the following lines.

LogPath:
WSDDFilePath:
XMLParser:
Transport_http:
Channel_HTTP:

 is the path to a file named AxisLog (The log file) and  is the path to 
the server.wsdd file. is the path to AxisTransport.dll if it's a HTTP(if 
the selected transport is SMTP then should give that path.) is the path to 
AxisXMLParser.dll.  is the path to the used Transport and  is the path 
to the Channel used

i.e.
LogPath:[Apache_Folder]\Axis\logs\AxisLog.log
WSDDFilePath:[Apache_Folder]\Axis\conf\server.wsdd
Transport_http:[Apache_Folder]\Axis\lib\HTTPTransport.dll
Channel_HTTP:[Apache_Folder]\Axis\lib\HTTPChannel.dll

XMLParser:[Apache_Folder]\Axis\lib\AxisXMLParser.dll

Note: If the HTTPTransport.dll, HTTPChannel.dll and AxisXMLParser.dll paths are 
not given in axiscpp.conf then the hard coded values will be used. For that set 
the path of these two in the PATH environment variable or copy them to the same 
location as the Client.exe.

Note:Make sure that xerces-c_2_2_0.dll ([Xerces_Folder]\bin) is pasted in 
%AXISCPP_DEPLOY%/lib/

6) Select start->programs->Apache HTTP server->Control Apache Server->stop to 
stop the apache server
(This is because apache will be started automatically by the installation 
program)

Open up a DOS terminal and give the command "apache -k start" to start apache 
(If Apache 2.0 server does not respond when started this way, try "apache -X").
Open a browser and verify whether you can browse http://localhost/ (or give the 
machines ip as http://xxx.xxx.xxx.xxx/). If apache is running you will see the 
Apache start page in the browser.



 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 
atta

Error starting Apache with Axis C++

2007-10-16 Thread Yogender Singh01



Hi All,

I am using [axis-c-1.6b-Win32-trace-bin] and Apache 
[apache_2.2.6-win32-x86-no_ssl.msi].
For xerces I am using [xerces-c2_2_0-win32].

I have copied the xerces-c_2_2_0.dll to respective lib directories and added 
the path in PATH vairiable.
After doing this when I m starting the Apache server using below mentioned 
method I ma getting this error.




Now I have deployed everything as mentioned here:-
Setting up the build environment and building Axis

For Xerces Parser

1) Copy [Xerces_Folder]\lib\xerces-c_2.lib to [Checkout_Folder]\lib\xerces\ 
directory.

2) Copy [Xerces_Folder]\include\xercesc to [Checkout_Folder]\include\xerces\ 
directory.

For apache 2.X:

1) Copy the include files in "[Apache_Folder]\include" directory to 
"[Checkout_Folder]\include\apache2_0\"

2) Copy the following lib files libapr.lib, libhttpd.lib files from 
"[Apache_Folder]\lib" to "[Checkout_Folder]\lib\apache2_0".


Deploying Axis in Apache

1) Create a directory structure called "Axis" inside [Apache_Folder] as follows.
(Instead, you can copy the folder [Checkout_Folder]\deploy to [Apache_Folder] 
and rename it to "Axis" and you will find some of the files that you are asked 
to create in this guide, already existing in that folder)

Axis
|__ lib (Copy [Xerces_Folder]\bin\xerces-c_2_2_0.dll and paste it inside)
|__ logs (log files are located here)
|__ conf (server.wsdd file is located here)
|__ webservices (The place to put webservice dlls)
|__ wsdls (wsdl files of the deployed web services are located here)

2) Set an environment variable named AXISCPP_DEPLOY and give 
[Apache_Folder]\Axis as the value.

i) You will find AxisServer.dll and Apache_Module in [Checkout_Folder]\bin 
directory.
ii) Copy mod_axis2.dll to [Apache_Folder]\modules directory of your apache 
installation.

Copy AxisServer.dll, HTTPTransport.dll, HTTPChannel.dll and AxisXMLParser.dll 
to [AXISCPP_DEPLOY]\lib\ directory and add that directory to your PATH 
environment variable. Or to any location specified by your PATH environment 
variable.

3) Set the "PATH" environment variable to the following directories.
   [Apache_Folder]\Axis\lib

4) Include the following lines at the bottom of the apache configuration file 
[Apache_Folder]\conf\httpd.conf

LoadModule axis_module modules/mod_axis2.dll

SetHandler axis


5) Create a file in [Apache_Folder]\Axis named "axiscpp.conf" which should 
contain the following lines.

LogPath:
WSDDFilePath:
XMLParser:
Transport_http:
Channel_HTTP:

 is the path to a file named AxisLog (The log file) and  is the path to 
the server.wsdd file. is the path to AxisTransport.dll if it's a HTTP(if 
the selected transport is SMTP then should give that path.) is the path to 
AxisXMLParser.dll.  is the path to the used Transport and  is the path 
to the Channel used

i.e.
LogPath:[Apache_Folder]\Axis\logs\AxisLog.log
WSDDFilePath:[Apache_Folder]\Axis\conf\server.wsdd
Transport_http:[Apache_Folder]\Axis\lib\HTTPTransport.dll
Channel_HTTP:[Apache_Folder]\Axis\lib\HTTPChannel.dll

XMLParser:[Apache_Folder]\Axis\lib\AxisXMLParser.dll

Note: If the HTTPTransport.dll, HTTPChannel.dll and AxisXMLParser.dll paths are 
not given in axiscpp.conf then the hard coded values will be used. For that set 
the path of these two in the PATH environment variable or copy them to the same 
location as the Client.exe.

Note:Make sure that xerces-c_2_2_0.dll ([Xerces_Folder]\bin) is pasted in 
%AXISCPP_DEPLOY%/lib/

6) Select start->programs->Apache HTTP server->Control Apache Server->stop to 
stop the apache server
(This is because apache will be started automatically by the installation 
program)

Open up a DOS terminal and give the command "apache -k start" to start apache 
(If Apache 2.0 server does not respond when started this way, try "apache -X").
Open a browser and verify whether you can browse http://localhost/ (or give the 
machines ip as http://xxx.xxx.xxx.xxx/). If apache is running you will see the 
Apache start page in the browser.



 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***

[Axis2C]: query regarding wsdl file

2007-05-21 Thread Yogender Singh01

 <>  
Hi all,
I have written a wsdl file but when I am running WSDL2C on it its giving
error.
I have attached the wsdl file.
Is it written correctly?


Exception in thread "main"
org.apache.axis2.wsdl.codegen.CodeGenerationException
: Error parsing WSDL
at
org.apache.axis2.wsdl.codegen.CodeGenerationEngine.(CodeGenerat
ionEngine.java:137)
at org.apache.axis2.wsdl.WSDL2Code.main(WSDL2Code.java:32)
at org.apache.axis2.wsdl.WSDL2C.main(WSDL2C.java:28)
Caused by: org.apache.axis2.AxisFault
at org.apache.axis2.AxisFault.makeFault(AxisFault.java:377)
at
org.apache.axis2.description.WSDL11ToAxisServiceBuilder.populateServi
ce(WSDL11ToAxisServiceBuilder.java:296)
at
org.apache.axis2.description.WSDL11ToAllAxisServicesBuilder.populateA
llServices(WSDL11ToAllAxisServicesBuilder.java:100)
at
org.apache.axis2.wsdl.codegen.CodeGenerationEngine.(CodeGenerat
ionEngine.java:131)
... 2 more
Caused by: java.lang.NullPointerException
at
org.apache.axis2.description.WSDL11ToAxisServiceBuilder.createSchemaF
orPorttype(WSDL11ToAxisServiceBuilder.java:1250)
at
org.apache.axis2.description.WSDL11ToAxisServiceBuilder.generateWrapp
erSchema(WSDL11ToAxisServiceBuilder.java:1196)
at
org.apache.axis2.description.WSDL11ToAxisServiceBuilder.populateServi
ce(WSDL11ToAxisServiceBuilder.java:252)


 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***

name.wsdl
Description: Binary data
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

[AXIS2C] C-Client and Java Server

2007-05-16 Thread Yogender Singh01

Hi All,

Can I get any document how to deploy C-client with Java Server in AXIS
or Tomcat?

 

Regards,

Yogender



 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***

[Axis2c] query generating server side file from wsdl

2007-05-15 Thread Yogender Singh01

 <> 

Hi All,
I have written this sample wsdl file to perform the function to accept 2
strings and concatenate as output.
But when I am generating server side files. I am not getting getter and
setter methods in axis2_concat.c and axis2_concatResponse.c files
And in serialize and deserialize methods very less code in gettign
generated?


I am attaching my sample wsdl. 

Is it correct?
For this Do we have to add anything in wsdl files??

Regards,
Yogender


 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***

hello.wsdl
Description: Binary data
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

[AXIS2C] query regarding deploying the calculator services

2007-05-13 Thread Yogender Singh01

Hi all,

I am deploying the calculator services in Axis2c.

 

I generated all the files (server and client side) using wsdl2c tool.

 

Then for server side files, I did the necessary changes in
axis2_skel_Calculator.c file.

And for client side a new file for adding subtracting etc are written.

 

If I name my dll file generated from server side files as calculator.dll
then its working fine.

But if my dll file name is different (like calserver.dll) then it's not
working.

 

Where is it mentioned that dll file name should be calculator.dll??

Do we have to mention it somewhere in WSDL file???

 

 

Regards,

Yogender singh

 

 



 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***

RE: problem in running client

2007-05-08 Thread Yogender Singh01
What I found out that it does not support encoded use in the code in
wsdl file

http://schemas.xmlsoap.org/soap/encoding/"; 

namespace="http://localhost/axis/Calculator"; 

use="encoded"/>

 

 

So I have changed to literal

 

Is it fine ???

 

____

From: Yogender Singh01 [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 09, 2007 10:45 AM
To: Apache AXIS C User List
Subject: RE: problem in running client

 

Hi,

I have downloaded axis2-SNAPSHOT.

And added the jar files in AXIS2_CLASSPATH

 

When I am running the command 

java -classpath %AXIS2_CLASSPATH% org.apache.axis2.wsdl.WSDL2C -uri
calculator.wsdl -ss -sd -d adb -u

 

I am getting the error which previously I was not getting when I was
using jar files from Axis2-1.1.1

 

C:\axis2c\code\calc>java -classpath %AXIS2_CLASSPATH%
org.apache.axis2.wsdl.WSDL

2C -uri Calculator.wsdl -ss -sd -d adb -u

May 9, 2007 10:28:32 AM
org.apache.axis2.description.WSDL11ToAxisServiceBuilder

populateService

SEVERE:
org.apache.axis2.description.WSDL11ToAxisServiceBuilder$WSDLProcessingEx

ception: Encoded use is not supported

Exception in thread "main"
org.apache.axis2.wsdl.codegen.CodeGenerationException

: Error parsing WSDL

at
org.apache.axis2.wsdl.codegen.CodeGenerationEngine.(CodeGenerat

ionEngine.java:137)

at org.apache.axis2.wsdl.WSDL2Code.main(WSDL2Code.java:32)

at org.apache.axis2.wsdl.WSDL2C.main(WSDL2C.java:28)

Caused by: org.apache.axis2.AxisFault: Encoded use is not supported

at org.apache.axis2.AxisFault.makeFault(AxisFault.java:377)

at
org.apache.axis2.description.WSDL11ToAxisServiceBuilder.populateServi

ce(WSDL11ToAxisServiceBuilder.java:296)

at
org.apache.axis2.description.WSDL11ToAllAxisServicesBuilder.populateA

llServices(WSDL11ToAllAxisServicesBuilder.java:100)

at
org.apache.axis2.wsdl.codegen.CodeGenerationEngine.(CodeGenerat

ionEngine.java:131)

... 2 more

Caused by:
org.apache.axis2.description.WSDL11ToAxisServiceBuilder$WSDLProcessin

gException: Encoded use is not supported

at
org.apache.axis2.description.WSDL11ToAxisServiceBuilder.getPartsListF

romSoapBody(WSDL11ToAxisServiceBuilder.java:1541)

at
org.apache.axis2.description.WSDL11ToAxisServiceBuilder.createSchemaF

orPorttype(WSDL11ToAxisServiceBuilder.java:1292)

at
org.apache.axis2.description.WSDL11ToAxisServiceBuilder.generateWrapp

erSchema(WSDL11ToAxisServiceBuilder.java:1196)

at
org.apache.axis2.description.WSDL11ToAxisServiceBuilder.populateServi

ce(WSDL11ToAxisServiceBuilder.java:252)

... 4 more

 

What can be the cause of error??

 

Regards,

Yogender

 

________

From: Yogender Singh01 [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 08, 2007 9:59 AM
To: Apache AXIS C User List
Subject: RE: problem in running client

 

Ya am using Axis2-1.1.1 and using the jars from lib directory in
AXIS2_CLASSPATH.

 

Ok I ll try with latest nightly build and see.

 

Regards,

Yogender

 



From: Dushshantha Chandradasa
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 08, 2007 9:53 AM
To: Apache AXIS C User List
Subject: Re: problem in running client

 

What is the version of Axis2 java you are using for code generation? Try
downloading the latest nightly build of the Axis2 java from the
following link. 

http://people.apache.org/dist/axis2/nightly/axis2-SNAPSHOT.zip
<http://people.apache.org/dist/axis2/nightly/> 

regards,
Dushshantha

On 5/8/07, Yogender Singh01 < [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]> > wrote:


I run the client using command line by giving the name of exe.
And I have generated the code using databinding using the command.

For server:-
java -classpath %AXIS2_CLASSPATH%;.;%CLASSPATH%
org.apache.axis2.wsdl.WSDL2C -uri calculator.wsdl -ss -sd -d adb -u

For client:- 
java -classpath %AXIS2_CLASSPATH%;.;%CLASSPATH%
org.apache.axis2.wsdl.WSDL2C -uri calculator.wsdl -d adb -u

There are no external parameters var1 and var2 are hard coded inside the
code

AXIS2_ADD_SET_IN0(add_in, env, 10); 
AXIS2_ADD_SET_IN1(add_in, env, 10);

Ya echo client is working I have tested that out..

Regards,
Yogender

-Original Message-
From: Samisa Abeysinghe [mailto: [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]> ]
Sent: Tuesday, May 08, 2007 8:25 AM
To: Apache AXIS C User List
Subject: Re: problem in running client

Yogender Singh01 wrote:
>  <>
> Hi, 
> I am trying to run a calculator client for addition.
> I have checked the calculator service is succesfully deplyed in
services
> folder by checking the URL
> http://localhost:9090/axis2/services
>
> But I am getting the error while running the exe. The log file is
> attached for the same.
> I am using new release 1.0.
>
Looking at the log file, it is hard to figure out what is going wrong as


the l

RE: problem in running client

2007-05-08 Thread Yogender Singh01
Hi,

I have downloaded axis2-SNAPSHOT.

And added the jar files in AXIS2_CLASSPATH

 

When I am running the command 

java -classpath %AXIS2_CLASSPATH% org.apache.axis2.wsdl.WSDL2C -uri
calculator.wsdl -ss -sd -d adb -u

 

I am getting the error which previously I was not getting when I was
using jar files from Axis2-1.1.1

 

C:\axis2c\code\calc>java -classpath %AXIS2_CLASSPATH%
org.apache.axis2.wsdl.WSDL

2C -uri Calculator.wsdl -ss -sd -d adb -u

May 9, 2007 10:28:32 AM
org.apache.axis2.description.WSDL11ToAxisServiceBuilder

populateService

SEVERE:
org.apache.axis2.description.WSDL11ToAxisServiceBuilder$WSDLProcessingEx

ception: Encoded use is not supported

Exception in thread "main"
org.apache.axis2.wsdl.codegen.CodeGenerationException

: Error parsing WSDL

at
org.apache.axis2.wsdl.codegen.CodeGenerationEngine.(CodeGenerat

ionEngine.java:137)

at org.apache.axis2.wsdl.WSDL2Code.main(WSDL2Code.java:32)

at org.apache.axis2.wsdl.WSDL2C.main(WSDL2C.java:28)

Caused by: org.apache.axis2.AxisFault: Encoded use is not supported

at org.apache.axis2.AxisFault.makeFault(AxisFault.java:377)

at
org.apache.axis2.description.WSDL11ToAxisServiceBuilder.populateServi

ce(WSDL11ToAxisServiceBuilder.java:296)

at
org.apache.axis2.description.WSDL11ToAllAxisServicesBuilder.populateA

llServices(WSDL11ToAllAxisServicesBuilder.java:100)

at
org.apache.axis2.wsdl.codegen.CodeGenerationEngine.(CodeGenerat

ionEngine.java:131)

... 2 more

Caused by:
org.apache.axis2.description.WSDL11ToAxisServiceBuilder$WSDLProcessin

gException: Encoded use is not supported

at
org.apache.axis2.description.WSDL11ToAxisServiceBuilder.getPartsListF

romSoapBody(WSDL11ToAxisServiceBuilder.java:1541)

at
org.apache.axis2.description.WSDL11ToAxisServiceBuilder.createSchemaF

orPorttype(WSDL11ToAxisServiceBuilder.java:1292)

at
org.apache.axis2.description.WSDL11ToAxisServiceBuilder.generateWrapp

erSchema(WSDL11ToAxisServiceBuilder.java:1196)

at
org.apache.axis2.description.WSDL11ToAxisServiceBuilder.populateServi

ce(WSDL11ToAxisServiceBuilder.java:252)

... 4 more

 

What can be the cause of error??

 

Regards,

Yogender

 

____

From: Yogender Singh01 [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 08, 2007 9:59 AM
To: Apache AXIS C User List
Subject: RE: problem in running client

 

Ya am using Axis2-1.1.1 and using the jars from lib directory in
AXIS2_CLASSPATH.

 

Ok I ll try with latest nightly build and see.

 

Regards,

Yogender

 



From: Dushshantha Chandradasa
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 08, 2007 9:53 AM
To: Apache AXIS C User List
Subject: Re: problem in running client

 

What is the version of Axis2 java you are using for code generation? Try
downloading the latest nightly build of the Axis2 java from the
following link. 

http://people.apache.org/dist/axis2/nightly/axis2-SNAPSHOT.zip
<http://people.apache.org/dist/axis2/nightly/> 

regards,
Dushshantha

On 5/8/07, Yogender Singh01 < [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]> > wrote:


I run the client using command line by giving the name of exe.
And I have generated the code using databinding using the command.

For server:-
java -classpath %AXIS2_CLASSPATH%;.;%CLASSPATH%
org.apache.axis2.wsdl.WSDL2C -uri calculator.wsdl -ss -sd -d adb -u

For client:- 
java -classpath %AXIS2_CLASSPATH%;.;%CLASSPATH%
org.apache.axis2.wsdl.WSDL2C -uri calculator.wsdl -d adb -u

There are no external parameters var1 and var2 are hard coded inside the
code

AXIS2_ADD_SET_IN0(add_in, env, 10); 
AXIS2_ADD_SET_IN1(add_in, env, 10);

Ya echo client is working I have tested that out..

Regards,
Yogender

-Original Message-
From: Samisa Abeysinghe [mailto: [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]> ]
Sent: Tuesday, May 08, 2007 8:25 AM
To: Apache AXIS C User List
Subject: Re: problem in running client

Yogender Singh01 wrote:
>  <>
> Hi, 
> I am trying to run a calculator client for addition.
> I have checked the calculator service is succesfully deplyed in
services
> folder by checking the URL
> http://localhost:9090/axis2/services
>
> But I am getting the error while running the exe. The log file is
> attached for the same.
> I am using new release 1.0.
>
Looking at the log file, it is hard to figure out what is going wrong as


the log does not have any errors.

How did you run the client? Please send the command you ran with
arguments.

Also, does the echo client work?


Samisa...

- 
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). I

RE: problem in running client

2007-05-07 Thread Yogender Singh01
Ya am using Axis2-1.1.1 and using the jars from lib directory in
AXIS2_CLASSPATH.

 

Ok I ll try with latest nightly build and see.

 

Regards,

Yogender

 



From: Dushshantha Chandradasa
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 08, 2007 9:53 AM
To: Apache AXIS C User List
Subject: Re: problem in running client

 

What is the version of Axis2 java you are using for code generation? Try
downloading the latest nightly build of the Axis2 java from the
following link. 

http://people.apache.org/dist/axis2/nightly/axis2-SNAPSHOT.zip
<http://people.apache.org/dist/axis2/nightly/> 

regards,
Dushshantha

On 5/8/07, Yogender Singh01 < [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]> > wrote:


I run the client using command line by giving the name of exe.
And I have generated the code using databinding using the command.

For server:-
java -classpath %AXIS2_CLASSPATH%;.;%CLASSPATH%
org.apache.axis2.wsdl.WSDL2C -uri calculator.wsdl -ss -sd -d adb -u

For client:- 
java -classpath %AXIS2_CLASSPATH%;.;%CLASSPATH%
org.apache.axis2.wsdl.WSDL2C -uri calculator.wsdl -d adb -u

There are no external parameters var1 and var2 are hard coded inside the
code

AXIS2_ADD_SET_IN0(add_in, env, 10); 
AXIS2_ADD_SET_IN1(add_in, env, 10);

Ya echo client is working I have tested that out..

Regards,
Yogender

-Original Message-
From: Samisa Abeysinghe [mailto: [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]> ]
Sent: Tuesday, May 08, 2007 8:25 AM
To: Apache AXIS C User List
Subject: Re: problem in running client

Yogender Singh01 wrote:
>  <>
> Hi, 
> I am trying to run a calculator client for addition.
> I have checked the calculator service is succesfully deplyed in
services
> folder by checking the URL
> http://localhost:9090/axis2/services
>
> But I am getting the error while running the exe. The log file is
> attached for the same.
> I am using new release 1.0.
>
Looking at the log file, it is hard to figure out what is going wrong as


the log does not have any errors.

How did you run the client? Please send the command you ran with
arguments.

Also, does the echo client work?


Samisa...

- 
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 unsubscribe, e-mail: [EMAIL PROTECTED] 
For additional commands, e-mail: [EMAIL PROTECTED]

 



RE: problem in running client

2007-05-07 Thread Yogender Singh01

I run the client using command line by giving the name of exe.
And I have generated the code using databinding using the command.

For server:-
java -classpath %AXIS2_CLASSPATH%;.;%CLASSPATH%
org.apache.axis2.wsdl.WSDL2C -uri calculator.wsdl -ss -sd -d adb -u

For client:-
java -classpath %AXIS2_CLASSPATH%;.;%CLASSPATH%
org.apache.axis2.wsdl.WSDL2C -uri calculator.wsdl -d adb -u

There are no external parameters var1 and var2 are hard coded inside the
code

AXIS2_ADD_SET_IN0(add_in, env, 10);
AXIS2_ADD_SET_IN1(add_in, env, 10);

Ya echo client is working I have tested that out..

Regards,
Yogender

-Original Message-
From: Samisa Abeysinghe [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 08, 2007 8:25 AM
To: Apache AXIS C User List
Subject: Re: problem in running client

Yogender Singh01 wrote:
>  <>  
> Hi,
> I am trying to run a calculator client for addition.
> I have checked the calculator service is succesfully deplyed in
services
> folder by checking the URL
> http://localhost:9090/axis2/services
>
> But I am getting the error while running the exe. The log file is
> attached for the same.
> I am using new release 1.0.
>   
Looking at the log file, it is hard to figure out what is going wrong as

the log does not have any errors.

How did you run the client? Please send the command you ran with
arguments.

Also, does the echo client work?


Samisa...

-
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 unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



problem in running client

2007-05-07 Thread Yogender Singh01

 <>  
Hi,
I am trying to run a calculator client for addition.
I have checked the calculator service is succesfully deplyed in services
folder by checking the URL
http://localhost:9090/axis2/services

But I am getting the error while running the exe. The log file is
attached for the same.
I am using new release 1.0.

Regards,
Yogender



 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***

alltest.log
Description: Binary data
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

RE: [Axis2C] problem in linking and building

2007-05-02 Thread Yogender Singh01
Added axiom.lib axis2_engine.lib axis2_parser.lib axis2_util.lib
axis2_wsdl.lib xml_schema.lib in the VC++ input library modules.

 



From: Yogender Singh01 [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 02, 2007 12:25 PM
To: Apache AXIS C User List
Subject: [Axis2C] problem in linking and building

 

Hi all,

I have compiled the code in VC++ 6.0.

After that I am getting linking error.

 

I am not able to get the error.

Please tell me how to remove this error.

 

 

 

Linking...

   Creating library Debug/calc.lib and object Debug/calc.exp

axis2_mul.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_mulResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_sub.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_subResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_add.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_addResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_div.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_divResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_svc_skel_Calculator.obj : error LNK2001: unresolved external
symbol _axis2_log_impl_log_error

axis2_mul.obj : error LNK2001: unresolved external symbol
_axis2_log_impl_log_error

axis2_mulResponse.obj : error LNK2001: unresolved external symbol
_axis2_log_impl_log_error

axis2_sub.obj : error LNK2001: unresolved external symbol
_axis2_log_impl_log_error

axis2_subResponse.obj : error LNK2001: unresolved external symbol
_axis2_log_impl_log_error

axis2_add.obj : error LNK2001: unresolved external symbol
_axis2_log_impl_log_error

axis2_addResponse.obj : error LNK2001: unresolved external symbol
_axis2_log_impl_log_error

axis2_div.obj : error LNK2001: unresolved external symbol
_axis2_log_impl_log_error

axis2_divResponse.obj : error LNK2001: unresolved external symbol
_axis2_log_impl_log_error

axis2_mul.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_mulResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_sub.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_subResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_add.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_addResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_div.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_divResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_svc_skel_Calculator.obj : error LNK2001: unresolved external
symbol [EMAIL PROTECTED]

axis2_mul.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_mulResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_sub.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_subResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_add.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_addResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_div.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_divResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_svc_skel_Calculator.obj : error LNK2001: unresolved external
symbol [EMAIL PROTECTED]

axis2_svc_skel_Calculator.obj : error LNK2001: unresolved external
symbol [EMAIL PROTECTED]

Debug/calc.dll : fatal error LNK1120: 6 unresolved externals

Error executing link.exe.

 

 

Regards,

Yogender

 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***



[Axis2C] problem in linking and building

2007-05-01 Thread Yogender Singh01

Hi all,

I have compiled the code in VC++ 6.0.

After that I am getting linking error.

 

I am not able to get the error.

Please tell me how to remove this error.

 

 

 

Linking...

   Creating library Debug/calc.lib and object Debug/calc.exp

axis2_mul.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_mulResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_sub.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_subResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_add.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_addResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_div.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_divResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_svc_skel_Calculator.obj : error LNK2001: unresolved external
symbol _axis2_log_impl_log_error

axis2_mul.obj : error LNK2001: unresolved external symbol
_axis2_log_impl_log_error

axis2_mulResponse.obj : error LNK2001: unresolved external symbol
_axis2_log_impl_log_error

axis2_sub.obj : error LNK2001: unresolved external symbol
_axis2_log_impl_log_error

axis2_subResponse.obj : error LNK2001: unresolved external symbol
_axis2_log_impl_log_error

axis2_add.obj : error LNK2001: unresolved external symbol
_axis2_log_impl_log_error

axis2_addResponse.obj : error LNK2001: unresolved external symbol
_axis2_log_impl_log_error

axis2_div.obj : error LNK2001: unresolved external symbol
_axis2_log_impl_log_error

axis2_divResponse.obj : error LNK2001: unresolved external symbol
_axis2_log_impl_log_error

axis2_mul.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_mulResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_sub.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_subResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_add.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_addResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_div.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_divResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_svc_skel_Calculator.obj : error LNK2001: unresolved external
symbol [EMAIL PROTECTED]

axis2_mul.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_mulResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_sub.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_subResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_add.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_addResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_div.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_divResponse.obj : error LNK2001: unresolved external symbol
[EMAIL PROTECTED]

axis2_svc_skel_Calculator.obj : error LNK2001: unresolved external
symbol [EMAIL PROTECTED]

axis2_svc_skel_Calculator.obj : error LNK2001: unresolved external
symbol [EMAIL PROTECTED]

Debug/calc.dll : fatal error LNK1120: 6 unresolved externals

Error executing link.exe.

 

 

Regards,

Yogender



 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***

[Axis2C] Regarding WSDL2C tool for Axis2C

2007-04-25 Thread Yogender Singh01

Hi all,

 

Which jar file is to be included in CLASSPATH for this tool?

 

TIA

yogender

 



 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***

RE: Regarding web services through AXIC c++

2007-04-24 Thread Yogender Singh01
Hi all,
The error is resolved now for Axis2C[axis2c-bin-0.96-win32.zip] and
apache2.2[apache_2.2.4-win32-x86-no_ssl.msi].
The server is able to load the mod_axis2.so.

Thanks for all replies.


-Original Message-
From: Yogender Singh01 [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 5:32 PM
To: Apache AXIS C User List
Subject: RE: Regarding web services through AXIC c++

Hi,
Even I am facing the same problem.
Can you try running the http.conf file and try if the entries are
correct or not?

In modules I even tried changing mod_axis2.dll to mod_axis2.so but still
getting the same problem

-Original Message-
From: Sushmita Sahu [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 5:25 PM
To: Apache AXIS C User List
Subject: RE: Regarding web services through AXIC c++


The mod_axis2.dllis in the specified path , ie in modules directory ,
still I am getting this error. I am attaching the httpd.conf file.
Please check whther I have added the right code.

Thanks and regards
Sushmita Sahu
Architecture Team | Finacle
Infosys Technologies Limited Plot No.44|Electronics City,Hosur
Road|Bangalore-560100|India
Call me : 9880927586
"Smile,it is the key that fits the lock of everybody's heart" 

-Original Message-
From: Dumindu Pallewela [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 4:12 PM
To: Apache AXIS C User List
Subject: Re: Regarding web services through AXIC c++

Sushmita Sahu wrote:
>
> /Hi,/
>
> / I am a novice in web services./
>
> /I have installed Axis -c as per the document given in Axis site. I 
> have copied all the respective files in the relevant paths./
>
> /I have set the path as well. But when I give httpd -k start it gives 
> me the error that mod_axis2.dll can not be loaded./
>
> */C:\Apache Software Foundation\Apache2.2\bin>httpd -k start/*
>
> */httpd: Syntax error on line 487 of C:/Apache Software 
> Foundation/Apache2.2/conf/httpd.conf: Cannot load C:/Apache Software 
> Foundation/Apache2.2/modules/mod_axis2.dll into server: The specified 
> module could not be found./*
>
> */ /*
>
> /I have added /
>
> */LoadModule axis_module modules/mod_axis2.dll/*
>
> *//*
>
> */SetHandler axis/*
>
> *//*
>
> / /
>
> /To httpd.conf/
>
> / /
>
Also note that the configuration should be changed as follows:

LoadModule axis2_module modules/mod_axis2.dll

SetHandler axis2_module


NB: Module name in the above must be "axis2_module". Not "axis_module" 
nor "axis".

additionally, you should have the following parameters in your 
httpd.conf. replace
"path-to-your-axis2-repo" with the path you have installed axis2c.

Axis2RepoPath path-to-your-axis2-repo
Axis2LogFile /tmp/axis2.log
Axis2LogLevel info

However, according to the error message that you have posted, it seems 
that the
error occurs not due to these mistakes, but due to mod_axis2.dll is not 
found in
the apache2 modules directory as Samisa mentioned.

Dumindu.

-
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 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: Regarding web services through AXIC c++

2007-04-24 Thread Yogender Singh01
Hi,
Even I am facing the same problem.
Can you try running the http.conf file and try if the entries are
correct or not?

In modules I even tried changing mod_axis2.dll to mod_axis2.so but still
getting the same problem

-Original Message-
From: Sushmita Sahu [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 5:25 PM
To: Apache AXIS C User List
Subject: RE: Regarding web services through AXIC c++


The mod_axis2.dllis in the specified path , ie in modules directory ,
still I am getting this error. I am attaching the httpd.conf file.
Please check whther I have added the right code.

Thanks and regards
Sushmita Sahu
Architecture Team | Finacle
Infosys Technologies Limited Plot No.44|Electronics City,Hosur
Road|Bangalore-560100|India
Call me : 9880927586
"Smile,it is the key that fits the lock of everybody's heart" 

-Original Message-
From: Dumindu Pallewela [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 4:12 PM
To: Apache AXIS C User List
Subject: Re: Regarding web services through AXIC c++

Sushmita Sahu wrote:
>
> /Hi,/
>
> / I am a novice in web services./
>
> /I have installed Axis -c as per the document given in Axis site. I 
> have copied all the respective files in the relevant paths./
>
> /I have set the path as well. But when I give httpd -k start it gives 
> me the error that mod_axis2.dll can not be loaded./
>
> */C:\Apache Software Foundation\Apache2.2\bin>httpd -k start/*
>
> */httpd: Syntax error on line 487 of C:/Apache Software 
> Foundation/Apache2.2/conf/httpd.conf: Cannot load C:/Apache Software 
> Foundation/Apache2.2/modules/mod_axis2.dll into server: The specified 
> module could not be found./*
>
> */ /*
>
> /I have added /
>
> */LoadModule axis_module modules/mod_axis2.dll/*
>
> *//*
>
> */SetHandler axis/*
>
> *//*
>
> / /
>
> /To httpd.conf/
>
> / /
>
Also note that the configuration should be changed as follows:

LoadModule axis2_module modules/mod_axis2.dll

SetHandler axis2_module


NB: Module name in the above must be "axis2_module". Not "axis_module" 
nor "axis".

additionally, you should have the following parameters in your 
httpd.conf. replace
"path-to-your-axis2-repo" with the path you have installed axis2c.

Axis2RepoPath path-to-your-axis2-repo
Axis2LogFile /tmp/axis2.log
Axis2LogLevel info

However, according to the error message that you have posted, it seems 
that the
error occurs not due to these mistakes, but due to mod_axis2.dll is not 
found in
the apache2 modules directory as Samisa mentioned.

Dumindu.

-
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 unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]