Re: Axis2 1.5.1 Upgrade Problem with Spring and Jetty 7

2010-01-15 Thread robert lazarski
On Fri, Jan 15, 2010 at 1:55 PM, jcaristi jcari...@whisolutions.com wrote: My Axis2/Spring application functions properly on Jetty 7 with Axis2 1.4.1. When I attempt to upgrade to Axis2 1.5.1, the Jetty context fails to start with the following exceptions.  I have searched and found similar

Re: Axis2 1.5.1 Upgrade Problem with Spring and Jetty 7

2010-01-15 Thread robert lazarski
On Fri, Jan 15, 2010 at 3:12 PM, jcaristi jcari...@whisolutions.com wrote: iksrazal wrote: Do you have a Caused by section in your stacktrace? Anyways, one thing to check is to make sure you have the right stax-api and wstx-asl jars in your classpath. - R There is no caused by

Re: Too many open files

2009-12-15 Thread robert lazarski
On Tue, Dec 15, 2009 at 12:18 PM, h...@welinux.cl wrote: Hi, I'm running axis 1.4.1 on tomcat 6.0.16. The web applications suddenly crush with Too many open files appearing in catalina.out, after increasing the limits using ulimit and /etc/security/limits .. the amount of open files is

Re: A spring resource xml file, Axis, Tomcat, and Eclipse can be found but can't be found

2009-12-07 Thread robert lazarski
On Mon, Dec 7, 2009 at 5:55 PM, nhcoder andrewnbenja...@hotmail.com wrote: Hi, Since I need to deploy it on a production machine, I packaged my service into an aar file using the axis2 packaging Eclipse plugin, made absolutely sure the jar file with the Spring xml file was in the aar file,

Re: A spring resource xml file, Axis, Tomcat, and Eclipse can be found but can't be found

2009-12-07 Thread robert lazarski
On Mon, Dec 7, 2009 at 6:27 PM, robert lazarski robertlazar...@gmail.com wrote: On Mon, Dec 7, 2009 at 5:55 PM, nhcoder andrewnbenja...@hotmail.com wrote: Hi, Since I need to deploy it on a production machine, I packaged my service into an aar file using the axis2 packaging Eclipse plugin

Re: A spring resource xml file, Axis, Tomcat, and Eclipse can be found but can't be found

2009-12-07 Thread robert lazarski
of each spring instance from each other. One of the advanced use cases of an aar is isolation from each other, and spring in the aar can give you that same isolation. I just happen to think its not that common of a requirement - ymmv. - R iksrazal wrote: On Mon, Dec 7, 2009 at 6:27 PM, robert

Re: Attempted read on closed stream / unable to read second attachement

2009-12-02 Thread robert lazarski
On Tue, Dec 1, 2009 at 9:57 PM, vasu ts vasu_...@hotmail.com wrote: My WSDL contains some s:extension/ elements and these had some issues when I used the default ADB bindings. When I read the below statement from axis2 documentation I started using XML beans binding. If the below API doesn't

Re: Axis2 and ApplicationContext

2009-12-02 Thread robert lazarski
On Wed, Dec 2, 2009 at 12:52 PM, nhcoder andrewnbenja...@hotmail.com wrote: Thanks for replying, though I know the jars are in the right place.  This is apparently an issue between Spring and Axis2 working together. The NoClassDefFoundError you have makes me highly suspicious of that. That

Re: Axis2 and ApplicationContext

2009-12-01 Thread robert lazarski
On Tue, Dec 1, 2009 at 5:18 PM, nhcoder andrewnbenja...@hotmail.com wrote: The problem that appears in the log is: [ERROR] org/springframework/context/ApplicationContext java.lang.NoClassDefFoundError: org/springframework/context/ApplicationContext at

Re: Attempted read on closed stream / unable to read second attachement

2009-12-01 Thread robert lazarski
On Tue, Dec 1, 2009 at 6:51 PM, vasu ts vasu_...@hotmail.com wrote: Hi all,  Binding: XML beans  Axis2 : 1.4.1 and 1.5.1   My web service returns two attachments when an operation is executed. I am able to read the first attachment but when I try to read the second attachment its throwing

Re: Attempted read on closed stream / unable to read second attachement

2009-12-01 Thread robert lazarski
On Tue, Dec 1, 2009 at 7:01 PM, robert lazarski robertlazar...@gmail.com wrote: On Tue, Dec 1, 2009 at 6:51 PM, vasu ts vasu_...@hotmail.com wrote: Hi all,  Binding: XML beans  Axis2 : 1.4.1 and 1.5.1   My web service returns two attachments when an operation is executed. I am able to read

RE: Problems using XPath in Axiom when namespaces are involved

