"AxisAdminServlet" failed to preload on startup in Web application: "axis2"

2009-05-15 Thread JCSchering
I'm trying to deploy Axis2 1.4.1 into a Clustered Weblogic 10 environment and I continually get this error message when I deploy. Has anyone experienced this issue and have any suggestions to fix it? I have the following settings: ###weblogic-application,xml:###

Re: [AXIS2] Accessing classes inside aar from a jar located in the lib directory

2009-05-15 Thread Laurent Even
Great! it works! Thanks Andreas!! Andreas Veithen a écrit : In that case you should change the code in WEB-INF/lib to use Thread.getContextClassLoader(). If the ServiceTCCL parameter is set correctly, then that method should return the appropriate class loader. Andreas 2009/5/15 Laurent Even :

Re: [AXIS2] Accessing classes inside aar from a jar located in the lib directory

2009-05-15 Thread Andreas Veithen
In that case you should change the code in WEB-INF/lib to use Thread.getContextClassLoader(). If the ServiceTCCL parameter is set correctly, then that method should return the appropriate class loader. Andreas 2009/5/15 Laurent Even : > Andreas, > > thanks for your response. > Basically, my class

Re: [AXIS2] Accessing classes inside aar from a jar located in the lib directory

2009-05-15 Thread Laurent Even
Andreas, thanks for your response. Basically, my class in the WEB-INF/lib contains core functions which are used by all services. Each service contains specific code. for each service call, I have service -> core (web-inf/lib) -> service Is there a simple way to get the classloader dynamically

[axis2:Generalised Session]

2009-05-15 Thread Vaibhav Arya
Hi Deepal, Thanks a lot for you Help, Please consider the following about our web service session, We may have different kinds of client requests for the web service. Request may come through the protocol other than 'HTTP', or some other window applications, PHP ap

Re: Synapse and axis2

2009-05-14 Thread Andreas Veithen
itten in different > languages running on defferent OS/plateforms. They ware thick clients, > existing legacy systems, web apps etc. Each client will have to access/use > our existing DMS server. The result of done operation will be rendered in > existing jsp/servlet web application. I have

Re: [AXIS2] Accessing classes inside aar from a jar located in the lib directory

2009-05-14 Thread Andreas Veithen
Laurent, By design, there is a distinct class loader for each AAR. This is important to isolate services from each other. The classes in the JARs in WEB-INF/lib are loaded by the Web app class loader, which is the parent of the AAR class loaders. It is therefore normal that a class in WEB-INF/lib

[AXIS2] Accessing classes inside aar from a jar located in the lib directory

2009-05-14 Thread Laurent Even
Hi all, I have some classes in a jar which is located in the WEB-INF/lib directory of my application. I deployed several services in this application. So far so good but (always a but ;) ) I'm doing a classforname from my jar fil (WEB-INF/lib) that try to instantiate a class inside a servi

[Fwd: upgrading handler from axis1 to axis2-1.4.1]

2009-05-14 Thread maalej
--- Begin Message --- Hello every body Does anyone have any experience with upgrading Apache Axis 1 web service to Axis2? i am currently running Axis1 and would like to upgrade to Axis2. Notably, does anyone have any ideas on how to migrate axis1 code handler to axis2. Any tips or

RE: Synapse and axis2

