RE: Axis2 POJO SOAP Web Services performance under load

2015-06-02 Thread Meeusen, Christopher W.
I would instrument your JVM. Use a tool like Wiley Introscope and see where the code is spending the most time executing. -Original Message- From: Kris [mailto:krisg_...@yahoo.com.INVALID] Sent: Tuesday, June 02, 2015 2:19 PM To: java-user@axis.apache.org Subject: Axis2 POJO SOAP Web

RE: Unsubscribe??

2013-08-24 Thread Meeusen, Christopher W.
Nope ive been trying to do so for years. From: java-user-return-87577-Meeusen.Christopher=mayo@axis.apache.org [mailto:java-user-return-87577-Meeusen.Christopher=mayo@axis.apache.org] On Behalf Of Ron McNulty Sent: Saturday, August 24, 2013 2:45 AM To: java-user@axis.apache.org Subject:

RE: Encrypting The Admin Passwords used by the Axis Admin Servlet

2013-03-11 Thread Meeusen, Christopher W.
I know it's not an answer to your question, maybe a workaround at best but we ended up modifying the file permissions such that only infrastructure folks can open the file. From: java-user-return-87277-Meeusen.Christopher=mayo@axis.apache.org [mailto:java-user-return-87277-Meeusen.Christop

RE: Axis on Java 1.3.1?

