[Axis2] Fwd: i18n (NLS) msgs in sandesha2

2006-07-10 Thread Chamikara Jayalath
added the prefix.-- Forwarded message --From: Chamikara Jayalath <[EMAIL PROTECTED]> Date: Jul 11, 2006 11:55 AMSubject: Re: i18n (NLS) msgs in sandesha2To: sandesha-dev@ws.apache.orgCc: axis-dev@ws.apache.org Hi Thomas, Could you please create an JIRA issue on providing i18n suppo

Can WSS4J validate signatures formed using self-signed certificate?

2006-07-10 Thread akkachotu
I am having a consumer that uses Self-Signed-Certificate, public key, private key created using java keytool command. Now if I generate a WS Security 2004 complaint XML Signature using these Self-Signed-Certificates, public key, private key and send the request soap message to a provider that uses

Soap Encryption AXIS and WSS4J ?

2006-07-10 Thread iceal thaddeus lim
Hi, Hi a webservice is deployed via WebLogic and is accepting encrypted messages only.Is it possible to encrypt a soap message using encryption keys? I checked the WSS4J, and it needs to configure the server. But I am not allowed to do anything with the server. Just created the client that  connect

[Axis 1.4] How to handle Null DateTime from Axis Web Service to .NET Client

2006-07-10 Thread Amit Andhale
Hi, My web service returns NULL DateTime to my .NET Client. How to handle this NULL DateTime on JAVA Side?   Regards Amit  

Re: "Chunked" encoding doesn't work and I'm desperated

2006-07-10 Thread Eran Chinthaka
try options.setProperty(MessageContext.CHUNKED, "false") Bruno Negrao wrote: > Hi all, > > My SOAP server (in Perl) simply doesn't accept the "chunked" transfer > encoding that I'm generating in axis2. See the POST bellow: > > POST /pfappspabxutils HTTP/1.1 > User-Agent: Axis2 > SOAPAction: ht

problem to invoke the webservice using RESTt Style

2006-07-10 Thread Bansal, Vimal
Hi All, I am a new user of Web Services. I am using Axis2 for implementing services. I want to use REST style of Web services. My service class, say MyServices have to service methods: String getAllValues() and String[] getValue(long id). The first service method, that has no parameters

Re: Axis2: How to set "Transfer-encoding" header

2006-07-10 Thread Bruno Negrao
YSS thank you very much Robert :- On 7/10/06, robert lazarski <[EMAIL PROTECTED]> wrote: Does this help ? client.getOptions().setProperty(org.apache.axis2.context.MessageContextConstants.CHUNKED,org.apache.axis2.Constants.VALUE_FALSE); Robert http://www.brazilou

"Chunked" encoding doesn't work and I'm desperated

2006-07-10 Thread Bruno Negrao
Hi all, My SOAP server (in Perl) simply doesn't accept the "chunked" transfer encoding that I'm generating in axis2. See the POST bellow: POST /pfappspabxutils HTTP/1.1 User-Agent: Axis2 SOAPAction: http://172.16.10.103:8080/AgendaPesquisa#AgendaPesquisa Host: pfdesenv.planetarium.com.br:8080 Tr

Re: Axis2: How to set "Transfer-encoding" header

2006-07-10 Thread robert lazarski
Does this help ? client.getOptions().setProperty(org.apache.axis2.context.MessageContextConstants.CHUNKED,org.apache.axis2.Constants.VALUE_FALSE); Robert http://www.braziloutsource.com/ On 7/10/06, Bruno Negrao <[EMAIL PROTECTED]> wrote: Oh no... I edited the axis2.xml file to change the trans

Re: [Axis2] MTOM client example

2006-07-10 Thread Thilina Gunarathne
Hi Andrew,Axis2 MTOM should work out of the box without much hassel if you have enabled MTOM on client side as follows.options.setProperty(Constants.Configuration.ENABLE_MTOM, Constants.VALUE_TRUE); The way you are trying to receive the byte[] is correct. Can u post ur messsage snaphots. You can ca

