[Axis2] Trouble running Security sample client on Windows XP

2006-07-14 Thread Jorge Ortiz Hinojosa
I’m trying to run Axis2 as a webapp on Tomcat5.5 on WinXP SP2 with JDK1.5. Specifically, I’m trying to run the “security” sample client and service that come with the Axis2 distribution (under samples/security/).   The service shows up just fine in my list of services on http://localhost:

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 conf

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.. Anyone else? M- * This email message and any files

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) us

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 must be a qualified eleme

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 ./n

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: http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xmlns:wsse="http://docs.oasis-open.org/wss/2004/

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:

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: 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 c

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 [http://cvs.apache.org/repository/maven-ite

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 thing

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

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, th

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

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

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 t

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

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 anyfurther

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 re

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 simpl

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

2006-07-14 Thread Kinichiro Inoguchi
Hi, Vimal. Could you try latest nightly build axis2.war in server side, please ? --- "Bansal, Vimal" <[EMAIL PROTECTED]> wrote: > 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/met

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:- - http://org.apache.axis2/xsd";> hfdj dfds Andrews pvcv 21 this is nice . now I am writi

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 beh

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

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

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: 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 SO

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) MessageContext.getCurre

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 so

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

2006-07-14 Thread Eran Chinthaka
hi, I just ran your code and found a bug in our addressing code. I fixed it and now I got the code working. Can you test it now? -- Chinthaka [EMAIL PROTECTED] wrote: > Hi, > > I already posted this problem a week ago, but cause it still exists I try it > with some more detail I figured out