2009-10-23 Thread Robert Baldock
xpathString = /pre:X/pre:Y/pre:Z; AXIOMXPath xpathExpression = new AXIOMXPath(xpathString); xpathExpression.setNamespaceContext(context); And that brings back the expected OMElement. Thanks. Robert -Original Message- From: Andreas Veithen [mailto:andreas.veit...@gmail.com] Sent: 22 October

Problems using XPath in Axiom when namespaces are involved

2009-10-22 Thread Robert Baldock
); I get no results. Can anyone spot why this might be? Any advice would be much appreciated. Robert

Re: hibernate and axis2

2009-10-06 Thread robert lazarski
On Tue, Oct 6, 2009 at 11:20 AM, TomazM tomaz.majerh...@arnes.si wrote: robert lazarski wrote: On Wed, Sep 30, 2009 at 9:53 AM, Andreas Veithen andreas.veit...@gmail.com wrote: I suggest you don't put all these jar's in the aar, put them in WEB-INF/lib . hibernate uses the TCCL and that won't

Re: hibernate and axis2

2009-09-30 Thread robert lazarski
On Tue, Sep 29, 2009 at 10:48 PM, Tony Ennis tony.en...@insightbb.com wrote: Ahhh.  Slowly the light comes on. So, you're saying a minimal aar file, and then a separately constructed war that gets embedded into an Axis2 directory that's in the classpath.  I wasn't aware you could plop a war

Re: hibernate and axis2

2009-09-30 Thread robert lazarski
On Wed, Sep 30, 2009 at 9:53 AM, Andreas Veithen andreas.veit...@gmail.com wrote: I suggest you don't put all these jar's in the aar, put them in WEB-INF/lib . hibernate uses the TCCL and that won't work directly in an aar without some extra effort. It should be enough to add the following

Re: hibernate and axis2

2009-09-30 Thread robert lazarski
On Wed, Sep 30, 2009 at 1:41 PM, ANTHONY ENNIS tony.en...@insightbb.com wrote: I started this morning with the Andreas' solution as it is easiest to implement.  I got farther.  The web service finds the persistence file and starts mapping the classes. Now I am getting the following exception,

Re: hibernate and axis2

2009-09-29 Thread robert lazarski
On Tue, Sep 29, 2009 at 6:34 PM, ANTHONY ENNIS tony.en...@insightbb.com wrote: I'm at wit's end.  Now the situation is that I can connect to the database using my persistence.xml settings when I run from my IDE (intellij.) Previously, I was using a properties file.  So that is a small amount of

Re: aar and hibernate

