Re: include file axis2_call.h no found

2006-07-14 Thread Sahan Gamage
Hi, From axis2c 0.92 we deprecated call api. Now we use axis2_svc_client api. Also the diclient is a very experimental feature. So I highly recommend not to use it (unless you are willing to dive deep and fix the bugs there) So basically my advice is disable it. Use --enable-diclient=no at the

[Axis2]Re: small problem?

2006-07-14 Thread Sahan Gamage
Hi, what is the version you're trying ? svn HEAD or some released version ? If it's svn HEAD I am not sure about the correct behaviour of the Windows build system. - sahan Buddhika Semasinghe wrote: Hi; I am very much new to Axis2.When I tried to install axis2c in windows when

Re: include file axis2_call.h no found

2006-07-14 Thread Samisa Abeysinghe
Sahan Gamage wrote: Hi, From axis2c 0.92 we deprecated call api. Now we use axis2_svc_client api. Also the diclient is a very experimental feature. So I highly recommend not to use it (unless you are willing to dive deep and fix the bugs there) So basically my advice is disable it. Use

Compilation and Linkedition problem

2006-07-14 Thread João Carlos Bortoletto
Hi friends, I'm new in C/C++ programming language. I was trying to compile the simple example echo.c using gcc under mingw (win32). Compilation was successful (gcc -c), but when I try to link (generate .exe) I receive the following messages:

Re: [Axis2]Re: small problem?

2006-07-14 Thread Samisa Abeysinghe
Sahan Gamage wrote: Hi, what is the version you're trying ? svn HEAD or some released version ? If it's svn HEAD I am not sure about the correct behaviour of the Windows build system. Also what is the VC version? What is the Windows version? Samisa... - sahan Buddhika Semasinghe wrote:

Re: [Axis2]Re: small problem?

