Re: IPv6

2007-05-04 Thread Demetris G
I will certainly give it a shot but currently I don't have an IPv6 box either to work with. I will ask around here and if I get an access to one I will give test Axis2 and let the list know. Thanks Dims ... Davanum Srinivas wrote: Am yet to test it on an IPv6 only machine. I believe JDK15 an

Re: Looking for recommended books/articles for Webservices newbies

2007-05-04 Thread Davanum Srinivas
sorry, clicked send too fast. here's the list of articles etc: http://ws.apache.org/axis2/articles.html -- dims On 5/4/07, Davanum Srinivas <[EMAIL PROTECTED]> wrote: See http://wso2.org -- dims On 5/4/07, Masin, Valerie <[EMAIL PROTECTED]> wrote: > > > Hi, > I am the only one in my group doi

Re: Looking for recommended books/articles for Webservices newbies

2007-05-04 Thread Davanum Srinivas
See http://wso2.org -- dims On 5/4/07, Masin, Valerie <[EMAIL PROTECTED]> wrote: Hi, I am the only one in my group doing web services. The others would like to get on board in the most efficient way so we are looking for books and/or articles that will explain the concepts starting at a high

Looking for recommended books/articles for Webservices newbies

2007-05-04 Thread Masin, Valerie
Hi, I am the only one in my group doing web services. The others would like to get on board in the most efficient way so we are looking for books and/or articles that will explain the concepts starting at a high level but moving quickly down to code. Any suggestions? Thanks, Valerie

RE: [AXIS2] Module configuration and flows

2007-05-04 Thread Masin, Valerie
Sorry it has taken so long to reply but I haven't read this listserv for a week. I agree you do not have the module listed in your axis2.xml. Something else is going on and someone more axis2 savvy than me will have to figure it out. Or maybe you have in the meantime. Good luck _

Re: IPv6

2007-05-04 Thread Davanum Srinivas
Am yet to test it on an IPv6 only machine. I believe JDK15 and Tomcat6 are both IPv6 compatible. Digging into my memory, Even in Axis1 I remember dealing with only one issue in regarding IPv6 basically where we set the endpoint url in the auto-generated wsdl. If you can help us test Axis2 that wou

[Axis2] Re: XMLBeans, Attachments and Rampart

2007-05-04 Thread Dennis Sosnoski
Hi Jorge, I haven't verified Rampart handling of attachments, but based on what I've seen in other cases I suspect it will build an in-memory representation of the entire document (including attachments, as embedded base64 text) any time Rampart is engaged for a service. This should really on

IPv6

2007-05-04 Thread Demetris G
Hi all - a somewhat elementary question Does Axis2 support IPv6? Axis 1.X only deals with IPv4 ? Thanks - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Problem using faults under axis2 with XMLBeans data binding

2007-05-04 Thread Davanum Srinivas
And the sample soap request / response as well (captured via tcpmon) or sample client code to recreate the problem. thanks, dims On 5/4/07, Davanum Srinivas <[EMAIL PROTECTED]> wrote: Artem, Please log a bug in JIRA and upload your wsdl and xsd's. thanks, dims On 5/4/07, Artem Portnoy <[EMAI

Re: Axis2 under JBossand Tomcat

2007-05-04 Thread Davanum Srinivas
Larry, Could it be this problem? http://mail-archives.apache.org/mod_mbox/ws-wsif-user/200411.mbox/[EMAIL PROTECTED] thanks, dims On 5/4/07, Lennhoff, Larry J (Larry) <[EMAIL PROTECTED]> wrote: Hi I'm currently working on a J2EE based application that is supposed to be application serv

Re: Problem using faults under axis2 with XMLBeans data binding

2007-05-04 Thread Davanum Srinivas
Artem, Please log a bug in JIRA and upload your wsdl and xsd's. thanks, dims On 5/4/07, Artem Portnoy <[EMAIL PROTECTED]> wrote: Hi, We've been successfully using 'fault' messages with Axis1, but now we decided to switch to using Axis 2, so that we can use XmlBeans data binding. The proble

Problem using faults under axis2 with XMLBeans data binding

2007-05-04 Thread Artem Portnoy
Hi, We've been successfully using 'fault' messages with Axis1, but now we decided to switch to using Axis 2, so that we can use XmlBeans data binding. The problem we're faced with is that it appears as though fault support is broken. We're getting the following exception when a fault message