2009-09-25 Thread robert lazarski
On Fri, Sep 25, 2009 at 5:41 PM, ANTHONY ENNIS tony.en...@insightbb.com wrote: I have a web service that performs a simple database lookup. Unfortunately, Persistence.createEntityManagerFactory('xyzzy') fails in all cases. My aar looks like: /com    (class files in package format eg

Re: aar and hibernate

2009-09-25 Thread robert lazarski
On Fri, Sep 25, 2009 at 6:30 PM, ANTHONY ENNIS tony.en...@insightbb.com wrote: I moved my classes under WEB-INF/classes and the application no longer deploys. I get org.apache.axis2.deployment.DeploymentException: Processing Operations Modules with an error of The following error occurred

Re: aar and hibernate

2009-09-25 Thread robert lazarski
On Fri, Sep 25, 2009 at 7:17 PM, Tony Ennis tony.en...@insightbb.com wrote: I'm at home now, so no checking for me.  Thank God. Am I sure? As sure as I can be.  Previously the aar had com at the root.  I moved the entire com tree to WEB-INF/classes/... as per your suggestion.  I ASSume

Re: [Axis2] Deploying Axis2-1.5 on JBoss 5.0.0

2009-09-11 Thread robert lazarski
On Fri, Sep 11, 2009 at 3:44 AM, Sebastian Schneider schnei...@dvz.fh-aachen.de wrote: Helllo everyone, I would like to use Axis2 on JBoss 5.0.0 but I am struggling. I downloaded the WAR-package (Axis2-1.5) and I put the WAR in my deploy-folder. Unfortunately deploying fails with an

Re: [Axis2] Deploying Axis2-1.5 on JBoss 5.0.0

2009-09-11 Thread robert lazarski
On Fri, Sep 11, 2009 at 6:55 AM, robert lazarski robertlazar...@gmail.com wrote: On Fri, Sep 11, 2009 at 3:44 AM, Sebastian Schneider schnei...@dvz.fh-aachen.de wrote: Helllo everyone, I would like to use Axis2 on JBoss 5.0.0 but I am struggling. I downloaded the WAR-package (Axis2-1.5

Re: too many files open

2009-09-09 Thread robert lazarski
On Wed, Sep 9, 2009 at 6:11 PM, Alan Aguia aag...@yahoo.com wrote: Hi, Im having some problems using axis2 0.94, jboss 4.0.2. After calling serveral times the web service the system tell me that I have to many files open. I tried a lsof -p in my system and this is what I get java    2

[axis2] posisble to set namespace prefixes in wsdl2java?

2009-08-28 Thread Hegerich, Robert L, JR (Bob)
Is there a way to invoke wsdl2java so that instead of the default namespace prefixes (ns1, ns2, etc.) you can specify the namespace prefix for a namespace? We're replacing a gSOAP server with Apache Axis (2.1.3) and the client insists that the namespace prefixes be kept the same for some

Re: More than 1 Spring .aar in Axis2

2009-08-28 Thread robert lazarski
On Fri, Aug 28, 2009 at 5:46 PM, sarcottsarc...@gmail.com wrote: Does any one know if a patch for this issue was made available? thanks, sarcott imho there is no problem - it works as designed. More than 1 Spring .aar in Axis2 is supported and documented since 1.0. Is there a particular

Re: Axis2 and Java 5 Enum

2009-07-21 Thread robert lazarski
On Tue, Jul 21, 2009 at 1:32 PM, Matt Schmidtmschmid...@gmail.com wrote: The problem with that is my service does not use the enums directly. It uses objects that access the enums, and I do not have the ability to change the interaction between the service objects and the enumerations. Any

Re: SimpleHTTPServer and spring

2009-07-20 Thread robert lazarski
2009/7/20 Håkon Sagehaug hakon.sageh...@bccs.uib.no: I use tomcat as my container.  So I need help in how I can supplay the SimpleHTTPServer with my spring context. Any tips cheers, Håkon I'd create my own ApplicationContext in this case. Here's a previous email on this list that explained

Re: SimpleHTTPServer and spring

2009-07-20 Thread robert lazarski
2009/7/20 Håkon Sagehaug hakon.sageh...@bccs.uib.no: Hi This is as far as I can see configuring the source code where so it pick up spring, my question was is there a way to give and load spring through SimpleHTTPServer  so I don't need to change the implementation of the service. Ideally

Re: Session Managment using .net client..

2009-06-23 Thread robert lazarski
. Its pretty simple really. You can see the code here (article is in portuguese - just search on UUID for the code. The var names and code comments are in english) : http://braziloutsource.com/wss2.html HTH, Robert

Re: SAXParseException on Linux

2009-06-22 Thread robert lazarski
On Mon, Jun 22, 2009 at 1:15 PM, callagc4 cathal.callag...@fineos.comwrote: Hi, We have been running our web services for quite some time now using Axis2 on a Windows OS. Recently we attempted to run the services on a Linux OS and have been receiving a very generic error. An exception is

Re: axis.war issue with jboss4.2.2

2009-06-05 Thread robert lazarski
On Fri, Jun 5, 2009 at 2:04 PM, Axis PC pc.a...@gmail.com wrote: All, I know this issue has been discussed earlier in a lot of forums...but I couldnt find a definitive answer. How can I get over this issue? One of the users had suggested commenting out the JAXWSDeployer...which i cannot,

RE: Adding parameter to msg_ctx from stub code

2009-06-04 Thread Bennett, Robert P
-06-03 at 16:11 -0400, Bennett, Robert P wrote: I want to change the SO_TIMEOUT for web service requests. I see JIRA AXIS2C-52 (Enable setting client socket timeout from stub) contains a note that says This can be done either modifying the axis2.xml (static) or by putting a parameter

Adding parameter to msg_ctx from stub code

2009-06-03 Thread Bennett, Robert P
I want to change the SO_TIMEOUT for web service requests. I see JIRA AXIS2C-52 (Enable setting client socket timeout from stub) contains a note that says This can be done either modifying the axis2.xml (static) or by putting a parameter to msg_ctx. Modifying axis2.xml : In the transport sender

Re: More than 1 Spring .aar in Axis2

2009-05-31 Thread robert lazarski
On Sun, May 31, 2009 at 4:18 PM, Andreas Veithen andreas.veit...@gmail.com wrote: If what you are saying is true, then the Spring support in Axis2 has a serious flaw and needs to be fixed... Andreas Patches are welcome. - R

Re: More than 1 Spring .aar in Axis2

2009-05-29 Thread robert lazarski
supporting each feature set - ymmv. Best regards, Robert

Re: SOAPMonitor applet not found

2009-05-06 Thread robert lazarski
On Wed, May 6, 2009 at 6:17 PM, Jack Sprat rexclaim...@yahoo.com wrote: I have the SOAPMonitor configured in my web.xml and can access the URL in my web service. But I get an exception that the applet cannot be found: Exception: java.lang.ClassNotFoundException:

Re: sending large log files

2009-05-03 Thread robert lazarski
On Sun, May 3, 2009 at 10:12 AM, Alex Beston alex.bes...@gmail.com wrote: Hi axis users I have a project that needs to send a large log file every 24 hrs - is axis2 the right technology for me? If you are sending to / from a linux like OS I'd do it over scp, or ftp if not. You don't say how

Re: [axis2] | Problem running axis2 client

2009-04-27 Thread robert lazarski
On Mon, Apr 27, 2009 at 11:36 AM, Rajneesh Kumar rajneesh.ku...@otssolutions.com 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

RE: [ANN][Axis2]Apache Axis2/C 1.6.0 Released

2009-04-24 Thread Bennett, Robert P
-Original Message- From: Manjula Peiris [mailto:manj...@wso2.com] Sent: Wednesday, April 22, 2009 11:46 PM To: Apache AXIS C User List Subject: RE: [ANN][Axis2]Apache Axis2/C 1.6.0 Released On Wed, 2009-04-22 at 11:48 -0400, Bennett, Robert P wrote: Major Changes Since

RE: [ANN][Axis2]Apache Axis2/C 1.6.0 Released

2009-04-24 Thread Bennett, Robert P
-Original Message- From: Sam Carleton [mailto:scarle...@gmail.com] Sent: Friday, April 24, 2009 8:42 AM To: Apache AXIS C User List Subject: Re: [ANN][Axis2]Apache Axis2/C 1.6.0 Released On Fri, Apr 24, 2009 at 7:01 AM, Bennett, Robert P robert.benn...@ca.com wrote: Quite

Re: comparison of different databinding

2009-04-22 Thread robert lazarski
On Wed, Apr 22, 2009 at 3:29 PM, Li, Zhenge zhenge...@cgi.com wrote: Hi Sudhir, I ran into below links a while ago. Some charts in: http://wso2.org/library/588 Comments by Mark D. Hansen, Author of SOA Using Java Web Services.

Re: How to run Multiple Spring with in AAR in single Axis Container

2009-04-21 Thread robert lazarski
On Mon, Apr 20, 2009 at 5:37 PM, Kris82 kit...@gmail.com wrote: I tried this, I moved the jars and still it does do any good. Andreas Veithen-2 wrote: You need to carefully follow the instructions in the section Spring Inside an AAR. In particular, you need to make sure that the

Re: programmatic service configuration problem

2009-04-18 Thread Robert Olivier
Sagara, I started reading the axis source yesterday and discovered this at about 10 o'clock last night! Thanks so much for the reply! robert On Apr 18, 2009, at 10:56 AM, Sagara Gunathunga wrote: Hi Robert, AxisService service; try { service = AxisService.createService

programmatic service configuration problem

2009-04-17 Thread Robert Olivier
the AbstractMessageReceiver that I now see in my log output? Thanks in advance! Robert Olivier

Re: How to monitor SOAP messages in the Client without changing the server?

2009-04-15 Thread robert lazarski
On Tue, Apr 14, 2009 at 11:25 PM, Joe Smithian joe.smith...@gmail.com wrote: Hi all, Can any one please let me know how can I display SOAP request and response messages in a SOAP AXIS2 Client GUI application? Umm, the soap monitor perhaps?

Re: How to monitor SOAP messages in the Client without changing the server?

2009-04-15 Thread robert lazarski
On Wed, Apr 15, 2009 at 9:44 AM, robert lazarski robertlazar...@gmail.com wrote: On Tue, Apr 14, 2009 at 11:25 PM, Joe Smithian joe.smith...@gmail.com wrote: Hi all, Can any one please let me know how can I display SOAP request and response messages in a SOAP AXIS2 Client GUI application

Re: Axis2 service and spring problem, can't find Spring's ApplicationContext.

2009-04-02 Thread robert lazarski
On Thu, Apr 2, 2009 at 12:01 PM, Azazel Se azazel...@hotmail.com wrote: Thanks Sagara. I actually tried that one first but I didn't know which of the suppliers was the correct one so I tried both. In my mail I pasted the exception from SpringAppContextAwareObjectSupplier twice by accident.

Re: Axis2 service and spring problem, can't find Spring's ApplicationContext.

2009-04-02 Thread robert lazarski
On Thu, Apr 2, 2009 at 1:48 PM, Azazel Se azazel...@hotmail.com wrote: From: robertlazar...@gmail.com ApplicationContextHolder.getContext() isn't needed when using SpringServletContextObjectSupplier. If spring and axis2 are working together, you are done. You have to configure Spring to use

Re: Axis2 service and spring problem, can't find Spring's ApplicationContext.

2009-04-02 Thread robert lazarski
() { return appCtx; } } Then instead of: ApplicationContext context = new RavenAwareClassPathXmlApplicationContext(context.xml); Do this: ApplicationContext ctx = ApplicationContextHolder.getContext(); TavernaBaseProfile profile = new TavernaBaseProfile(context); Good luck, Robert

Re: Adding Axis2 service to existing web application.

2009-04-01 Thread robert lazarski
On Wed, Apr 1, 2009 at 6:13 PM, Azazel Se azazel...@hotmail.com wrote: java.lang.ClassNotFoundException: javax.wsdl.xml.WSDLLocator You need that class, the wsdl4j jar that was released with axis2 should contain one. Try putting that jar in WEB-INF/lib . - R

Re: Spring application made available as a web service through Axis2

2009-03-31 Thread robert lazarski
On Tue, Mar 31, 2009 at 4:40 PM, Joey S. joey...@hotmail.com wrote: It works as wanted, but as mentioned I want it available as a web service. Considering all the problems with Spring and Axis2 together what is the easiest way to make a web service out off it? I have used quite some time

Re: Spring application made available as a web service through Axis2

2009-03-31 Thread robert lazarski
On Tue, Mar 31, 2009 at 5:30 PM, Azazel Se azazel...@hotmail.com wrote: SEVERE: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class

Re: Spring application made available as a web service through Axis2

2009-03-31 Thread robert lazarski
- Show quoted text - On Tue, Mar 31, 2009 at 5:50 PM, Azazel Se azazel...@hotmail.com wrote: Hi again. Everything which has something to do with the spring application, including the apllication, are in jars and placed in the WEB-INF/lib folder. The context xml files are filled with bean id

Re: Spring application made available as a web service through Axis2

2009-03-31 Thread robert lazarski
On Tue, Mar 31, 2009 at 6:43 PM, robert lazarski robertlazar...@gmail.com wrote: - Show quoted text - And instantiate it somehow and log its output. A servlet with load-on-startup is one common way, your app may have another. If the missing class is actually a Service class, or you want

Re: Help with wsdl2java

2009-03-30 Thread robert lazarski
On Mon, Mar 30, 2009 at 1:18 PM, Frank Vyncke frank.vyn...@esko.com wrote: I, Am starting to develop a 'client' for a gSOAP based server, using MTOM attachments. I have a wsdl file, but when I try to compile the wsdl file, I get an exception with the following message: Caused by:

Re: org.apache.xmlbeans does not exist error

2009-02-27 Thread robert lazarski
On Thu, Feb 26, 2009 at 11:34 PM, Claire Loto l...@taosolutions.biz wrote: Hi, I used wsdl2java tool to generate classes for my axis2 implementation.I used xmlbeans for the databinding. However, I am getting a lot of compilation errors such as below : javac

Re: axis2java Vs jax-ws

2009-02-27 Thread robert lazarski
On Thu, Feb 26, 2009 at 7:19 PM, Jason Fister jasonfis...@gmail.com wrote: Hello folks, We need to write and host a webservice which will act as both a server as well as a client to a 3rd party webservice. let me make it more clear: My webservice will receive requests from applications with

location of tcpmon.class

2009-02-24 Thread robert rowntree
i downloaded axis 2 1.4.1 and scanned the lib directory for some jar containing 'tcpmon' or 'org.apache.axis.utils.tcpmon' where is it now? there is no longer an 'axis.jar' in the download.

Re: Problem in Hibernate Axis2 Integration !! Help Required

2009-02-18 Thread robert lazarski
On Wed, Feb 18, 2009 at 8:40 AM, gade anudeep anudeep11...@yahoo.com wrote: When i checked tomcat logs..i think its falling error while its creating session(hibernate) from service.Please guide me in this.. [ERROR] Could not initialize class org.hibernate.impl.SessionFactoryImpl

Re: Problem in Hibernate Axis2 Integration !! Help Required

2009-02-18 Thread robert lazarski
On Wed, Feb 18, 2009 at 11:17 AM, gade anudeep anudeep11...@yahoo.com wrote: [INFO] Configured SessionFactory: null Is some problem here ?? Yeah, create a hibernate session .-) . Google is you friend here. This should suffice: http://www.kodejava.org/examples/245.html - R