2009-05-14 Thread Rajneesh Kumar
done operation will be rendered in existing jsp/servlet web application. I have decided to use axis2 as my web service engine because server components are in JAVA/J2EE running on tomcat in my case. Each client will communicate with my service and service will process the output (will communicate and

Re: [axis2:session]

2009-05-13 Thread Amila Suriarachchi
end the request in the same http session. you can verify this by sending messages through a tcpmon. I have done some thing like this and has worked for me. SampleSessionServiceStub stub = new SampleSessionServiceStub( "http://localhost:8088/axis2/services/SampleSessionS

Re: [Axis2] Retrieve client certificate info used in connection to web service

2009-05-13 Thread Amila Suriarachchi
ficate used by calling getAttribute on the request. However, I couldn't > find any information on doing this in Axis2. I am not familiar with you situation. But any thing you can do with a servlet can be done with an Axis2 service once you get the HttpServletRequest. thanks, Amila. > &g

[Axis2] Retrieve client certificate info used in connection to web service

2009-05-13 Thread David Meiklejohn
stems. I was able to find some information on using MessageContext to get the HttpServletRequest which then you are supposed to be able to get the certificate used by calling getAttribute on the request. However, I couldn't find any information on doing this in Axis2. This solution will

Re: Synapse and axis2

2009-05-13 Thread Andreas Veithen
In order to see whether you need an ESB or not, you would have to explain a bit more your use case. Andreas On Tue, May 12, 2009 at 17:06, Rajneesh Kumar wrote: > Hi Deepal, > > > > I am new to SOA. I have implemented axis-2 in my application for testing. > Actually in my case, there would be mu

Re: [axis2:session]

2009-05-13 Thread J. Hondius
. 3.* *in axis2.xml file I am also setting ‘ConfigContextTimeoutInterval’ parameter according to need.* * * * *But still I don’t get same session id to mark that session is being maintained.* How will it be possible that web service maintains a session? Kindly send quick response. I would

Re: [axis2:session]

2009-05-13 Thread Deepal Jayasinghe
Axis2 has 4 different types of sessions. As I can see in your case you need to use transport session. Deepal > > Hi All, > > When I use following code to see the session id, it always returns new > session id. > > * HttpServletResponse response = (HttpServletResponse) > me

[axis2:session]

2009-05-13 Thread Vaibhav Arya
s 1. I have already set session scope 'soapsession' in services.xml, 2. Options.setManageSession (true) on client side. 3. in axis2.xml file I am also setting 'ConfigContextTimeoutInterval' parameter according to need. But still I don't get same session id to ma

[AXIS2] Exception: org.apache.axis2.AxisFault: null

2009-05-12 Thread Lampert, Kevin C (N-Beacon Professional Svs)
I have developed a working web service client on windows configured with axis2 v1.4.1 and rampart 1.4. On the windows platform, this works great. I ported everything over to Solaris. Ran wsdl2java on solaris and followed the same procedure as on my windows platform, (of course making adjustments

RE: [axis2-Using Existing APIs]

2009-05-12 Thread Caristi, Joe
file. From: Vaibhav Arya [mailto:vaibhav.a...@otssolutions.com] Sent: Tuesday, May 12, 2009 10:53 AM To: axis-user@ws.apache.org Subject: [axis2-Using Existing APIs] Thanks a lot Deepal, Caristi, Joe, Your link provided useful information for incorporating axis2

Synapse and axis2

2009-05-12 Thread Rajneesh Kumar
Hi Deepal, I am new to SOA. I have implemented axis-2 in my application for testing. Actually in my case, there would be multiple clients (developed in different platform ASP/ VB/ flex/ swing etc.). I have a web application developed using JSP/servlets - MVC and a DMS server). Now I have to des

[axis2-Using Existing APIs]

2009-05-12 Thread Vaibhav Arya
Thanks a lot Deepal, Caristi, Joe, Your link provided useful information for incorporating axis2 web service into my existing project. Now I have successfully embedded web service into existing project. I have a question: would I be able to call methods of existing java classes and

[AXIS2] Web service that extends an abstract class

2009-05-12 Thread Laurent Even
rvice (){ }; } public abstract class MyAbstractClass{ public OMElement read(OMElement xml){ ... } } my services.xml pack.MyWebService Here an extract of the wsdl generated by axis2 <** - <#> I'm getting the following error when call

upgrading handler from axis1 to axis2-1.4.1

2009-05-11 Thread maalej
Hello every body Does anyone have any experience with upgrading Apache Axis 1 web service to Axis2? i am currently running Axis1 and would like to upgrade to Axis2. Notably, does anyone have any ideas on how to migrate axis1 code handler to axis2. Any tips or thoughts would be very much

Re: [embeding axis2 web service]

2009-05-11 Thread Deepal jayasinghe
) so that I could call some existing project’s APIs and > methods in my web service. > > > > All I want to say is, *how to configure my web service in existing > project*. Do I need to have repeating code for this web service, as it > is working separately within module ‘axis2’ &

RE: [embeding axis2 web service]

2009-05-11 Thread Caristi, Joe
Look at this thread: http://www.nabble.com/Newbie-question%3A-how-to-plug-axis2-engine-into-existing-web-application-running-in-weblogic-td23411717.html#a23412081 From: Vaibhav Arya [mailto:vaibhav.a...@otssolutions.com] Sent: Monday, May 11, 2009 10:43 AM To

[embeding axis2 web service]

2009-05-11 Thread Vaibhav Arya
, how to configure my web service in existing project. Do I need to have repeating code for this web service, as it is working separately within module 'axis2' Appreciation for quick reply Thanks in advance, V

RE: Re: Axis2: Returning an Object as AnyType - get error

