RE: JMS/SOAP axis2

2007-06-28 Thread Kang, Kamaljeet K.
lbeans and see whether it works. This may >>not solve your problem completely, but it would give us an idea. >>Thanks >>Chathura From: Kang, Kamaljeet K. [mailto:[EMAIL PROTECTED] Sent: Thursday, June 21, 2007 5:57 PM To: axis-user@ws

RE: JMS/SOAP axis2

2007-06-25 Thread Kang, Kamaljeet K.
f the problems i have seen in JSON. I assume you are using ADB for data binding, are u? If so could you try -d xmlbeans and see whether it works. This may not solve your problem completely, but it would give us an idea. Thanks Chathura On 6/21/07, Kang, Kamaljeet K. <[EMAIL PROTECTED]> wrote:

JMS/SOAP axis2

2007-06-21 Thread Kang, Kamaljeet K.
Hi, I am trying to test a webservice with JMS transport. The service works perfectly fine with HTTP but with JMS it gives the following exception during unmarshling. Looks like localName is incorrect. Is it a bug? OMElelment BodyBy the StaxSOAPModelBuilder 1-Jun 15:44:40,552 DEBUG builder.StAX

RE: Transport out has not been set

2007-06-13 Thread Kang, Kamaljeet K.
you have not added dependent jars which JMS required to the classpath. Thanks Deepal Kang, Kamaljeet K. wrote: > > Hi, > > > > I am trying to test axis2 with JMS transport. I followed the > instructions as per 'jms-transport.html'. The server initializes fine

Transport out has not been set

2007-06-13 Thread Kang, Kamaljeet K.
Hi, I am trying to test axis2 with JMS transport. I followed the instructions as per 'jms-transport.html'. The server initializes fine and I see the JMS queue gets created on the JMS broker but when I try to call a method on stub I get the following exception. org.apache.axis2.AxisFault: T

RE: AbstractHTTPSender not releasing connection

2007-05-04 Thread Kang, Kamaljeet K.
c final int DEFAULT_MAX_TOTAL_CONNECTIONS = 20; > > > > > > > > > > > > Could the new threads being created because the old ones are still in > > > > > > progress? can you bump up the default limits and try? > > > > > > > > &

RE: AbstractHTTPSender not releasing connection

2007-05-04 Thread Kang, Kamaljeet K.
azzucco <[EMAIL PROTECTED]> wrote: > > > Dims, > > > > > > even if the HttpClient is cached new connections are created every 3/4 > > > requests. > > > > > > Michele > > > > > > On Fri, 2007-05-04 at 09:44 -0400, Davanum

RE: AbstractHTTPSender not releasing connection

2007-05-04 Thread Kang, Kamaljeet K.
To: axis-user@ws.apache.org Subject: Re: AbstractHTTPSender not releasing connection Hi Kamal, HttpClient by default uses persistent (keep alive) connections, however every few requests a new connection is created. Michele On Thu, 2007-05-03 at 16:15 -0400, Kang, Kamaljeet K. wrote: > Hi, > >

AbstractHTTPSender not releasing connection

2007-05-03 Thread Kang, Kamaljeet K.
Hi, As per HTTPClient documentation if you are using MultiThreadedhttpConnectionManager then for every HttpClient.executeMethod there has to be corresponding 'releaseConnection' call. I do not see AbstractHttpSender releasing connection anywhere in the code. Is this the reason why even after using

REUSE_HTTP_CLIENT

2007-04-19 Thread Kang, Kamaljeet K.
Hi, I have set REUSE_HTTP_CLIENT to 'true' in my stub but I still see from netstat that new HTTP Connections are being created. I see connections being reused sometimes but after 2-3 requests it creates new connections. Do we need to do something else for persistent HTTP connection? Thanks Kama

RE: Apache Axis 2: how to get header? Options

2007-04-19 Thread Kang, Kamaljeet K.
These are the changes I did to get Response SOAP header. 1) Save header in the message context in the skeleton implementation. MessageContext inMsgContext = MessageContext.getCurrentMessageContext(); OperationContext operationContext = inMsgContext.getOperationContext()

RE: Operation Not found EPR...

2007-04-04 Thread Kang, Kamaljeet K.
I had a similar error recently and I wasn't using ws-addressing. It was because of typo in in services.xml. kamal -Original Message- From: Michele Mazzucco [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 03, 2007 4:26 AM To: axis-user@ws.apache.org Subject: Re: Operation Not found EPR...

RE: soap header in stub

2007-04-03 Thread Kang, Kamaljeet K.
operationClient to retrieve the SOAP headers. See http://wso2.org/library/290 Also, the same topic was discussed in the following url. http://marc.info/?l=axis-user&m=116492371225455&w=2 regards Charitha Kang, Kamaljeet K. wrote: >Hi, > >I am trying to retrieve soap header of