Re: Problem in Hibernate Axis2 Integration !! Help Required

2009-02-17 Thread robert lazarski
On Tue, Feb 17, 2009 at 3:09 PM, gade anudeep anudeep11...@yahoo.com wrote: at ch.elca.des.testwebservice.TestStub.insert(TestStub.java:183) at ch.elca.des.testwebservice.TicketWSClient.GenerateName(TicketWSClient.java:29) You have some type of exception in that code - seemingly

Re: Deploying axis2 in tomcat 6

2009-02-06 Thread robert lazarski
On Fri, Feb 6, 2009 at 11:20 AM, rabelenda rabele...@gmail.com wrote: [ERROR] java.lang.RuntimeException: java.io.FileNotFoundException: loading repository from classpath java.lang.RuntimeException: java.io.FileNotFoundException snip [INFO] Module validation failed: The system is attempting

Re: More than 1 Spring .aar in Axis2

2009-01-21 Thread robert lazarski
instead of keeping it in WEB-INF/lib. thanks, Amila. Absolutely true, the docs mention this. Robert

Re: More than 1 Spring .aar in Axis2

2009-01-21 Thread robert lazarski
On Wed, Jan 21, 2009 at 8:52 AM, Paul French paul.fre...@kirona.com wrote: How about taking a copy of this one class and putting that in your service .aar file. I think that might work since each service will have its own classloader and so own copy of the ApplicationContextHolder. You could