2009-05-11 Thread Raghu Upadhyayula
onday, May 11, 2009 2:44 AM To: Chinmoy Chakraborty; axis-user@ws.apache.org Subject: Re: Re: Axis2: Returning an Object as AnyType - get error Hello! Thank you for your suggestion. I have done it in another case where I had to return an array of data holder objects. Here I realy want to ret

RE: using Axis2 wsdl2java to generate Axis1 client stubs

2009-05-11 Thread Martin Gainty
t facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. To: axis-user@ws.apache.org Subject: using Axis2 wsdl2java to generate Axis1 client stubs From: edward.thomp...@wachovia.com Date: Mon, 11 May 2009 09:18:08 -0400 I am using

using Axis2 wsdl2java to generate Axis1 client stubs

2009-05-11 Thread edward . thompson
I am using the Axis2 wsdl2java utility to generate client side java code for Axis1. The reason is that the Axis1 wsdl2java utility can't seme to handle "tree wsdl" generated by out .NET applications. The wdl2java utility for Axis2 indicates a backward compatability option,

Re: Re: Axis2: Returning an Object as AnyType - get error

2009-05-11 Thread Boris Klug
String aString; public Integer aInteger; public Boolean aBoolean; } and only set the value of the type I want to return. It would work - but its ugly. So some other hints? - original Nachricht Betreff: Re: Axis2: Returning an Object as AnyType - get error Gesendet: Mo, 11. Mai

Re: Axis2: Returning an Object as AnyType - get error

2009-05-11 Thread Chinmoy Chakraborty
Hello, I had the same problem when I tried to migrate Axis 1.4 to Axis2 1.4. Only difference was in my case I was returning Object array (Object[] which was 2D array, array of arrays). The developers said it works but it didn't work for me. the solution was to use ComplexTypeArray. If you

Re: Custom module engagement in Axis2

2009-05-08 Thread Makesh Rao
Hi   I have a need to originate a call to invoke a web service (say, WS2) from another web service (say,  WS1) - both web services are deployed in Axis2. I also should use Rampart and Sandesha2. I am using Axis 1.4.1 + Rampart 1.3 and Sandesha 1.3 To implement the calling logic in WS1 I used

Axis2: Returning an Object as AnyType - get error

2009-05-08 Thread Boris Klug
Hi! We want to migrate a Axis 1.4 webservice to Axis2. The webservice is generated from a POJO Java class which contains a method like this: public Object getData() { return "a string"; } The WSDL generated by Axis2 looks like this: The

Re: AXIS2 - How global is the global configurationContext?

2009-05-08 Thread Andreas Veithen
Globally engaged means engaged at the level of the ConfigurationContext. It is possible to create multiple ConfigurationContext instances in the same VM. Andreas On Fri, May 8, 2009 at 14:05, NHoogervorst wrote: > > We use AXIS2 as a web service client. > We have an axis2.xml an

AXIS2 - How global is the global configurationContext?

2009-05-08 Thread NHoogervorst
We use AXIS2 as a web service client. We have an axis2.xml and we have engaged the addressing module. The addressing module must be engaged at global level. global in this context, is that VM level? Or can we create multiple global ConfigurationContext's, with different configurations an

Does Axis2-xmlbeans data binding support Unwrapping in Doc/Lit mode

2009-05-07 Thread John Eapen
We know that unwrapping works fine with adb but does anyone know if this is officially supported with xmlbeans. Thanks John

RE: [Axis2] Null array

2009-05-07 Thread Martin Gainty
e responsabilité pour le contenu fourni. Subject: [Axis2] Null array Date: Thu, 7 May 2009 11:34:58 -0700 From: sow...@telenav.com To: axis-user@ws.apache.org I have a nillable object array in my schema. If I set this to NULL in my service code, the client is getting an array wi

[Axis2] Null array

2009-05-07 Thread Thallapragada, Sowmi
I have a nillable object array in my schema. If I set this to NULL in my service code, the client is getting an array with size 1, and the element at index 0 is NULL. Is this the expected behavior? Shouldn't the array itself be set to NULL? - Sowmi Sowmitra Thallapragada | TeleNav Inc. | +1

Re: Axis2 Performance Tips

2009-05-07 Thread ibrahim demir
-user@ws.apache.org Sent: Thursday, May 7, 2009 11:21:40 AM Subject: Re: Axis2 Performance Tips this[1] may help you. thanks, Amila. [1] http://amilachinthaka.blogspot.com/2009/05/improving-axis2-client-http-transport.html On Wed, May 6, 2009 at 11:10 AM, ibrahim demir wrote: Hi David

Re: Custom module engagement in Axis2