Re: Axis2: How to set "Transfer-encoding" header

2006-07-10 Thread Bruno Negrao
Oh no... I edited the axis2.xml file to change the transportSender transfer-encoding to "deflated", but magically the packed goes with the "chunked" enabled... does someone could give me a light on this? thank you bruno - To un

Re: Axis2: How to set "Transfer-encoding" header

2006-07-10 Thread Bruno Negrao
While I don't know what is a handler, I'm trying to set the TransportOutDescription object. but it's still not workin. the code is bellow: TransportOutDescription transportOut = ClientUtils.inferOutTransport(client.getServiceContext().getAxisService().getAxisConfiguration(), options.getTo(), new

Re: Axis2: How to set "Transfer-encoding" header

2006-07-10 Thread Bruno Negrao
Thank you, but what is a handler? how can I create one? On 7/10/06, robert lazarski <[EMAIL PROTECTED]> wrote: See HttpResponse . There's a method called addHeader() . You'll probably need a Handler to get access to it. HTH, Robert http://www.braziloutsource.com/ On 7/10/06, Bruno Negrao <[EMA

Re: I can't see the WSDL files!!!!!!

2006-07-10 Thread Fabiano Costa Teixeira
I'm using Tomcat Every services appears, I can access the service by test clientbut I can't see the wsdls2006/7/10, wang pengchao <[EMAIL PROTECTED] >:What kind of server are you using? tomcat? and does your service worked correctly ( can be accesssed by test client) ? At least try thi

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

2006-07-10 Thread Ravi Krishnamurthy
Dims: Could you please give me some pointers on this. Thanks for your time. Ravi Hello: I'm trying to use wss4j with Axis1.4 and trying out the samples that comes with wss4j/interop. On executing the org.apache.ws.axis.oasis.Scenario3  I get the following exception: WSHandler:

Re: I can't see the WSDL files!!!!!!

2006-07-10 Thread wang pengchao
What kind of server are you using? tomcat? and does your service worked correctly ( can be accesssed by test client) ?At least try this http://localhost:8080/axis/services to see whether services are deployed or not.On 7/11/06, Fabiano Costa Teixeira < [EMAIL PROTECTED]> wrote:Hi, When I put some

Re: Axis2: How to set "Transfer-encoding" header

2006-07-10 Thread robert lazarski
See HttpResponse . There's a method called addHeader() . You'll probably need a Handler to get access to it. HTH, Robert http://www.braziloutsource.com/ On 7/10/06, Bruno Negrao <[EMAIL PROTECTED]> wrote: The header I need to set goes here (look at the

Re: Axis2: How to set "Transfer-encoding" header