Re: More than 1 Spring .aar in Axis2

2009-01-20 Thread robert lazarski
spring instance will step on another. HTH, Robert On Fri, Feb 15, 2008 at 2:50 PM, Sunesh Kumra sunesh.ku...@ericssonservices.co.uk wrote: Hello, I followed the example http://ws.apache.org/axis2/1_1/spring.html and got a Axis2 service (not deployed in Servlet Container) using Spring

Re: SERVICE_ONJECT_SUPPLIER not specified

2009-01-05 Thread robert lazarski
some other errors that are closer to the problem. You need to enable either commons-logging or log4j in your war file. For example. you should have a log4j.properties in WEB-INF/classes . The axis2 distro has an example. HTH, Robert

Re: SERVICE_ONJECT_SUPPLIER not specified

2009-01-02 Thread robert lazarski
implClass.newInstance(); } } ); } else { throw new AxisFault( Messages.getMessage(paramIsNotSpecified, SERVICE_OBJECT_SUPPLIER)); } HTH, Robert

Re: SERVICE_ONJECT_SUPPLIER not specified

2009-01-02 Thread robert lazarski
, before the exception. HTH, Robert

Re: axis2, cxf, spring or Metro

2008-12-18 Thread robert lazarski
and therefore I'm not what state spring and jaxws is in for axis2. Anyways, see the axis2 spring guide because setting up a static reference to get your spring beans is simple - see this post from a few days ago if interested: http://marc.info/?l=axis-userm=122943466610253w=2 HTH, Robert