2006-07-14 Thread Sahan Gamage
Did you run vcvars32.bat before running the nmake command ? Buddhika Semasinghe wrote: Hi, I m trying to install the version axis2c-src-0.92.And using VC 6.0 to compliling in windows Xp professional edition. buddhika - Original Message - From: Sahan Gamage [EMAIL

Re: [Axis2]Re: small problem?

2006-07-14 Thread Buddhika Semasinghe
yes that was ok when installing the axis2c-src-0.90 and axis2c-src-0.91 versions.Thanks buddhika - Original Message - From: Sahan Gamage [EMAIL PROTECTED] To: Apache AXIS C User List axis-c-user@ws.apache.org Sent: Saturday, July 15, 2006 9:49 AM Subject: Re: [Axis2]Re: small

RE: Array is different moving from Axis 1.2 to Axis 1.4

2006-07-14 Thread Venkatesh Jayaraman \(jvenky\)
Looking at the email thread Denis Schlesinger is suggestiong the fix. BUT no one has commited the fix yet.. Any final decision on this BUG? -Venky Comment by Denis Schlesinger [13/Oct/05 10:03 AM] An object of the class EntityListResultBean is being returned by the

Re: WSHandler: Signature: error during message procesing

2006-07-14 Thread iceal thaddeus lim
Hi, Well I took Werners advice and tried to replace the alias of the user to the actual alias in my keystore... which I got a org.apache.ws.security.WSSecurityException: Signature creation failed; nested exception is: java.lang.Exception: Cannot find key for alias: 1000166Now I your advice

RE: [Axis2] MessageContext w/o any properties

2006-07-14 Thread Rishikesh . Mallesh
Hi Could anybody tell me how do I get the HTTPServletRequest object in Axis 1.3? Thanks! -Original Message- From: Deepal Jayasinghe [mailto:[EMAIL PROTECTED] Sent: 13 July 2006 17:25 To: axis-user@ws.apache.org Subject: Re: [Axis2] MessageContext w/o any properties Hi Heikki; I am

How to access the SOAPHeader

2006-07-14 Thread Haug, Thomas
Title: How to access the SOAPHeader Hi, I want to access the SOAPHeader in my service implementation class. In Axis 1 I have done soemthing like SOAPHeader header = null; //extract the Header from the current SOAP Request try { header = (SOAPHeader)

Re: How to access the SOAPHeader

2006-07-14 Thread Eran Chinthaka
First get access to the message context within the service implementation class following this (http://www.wso2.net/kb/106). Then from the message context you can get access to the soap envelope using msgCtxt.getEnvelope() -- Chinthaka Haug, Thomas wrote: Hi, I want to access the

AW: How to access the SOAPHeader

2006-07-14 Thread Haug, Thomas
Hi Chinthaka, Thank you for the quick answer. So if I got it right: the Axis2 framework inspects the service class (via reflection?), if the service class provides a setOperationContext(OperationContext opContext) method. Are there any other operation which can be 'magically' called ? From a

Re: [Axis2] Exception after correct sending message with fireAndForget()

2006-07-14 Thread Deepal Jayasinghe
Hi ; [EMAIL PROTECTED] wrote: Hi, senden a message using fireAndForget(), the message was delivered properly but there is allways this exception wich occours: I doubt , how can it deliver the message with following exception, btw can you please help me to regenerate the problem. INFO:

Re: AW: How to access the SOAPHeader

2006-07-14 Thread Eran Chinthaka
Hi Thomas, Haug, Thomas wrote: Hi Chinthaka, Thank you for the quick answer. So if I got it right: the Axis2 framework inspects the service class (via reflection?), if the service class provides a setOperationContext(OperationContext opContext) method. Are there any other operation

Re: AW: How to access the SOAPHeader

2006-07-14 Thread Rodrigo Ruiz
Eran Chinthaka wrote: We didn't want to put any restriction on a user who wanna write a simple java class and expose that as a web service. Thats been the case so far. I hope you can understand that it will make the most common and simple case simple. And I don't see a single reason behind

RE: problem in invoke the webservice using REST Style by client program

2006-07-14 Thread Bansal, Vimal
Hi kinichiro, as per my earlier mail I am getting the access for my service using following url by browser http://localhost:8080/Axis2/rest/servicename/methodname?param0=23 output is:- - ns:methodnameResponse xmlns:ns=http://org.apache.axis2/xsd; returnhfdj/return returndfds/return

Re: AW: How to access the SOAPHeader

2006-07-14 Thread Eran Chinthaka
Hi Rodrigu, Rodrigo Ruiz wrote: Eran Chinthaka wrote: We didn't want to put any restriction on a user who wanna write a simple java class and expose that as a web service. Thats been the case so far. I hope you can understand that it will make the most common and simple case simple. And I

Re: [Axis2] Reliable Notification

2006-07-14 Thread Chamikara Jayalath
Hi Eric, Please see my comments below.On 7/12/06, Eric Winter [EMAIL PROTECTED] wrote: Reliable NotificationI have a pretty simple problem I'd like to solve, but the tool I thinkI should use is not being cooperative.I have a client that has to deliver a message to at least one server within a

AW: AW: How to access the SOAPHeader

2006-07-14 Thread Haug, Thomas
Hi Chinthaka, hi Rodrigo, 1) As Rodrigo has pointed out there is already an dependency of the service class to Axis2 because of the OperationContext class in the setOperationContext() method, if you need to access the framework. So having therefore an explicit interface does not hurt

Re: AW: How to access the SOAPHeader

2006-07-14 Thread Rodrigo Ruiz
Mmm, yes of course. But I guess you are talking about a mandatory interface, like Remote. I am talking about an optional one, like LifeCycle. For example: public interface ContextAware { void setOperationContext(OperationContext ctx); } In this case, only those services interested in having

AW: [Axis2] Exception after correct sending message with fireAndForget()

2006-07-14 Thread donnerdrummel2000-mailing
Hi Deepal, the scenario is as followes: - Two services 'Service A' running on http://localhost:8080/axis2/services/ServiceA and ServiceB running on http://localhost:8585/axis2/services/ServiceB. Both services provide a 'InOnly' operation. - A Serviceconsumer now sends a message to ServiceA

Re: AW: How to access the SOAPHeader

2006-07-14 Thread Eran Chinthaka
Rodrigo Ruiz wrote: Mmm, yes of course. But I guess you are talking about a mandatory interface, like Remote. I am talking about an optional one, like LifeCycle. For example: public interface ContextAware { void setOperationContext(OperationContext ctx); } In this case, only those

Re: AW: How to access the SOAPHeader

2006-07-14 Thread Deepal Jayasinghe
so lets go for that , AFAIK we only need to change DependencyManager to support that. Eran Chinthaka wrote: Rodrigo Ruiz wrote: Mmm, yes of course. But I guess you are talking about a mandatory interface, like Remote. I am talking about an optional one, like LifeCycle. For example: public

Re: AW: How to access the SOAPHeader

2006-07-14 Thread Davanum Srinivas
+1 from me. On 7/14/06, Deepal Jayasinghe [EMAIL PROTECTED] wrote: so lets go for that , AFAIK we only need to change DependencyManager to support that. Eran Chinthaka wrote: Rodrigo Ruiz wrote: Mmm, yes of course. But I guess you are talking about a mandatory interface, like Remote. I am

AW: [axis2] Setting realtesTo() leads to Exception while sending

2006-07-14 Thread donnerdrummel2000-mailing
Hi Eran, your new version of the addressing module works fine. Yesterday I figured out the problem you solved now cuse walking through the code takes me to use the other constructor and the problem was fixed. Cause you was so quick in fixing the bug, I just couldn't help you anymore ;-) So,

WSDoAllReceiver: Request does not contain required Security header

2006-07-14 Thread Kirby Ian
-Original Message- Sent: Friday, July 14, 2006 9:37 AM To: wss4j-dev@ws.apache.org Please help if you can. I'm trying to set up a web service and I'm having problems with the security validation for our client. The web service works fine for our test web client, which is written in Java

RE: AW: How to access the SOAPHeader

2006-07-14 Thread Tony Dean
This makes perfect sense to me. This is how I thought it should have been from the start. I started working with service lifecycle from the start and initially all that was available was init() and destroy(). If there had been a lifecycle interface that I was required to implement, when

Re: [Axis2] re: WSDL2Java does not handle xsd:include correctly

2006-07-14 Thread Martin Gainty
Good Morning Everyone Whomever is in charge of the repository Can we get the maven-itest-plugin-1.0.jar into the repository? go to %AXIS2_HOME%/src %MAVEN_HOME%/bin/maven Attempting to download maven-itest-plugin-1.0.jar. Error retrieving artifact from

Re: AW: How to access the SOAPHeader

2006-07-14 Thread Eran Chinthaka
Ok guys. its implemented and committed to the code base. You may try it now. You need to implement org.apache.axis2.Service interface. -- Chinthaka Davanum Srinivas wrote: +1 from me. On 7/14/06, Deepal Jayasinghe [EMAIL PROTECTED] wrote: so lets go for that , AFAIK we only need to change

RE: AW: How to access the SOAPHeader

2006-07-14 Thread Derek
+1 from me. Interfaces defined only by implicit signatures and invoked via reflection scare me, since if I misremember the arguments or names, things fail to work with no compiler warnings. I much prefer interfaces defined by actual 'implements' declarations, which my IDE (IntelliJ IDEA) can check

Re: Repost: WSSecurityException - Check Signature confirmation (Axis 1.4 + wss4j)

2006-07-14 Thread Ravi Krishnamurthy
Hello: Could anybody give some pointers please. I'm running the Scenario3 application. I also posted this question to wss4j but no replies. Regards, Ravi Ravi Krishnamurthy wrote: Hello: Would appreciate if someone could give me some pointers. Thanks, Ravi Ravi Krishnamurthy wrote:

Undefined schema definition in request soap message

2006-07-14 Thread akkachotu
I have below soap message with WS Security Signature generated by Axis 1.2.1: ?xml version=1.0 encoding=UTF-8? soapenv:Envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/; xmlns:xsd=http://www.w3.org/2001/XMLSchema;

Axis src build solved

2006-07-14 Thread Martin Gainty
To All- The source download the source from the axis2 site is problematic ..unless you want to spend days reconfiguring maven and jelly properties files Instead from %AXIS2_HOME% create a new source folder e.g. new_src svn checkout http://svn.apache.org/repos/asf/webservices/axis2/trunk/java

Re: Undefined schema definition in request soap message

2006-07-14 Thread Anne Thomas Manes
My guess is that the fact that this message has been signed has nothing to do with whether or not the message content is correct. How was this message generated? Can you post the WSDL? The message doesn't conform to SOAP requirements, which states that the child of the soap:Body must be a

Re: [Axis 1.4] Server side question !!!

2006-07-14 Thread Luis Rivera
Hi again Axis-Users/Devs, I have another couple of questions: Fisrt of all, after installing Tomcat and figuring out how to deploy my application, I have sucessfully made my first client call to the empty implementation. However, the original server side implementation (c++ RogueWave)

Re: [Axis 1.4] Server side question !!!

2006-07-14 Thread Martin Gainty
Luis- *If* you write your own connector you can configure it in as a Connector in $TOMCAT_HOME/conf/server.xml here is an example of the default Port 8080 connector.. !-- Define a non-SSL HTTP/1.1 Connector on port 8080 -- Connector port=8080 maxThreads=150

Troubles executing axis client on windows mobile (related to AxisEngine?)

2006-07-14 Thread Herve Chang
Hi all, I'm currently developping a web service client using Axis. This client is to be executed on a windows mobile pocketpc over the Mysaifu JVM, built upon GNU Classpath libraries (http://www.gnu.org/software/classpath/classpath.html). When executing my client, AxisEngine seems not to be