Axis2 under JBossand Tomcat

2007-05-04 Thread Lennhoff, Larry J \(Larry\)
Hi I'm currently working on a J2EE based application that is supposed to be application server independent. We are using Axis 2 for our web services platform, bundling the Axis2 jars into our application war. We are not using JBossWS. The web services piece we have works just fine under s

Re: Invoke Axis2 Web Service from Non JVM Client?

2007-05-04 Thread Michele Mazzucco
No, it's possible with all SOAP engines because XML guarantees interoperability. Michele On 4 May 2007, at 20:23, Rupal Soni wrote: Is this made possible after Axis 2 came in market or was it possible to invoke Axis 1.x web services with non-Java clients. after reading http://wso2.org/lib

Re: AbstractHTTPSender not releasing connection

2007-05-04 Thread Davanum Srinivas
Do you have a stripped down test? thanks, dims On 5/4/07, Michele Mazzucco <[EMAIL PROTECTED]> wrote: I've tried it (see my previous post), but with no success :(. BTW, since I'm using asynchronous invocations (with a separate channel for responses) I guess the connection should be closes immed

Re: Invoke Axis2 Web Service from Non JVM Client?

2007-05-04 Thread Paul Fremantle
Rupal Axis1 services can also be accessed by all sorts of clients. Axis2 has slightly better interoperability with Microsoft Windows Comms Foundation (WCF) but both Axis1 and Axis2 are very interoperable. There is also an Axis2/C if you want to code C clients. Paul On 5/4/07, Rupal Soni <[EMAI

Re: AbstractHTTPSender not releasing connection

2007-05-04 Thread Michele Mazzucco
I've tried it (see my previous post), but with no success :(. BTW, since I'm using asynchronous invocations (with a separate channel for responses) I guess the connection should be closes immediately after sending the request, not after receiving the response. Am I right? Michele On 4 May

Fwd: AbstractHTTPSender not releasing connection

2007-05-04 Thread Davanum Srinivas
Resending email...somehow this did not make it to the list. Can you please try this? -- dims -- Forwarded message -- From: Davanum Srinivas <[EMAIL PROTECTED]> Date: May 4, 2007 11:25 AM Subject: Re: AbstractHTTPSender not releasing connection To: axis-user@ws.apache.org Ok the

RE: Invoke Axis2 Web Service from Non JVM Client?

2007-05-04 Thread Rupal Soni
Is this made possible after Axis 2 came in market or was it possible to invoke Axis 1.x web services with non-Java clients. after reading http://wso2.org/library/24 it seems like it's made possible in Axis 2 only. Is this true? "Hickman, Craig" <[EMAIL PROTECTED]> wrote: No problem with

Maven2 Profiles + Axis2 wsdl2code = ?

2007-05-04 Thread Edward Bush
All, Maven2 question for you all (if you'd be so kind!) We run different environments here -- development, test, and production. I'm trying to figure out how I am going to change the service URI based on the environment I'm building for. For example, if I'm building for a local test, I can use

RE: Invoke Axis2 Web Service from Non JVM Client?

2007-05-04 Thread Hickman, Craig
No problem with that at all. As long as the client is SOAP or REST or other supported protocols you're fine. I have parts of the company using Cold Fusion Clients, C clients, etc. Only the service is in java, but the clients accessing it don't matter as long as they can understand the protocol an

Invoke Axis2 Web Service from Non JVM Client?

2007-05-04 Thread Rupal Soni
>From what I read in the documentation " The Apache Axis2 project is a >Java-based implementation of both the client and server sides of the Web >services equation". Does this mean the client I implement has be written in >Java only. Can't I have the client invoking the Web Service in any other

Re: Advantages of Axis2 over Axis 1.3

2007-05-04 Thread Demetris G
Gotcha. Thanks for the clarification Paul - and no harm done. Paul Fremantle wrote: Yes Axis2 supports Async. My mistake wasn't about Axis2! My mistake was that I implied that Axis1 didn't do it. Paul On 5/4/07, Demetris G <[EMAIL PROTECTED]> wrote: Paul - I thought you were referring to t

Re: Advantages of Axis2 over Axis 1.3

2007-05-04 Thread Paul Fremantle
Yes Axis2 supports Async. My mistake wasn't about Axis2! My mistake was that I implied that Axis1 didn't do it. Paul On 5/4/07, Demetris G <[EMAIL PROTECTED]> wrote: Paul - I thought you were referring to the advantages of Axis2. So that we don't confuse one too many people, Axis2 does suppor

Re: Advantages of Axis2 over Axis 1.3

2007-05-04 Thread Demetris G
Paul - I thought you were referring to the advantages of Axis2. So that we don't confuse one too many people, Axis2 does support Async mode - is that correct ? Doug Davis wrote: "Paul Fremantle" <[EMAIL PROTECTED]> wrote on 05/04/2007 06:17:43 AM: ... > * Asynchronous calling model > * Bette

Re: Performances of Axis2 over Axis 1.1

2007-05-04 Thread Paul Fremantle
Jack I'm still not sure what you are describing. WSDL is a description language that typically isn't used at runtime. The actual message exchanges are made using SOAP. Axis2 can typically serve around 110req/s of SOAP messages when using a large and complex payload (100k in/100k out of complex o

Re: Advantages of Axis2 over Axis 1.3

2007-05-04 Thread Paul Fremantle
My apologies for getting it wrong. Paul On 5/4/07, Doug Davis <[EMAIL PROTECTED]> wrote: "Paul Fremantle" <[EMAIL PROTECTED]> wrote on 05/04/2007 06:17:43 AM: ... > * Asynchronous calling model > * Better support for WS-Addressing Current axis1 code does support async and both versions of

RE: Appropriate place for transaction code?

2007-05-04 Thread Hickman, Craig
One way you could do this is to just use Spring's api, or you could inject it yourself as in: Now for specific injection (unrelated to above) of SessionFactory: org.example.ExampleBean

Re: Advantages of Axis2 over Axis 1.3

2007-05-04 Thread Doug Davis
"Paul Fremantle" <[EMAIL PROTECTED]> wrote on 05/04/2007 06:17:43 AM: ... > * Asynchronous calling model > * Better support for WS-Addressing Current axis1 code does support async and both versions of WS-Addressing (2004,2005) -Doug

Re: Advantages of Axis2 over Axis 1.3

2007-05-04 Thread Demetris G
To extend Rakesh's question ... Is the transition of legacy code from Axis 1.3 to Axis 2 easy ? Thanks Paul Fremantle wrote: Rakesh Sure there are a large number of advantages. I'll leave it up to an Axis1 expert to list the disadvantages! * Improved performance 6-10 times, reduced memory f

Re: AbstractHTTPSender not releasing connection

2007-05-04 Thread Michele Mazzucco
Dims, unfortunately there are still tonns of connections in CLOSE_WAIT state (it does not crashes only because I'm running on Mac OS X -- which has a limit set to an higher value, on Linux it crashes after a few minutes). I've tried with version 1.2 and by caching the operation context. Michele

Re: Axis2 and OSGi

2007-05-04 Thread Demetris G
Super - thanks Rodrigo. Rodrigo Ruiz wrote: Hi Demetris, take a look at MUSE project: http://ws.apache.org/muse The project includes an OSGi compliant Axis2 installation. Regards, Rodrigo Demetris G wrote: Hi all, anyone has experience with deploying Axis2 into one of the popular OS

RE: Returning arrayList

2007-05-04 Thread Hickman, Craig
Hope the below will provide you an example If I read this correctly your user is calling the service and your are returning a collection of objects as in your example. I do this with a list sequence using the Object Model and returning a org.apache.axiom.soap.SOAPEnvelope envelope: 1. Build the

Re: AbstractHTTPSender not releasing connection

2007-05-04 Thread Davanum Srinivas
I have linked the 2 issues. Let's wait to hear from Michele on my latest suggestions thanks, dims On 5/4/07, Cox, Brian (GE Infra, Energy) <[EMAIL PROTECTED]> wrote: I believe this JIRA is also related: http://issues.apache.org/jira/browse/AXIS2-935 -Original Message- From: Miche

RE: AbstractHTTPSender not releasing connection

2007-05-04 Thread Cox, Brian \(GE Infra, Energy\)
I believe this JIRA is also related: http://issues.apache.org/jira/browse/AXIS2-935 -Original Message- From: Michele Mazzucco [mailto:[EMAIL PROTECTED] Sent: Friday, May 04, 2007 10:12 AM To: axis2 Subject:Re: AbstractHTTPSender not releasing connection Dims, please

RE: AbstractHTTPSender not releasing connection

2007-05-04 Thread Kang, Kamaljeet K.
I just tested the example code in HttpClient, 'MultiThreadedExample.java' (modified so that it runs forever). It reuses the pool of connections. I do not see it creating new connection all the time. Should I enter a bug? kamal -Original Message- From: Davanum Srinivas [mailto:[EMAIL PROT

Re: AbstractHTTPSender not releasing connection

2007-05-04 Thread Davanum Srinivas
Ok then try this tactic. Can you get hold of the OperationContext for each invocation? Typically you can use myServiceContext.getLastOperationContext() to get the last OperationContext. You will have to start caching them though by calling myServiceClient.setCachingOperationContext(true) or you ca

Re: Invoke Axis2 Web Service from Non JVM Client?

2007-05-04 Thread Michele Mazzucco
On Fri, 2007-05-04 at 08:06 -0700, Rupal Soni wrote: > In short I want my Web Service to return XML response This is what Web services are supposed to do :) Michele - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional com

[axis 2] Invoke Axis2 Web Service from Non JVM Client?

2007-05-04 Thread Rupal Soni
I want to be able to develop Axis2 Web Service using MyEclipse and would like to be invoked by any client which may be java, non java, non JVM compatible. In short I want my Web Service to return XML response which can be utilized via any type of client. Please let me know if this is possible w

Re: AbstractHTTPSender not releasing connection

2007-05-04 Thread Michele Mazzucco
Dims, what do you mean by "calling the complete method"?. In this scenario I'm using simple ServiceClient(s) sharing the same conf. context and attached to custom callbacks (I'm reusing the same ServiceClients for thousands of asynchronous requests). For my knowledge (see the link below) the clean

Invoke Axis2 Web Service from Non JVM Client?

2007-05-04 Thread Rupal Soni
I want to be able to develop Axis2 Web Service using MyEclipse and would like to be invoked by any client which may be java, non java, non JVM compatible. In short I want my Web Service to return XML response which can be utilized via any type of client. Please let me know if this is possible w

Re: AbstractHTTPSender not releasing connection

2007-05-04 Thread Davanum Srinivas
Michele, Are you calling the complete method in OperationClient? that calls the cleanup method in the TransportSender. I believe we are doing that automatically in generated stubs as well where we generate the following call. _messageContext.getTransportOut().getSender().cleanup(_messageContext)

Re: Telling when a client disconnects

2007-05-04 Thread Martin Gainty
Hi Wayne you can setTimeOutInMilliSeconds for client.options e.g. stub._getServiceClient().getOptions().setTimeOutInMilliSeconds(60*1000); http://spteam-lists.blogspot.com/2007/04/re-how-to-increase-time-out-of-axis2.html HTH/ This email message and any files transmitted with it contain confid

Re: AbstractHTTPSender not releasing connection

2007-05-04 Thread Michele Mazzucco
But that workaround works only on Windows :( Michele On Fri, 2007-05-04 at 10:18 -0400, Davanum Srinivas wrote: > Guess the only work around is the tuning parameters as mentioned > there...so it's a no-op fo us. There's nothing we can do..is there? > > -- dims > > On 5/4/07, Michele Mazzucco <[

RE: AbstractHTTPSender not releasing connection

2007-05-04 Thread Kang, Kamaljeet K.
Is it okay not to release the connection back to the pool? This is from HttpClient site >>To safely ensure connection release HttpClient should be used in the >>following manner >>// and then from inside some thread executing a method GetMethod get = new GetMethod("http://jakarta.apache

Re: AbstractHTTPSender not releasing connection

2007-05-04 Thread Michele Mazzucco
Maybe these could be of interest (on linux/unix systems I see a lot of connections in CLOSE_WAIT state, and I'm using only a cached HttpClient) http://www.fedora.info/bugzilla/show_bug.cgi?id=138 http://www.mail-archive.com/[EMAIL PROTECTED]/msg07554.html (I think this is why if System.gc() is "

Telling when a client disconnects

2007-05-04 Thread Wayne Johnson
I have an Axis WSDD service that needs to tell if and when a client disconnects, so that we can clean up session information. I can't simply rely on a logoff method getting called, because the disconnect might be based on external factors, like loss of network, etc. We also appear to have a pr

Re: [Axis2] Rampart / WSS4J / WS-Security 1.1

2007-05-04 Thread Davanum Srinivas
We'd love it if you can help out by sharing your patches for WSS1.1. thanks, dims On 5/4/07, Brecht Yperman <[EMAIL PROTECTED]> wrote: Hi, Does anyone know when, or if, WS-Security 1.1 will be supported by WSS4J? I'm trying to connect to a .NET-webservices and I'm having some problems

Re: AbstractHTTPSender not releasing connection

2007-05-04 Thread Davanum Srinivas
Guess the only work around is the tuning parameters as mentioned there...so it's a no-op fo us. There's nothing we can do..is there? -- dims On 5/4/07, Michele Mazzucco <[EMAIL PROTECTED]> wrote: Dims, please see here https://issues.apache.org/jira/browse/AXIS2-2593 Michele On Fri, 2007-05-

Re: AbstractHTTPSender not releasing connection

2007-05-04 Thread Michele Mazzucco
Dims, please see here https://issues.apache.org/jira/browse/AXIS2-2593 Michele On Fri, 2007-05-04 at 09:59 -0400, Davanum Srinivas wrote: > Michele, > > Here's what is see in the http client code: > http://svn.apache.org/repos/asf/jakarta/commons/proper/httpclient/trunk/src/java/org/apache/com

RE: Security using rampart

2007-05-04 Thread Vibhor_Sharma
Thanks Ruchith for the Response Regarding point D why can't the axis2 engine decide that the incoming request is of type REST and then it should override Rampart and let the request be processed I have exposed the web services which are REST as well as SOAP enabled and Rampart is configured fo

[Axis2] Rampart / WSS4J / WS-Security 1.1

2007-05-04 Thread Brecht Yperman
Hi, Does anyone know when, or if, WS-Security 1.1 will be supported by WSS4J? I'm trying to connect to a .NET-webservices and I'm having some problems: - WSE2.0: Addressing-version in WSE2.0 is too old for Addressing module in Axis2 1.1 - WSE3.0: WSE3.0 uses WSS1.1, not

Re: AbstractHTTPSender not releasing connection

2007-05-04 Thread Davanum Srinivas
Michele, Here's what is see in the http client code: http://svn.apache.org/repos/asf/jakarta/commons/proper/httpclient/trunk/src/java/org/apache/commons/httpclient/MultiThreadedHttpConnectionManager.java /** The default maximum number of connections allowed per host */ public static final i

Re: Returning arrayList

2007-05-04 Thread Glen Mazza
I believe Anne recommends arrays over ArrayLists in these cases[1]. They are more interoperable with non-Java platforms and map more easily to the WSDL types. Listing #7 on page 3 of this tutorial[2] (free registration required) might be a good option for you on how you can represent the database

Re: [Axis2] Maven Tools Downloads Missing?

2007-05-04 Thread Davanum Srinivas
They are in the central maven repo: http://repo1.maven.org/maven2/org/apache/axis2/axis2-aar-maven-plugin/ http://repo1.maven.org/maven2/org/apache/axis2/axis2-java2wsdl-maven-plugin/ -- dims On 5/4/07, Edward Bush <[EMAIL PROTECTED]> wrote: It seems the downloads for the Maven tools are missi

Re: AbstractHTTPSender not releasing connection

2007-05-04 Thread Michele Mazzucco
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 Srinivas wrote: > Kamaljeet, > > can you try the 2nd option here: > http://wso2.org/library/87 > > -- dims > > On 5/4/07, Kang, Kamaljeet K. <[EMAIL PROTEC

[Axis2] Maven Tools Downloads Missing?

2007-05-04 Thread Edward Bush
It seems the downloads for the Maven tools are missing. The Eclipse plugins seem to be there, but not their Maven counterparts. I've checked several different download sites. I'm betting someone is already aware, but could find nothing to substantiate my guess. Any idea when the downloads will

Re: AbstractHTTPSender not releasing connection

2007-05-04 Thread Davanum Srinivas
Kamaljeet, can you try the 2nd option here: http://wso2.org/library/87 -- dims On 5/4/07, Kang, Kamaljeet K. <[EMAIL PROTECTED]> wrote: Hi, I turned the HttpClient log on and from the log it looks like new connection is created for every request. I am sending request every 1 sec so connection

RE: AbstractHTTPSender not releasing connection

2007-05-04 Thread Kang, Kamaljeet K.
Hi, I turned the HttpClient log on and from the log it looks like new connection is created for every request. I am sending request every 1 sec so connection shouldn't idle out. I think, AbstractHTTPSender is not releasing the connection back to the pool so 'MultiThreadedHttpConnectionManager clea

RE: Performances of Axis2 over Axis 1.1

2007-05-04 Thread Jacky Rymasz-Maillot
Hello Paul, My server application is receiving WSDL requests and my server perform functional work then returns a WSDL response using. When I run my test class, I got the response from my server about 2-3 seconds after sending the request. The functional part takes only 600ms. Both server and

Re: [Axis] Rampart examples - Username token password verification

2007-05-04 Thread Ruchith Fernando
On 5/3/07, Stefan Magnus Landrø <[EMAIL PROTECTED]> wrote: Hi, I've been looking at the rampart examples recently, but there are a couple things that I don't understand: How do the sample services in the rampart distribution verify the password? Why do the services.xml include a reference to a

Re: [Axis2] Rampart examples - Username token password verification

2007-05-04 Thread Stefan Magnus Landrø
Is it maybe using the services of the undelying transport? In this case the security infrastucture of the servlet container? Stefan -- Forwarded message -- Date: 03.mai.2007 12:51 Subject: [Axis] Rampart examples - Username token password verification Hi, I've been looking at

Re: [Axis2] stub sending text/xml instead of application/x-www-form-urlencoded

2007-05-04 Thread Davanum Srinivas
That's ok Brad. We will just use it for testing. -- dims On 5/4/07, Brad <[EMAIL PROTECTED]> wrote: Dims, I created a bug report as requested: AXIS2-2638. I also attached the WSDL but I wasn't sure what to do about the license option as the WSDL is from a third party. I marked it as not licens

Re: WSDL2Java: WSDLProcessingException: Encoded use is not supported?

2007-05-04 Thread Davanum Srinivas
Amila, No. Let's leave it as-is. thanks, dims On 5/4/07, Amila Suriarachchi <[EMAIL PROTECTED]> wrote: if you have put that into production, that means for the services it does not use the encoding work fine. So what we can do in Axis2 is to proceed by giving a waring message as in earlier. S

Returning arrayList

2007-05-04 Thread Kencana
Hi all, Lets say, there are many fields on the database table. so when user wants to retrieve all the data, basically what i did in normal java application is I bind it to an arrayList. so my question is, can axis return arrayList data type? or is there any other solution to let user retrieve all

Re: Advantages of Axis2 over Axis 1.3

2007-05-04 Thread Paul Fremantle
Rakesh Sure there are a large number of advantages. I'll leave it up to an Axis1 expert to list the disadvantages! * Improved performance 6-10 times, reduced memory footprint for large messages * Better .NET interoperability and support for doc/lit wrapped * Full support for MTOM for efficient b

Re: Performances of Axis2 over Axis 1.1

2007-05-04 Thread Paul Fremantle
Jacky I'm not clear what you mean by "generate some WSDL responses". Can you explain exactly what you want to run faster? Its very unusual too see response times of 2-3 seconds. On small messages I see response times of 2-3milliseconds! Paul On 5/4/07, Jacky Rymasz-Maillot <[EMAIL PROTECTED]>

Re: JDBC Database connection

2007-05-04 Thread Michele Mazzucco
On Fri, 2007-05-04 at 01:59 -0700, Kencana wrote: > Hi, > > sorry but i dun get what you mean in the last post. > "So I do you know you can't establish a connection?" You said there are no errors, right?, However the fact that you can't establish a connection to the db server is an error, so it s

Re: JDBC Database connection

2007-05-04 Thread Kencana
Hi, sorry but i dun get what you mean in the last post. "So I do you know you can't establish a connection?" anyway in the previous post you mentioned about class loader error. if in that case how do we handle that? maybe i can try it out Thanks Regards, Kencana Michele Mazzucco-2 wrote: > >

Performances of Axis2 over Axis 1.1

2007-05-04 Thread Jacky Rymasz-Maillot
Hello, We have a server which is using Axis1.1 for WSDL request/response. We have noticed that Axis 1.1 was taking too long time to generate some WSDL responses (the functional part is taking about 600ms but the transformation to WSDL is taking about 2000-2500ms). Response speed is quite an

Sequence of choices, or "no serializer for AnyType"

2007-05-04 Thread Axel Bock
Hi list, Using Axis 1.4 I ran into a very annoying problem, based on this thing in my web service schema: Now every time axis tries to parse the answer with more than one element in the DocumentList type I get the following error: No d

Re: [Axis2] Rampart 1.2

2007-05-04 Thread Damien Sauvageot
thanks Sanjiva. I did compile a SVN snapshot version and this message disapeared. I am now getting an error org.apache.axis2.AxisFault: The endpoint reference (EPR) for the Operation not found is http://localhost/josso/services/okauth/ and the WSA Action = http://localhost/josso/services/okauth

Re: JDBC Database connection

2007-05-04 Thread Michele Mazzucco
So I do you know you can't establish a connection? Michele On Fri, 2007-05-04 at 01:40 -0700, Kencana wrote: > Hi, > > there is no error message at all (either from the log file or from the > browser) > > Kencana > > > Michele Mazzucco-2 wrote: > > > > What's the error? Could it be a class l

Advantages of Axis2 over Axis 1.3

2007-05-04 Thread Rakesh Thawait
Hi all, I am a new to axis. Can anybody please tell me the advantages and disadvantages of Axis2 over Axis 1.3? Regards, Rakesh Thawait

Re: JDBC Database connection

2007-05-04 Thread Kencana
Hi, there is no error message at all (either from the log file or from the browser) Kencana Michele Mazzucco-2 wrote: > > What's the error? Could it be a class loader issue? > > Michele > > On Fri, 2007-05-04 at 01:29 -0700, Kencana wrote: >> Hi Michele, >> >> Thanks for the reply. if it i

Re: JDBC Database connection

2007-05-04 Thread Michele Mazzucco
What's the error? Could it be a class loader issue? Michele On Fri, 2007-05-04 at 01:29 -0700, Kencana wrote: > Hi Michele, > > Thanks for the reply. if it is similar to the normal case, I cant get > through the following phase > Class.forName(drivername); > I don't know why I can't establish th

Re: Security using rampart

2007-05-04 Thread Ruchith Fernando
Hi Vibhor, On 4/28/07, Vibhor_Sharma <[EMAIL PROTECTED]> wrote: Hi Ruchith We are deploying the web services solution created by Axis2 1.1.1 and security using rampart1.1. The deployment comprises of the Apache Web server which receives the HTTP requests and then routes the requests to t

Re: JDBC Database connection

2007-05-04 Thread Kencana
Hi Michele, Thanks for the reply. if it is similar to the normal case, I cant get through the following phase Class.forName(drivername); I don't know why I can't establish the connection any idea of this? Thanks Regards, Kencana Michele Mazzucco-2 wrote: > > On Fri, 2007-05-04 at 00:07 -07

Re: JDBC Database connection

2007-05-04 Thread Michele Mazzucco
On Fri, 2007-05-04 at 00:07 -0700, Kencana wrote: > Hi all, > > I am a new bie of axis. What I am trying now is to connect the service to > the database. > can somebody teach or tell me the step of connecting to the JDBC database. > is there any guidelines of doing it?any reference? Is there any

Re: AbstractHTTPSender not releasing connection

2007-05-04 Thread Michele Mazzucco
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, > > As per HTTPClient documentation if you are using > MultiThreadedhttpConnectionManager

Re: Axis2 and OSGi

2007-05-04 Thread Rodrigo Ruiz
Hi Demetris, take a look at MUSE project: http://ws.apache.org/muse The project includes an OSGi compliant Axis2 installation. Regards, Rodrigo Demetris G wrote: > > Hi all, > >anyone has experience with deploying Axis2 into one of the popular > OSGi R4 implementations > (Equinox, Knopfle

Re: [Axis2] stub sending text/xml instead of application/x-www-form-urlencoded

2007-05-04 Thread Brad
Dims, I created a bug report as requested: AXIS2-2638. I also attached the WSDL but I wasn't sure what to do about the license option as the WSDL is from a third party. I marked it as not licensed so hopefully that will be ok. Brad. On 5/3/07, Davanum Srinivas <[EMAIL PROTECTED]> wrote: Brad,

JDBC Database connection

2007-05-04 Thread Kencana
Hi all, I am a new bie of axis. What I am trying now is to connect the service to the database. can somebody teach or tell me the step of connecting to the JDBC database. is there any guidelines of doing it?any reference? Thank you Regards, Kencana -- View this message in context: http://www.