2012-09-05 Thread Meeusen, Christopher W.
Why would you subject yourself to that? Sorry to be cynical, but I thought it was bad that we were on 1.4 up until 1.5 years ago... 1.3 really? -Original Message- From: java-user-return-86942-Meeusen.Christopher=mayo@axis.apache.org [mailto:java-user-return-86942-Meeusen.Christophe

Re: Axis 2 install

2012-01-09 Thread Meeusen, Christopher W.
What doyouget in the tomcat logs? Sent from a mobile device, please excuse misspellings. - Reply message - From: "MH" Date: Mon, Jan 9, 2012 13:02 Subject: Axis 2 install To: "java-user@axis.apache.org" Hi I am a new user. I have installed apache Tomcat as a servlet container for A

RE: Read time out error while invoking a service

2012-01-05 Thread Meeusen, Christopher W.
Been awhile since ive worked on this, here’s how we did it with ADB binding: stub._getServiceClient().getOptions().setTimeOutInMilliSeconds(TestProperties.TIMEOUT); replace the constant with an int value. Regards, Chris From: java-user-return-86114-Meeusen.Christopher=mayo@a

RE: Array List support in AXIS2

2011-12-12 Thread Meeusen, Christopher W.
Ive always had to create an array from my arraylists and return the array. We were using axis2 1.3.1. From: java-user-return-86073-Meeusen.Christopher=mayo@axis.apache.org [mailto:java-user-return-86073-Meeusen.Christopher=mayo@axis.apache.org] On Behalf Of Sathunuri, Hariprasad

RE: [Axis2:] Service Archive Plugin - A Bug or???

2011-11-17 Thread Meeusen, Christopher W.
I would build your aars with ant or maven. That plugin has issues, or at least it did a couple years ago when we were using it. We couldn't build an aar without including the dependent libraries in it, and there were several issues with the UI. Maybe these issues have been addressed. Good lu

RE: Axis2 Service and Code Gen: New Options are not visible

2011-09-21 Thread Meeusen, Christopher W.
I've found those plugins to be very buggy and not reliable. I would recommend looking at other means to producing your aars. We use a maven-aar-plugin but you can use ant as well. Goodluck, Chris From: java-user-return-85682-Meeusen.Christopher=mayo@axis.apache.org [mailto:java-use

Re: Sending custom Java objects as parameters to a web service

2011-07-22 Thread Meeusen, Christopher W.
what you're asking to do is common place in axis2. You can send instances of custom pojos to a service operation, just deploy them in a jar in the /lib folder or in the aar file itself. Sent from a mobile device, please excuse misspellings. - Reply message - From: "Louis Amstutz" D

Re: wow, Axis2 seems a bit disgustig

2011-07-17 Thread Meeusen, Christopher W.
Sounds like a web service is not the tool you are looking for, perhaps google can assist you find said tool. Axis2 is an excellent framework that has made my job much easier. Next time do some research before you attempt to slander an outstanding open source project supported by very talented

user authentications

2011-05-31 Thread Meeusen, Christopher W.
Hello, I just want to add some basic authentication logic into our Axis2 deployment. I don't need to implement rampart and assign certs and all, just want something basic that says this user is authorized to call this subset of services/methods, but not these. I was going to implement a custo

Re: Help! First Accessing to Service on remote machine is very slow!

2011-04-10 Thread Meeusen, Christopher W.
17 seconds sounds pretty typical for your application server to recycle and load the classes. Maybe I'm not understanding the provlem fully. Chris - Reply message - From: "sean_wang" Date: Sun, Apr 10, 2011 20:12 Subject: Help! First Accessing to Service on remote machine is very sl

RE: Axis2-1.4.1 binary download link broke

2011-03-21 Thread Meeusen, Christopher W.
, 2011 at 17:52, Meeusen, Christopher W. wrote: > I'm trying to download the 1.4.1 binary from > http://axis.apache.org/axis2/java/core/download.cgi and the links for > the zip appear to be broken.  Is anyone else seeing this? > > &

Axis2-1.4.1 binary download link broke

2011-03-21 Thread Meeusen, Christopher W.
I'm trying to download the 1.4.1 binary from http://axis.apache.org/axis2/java/core/download.cgi and the links for the zip appear to be broken. Is anyone else seeing this? Thanks, Chris

RE: Unexpected subelement

2011-02-28 Thread Meeusen, Christopher W.
We have similar behavior in our axis2 ADB stubs. Although I don't think this statement is 100% accurate: 'on every request Axis checkes the endpoints WSDL and verifies that it is EXACTLY like the stubs it has' The stubs built off of the WSDL at a particular point in time. Stubs aren't dynamical

RE: SOAP header missing error - Please help!

2011-02-23 Thread Meeusen, Christopher W.
I've never used Rampart or opensaml, but the NoClassDefFound usually means you're missing an artifact. I would find out which jar contains this class: org/opensaml/xml/validation/ValidatingXMLObject and add it to your /lib dir. Chris From: java-user-return-84171-Meeusen.Christopher

ADB Client Access Returned Soap Env?

2011-02-14 Thread Meeusen, Christopher W.
Hi, I have an ADB client that is working fine, but I would like to get the contents of the soap envelope and store that XML/String somewhere for comparisons later in my app. I'm able to do a round trip to the server and my stub is populated fine with all the elements, but how do I access the r

Exceptions in Inflow handlers

2011-02-09 Thread Meeusen, Christopher W.
I have 2 inflow handlers, and 2 outflow handlers something like below: Inflow1 --> inflow2 --> Service--> outflow1--> outflow2--> Is there a way I can catch exceptions thrown in the inflow2 handler in the outflow2 handler? I would basically like to catch certain ex

Two Services Same Name Allowed?

2011-02-01 Thread Meeusen, Christopher W.
I thought that axis2 didn't allow multiple services to have the same name, even if their service classes are from different packages; is this correct? For example if I have two services pkg1.AService1 ... pkg2.AService2 Doesn't Axis blow up when it tries to deploy t

Re: soap message creation

2011-01-19 Thread Meeusen, Christopher W.
I would also recommend investing the time in figuring out how to use soapui ( it's a fairly straight forward app so it shouldn't take much to get used to it). The free version is all we need and we use it everyday. On Jan 19, 2011, at 8:57, "henry human" wrote: Yes, twice!! But after tw

RE: Eclipse + axis2 + wsdl = Undefined ConverterUtil.convertTo

2011-01-07 Thread Meeusen, Christopher W.
We use the wsdl2java utility included in the axis2 binary to generate our stubs. Make sure you use the same version of wsdl2java as your axis2 install. Works great. There is also a maven plugin to gen them. Chris From: java-user-return-83907-meeusen.christopher=mayo@axis.apache.org

RE: [Axis2] eclipse plugin

2010-11-23 Thread Meeusen, Christopher W.
I would highly recommend not using the axis2 eclipse plugin. We were using that for a while and found it buggy when you not include your dependent artifacts in the aar files. We switched to building aars using the maven aar plugin. It's much better. I would recommend looking at using MAVEN

RE: Field level variables

2010-09-13 Thread Meeusen, Christopher W.
-Ursprüngliche Nachricht- Von: Jeff Greif [mailto:jeff.gr...@gmail.com] Gesendet: Freitag, 20. August 2010 18:03 An: Meeusen, Christopher W. Cc: java-user@axis.apache.org; axis-u...@ws.apache.org Betreff: Re: Field level variables This is configurable in the deployment descriptor. The el

RE: [Axis2] wsdl2java won't generate stubs for all the bindings

2010-08-23 Thread Meeusen, Christopher W.
bs, one for each binding? Did you got all 4 stubs? On 8/23/10 4:19 PM, Meeusen, Christopher W. wrote: > Does it give an error message? I was able to use this command and > generate stubs fine. > > wsdl2java -uri http://www.xignite.com/xNASDAQLastSale.asmx?WSDL -p > test.xmet

RE: [Axis2] wsdl2java won't generate stubs for all the bindings

2010-08-23 Thread Meeusen, Christopher W.
Does it give an error message? I was able to use this command and generate stubs fine. wsdl2java -uri http://www.xignite.com/xNASDAQLastSale.asmx?WSDL -p test.xmethods -d adb Chris -Original Message- From: java-user-return-83378-meeusen.christopher=mayo@axis.apache.org [mailto:java-

RE: Field level variables

2010-08-20 Thread Meeusen, Christopher W.
-83370-meeusen.christopher=mayo@axis.apache.org] On Behalf Of Meeusen, Christopher W. Sent: Friday, August 20, 2010 11:06 AM To: jgr...@alumni.princeton.edu Cc: java-user@axis.apache.org; axis-u...@ws.apache.org Subject: RE: Field level variables Thank you for the response! I just want to