soap header in stub

2007-04-02 Thread Kang, Kamaljeet K.
Hi, I am trying to retrieve soap header of the response from stub using serviceClient.getLastOperationContext() but OperationContext is always null. Is this the right way to retrieve soap header in stub? Thanks Kamal The information

RE: adding soapheader

2007-03-23 Thread Kang, Kamaljeet K.
ESSAGE_LABEL_OUT_VALUE); > > outMessageContext.getEnvelope().getHeader().addHeaderBlock("xxx",namespa > ce); > > Thanks, > Thilina > > On 2/24/07, Kang, Kamaljeet K. <[EMAIL PROTECTED]> wrote: > > Thanks. It works. > > Another question, how do set the re

adding soapheader

2007-03-22 Thread Kang, Kamaljeet K.
t;xxx",namespa ce); Thanks, Thilina On 2/24/07, Kang, Kamaljeet K. <[EMAIL PROTECTED]> wrote: > Thanks. It works. > Another question, how do set the response soap header? > > kamal > > -Original Message- > From: Deepal Jayasinghe [mailto:[EMAIL PROTECTED] >

ADB , serializable java beans

2007-03-13 Thread Kang, Kamaljeet K.
Hi, I would like the java beans generated by ADB to implement 'Serializable' interface. Do I modify 'PlainBeanTemplate.xsl' and schema-compile.properties in axis2-adb-codegen? Thanks Kamal The information contained in this message may

RE: setOperationContext

2007-02-23 Thread Kang, Kamaljeet K.
t;>Sent: Thursday, February 22, 2007 11:06 PM >>To: axis-user@ws.apache.org >>Subject: Re: setOperationContext >> >>That's outdated!. please use MessageContext.getCurrentContext() from >>inside your service method (when Axis2 calls your service method.) >>

setOperationContext

2007-02-22 Thread Kang, Kamaljeet K.
Hi, I would like to access service context on the skeleton side. I followed the documentation ("http://wso2.org/library/259";) and added 'setOperationContext(OperationContext opCtxt)' in the skeleton class but the method is never called. Is this the correct way to access Context on the server side

SoapMonitor NullPointerException

2007-02-16 Thread Kang, Kamaljeet K.
Hi, Enabling SOAPMonitor is throwing NPE and causing an operation to fail. It works fine if SOAPMonitor is not enabled. Why would failure in SOAPMonitor module result in operation failure? org.apache.axis2.AxisFault: java.lang.NullPointerException at org.apache.axis2.util.Utils.getInbou

How to turn debug on

2007-02-15 Thread Kang, Kamaljeet K.
Hi, Can somebody please let me know how can I turn the debug messages on for Axis2 in Tomcat5. Thanks Kamal The information contained in this message may be privileged and confidential and protected from disclosure. If the reader of

Multiple parts in message

2007-02-02 Thread Kang, Kamaljeet K.
Hi, I have a following wsdl The getAllCapabilities request message. The getAllCapabilities response message. The MTOSI Discovery interface (porttype) ... http:/

Oneway msg/JMS transport

2006-11-21 Thread Kang, Kamaljeet K.
Hi, I have one way message as defined I am using JMS as transport, auto generated the code, the client seems to be waiting for the reply. Nov 21, 2006 3:43:14 PM org.apache.axis2.transport.jms.JMSSender invoke WARNING: Did not receive a JMS response within 30

Standalone axis

2006-11-10 Thread Kang, Kamaljeet K.
Title: Standalone axis Hi, I just want to setup webservice with JMS as transport and I do not want to install Tomcat or other application server. Can somebody please show me how to do this? Also, can somebody tell me if there is any documentation of 'savan'. kamal ==

WSDL2Java support JMS binding

2006-11-09 Thread Kang, Kamaljeet K.
Title: Re: [Axis2] Help using AXIOMXPath Hi,   I would like to know, when is axis2 WSDL2Java tool going to support JMS binding from WSIF?   thanks   Kamal     The information contained in this message may be privileged and confidential

Compilation errors with the generated code

2006-10-24 Thread Kang, Kamaljeet K.
Hi, Can somebody help me with the following compilation errors. I am using Axis2 and have included all the axis2\lib\jarfiles in the classpath. compile.src: [javac] Compiling 216 source files to D:\mtosi\test\wsdl2java\build\classes [javac] D:\mtosi\test\wsdl2java\src\tellabs\mtosi\Config

SOAP/JMS document

2006-10-12 Thread Kang, Kamaljeet K.
Hi, Is there a document regarding SOAP over JMS with Axis2? Thanks kamal The information contained in this message may be privileged and confidential and protected from disclosure. If the reader of this message is not the intended re