2006-07-10 Thread Bruno Negrao
The header I need to set goes here (look at the

Re: Axis2: How to set "Transfer-encoding" header

2006-07-10 Thread Bruno Negrao
Guys, I don't think you understood what header i need to set. I'm talking about the HTTP Transfer-encoding header that goes external to the message. Not that that goes right before the . I saw that the "chunked" transfer encoding is set by default on the "axis.xml" file that goes on the distribu

Re: Axis2: How to set "Transfer-encoding" header

2006-07-10 Thread robert lazarski
On the client side you can call ServiceClient.addHeader() . On the server side you need a Handler and a module. From there its msgContext.getEnvelope().getHeader().getFirstChildWithName(new QName("MyHeader")) HTH, Robert http://www.braziloutsource.com/ On 7/10/06, Bruno Negrao <[EMAIL PROTECTED]

soapAction

2006-07-10 Thread Fabiano Costa Teixeira
Hi, I have one problem with my client's stubs: The file ExampleSoapBindingStub.java generated by WSDL2Java has _call.setSOAPActionURI("") line. So, when I executed the client program I got errors (MalformedURI). I need to open this program and change the line to set the SoapAction to the address s

Re: [Axis2] Exception when sending with ServiceClient

2006-07-10 Thread Martin Gainty
Going up the call stack check 2 things-check spelling on serviceClient.sendReceive() I think you may have mis-spelled the method name-as you are experiencing errors in both sendReceive and engageodule() methods make sure you have properly instantiated serviceClient beforehand check the Servic

Re: [Axis2] MTOM client example

2006-07-10 Thread Martin Gainty
Good Afternoon Andrew-The way I attempt to debug these situations is to start at the Macro Level and fine tune from there services.xml check the Inflow and Outflow parametersThe Outflow has class definitions (passwordCallbackClass) and properties files (sec.properties) all of which have to b

I can't see the WSDL files!!!!!!

2006-07-10 Thread Fabiano Costa Teixeira
Hi, When I put some adress to see the WSDL file of one service (i.e. http://localhost:8080/axis/services/Quote?wsdl) my browser doesn't show anything. If I list the services (Page: And now...Some Services) and I click over the wsdl link the same also happens! Can somebody help me Tanks a

Re: General approach for xsd:union?

2006-07-10 Thread robert lazarski
Axis 1.x _does not_ support JAXB 1.0 or JAXB 2.0 . Axis2 _does not_ support JAXB 1.0 , but AFAIK has the beginnings of support for JAXB 2.0 via JAXBRI - reference implementation - 2.0EA3. The JAXWS module, under development, is doing some stuff with JAXBRI. I'm unclear however of JAXBRI's curren

Re: What is REST

2006-07-10 Thread V D
Thank you for the post. I check out your links and there's not much more on the site than the old site. There's some interesting links though. I did check some of the links out. Please reread my original post. I think you mis-read it. I know that REST is not the same as RPC. I was disc

Re: [Axis2] Exception when sending with ServiceClient

2006-07-10 Thread John Ferron
Martin,   When I have decompiled the code (via Eclipse plugin), it is in the attached message.  But I cannot say for sure since Eclipse is not giving me line numbers.  When I paste the code into a text editor and goto that line, its a different method all together.  I've copied the method and att

WSSecurityException - Check Signature confirmation (Axis 1.4 + wss4j)

2006-07-10 Thread Ravi Krishnamurthy
Hello: I'm trying to use wss4j with Axis1.4 and trying out the samples that comes with wss4j/interop. On executing the org.apache.ws.axis.oasis.Scenario3  I get the following exception: WSHandler: Check Signature confirmation: stored SV vector not empty; nested exception is:     org.apache.w

Re: Axis2: How to set "Transfer-encoding" header

2006-07-10 Thread Bruno Negrao
Guys, doesn't anybody know it? please... On 7/10/06, Bruno Negrao <[EMAIL PROTECTED]> wrote: Guys, how to set the "Transfer-encoding" header used on the soap http post? Also, how to set the other headers thank you, bruno -

Re: [Axis2] MTOM client example

2006-07-10 Thread Andrew B
Ah, you've got me there. I don't know what those things are - the MTOM documentation (http://ws.apache.org/axis2/1_0/mtom-guide.html) never mentioned any of that.-AndrewMartin Gainty <[EMAIL PROTECTED]> wrote: I would look at your outflow definitions for  any missing handlers ..can we take a l

Re: [Axis2] MTOM client example

2006-07-10 Thread Martin Gainty
I would look at your outflow definitions for  any missing handlers ..can we take a look at module.xml M- *This email message and any files transmitted with it contain confidentialinformation intended only for the person(s) t

Re: [Axis2] MTOM client example

2006-07-10 Thread Andrew B
Martin,The stacktrace is:java.net.UnknownServiceException    at javax.mail.internet.MimePartDataSource.getOutputStream(MimePartDataSource.java:57)    at ttaxis2client.TestClient.main(TestClient.java:73)and the code is:       OMElement response = stub                    .getData();             

java2wsdl -p and urn:

2006-07-10 Thread Jarmo Doc
I'm using java2wsdl -px.y.z z.x.y to map Java packages to a urn: namespace. This works fine. Now I want to generate urn: namespaces so am using java2wsdl -px.y.z urn:z.x.y. This does *not* work fine. Specifically, in the wsdl:definitions section of the generated WSDL it produces both xmlns

Re: [Axis2] Exception when sending with ServiceClient

2006-07-10 Thread Martin Gainty
John-   Can we see AxisService..line 395 specifically ThanksM- *This email message and any files transmitted with it contain confidentialinformation intended only for the person(s) to whom this email message isaddressed.  If

Re: General approach for xsd:union?

2006-07-10 Thread Nathan Sowatskey
Thanks for the pointers all. I may be missing something, but my reading of section 5.2.6 of the JAX-B 1.0 specification implies that it specifies how unions should be handled. Don't Axis 1.x/2 implement JAX-B 1.0? If so, then shouldn't they also support unions? Am I missing something? Many

Re: [Axis2] Exception when sending with ServiceClient

2006-07-10 Thread John Ferron
Martin,   When I tried adding the engageMode() method that you were inquiring about, the following exception was thrown: - John    Module not found org.apache.axis2.description.AxisService.engageModule(AxisService.java:395) org.apache.axis2.client.ServiceClient.engageModule(ServiceClient.java:279

Re: [Axis2] MTOM client example

2006-07-10 Thread Martin Gainty
Andrew- Please post StacktraceThanksM- *This email message and any files transmitted with it contain confidentialinformation intended only for the person(s) to whom this email message isaddressed.  If you have received this e

Java2WSDL duplicate generation of complexType (Axis1.4)

2006-07-10 Thread Nicolas-Viet Nguyen
Hi,I saw a few emails regarding Java2WSDL generates duplicate complex types.  Has there been a fix for this problem?  I am experiencing the same problem with Axis1.4 for Array type with document/literal style, and hand-removing  duplicates is a huge effort. Thanks,Viet. Nulls within arrays
I’m working with a complexType that contains various arrays. It appears that Axis 1.4 is not properly handling null items that occur within the array. Instead of using the nillable=”true/false” setting on the that defines the Array, it is determining whether to send xsi:nil based on whethe

RE: [axis 2] services.xml files

Kinichiro, Thanks, that is what I was looking for. Brian -Original Message- From: Kinichiro Inoguchi [mailto:[EMAIL PROTECTED] Sent: 10 July 2006 17:00 To: axis-user@ws.apache.org Subject: Re: [axis 2] services.xml files Hi, Brian. You can add this line in your services.xml, http://a

[Axis2] MTOM client example

Hi,Can anyone point me to an example of an Axis2 client that receives a byte array via MTOM? The Axis2 documentation shows how to get an image, not a byte array.Thanks,Andrew __Do You Yahoo!?Tired of spam? Yahoo! Mail has the best spam protection aro

Re: Axis2: Crazy characters being sent

You have HTTP chunking enabled. see the header "Transfer-Encoding: chunked" What you see as numbers are actually the byte counts. Although you see these numbers in TCPMon they have nothing to do with the message and will be handled by the client/server appropriately. Ajith, I disabled the "chunke

Re: File access from a .war

Can you provide a pointer for more information related to distributed cache implementation? Thanks, Mike Rodrigo Ruiz <[EMAIL PROTECTED]> wrote on 07/10/2006 11:22:01 AM: > Depending on the servlet container you are using, war archives may be > considered read-only. In this case you will not be

Re: [Axis2] response element name with RPCMessageReceiver

this is because there is no way to reflect on the return variable inside a method in java- at least to the best of my knowledge. Anamitra Kinichiro

[Axis2] response element name with RPCMessageReceiver

This is not a problem, just my thoughts. I wonder why response element name is always "return" ? If I create MyService like this, package test; public class MyService { public String echo(String inparam) { String outparam = inparam; return outparam; } } and packed this

Re: [axis 2] services.xml files

Hi, Brian. You can add this line in your services.xml, http://as.you.like"/> http://ws.apache.org/axis2/1_0/axis2config.html#Service_Configuration Regards, kinichiro --- "Brian Dillon (ext. 944)" <[EMAIL PROTECTED]> wrote: > Hi, > > I have just started looking at moving from Axis 1.3 to Axis

Re: File access from a .war

Hi,Thank you for the exhaustive list of alternatives. I just have one small problem: I meant an .aar archive that is used for Axis2 web service deployments in the services directory (I incorrectly wrote .war in the subject of the original email). Do the same concepts apply (some of them, such as DB

[axis 2] services.xml files

Title: [axis 2] services.xml files Hi, I have just started looking at moving from Axis 1.3 to Axis 2 and have a couple of short questions. Firstly is there anywhere that describes the services.xml files and the parameters and options associated with this file (I can't see where the xsd might

Axis2: How to set "Transfer-encoding" header

Guys, how to set the "Transfer-encoding" header used on the soap http post? Also, how to set the other headers thank you, bruno - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: File access from a .war

Depending on the servlet container you are using, war archives may be considered read-only. In this case you will not be able to write a file within the application context. Some alternatives you have are: - Deploy your application as an "exploded war" (the exact name will vary from container to

Re: Axis2 / Axis RPC

I'm glad to hear that. I also hope this issue will be solved until next release. http://issues.apache.org/jira/browse/AXIS2-865 Regards, kinichiro --- M S <[EMAIL PROTECTED]> wrote: > Hi, > > Thank you very much for your help. That solved my problem! I hope > that this > is added to the next Ax

Re: [Axis2] Exception when sending with ServiceClient

Martin,   Could you give an example of what you mean?  I'm a little unsure of what the parameter should be for the engageModule() method?    John>>> [EMAIL PROTECTED] 07/10/06 9:35 AM >>> Good Morning John-Sounds like perhaps a double submit http://ws.apache.org/axis2/1_0/api/index.html Did you

Re: File access from a .war

Your problem seems very similar to mine - It would be great if someone would point us to the documentation for the rules related to file access (read/write, path, etc.) Thanks, Mike "M S" <[EMAIL PROTECTED]> wrote on 07/10/2006 10:40:47 AM: > Hi, > > I have a web service that is supposed to g

Client IP address when Apache is a proxy

Hello, I am trying to retrieve the client IP address accessing the web services. Because Apache is our proxy for all requests, when I try to retrieve the client IP I always get the localhost IP: 127.0.0.1 The following code returns the localhost IP: MessageContext msgContext = MessageContext.g

[Axis2] Issues using Ant tasks

Hi Everybody, Was using Axis1.x and was using following ant task to build my application and everything was running smoothly. What will be the coutern part for the above task in Axis2. I have tried the following 2 approaches but didn't work. I have added all jar files to my classpath. Approach

[Axis2]

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

File access from a .war

Hi,I have a web service that is supposed to generate prime numbers. I store the latest generated prime number in a file called prime.txt. So for example, if the program is run and generated 3, 3 will be stored in prime.txt and next time it will generate 5. If there is no prime.txt, the program wil

Re: Axis2 / Axis RPC

Hi,Thank you very much for your help. That solved my problem! I hope that this is added to the next Axis2 RC. RegardsOn 7/9/06, Kinichiro Inoguchi <[EMAIL PROTECTED]> wrote:Hi, I sent you 1 jar file by another mail.I think you have 2 problems.One is "WSDL2Java code generation" issue,and another is

Re: [Axis2] Exception when sending with ServiceClient

Good Morning John-Sounds like perhaps a double submit http://ws.apache.org/axis2/1_0/api/index.html Did you try to limit execution scope engageModuleperform sendAndReceiveand then disengageModule ?? Martin -- *This email messa

[Axis2] Exception when sending with ServiceClient

Good Morning,   Has anyone seen this exception when trying to perform a sendRecieve() on the ServiceClient object??  It would be greatly appreciated if I could get this resolved.   John   06 Jul 2006 15:54:40 [ProcessSOAPMessage$jsp] ERROR soap  - Can not output XML declaration, after other outpu

Singleton Header parameter for several WS methods

Hi, I'm using Axis 1.3 for my web service. My web service has authorization methods and when login method executed it's returns sessionId, which user should pass to SOAP header for every method. So I created complex type SessionHeader and pass this parameter to several methods. Here example of this

[Axis2] Invalid phases please recheck axis2.xml, handler null added

Hi there,I'm trying to add the sample logging module to my service (server-side) as described in http://ws.apache.org/axis2/1_0/userguide4.html#MyService_with_a_Logging_Module . However I run into some probelms -- anyone can shed some light on this ? That would be most appreciated.It looks like som

Re:[Axis2] Converting from Glue to Axis2.0

Martin,   In the soap header, the operation that you mention of is the submitContracts XML tag.  The namespace is the namespace assoicated with the submitContracts tab.  An example is below:                 On another note, do you know anything about that send method and why I am getting

Re: [Axis2] How to do wsdl based validation with raw messages?

Carsten Ziegeler wrote: > Ajith Ranabahu wrote: >> Hi Carsten, >> Nice to see you in this list :) just as Dims said ,for having non >> databound, raw XML handling use the -d none (ah make it all lowercase >> please) option and you'll get all your skeletons generated with >> OMElement in - OMEleme

Re: Axis2: Crazy characters being sent

Thanks for the info Ajith, But the server should repond to my request if so. How can I set the transfer-encoding to other encoding type? for precaution i want to remove those characters from the transfer. bruno. On 7/10/06, Ajith Ranabahu <[EMAIL PROTECTED]> wrote: Hi, You have HTTP chunking

Re: [AXIS2] Problem to engage a module at the client side

Okay Ajith, But my modules are engaged in the client side. I'm sure of that because I have checked. The only thing is that the module is not executed. Have we to declare something different that we do for thr server? Actually, I was wondering how the client know that it has to execute the

Re: [AXIS2] Problem to engage a module at the client side

Okay Ajith, But my modules are engaged in the client side. I'm sure of that because I have checked. The only thing is that the module is not executed. Can you have a look to the axis2.xml file of my client. Maybe, there is a problem? - Original Message - From: Ajith Ranab

Rules for File Access from Axis[v1.3] Application

I am using Axis 1.3 with Apache Tomcat 5.5.16. I am trying to open a configuration file from within one of my Web Service's implementation classes, things are not working as I would expect. What are the rules for access to files from a Web Service? What path should I use (relative to my project

Re: Unreachable code with WSDL2Java

Nicolas- Can we see the class for WebServiceAncreStub?M- *This email message and any files transmitted with it contain confidentialinformation intended only for the person(s) to whom this email message isaddressed.  If you ha

Re: [Axis2] How to do wsdl based validation with raw messages?

Ajith Ranabahu schrieb: > Hi Carsten, > Nice to see you in this list :) just as Dims said ,for having non > databound, raw XML handling use the -d none (ah make it all lowercase > please) option and you'll get all your skeletons generated with > OMElement in - OMElement out style. > Anyway we do

Re: [Axis2] How to do wsdl based validation with raw messages?

Hi Carsten, Nice to see you in this list :) just as Dims said ,for having non databound, raw XML handling use the -d none (ah make it all lowercase please) option and you'll get all your skeletons generated with OMElement in - OMElement out style. Anyway we do not have a model where the input me

Re: [AXIS2] Problem to engage a module at the client side

Hi,The concept here is that a module gets active only if engaged. Axis2 either running as client or server determines what modules to pick up by looking at the relevant axis2.xml (and you can programmatically engage modules too). However since you are feeding two Axis2 configurations ( Axis2.xml fi

Re: [AXIS2] Problem to engage a module at the client side

It was that Ajith... The exception disappeared. However, I have still a problem... I can see that the handler is executed in the server side but it is not in the client side. And it is the same module... So it is a little bit strange...   Have you got an idea? Fabien - Original Message

Re: [Axis2] How to do wsdl based validation with raw messages?

Davanum Srinivas wrote: > Hi Carsten, > > Did you try the "-d NONE" option in wsdl2java? > Ups, no...but will do that now :) I didn't see that option when I 'quickly' looked at the tools doc; sorry for noise! Thanks, Dims Carsten -- Carsten Ziegeler - Open Source Group, S&N AG http://www.s-un

[Axis 1.4] WebService returning NULL DateTime field to .NET Client

Hi, I have an web service which returns DateTime to .NET Client. How do I handle it if DateTime is NULL? Because "java.Util.Calender" can take NULL value but .NET System.DateTime can not take NULL value since it is a Value Type.   After calling Web Service from .NET Client, if DateTime is NULL, I a

Re: [Axis2] How to do wsdl based validation with raw messages?

Hi Carsten, Did you try the "-d NONE" option in wsdl2java? thanks, dims On 7/10/06, Carsten Ziegeler <[EMAIL PROTECTED]> wrote: I'm trying to do the following based on axis2: I have a wsdl describing my web services (incl. ws policy). I now want to provide a service which does all the validati

[Axis2] How to do wsdl based validation with raw messages?

I'm trying to do the following based on axis2: I have a wsdl describing my web services (incl. ws policy). I now want to provide a service which does all the validation stuff of the incomming message (based on the xml schema and policy in the wsdl) and then I want to implement my web service based

Re: [AXIS2] Problem to engage a module at the client side

Hi,That is the problem :) The SOAP monitor is actually set to work in the serverside AFAIK and from your stacktrace, that seems to be the culprit. Please comment out the module element and see.Ajith On 7/10/06, Fabien Couble <[EMAIL PROTECTED]> wrote: Yes, the soapMonitor is engaged in the c

Re: [AXIS2] Problem to engage a module at the client side

Yes, the soapMonitor is engaged in the client side I have the following line in my axis2.xml file     But is it really necessary?   Regards Fabien - Original Message - From: Ajith Ranabahu To: axis-user@ws.apache.org Sent: Monday, July 10, 2006 10:59 AM Subject:

Re: [AXIS2] Problem to engage a module at the client side

Hi,Did you enable the SOAPmonitor ? please check your Axis2.xml to see whether there are any SOAPMonitor handlers engaged in the client sideAjithOn 7/10/06, Fabien Couble <[EMAIL PROTECTED]> wrote: Hello, I still have a problem to engage a module at the client side. To engage the module, I

Re: Unreachable code with WSDL2Java

Nicolas, I think this comes from problem about RPCMessageReceiver. Because of "return" is NOT qualified well. http://issues.apache.org/jira/browse/AXIS2-865 Regards, kinichiro --- Nicolas Urien <[EMAIL PROTECTED]> wrote: > Finally , the "unreachable code with the axis2 WSDL2Java " has been > fi

[AXIS2] Problem to engage a module at the client side

Hello, I still have a problem to engage a module at the client side. To engage the module, I just put the following command in my client code:   ConfigurationContext configContext = ConfigurationContextFactory.createConfigurationContextFromFileSystem("D:/eclipse_workspace/axis2", "D:/eclipse

Re: Unreachable code with WSDL2Java

Finally , the "unreachable code with the axis2 WSDL2Java " has been fixed by using the latest nightly build AND manually copying axis2-adb-codegen-SNAPSHOT.jar from the war archive into the lastest nightly axis2-std-SNAPSHOT-bin.However, my client is now experiencing a new exception at run-time :(

Re: WSDL2Java in Axis2 is not working?

Hi Kinichiro, I'll check with Dims about this. The error was the jar not being copied into the std/min distributions. But it was correctly copied to the war. I have corrected the mistake in the build script but not sure why it is not reflected in the nightlies Ajith On 7/10/06, Kinichiro Inoguch

org.apache.crimson.tree.DomEx: WRONG_DOCUMENT_ERR: That node doesn't belong in this document.

-- Forwarded message --From: iceal thaddeus lim <[EMAIL PROTECTED]> Date: Jul 7, 2006 5:44 PMSubject: org.apache.crimson.tree.DomEx: WRONG_DOCUMENT_ERR: That node doesn't belong in this document.To: axis-user@ws.apache.org Hi All, I created a WS client using axis. I WSDL2Java a webs