RE: Field level variables

2010-08-20 Thread Meeusen, Christopher W.
Sent: Friday, August 20, 2010 11:03 AM To: Meeusen, Christopher W. Cc: java-user@axis.apache.org; axis-u...@ws.apache.org Subject: Re: Field level variables This is configurable in the deployment descriptor. The element has an attribute "scope". One allowed value of this attribute crea

RE: Field level variables

2010-08-20 Thread Meeusen, Christopher W.
class instantiated and multiple threads use the same instance of the class? -Original Message- From: Meeusen, Christopher W. Sent: Wednesday, August 18, 2010 5:45 PM To: java-user@axis.apache.org Cc: axis-u...@ws.apache.org Subject: Re: Field level variables My main concern is if this

Re: Field level variables

2010-08-18 Thread Meeusen, Christopher W.
My main concern is if this is thread safe. Are pojos re entrant in axis2-1.3? On Aug 18, 2010, at 17:21, "Meeusen, Christopher W." > wrote: I’m looking through some of my colleagues code and I’m noticing some field level variables declared inside one of our pojos. Someth i

Field level variables

2010-08-18 Thread Meeusen, Christopher W.
I'm looking through some of my colleagues code and I'm noticing some field level variables declared inside one of our pojos. Something similar to this: Public class classA { private classB aClassb; Public classC[] aMethod() {

RE: customize wsaxis2 startup?

2010-08-16 Thread Meeusen, Christopher W.
The handler is not the correct place to do this. Azeez On Fri, Aug 13, 2010 at 11:05 PM, Meeusen, Christopher W. wrote: After doing a little more research, I modified the constructor of my custom inhandler class (that extends org.apache.axis2.handlers.AbstractHandler) and see that

RE: customize wsaxis2 startup?

2010-08-13 Thread Meeusen, Christopher W.
Behalf Of Meeusen, Christopher W. Sent: Friday, August 13, 2010 11:14 AM To: axis-u...@ws.apache.org Subject: customize wsaxis2 startup? Hi, I'm trying to find the proper way to customize the axis2 startup, to instantiate a HSQLDB and insert some records from the .script file. I don'

customize wsaxis2 startup?

2010-08-13 Thread Meeusen, Christopher W.
Hi, I'm trying to find the proper way to customize the axis2 startup, to instantiate a HSQLDB and insert some records from the .script file. I don't think an inflow handler would be the proper place because I don't want to do this on every request just once when the webapp launches. We are ru

Re: Specifying client timeout?

2010-07-19 Thread Meeusen, Christopher W.
Great!!! Thanks! On Jul 19, 2010, at 9:59, "rahul yadav" wrote: stub._getServiceClient().getOptions().setTimeOutInMilliSeconds (_ws.__EvipSvrService_timeout); On Mon, Jul 19, 2010 at 8:15 PM, Meeusen, Christopher W. > wrote: Hi, I’ve got what I hope is an easy qu

Specifying client timeout?

2010-07-19 Thread Meeusen, Christopher W.
Hi, I've got what I hope is an easy question, but I haven't been able to find much on it through google I've got some web service stubs that I've generated from wsdl2java using adb as the databinding. I want to explicitly specify a timeout value for the remote call. How do I do that?

RE: How to pass costum error messages to AxisFault

2010-07-12 Thread Meeusen, Christopher W.
xis.apache. org] On Behalf Of x-fo.net Sent: Monday, July 12, 2010 6:19 AM To: java-user@axis.apache.org Subject: AW: How to pass costum error messages to AxisFault Hi, do you have an example? thanks br Markus -Ursprungliche Nachricht- Von: Meeusen, Christopher W. [mailto:meeusen.christ

Re: How to pass costum error messages to AxisFault

2010-07-10 Thread Meeusen, Christopher W.
In our services we throw a subclass of java.lang.exception, and the client sees the exception message. I'm not sure what extending axisfault buys you. Chris On Jul 10, 2010, at 6:46, "x-fo.net" wrote: Hi, I tried to pass costum errors to the axisFault, but I always get this: http://sch

RE: [Axis2] web service calling another service

2010-06-15 Thread Meeusen, Christopher W.
You can do that, just generate the stubs and invoke the second service from the first. From: java-user-return-83109-meeusen.christopher=mayo@axis.apache.org [mailto:java-user-return-83109-meeusen.christopher=mayo@axis.apache. org] On Behalf Of Jack Sprat Sent: Tuesday, June 15, 2010 9:4

RE: Need Service Archiver help

2010-06-04 Thread Meeusen, Christopher W.
to run the Code Generator first? I can never remember which comes first. On Fri, Jun 4, 2010 at 12:43 PM, Meeusen, Christopher W. wrote: That dialog is not very user friendly. The class name has to be exact and must include the full package name (package.subpackage.subpackage.classname),

RE: Need Service Archiver help

2010-06-04 Thread Meeusen, Christopher W.
That dialog is not very user friendly. The class name has to be exact and must include the full package name (package.subpackage.subpackage.classname), if you have one character off it won't work. Chris From: java-user-return-83034-meeusen.christopher=mayo@axis.apache.org [mailto:java-

Re: Eclipse plugin

2010-05-25 Thread Meeusen, Christopher W.
That version of the archiver works, and I think it is the latest. You may want to use maven to build aars, the archiver plugin is very buggy, and I get the feeling that it isn't supported well anymore. On May 25, 2010, at 21:19, "Prateek Asthana" wrote: Hi, After much research I finally f

archiver alternatives

2010-05-18 Thread Meeusen, Christopher W.
Hi, I've been using the axis2 service archiver plugin for eclipse for years, but recently it's become unusable. It freezes on this screen and will not continue. I've tried everything (new workspace, deleting .metadata folder in workspace, reinstalling the plugin in eclipse, re downl

RE: Can't Download Eclipse Plugins

2010-05-12 Thread Meeusen, Christopher W.
Im using galileo Eclipse Version: 3.5.1, I'm developing code first, and using the Axis2 Service Archiver V1.3. From: java-user-return-82898-meeusen.christopher=mayo@axis.apache.org [mailto:java-user-return-82898-meeusen.christopher=mayo@axis.apache. org] On Behalf Of Michael Sent: Wedne

Re: Unable to generate WSDL from Java code

2010-05-11 Thread Meeusen, Christopher W.
That's the eclipse plugin I use to generate wsdl files, guess you're doing it some other way On May 11, 2010, at 20:14, "Michael" wrote: Service archiver? - Original Message - From: Meeusen, Christopher W. To: java-user@axis.apache.org Sent: Tuesday, May 11,

Re: Unable to generate WSDL from Java code

2010-05-11 Thread Meeusen, Christopher W.
What version of the service archiver are u using? On May 11, 2010, at 19:15, "Michael" wrote: I have been unable to generate a WSDL file from Java code. I recently started using Eclipse Galileo and downloaded Axis2 1.5.1. When trying to generate a WSDL from an older Java project that I

Re: Logging service call response

2010-04-28 Thread Meeusen, Christopher W.
Try using soapui or tcpmon to view the envelopes. On Apr 28, 2010, at 6:24, "Chris Hopkins" wrote: Hi – I’m using Axis2 v1.5.1 to compile a WSDL and then make calls to the service methods defined in the WSDL from my Java (v1.5) application. I’m trying to figure out how to log the respon

RE: inheritance in axis2

2010-04-26 Thread Meeusen, Christopher W.
Behalf Of Meeusen, Christopher W. Sent: Monday, April 26, 2010 12:20 PM To: axis-u...@ws.apache.org Subject: RE: inheritance in axis2 Is this the correct mailing list for this question? Thanks, Chris From: Meeusen, Christopher W. Sent: Monday, April 26, 2010 11:38 AM To: axis-u

RE: inheritance in axis2

2010-04-26 Thread Meeusen, Christopher W.
Is this the correct mailing list for this question? Thanks, Chris From: Meeusen, Christopher W. Sent: Monday, April 26, 2010 11:38 AM To: axis-u...@ws.apache.org Subject: inheritance in axis2 Hi, We are using axis2.4 we generate our services code first then use the axis2

inheritance in axis2

2010-04-26 Thread Meeusen, Christopher W.
Hi, We are using axis2.4 we generate our services code first then use the axis2 service archiver eclipse plugin to generate our WSDLs. We are having an issue when we try to use inheritance on our return objects. We have several fields which will be returned by all of our service methods, I've

Axis2 admin credientials

2010-03-16 Thread Meeusen, Christopher W.
Hello, I'm wondering if there is a way to create multiple user accounts with differing privileges in axis2? I would like to have two users say x and y. x is the only one that can upload services, but y can disengage a service. Is something like this possible? Doesn't seem to be from a quick gl