2009-05-07 Thread Amila Suriarachchi
On Wed, May 6, 2009 at 12:52 AM, Makesh Rao wrote: > Hi > We are planning to build a custom module in Axis2 that is required to get > enabled in INOnly, INOUT & OutOnly patterns. > We have a webservice that will use this implementation. I had some doubts > on how Axis2 beh

Re: [Axis2] RuntimeException on timestamp = "" when timestamp minOccurs="0",

2009-05-07 Thread Dennis Sosnoski
the type definition says the string must be exactly 14 characters in length (minLength==maxLength==14). - Dennis -- Dennis M. Sosnoski SOA and Web Services in Java Axis2 Training and Consulting http://www.sosnoski.com - http://www.sosnoski.co.nz Seattle, WA +1-425-939-0576 - Wellington, NZ +64-

Re: Axis2 Performance Tips

2009-05-07 Thread Amila Suriarachchi
this[1] may help you. thanks, Amila. [1] http://amilachinthaka.blogspot.com/2009/05/improving-axis2-client-http-transport.html On Wed, May 6, 2009 at 11:10 AM, ibrahim demir wrote: > Hi David; > > Thanks for the tips. That was what I really wanted to see here. Sharing > these info

Re: [Axis2] RuntimeException on timestamp = "" when timestamp minOccurs="0",

2009-05-07 Thread Amila Suriarachchi
> is it still valid? > > > > > > 2009/5/6 ChunTung POON > > Hi All, > > > > I am running my client on java 1.4 with axis2 1.4.1 > > > > I am able to send the server message. However, axis2 seems like cannot > > construct the response from th

Re: [Axis2] RuntimeException on timestamp = "" when timestamp minOccurs="0",

2009-05-07 Thread ChunTung POON
1.4 with axis2 1.4.1 > > I am able to send the server message. However, axis2 seems like cannot > construct the response from the soap message the server replied. > > Following exception occurred when the client tried to construct the > response from the soap message. > It was

Re: AXIS2 and Weblogic 10.3

2009-05-06 Thread Hari Prasad
Hi, We have executed WL 10.x with Axis 2.14. What exactly is the problem you are facing? Regards Hari On Wed, May 6, 2009 at 11:49 PM, Shasank Bhandari < shasank.bhandari@fedex.com> wrote: > Hi, > > Has anyone executed any web application SUCCESSFULLY in WLS 10.3 w

AXIS2 and Weblogic 10.3

2009-05-06 Thread Shasank Bhandari
Hi, Has anyone executed any web application SUCCESSFULLY in WLS 10.3 with Axis2 1.3? Your suggestions required. Thanks & Regards, Shasank Bhandari

RE: Newbie question: how to plug axis2 engine into existing web application running in weblogic