Re: Axis2 module + Spring

2008-12-16 Thread robert lazarski
On Tue, Dec 16, 2008 at 1:08 PM, Paul French paul.fre...@kirona.com wrote: Thanks for the reply. Its not what I am after though. We have AXIS2 as part of our web application. We have web services which are defined as beans in the Spring application context loaded as part of the web

Re: Axis2 module + Spring

2008-12-16 Thread robert lazarski
= (MyObject) aCtx.getBean(myBean); HTH, Robert

Re: Help! Why does my WSDL for axis2 keeps getting parsing error in NetBean IDE 6.5?

2008-12-09 Thread Robert Wierschke
as described here ( https://metro.dev.java.net/guide/Using_JAX_WS_2_1_with_JavaSE6.html) configure NetBeans 2) Within the NetBeans build.properties file (eg C:\Users\robert\.netbeans\6.5\build.properties for Vista) set the property 'libs.jaxws21.classpath' to point to the Metro classes. It should

Re: Help! Why does my WSDL for axis2 keeps getting parsing error in NetBean IDE 6.5?

2008-12-06 Thread Robert Wierschke
in the metro forum. regards robert 2008/12/6 Tian Chi [EMAIL PROTECTED] Hi all, I'm a beginner for Axis2. Recently I created a SOPA 1.2 web service with a WSDL and another included schmea file using Axis2. It works fine with soapUI 2.5 client test, but failed when I tried to use NetBean IDE 6.5

How can I download and install axis2.war with maven?

2008-11-24 Thread Robert Wierschke
is missing in this list is the ability to download and install the axis2.war itself, so that someone can just check out the source of my web service and run maven. How can I download and deploy axis2.war with maven? regards robert

Re: Axis2-Spring not able to use original wsdl

2008-11-17 Thread robert lazarski
Its always worked for me, though I haven't tried useOrignalwsdl specifically in the last few releases. Have you tried it and its not working? If not, it would be helpful to try a spring config with useOrignalwsdl and a config without, and compare the logs in debug mode. HTH, Robert On Mon, Nov

Re: Axis2-Spring not able to use original wsdl

2008-11-17 Thread robert lazarski
a spring config with useOrignalwsdl and a config without, and compare the logs in debug mode. HTH, Robert On Mon, Nov 17, 2008 at 9:06 AM, Ravichandra [EMAIL PROTECTED] wrote: Hi I am developing a web service in axis2. I am using Spring to inject the service class. Is it possible to use

Re: soapmonitor - where to place applet classes

2008-10-27 Thread robert lazarski
I've never seen internal jvm errors like this before - particularly applet related ones. What browser / OS are you using? Maybe try using a later jvm may help. I'd try switching browsers too. HTH, Robert 2008/10/27 lqg629 [EMAIL PROTECTED]: Hi, I am running tomcat5.5 and axis2-1.4.My

Re: Question on SOAPMonitor

2008-09-05 Thread robert lazarski
This most often happens due to port issues. IIRC its 5401. Make sure nothing else is using the port. You can also try changing the port in web.xml. HTH, Robert On Fri, Sep 5, 2008 at 8:39 AM, Martin Wunderlich [EMAIL PROTECTED] wrote: Hi there, I am trying to use the Axis2 SOAPMonitor to take

Re: Question on SOAPMonitor

2008-09-05 Thread robert lazarski
I just looked at the docs and its port 5001. I'm a linux guy so I suppose you'd open up a unix shell in a modern mac and type: netstat -anp | grep 5001 HTH, Robert On Fri, Sep 5, 2008 at 12:34 PM, Martin Wunderlich [EMAIL PROTECTED] wrote: Hi Robert, Thanks a lot for the quick reply. Any

Re: Question on SOAPMonitor

2008-09-05 Thread robert lazarski
Datum: Fri, 5 Sep 2008 12:52:20 -0300 Von: robert lazarski [EMAIL PROTECTED] An: axis-user@ws.apache.org Betreff: Re: Question on SOAPMonitor I just looked at the docs and its port 5001. I'm a linux guy so I suppose you'd open up a unix shell in a modern mac and type: netstat -anp | grep

Re: Axis2 and Spring 2.5

2008-08-21 Thread robert lazarski
. HTH, Robert On Thu, Aug 21, 2008 at 7:02 AM, Jens Goldhammer [EMAIL PROTECTED] wrote: Hello, I have a axis2 web service which have to use Spring 2.5. How can I avoid that these jars are conflicting with the one which are delivered with Axis2? Thanks, Jens -- View this message

Re: spring Axis2 integration question

2008-08-12 Thread robert lazarski
Putting all jars in WEB-INF/lib is easiest and recommended in most cases. - R On Tue, Aug 12, 2008 at 2:21 PM, scabbage [EMAIL PROTECTED] wrote: I've been struggling to understand how spring and Axis2 will work together. I have read the tutorial at

Re: spring Axis2 integration question

2008-08-12 Thread robert lazarski
Also, use the with a ServletContext options for use with WEB-INF/lib . - R On Tue, Aug 12, 2008 at 3:23 PM, robert lazarski [EMAIL PROTECTED] wrote: Putting all jars in WEB-INF/lib is easiest and recommended in most cases. - R On Tue, Aug 12, 2008 at 2:21 PM, scabbage [EMAIL PROTECTED

Re: Username token implemetation

2008-07-31 Thread Robert Wierschke
(secureEnvelope); regards robert 2008/7/31 Shripad Gokhale [EMAIL PROTECTED] Hi, I am trying to implement user name token with Axis 1.4 and WSS4J on server side. Where can I get a good reference material or tutorial about the changes that are required? Some of the links I found of google provide

Re: Ant target

2008-07-24 Thread robert lazarski
http://ws.apache.org/axis2/tools/1_4/CodegenToolReference.html#ant HTH, Robert On Thu, Jul 24, 2008 at 11:07 AM, Felipe Coutinho [EMAIL PROTECTED] wrote: Hello, I'm looking for an ant task to generate the aar for the Axis2. I want to generate the aar without the Service Archive Wizard

Re: [Axis2] handlers per operation

2008-07-19 Thread Robert Wierschke
Hi, you may read the SOAP action from the message and decide whether the handler should do anything or not. regards robert 2008/7/18 Jack Sprat [EMAIL PROTECTED]: Hello. Is there a way to add handlers only for specific operations in a service and not for all? For example, I'd like

Re: More than 1 Spring .aar in Axis2

2008-07-11 Thread robert lazarski
Having spring jars in AXIS2_HOME/lib when looking for AAR classloader seperation makes no sense, right ? Please refer to the latest docs: http://ws.apache.org/axis2/1_4/spring.html HTH, Robert On Fri, Jul 11, 2008 at 12:22 PM, neerja malik [EMAIL PROTECTED] wrote: Hey, I am stuck with same

Re: Axis2 (ADB) : Problem with empty RequestBody

2008-06-04 Thread Robert Novotny
Axis2 to send the payload in the HTTP header (which corresponds to the REST style) to the traditional mode, in which the payload was sent in the request body in the XML form. -- Robert Novotny Robert Novotny wrote: I have the same problem here. I think that the culprit is the http:binding

Re: Spring service bean not initialized in the skeleton class.

2008-06-02 Thread robert lazarski
it. If you can start spring, but axis2 can't find it - try looking at the servlet container logs. If you still have problems after all that, let us know. HTH, Robert On Mon, Jun 2, 2008 at 9:54 AM, Dwipin C [EMAIL PROTECTED] wrote: Hi, I am in the process of integrating Axis2 with Spring2.5

Re: Spring service bean not initialized in the skeleton class.

2008-06-02 Thread robert lazarski
To have the skeleton and the spring service bean get linked, you need to manually tweak your services.xml . Try that, and if you still have problems, paste your services.xml . Robert On Mon, Jun 2, 2008 at 10:29 AM, Dwipin C [EMAIL PROTECTED] wrote: Hi Robert, I have the required

Re: Spring service bean not initialized in the skeleton class.

2008-06-02 Thread robert lazarski
and services.xml are matching correctly. Robert On Mon, Jun 2, 2008 at 10:44 AM, Dwipin C [EMAIL PROTECTED] wrote: This the services.xml I am using - ?xml version=1.0 encoding=UTF-8? !-- This file was auto-generated from WSDL -- !-- by the Apache Axis2 version: 1.4 Built on : Apr 26, 2008 (06:24:30

Re: Axis2 (ADB) : Problem with empty RequestBody

2008-05-31 Thread Robert Novotny
,org.apache.axis2.Constants.Configuration.MESSAGE_TYPE,application/x-www-form-urlencoded); text/xml as advised. However, this hack would perhaps break your WSDL contract. Robert Novotny Ajith Ranabahu wrote: The part that I can see as the problem is the last one where the request is written to the wire

RE: generated C code from choice elements in wsdl

2008-05-28 Thread Bennett, Robert P
report back with more information. Thanks Dimuthu On Wed, May 28, 2008 at 3:02 AM, Bennett, Robert P [EMAIL PROTECTED] wrote: I have a situation where I am passing a response message that can be one of a set of different complex types. I am using the 'choice' element

RE: generated C code from choice elements in wsdl

2008-05-28 Thread Bennett, Robert P
-Original Message- From: Dimuthu Gamage [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 28, 2008 1:38 PM To: Apache AXIS C User List Subject: Re: generated C code from choice elements in wsdl On Wed, May 28, 2008 at 5:57 PM, Bennett, Robert P [EMAIL PROTECTED] wrote

Re: soapmonitor - where to place applet classes

2008-05-28 Thread robert lazarski
of soapmonitor-1.4.jar should be placed in CATALINA_HOME/webapps/axis2/ as shown in the above example. Note the new 'org' directory part of the docs. HTH, Robert On Wed, May 28, 2008 at 12:43 PM, Daniel Germanus [EMAIL PROTECTED] wrote: Hi, I'm running tomcat 6.0.14 and axis2 1.4. my intention

generated C code from choice elements in wsdl

2008-05-27 Thread Bennett, Robert P
I have a situation where I am passing a response message that can be one of a set of different complex types. I am using the 'choice' element to indicate this, like the following. When I run the attached wsdl through the wsdl2c utility (from axis2 1.4), the adb C code that is generated (the

Different generated port names with Axis2 1.3 and Axis2 1.4

2008-05-20 Thread Robert Wierschke
? Is there a way to avoid tis? regards robert

Re: Axis with Spring

2008-05-19 Thread robert lazarski
See the axis2 spring tutorial, as it shows you how to do this. Robert On Mon, May 19, 2008 at 11:25 AM, Krystian Szczesny [EMAIL PROTECTED] wrote: Hi, I'm wondering, if it is possible to get a hold on Spring ApplicationContext in my WebService? I've got a WAR file with multiple AAR files

Re: Axis with Spring

2008-05-19 Thread robert lazarski
arefence to ApplicationContext anywhere, anytime. Google on that interface or see the org.apache.axis2.extensions.spring.receivers.ApplicationContextHolder.java class for an example implementation and the spring tutorial for the xml that uses it. HTH, Robert On Mon, May 19, 2008 at 12:18 PM, Krystian

  1   2   3   4   5   6   7   8   9   >