2009-05-06 Thread Caristi, Joe
One way to do it: 1. Add the Axis Servlet to web.xml AxisServlet org.apache.axis2.transport.http.AxisServlet 1 AxisServlet /services/* 2. Create (or generate) WSDL that describes the service you plan to implement 3. Use the Axis2

Newbie question: how to plug axis2 engine into existing web application running in weblogic

2009-05-06 Thread Hu, Mary - ITG
Hi, I have a web application running in weblogic server. Now I get requirement to expose the server side as a web service so that some user can skip the GUI part and directly interact with this app via web service. I'm going to use axis2 as engine. I don't see any document abo

Re: Best way to load a configuration file in Axis2?

2009-05-06 Thread Kim McCarthy
h can be set to:     sFilePAth = "myXMLFile.xml" or     ClassLoader loader = getClass().getClassLoader(); InputStream inputstream = loader.getResourceAsStream(sFilePath);   Kim --- On Wed, 5/6/09, Moley Harey wrote: From: Moley Harey Subject: Best way to load a configuration file in Axis2? To

Re: Best way to load a configuration file in Axis2?

2009-05-06 Thread Kim McCarthy
h can be set to:     sFilePAth = "myXMLFile.xml" or    sFilePath =   ClassLoader loader = getClass().getClassLoader(); InputStream inputstream = loader.getResourceAsStream(sFilePath);   Kim --- On Wed, 5/6/09, Moley Harey wrote: From: Moley Harey Subject: Best way to load a configuration fil

Re: Best way to load a configuration file in Axis2?

2009-05-06 Thread Kim McCarthy
h can be set to:     sFilePAth = "myXMLFile.xml" or      ClassLoader loader = getClass().getClassLoader(); InputStream inputstream = loader.getResourceAsStream(sFilePath);   Kim --- On Wed, 5/6/09, Moley Harey wrote: From: Moley Harey Subject: Best way to load a configuration file in Axis2? To

Re: Best way to load a configuration file in Axis2?

2009-05-06 Thread Kim McCarthy
h can be set to:     sFilePAth = "myXMLFile.xml" or    sFilePath   ClassLoader loader = getClass().getClassLoader(); InputStream inputstream = loader.getResourceAsStream(sFilePath);   Kim --- On Wed, 5/6/09, Moley Harey wrote: From: Moley Harey Subject: Best way to load a configuration fil

Re: Best way to load a configuration file in Axis2?

2009-05-06 Thread Kim McCarthy
h can be set to:     sFilePAth = "myXMLFile.xml" or    ClassLoader loader = getClass().getClassLoader(); InputStream inputstream = loader.getResourceAsStream(sFilePath);   Kim --- On Wed, 5/6/09, Moley Harey wrote: From: Moley Harey Subject: Best way to load a configuration file in Axis2? To

Re: Best way to load a configuration file in Axis2?

2009-05-06 Thread Kim McCarthy
h can be set to:     sFilePAth = "myXMLFile.xml" or   ClassLoader loader = getClass().getClassLoader(); InputStream inputstream = loader.getResourceAsStream(sFilePath);   Kim --- On Wed, 5/6/09, Moley Harey wrote: From: Moley Harey Subject: Best way to load a configuration file in Axis2? To: axi

Best way to load a configuration file in Axis2?

2009-05-06 Thread Moley Harey
Hi, I am implementing a web service using Axis2 that can be tunned using several configuration parameters. My web service is deployed as *.aar file into the axis2/WEB-INF/services folder. I have done a separate XML configuration file that store those parameters, my idea was to include the

Axis2 1.4 - Update .properties file in AAR

2009-05-06 Thread Kim McCarthy
I have a web service deployed to Tomcat 5.5 using Axis2 1.4. (Win Server 2003/Java 5). My AAR file contains a .properties file that I would like to update. I can read the .properties from the AAR but I would like to know how it can be updated from within the AAR. Is this possible? Code below

Axis2 Codegen-Can not serialize policy

2009-05-06 Thread ibrahim demir
Hi All; I want to generate Axis2 client code for the attached wsdl by using axis2codegen eclipse plugin. (1.3) But I get the can't serialize policy exception. The codegen works fine with other service descriptions that has no secirty info in it. But after adding security description

[Axis2] RuntimeException on timestamp = "" when timestamp minOccurs="0",

2009-05-05 Thread ChunTung POON
Hi All, I am running my client on java 1.4 with axis2 1.4.1 I am able to send the server message. However, axis2 seems like cannot construct the response from the soap message the server replied. Following exception occurred when the client tried to construct the response from the soap message

[Axis2] Mapping qname not fond for the package

2009-05-05 Thread Marc Lefebvre
I have something very simple I am trying to do and am getting this error and feel that its something obvious I am over looking. Here is what I have: I have a class: Foo(), which is my webservice class and is deployed into a Axis2 using Java2WSDL and a class FooBean(), which is created within

Re: Axis2 Performance Tips

2009-05-05 Thread ibrahim demir
, May 5, 2009 11:33:01 PM Subject: Re: Axis2 Performance Tips On Tue, May 5, 2009 at 1:29 AM, ibrahim demir wrote: > I woner if there is performance tips and tricks guide for Axis2. I have > tried to optimize my sevice and tried to make it simpler in order to have > fast response but I bel

Re: [ANNOUNCE] Axis2 1.5 Release Candidate refreshed and ready for testing

2009-05-05 Thread Amila Suriarachchi
On Fri, May 1, 2009 at 9:18 AM, Glen Daniels wrote: > Hi all! > > New version of Axis2 1.5 Release Candidate is ready, including a) > NOTICE/LICENSE files in the jars, b) some JiBX fixes from Dennis, c) some > fixes from Amila, d) a README which is more clear about building

[Axis2] Creating a single executable jar

2009-05-05 Thread Lourenço
Hi everyone, I would like to bundle all jar files from the lib directory of the Axis2 Standard Binary Distribution into a single axis2.jar file which I could run. For example, part of the tree structure is: bin/ axis2server.bat (includes all jar files from lib in the classpath and afterwards

Re: Axis2 Performance Tips

2009-05-05 Thread David Rees
On Tue, May 5, 2009 at 1:29 AM, ibrahim demir wrote: > I woner if there is performance tips and tricks guide for Axis2. I have > tried to optimize my sevice and tried to make it simpler in order to have > fast response but I believe that is not enough. Yes, there are a number of thing

Custom module engagement in Axis2

2009-05-05 Thread Makesh Rao
Hi We are planning to build a custom module in Axis2 that is required to get enabled in INOnly, INOUT & OutOnly patterns. We have a webservice that will use this implementation. I had some doubts on how Axis2 behaves in the OutOnly mode (or even OutIn). The use case is that our service c

SOAP Header: Message gets modified by AXIS2.

2009-05-05 Thread Walsh, Richard (Dublin)
Hi There, I am trying to add a SOAP Header to a WSDL in AXIS2 version 1.4.1. When I do I see that after I give the WSDL to AXIS2 that it generates two Request Messages, one that contains the message that I want to pass into the operation, and the other that contains a message that I want

RE: Axis2/Rampart 1.4 - Ecrypt header information

2009-05-05 Thread Martin Gainty
from what I have seen from Rampart axis2.xml the 'Signature Encrypt Timestamp' InflowSecurity/OutflowSecurity parameters would contain these elements Timestamp Signature client client.properties org.apache.rampart.samples.sample04.P

Axis2 Performance Tips

2009-05-05 Thread ibrahim demir
Hi All; I woner if there is performance tips and tricks guide for Axis2. I have tried to optimize my sevice and tried to make it simpler in order to have fast response but I believe that is not enough. So can you share your experiences or tips here on performance optimizations about Axis2

Re: Axis2/Rampart 1.4 - Ecrypt header information

2009-05-04 Thread Mohannad Hammadeh
Mohannad - Original Message - From: "Martin Gainty" To: axis-user@ws.apache.org Sent: Tuesday, 5 May, 2009 11:32:34 GMT +12:00 New Zealand Subject: RE: Axis2/Rampart 1.4 - Ecrypt header information you want to look at implmenting OnlySignEntireHeadersAndBody element e.g. this i

RE: Axis2/Rampart 1.4 - Ecrypt header information

2009-05-04 Thread Martin Gainty
://schemas.xmlsoap.org/ws/2005/07/securitypolicy"; Axis2-1.3 has a MTOMAssertionTestCase sample testcase you can use package org.apache.axis2.policy.model; import junit.framework.TestCase; import org.apache.axiom.om.OMElement; import org.apache.axiom.om.impl.builder.StAXOMBuilder; i

Axis2/Rampart 1.4 - Ecrypt header information

2009-05-04 Thread Mohannad Hammadeh
Hello, Does anybody know how I can tell rampart to encrypt header information in the SOAP response? Regards, Mohannad

RE: [axis2] MTOM Performance

2009-05-04 Thread Thallapragada, Sowmi
Hello All, With the lack of any response from the group, should I assume that there has been NO benchmarking done on Axis2/MTOM at all? If there has been some, can somebody please point me to it? Sowmi From: Thallapragada, Sowmi Sent: Sunday, May 03

RE: [axis2] MTOM Performance

2009-05-03 Thread Thallapragada, Sowmi
I'd appreciate any pointers regarding this. Thanks! From: Thallapragada, Sowmi Sent: Saturday, May 02, 2009 12:34 AM To: 'axis-user@ws.apache.org' Subject: [axis2] MTOM Performance Can anyone point me to recent performance metrics on Axis2 (1.4.x) /MTOM? - Sowmi

Axis2/Rampart 1.4 - Ecrypt header information

2009-05-03 Thread Mohannad Hammadeh
Hello, Does anybody know how I can tell rampart to encrypt header information in the SOAP response? Regards, Mohannad

Paypal API using axis2

2009-05-03 Thread Sanjay Gupta
Hi, I am trying to use axis2 to consule paypal services. I am using the following wsdl and invoking DoDirectPayment operation. I had to make one code change to the generated class that parses the response to make it work for +ve tes case. But in case of an error e.g. authentication error it&#

[axis2] MTOM Performance

2009-05-02 Thread Thallapragada, Sowmi
Can anyone point me to recent performance metrics on Axis2 (1.4.x) /MTOM? - Sowmi

Axis2 Java6

2009-05-01 Thread David Urbansky
Hello, I am using Axis2 1.4.1 (deployment in Tomcat) and a Java 6 application and I get the BadVersion Error when starting Tomcat. I do not get this error when I compile the application in Java 1.5. I know that the FAQ (https://svn.wso2.com/~thilina/axis2fullsite/faq.html#a4) says something about

RE: How do I force axis2 to include a SOAPAction http header

2009-05-01 Thread Christopher . Gunn
: Friday, May 01, 2009 12:56 AM To: axis-user@ws.apache.org Subject: Re: How do I force axis2 to include a SOAPAction http header Even if you are using SOAP 1.2, if you set the soapAction Axis2 will send it for you. In the event that soap action is not ser Axis2 will send a empty SOAPAction header

Re: How do I force axis2 to include a SOAPAction http header

2009-04-30 Thread keith chapman
Even if you are using SOAP 1.2, if you set the soapAction Axis2 will send it for you. In the event that soap action is not ser Axis2 will send a empty SOAPAction header of SOAP 1.1 is used (cause thats mandatory). Thanks, Keith. On Wed, Apr 29, 2009 at 11:11 PM, Steve Hall wrote: > > Fo

[ANNOUNCE] Axis2 1.5 Release Candidate refreshed and ready for testing

2009-04-30 Thread Glen Daniels
Hi all! New version of Axis2 1.5 Release Candidate is ready, including a) NOTICE/LICENSE files in the jars, b) some JiBX fixes from Dennis, c) some fixes from Amila, d) a README which is more clear about building from scratch. Please check it out if you get a chance, and let me know if there are

Axis2 1.4 PolicyInclude class

2009-04-30 Thread Ed Komp
I'm working on code changes so that WSDL2Java will include WS-Policy appearing in WSDL 2.0 input in the generated stub class, so I'm spending a lot of time in the PolicyInclude class. Several of the methods in this class begin with a comment section indicating that the method has been dep

Re: Fw: [Axis2] single wsdl, multiple operations -- tomcat running out of thread

2009-04-29 Thread Jayashree Krishnamoorthy
Connection] - 2009-04-29 14:28:20,010 DEBUG [org.apache.commons.httpclient.HttpConnection] - 2009-04-29 14:28:20,010 DEBUG [org.apache.commons.httpclient.HttpConnection] - --- On Tue, 4/28/09, wrote: Subject: Fw: [Axis2] single wsdl, multiple operations -- tomcat running out of thread To: axis-u

Re: How do I force axis2 to include a SOAPAction http header

2009-04-29 Thread Steve Hall
that case, how do I force axis2 to choose SOAP 1.1 so that it will send the SOAPAction header? Thanks, Chris Gunn Senior Programmer L-3 Communications -Original Message- From: Salisbury, Mark [mailto:mark.salisb...@hp.com] Sent: Wednesday, April 29, 2009 11:42 AM To: axis-user

RE: How do I force axis2 to include a SOAPAction http header

2009-04-29 Thread Christopher . Gunn
In that case, how do I force axis2 to choose SOAP 1.1 so that it will send the SOAPAction header? Thanks, Chris Gunn Senior Programmer L-3 Communications -Original Message- From: Salisbury, Mark [mailto:mark.salisb...@hp.com] Sent: Wednesday, April 29, 2009 11:42 AM To: axis-user

RE: How do I force axis2 to include a SOAPAction http header

2009-04-29 Thread Salisbury, Mark
led. Axis 2 is probably doing the right thing given the SOAP version you're using. Mark -Original Message- From: christopher.g...@l-3com.com [mailto:christopher.g...@l-3com.com] Sent: Wednesday, April 29, 2009 9:33 AM To: axis-user@ws.apache.org Subject: How do I force axi

How do I force axis2 to include a SOAPAction http header

2009-04-29 Thread Christopher . Gunn
I'm using axis2 1.4.1 and adb to call a .Net web service. I keep getting a response saying: System.Web.Services.Protocols.SoapException: Unable to handle request without a valid action parameter. Please supply a valid soap action. I enabled the wire.header logs and it is sending action i

Re: [ANNOUNCE] Axis2 1.5 Release Candidate ready for testing

2009-04-29 Thread Amila Suriarachchi
; is part of the distribution. > > > > Andreas > > > > On Thu, Apr 16, 2009 at 13:39, Martin Gainty > wrote: > >> Good Morning Glenn/Andreas > >> > >> noting the version of Version.java from the distro located t > >> > http://peo

axis2 and jboss

2009-04-29 Thread Jain, Prateek
In my log4j.xml. It is logging everything from axis2 but not request/response xmls. Let me know if something needs to be corrected. Thanks in advance. Regards, Prateek Jain Senior Software Engineer Tel. +91-124-3936144 | Mob. +91-9958646136 iSmart Panache (I) Solutions Pvt. Ltd

[Axis2] Stub creation fails.

2009-04-29 Thread Prasuna Lanka
Hi, I am trying to invoke the method on a stub generated using axis2 1.3. The method fails throwing the following: _operationClient.execute(*true*); The above line throws the follwoing exception: java.lang.NullPointerException at org.apache.axis2.transport.http.SOAPMessageFormatter.writeTo

Re: Fault/Exception Handling on Axis2

2009-04-29 Thread Amila Suriarachchi
On Sat, Apr 25, 2009 at 4:35 AM, John Eapen wrote: > > Hi , > > We are in the process of migrating from Axis1 to Axis2 and using Axis2 > 1.4.1. ( using adb ) > I am having some trouble understanding the code generation regarding Fault > handling and mapping to Java Except

Axis2 1.3 and anyType

2009-04-28 Thread Aaron Nowack
) must continue to work with the new implementation. Fortunately, we do have the WSDL, so we don’t have to reverse engineer it from scratch. So far as we've been able to determine based on the included jars, the original web service was built using Axis2 1.3 (although the existing client als

Fw: [Axis2] single wsdl, multiple operations -- tomcat running out of thread

2009-04-28 Thread Jayashree Krishnamoorthy
--- On Tue, 4/28/09, Jay wrote: From: Jayashree Krishnamoorthy Subject: [Axis2] single wsdl, multiple operations -- tomcat running out of thread To: axis-user@ws.apache.org Date: Tuesday, April 28, 2009, 4:05 PM Hi I have 2 operations in a single wsdl and the client code is as

Re: [axis2 web service vector parameter]

2009-04-28 Thread Sagara Gunathunga
Hi Vaibhav, This is a one limitation of Axis2 code generation , it does not handle Java collections properly , Axis2 recognize collections as a generic object such as OMElement. but in your case you can use Array instead of Vector. Thanks , On Tue, Apr 28, 2009 at 2:33 PM, Vaibhav Arya wrote

[axis2 web service vector parameter]

2009-04-28 Thread Vaibhav Arya
Hi All, I am passing a Vector as parameter to the web service, QName opSetWeather = new QName("http://service.pojo.sample";, "setVector"); Vector vect = new Vector(); vect.add("value for Vector 1"); vect.add("value for

[axis2] complex datatype handling

2009-04-28 Thread Rajneesh Kumar
Hi all, I have just created a service in java and deployed successfully on tomcat under axis2 engine and deployed a client written in PHP under apache web server2.0. Simple service calls are ok...running good. But how to pass complex data types like array and associative array from PHP to my

Re: [axis2] | Problem running axis2 client

2009-04-27 Thread robert lazarski
On Mon, Apr 27, 2009 at 11:36 AM, Rajneesh Kumar wrote: > Hi  Robert, > > > > Thanks for suggestion… > > Now its running. But not processing correctly. > > > > Please see the code snap below: > >     if (result == null) { > >     System.out.println("Weather didn't initialize!"); // I

RE: [axis2] | Problem running axis2 client

2009-04-27 Thread Rajneesh Kumar
Hi Robert, Thanks for suggestion. Now its running. But not processing correctly. Please see the code snap below: EndpointReference targetEPR = new EndpointReference("http://192.168.1.139:8080/axis2/services/WeatherService";) ; // service is runnig well and prod

TypeDesc in Axis2 and ADB

2009-04-27 Thread Matthias.Gaiser
Hi all, I am currently involved in migrating Axis1 code to Axis2. In our Axis1 code, we used the TypeDesc class to analyze the complex classes to check for e.g. the minOccurs or maxOccurs settings in order to do something specific in our Java code. Now we are using Axis2 with ADB and we

"TypeDesc" equivalent for axis2?

2009-04-27 Thread Martin Fernau
Hello all, I need to implement a client for a (somewhat rudimentary developed?) webservice. I can't get the code generator to work with this webservice (because of soap/encoding Arrays) so I started to implement this with POJO. Now I need a mechanism in axis2 to manipulate the namespace

Tomcat/Axis2 occasionally queues requests made at the same time

2009-04-27 Thread Marshall, Simon
Hi Guys, I had a poke around the archive but I couldn't see any other mention of this. I'm using tomcat-6.0.18/axis2-1.4.1, exposing a bunch of methods in my Java class as web services via the .aar file. One of my methods may take a long time to complete, ie, the request may take so

RE: Error handing in axis2

2009-04-26 Thread Sanjay Gupta
hanks Sanjay From: Sanjay Gupta [mailto:sanjay.gu...@billwiseinc.com] Sent: Saturday, April 25, 2009 8:50 PM To: axis-user@ws.apache.org Subject: Error handing in axis2 Hi, I am using axis2 to expose POJO as services. In case of an error I throw an custom exception. The pojo methods returns a s

<    7   8   9   10   11   12   13   14   15   16   >