Re: Bug in "Code Generator Wizard - Eclipse Plug-in"

2009-02-23 Thread Saminda Wijeratne
Did you follow whats in http://www.mail-archive.com/axis-user@ws.apache.org/msg43620.html ?? Car Toper wrote: On Mon, Feb 23, 2009 at 9:55 PM, Richard Hu wrote: Put the stax jar in \plug-ins\ dir>\lib. Ok, I put both the stax and backport util concurrent into the Axis2 lib directory

Re: Axis2 SOAP XML response question

2009-02-23 Thread keith chapman
Well you could do this by doing a contract first web service. It looks like you are using the POJO approach and when u do that you have to live with the schema that Axis2 would give you. Alternatively you could just stick an ESB in front and run the response through an XSLT and format it to the man

Re: service cannot be found for the endpoint reference (EPR)

2009-02-23 Thread keith chapman
Hi Davis, In your case Axis2 was unable to find the service. The only method that Axis2 looks up the service is using the URL. So that URL should have enough information on what the serviceName is. I'm sure this is a problem in your mapping somewhere. Did you set the contextRoot in the axis2.xml?

Re: Bug in "Code Generator Wizard - Eclipse Plug-in"

2009-02-23 Thread Car Toper
On Mon, Feb 23, 2009 at 9:55 PM, Richard Hu wrote: > Put the stax jar in \plug-ins\ dir>\lib. Ok, I put both the stax and backport util concurrent into the Axis2 lib directory and than added this to the Axis2 plugin.xml file: I am still getting th

Axis2 SOAP XML response question

2009-02-23 Thread Shaon, ABS (Arif)
Hi Everyone, I am running a AXIS4 1.4.1 SOAP service that returns an XML document encoded in the SOAP Body. The response I get is the following: http://www.w3.org/2003/05/soap-envelope";> http://stfc.ac.uk";>

RE: Bug in "Code Generator Wizard - Eclipse Plug-in"

2009-02-23 Thread Richard Hu
Put the stax jar in \plug-ins\\lib. Also, I'm not sure changing the extension to jar is the right solution. It's probably better to just download the jar from findjar.com. This is the link I used: http://mirrors.ibiblio.org/pub/mirrors/maven/stax/jars/stax-api-1.0.1.ja r -Original Message

RE: Axis2 Code Generator Problem

2009-02-23 Thread Richard Hu
This is a known bug. Here is the solution with explanation: http://blogiterox.wordpress.com/2008/10/24/exploring-apache-axis2-and-ec lipse-plug-in-development/ Solution: Copy the jar for stax and for backport to the plug-in directory (\plug-ins\\lib) and then add the backport jar to the plugin

Re: Bug in "Code Generator Wizard - Eclipse Plug-in"

2009-02-23 Thread Car Toper
2009/2/23 TomazM : > Look hare for solution: > > http://blogiterox.wordpress.com/2008/10/24/exploring-apache-axis2-and-eclipse-plug-in-development/ Yep, That is the bug! I don't follow the fix, exactly. Partly due to the fact that Java is not my primary language, I am a C/C++ developer for the

Axis2 Code Generator Problem

2009-02-23 Thread Michael
I'm developing a bottom up web service and now that I have got it working using the code I developed and the client stub generated when I created the web service from Eclipse I now want to create a WSDL file. When I launch the Axis2 Code Generator (v1.3.0) Wizard, enter the fully qualified clas

Re: Pub\Sub Web Service

2009-02-23 Thread Michael
Doug I looked at this before I started my design. As a standards document it did not provide much help with how I might implement the standard in a bottom-up Java web service implementation. The only thing I could get out of it is that one other option I did not list in my original email was

Re: Pub\Sub Web Service

2009-02-23 Thread Doug Davis
checkout ws-baseNotification: http://docs.oasis-open.org/wsn/wsn-ws_base_notification-1.3-spec-os.pdf thanks -Doug __ STSM | Standards Architect | IBM Software Group (919) 254-6905 | IBM 444-6905 | d...@us.ibm.com Michael 02/23/2009

Pub\Sub Web Service

2009-02-23 Thread Michael
I am developing a publish\subscribe engine and have exposed both the publish and subscribe services with web services. I am looking for advice on how I might implement a push notification. Since the occurrence of some event will trigger notification of all users that subscribed to the publicat

RE: AXIS2 - property file locations when creating aar file

2009-02-23 Thread RickCromer
I reviewed that article and still don't see how that would help. Sure I could set a at various levels, Global, Service or Module, but I'm trying to do more than that. I have files like *.xsd, *.xml files & other customer configuration *.property data files. I don't want customers to be able

Re: AXIS2 - property file locations when creating aar file

2009-02-23 Thread Deepal jayasinghe
have a look at http://www.developer.com/open/article.php/10930_3557741_2 You just need to add your property file into your aar file, and you can access them as you access from a jar file. Thank you! Deepal > When I build an aar file and I need to deploy files that support the > web services. For

AXIS2 - property file locations when creating aar file

2009-02-23 Thread RickCromer
When I build an aar file and I need to deploy files that support the web services. For example, general site configuration *.properties file and files that the customer receiving the packaged web service will need to configure. Where do these files go and is there a recommended technique to cr

Policy configuration for a signed Request and unsigned Response?

2009-02-23 Thread Wally Dennis
Hello, Is it possible to use the Policy configuration mechanism in Axis2/Rampart to configure a client to send a signed request and get back an unsigned response? If so, any examples or reference material would be most appreciated. Thanks, Wally The information contained in this e-mail an

Invalid QName with default databinding (Adds a : in front)

2009-02-23 Thread Thiaga
Hi, I generated a client jar using wsdl2java with default databinding and wrote a test client. (Axis2.1.1 version) In the SOAP request a : is added in front of the QNAME for a complex type. This does not happen when the binding is XMLBeans. xsi:type=":StringCriterionType" and due to this i get an

service cannot be found for the endpoint reference (EPR)

2009-02-23 Thread Davis, Christopher (Baltimore)
I get the above error while trying to consume a web service embedded in my Tomcat webapp. I'm looking for ideas. The error is occurring in the Dispatch Phase. I generated the Axis2 server and client code using the code generator in Eclipse. 1) Modified web.xml to add servlet and mapping for

Re: Axis2: how to skip namespace prefixes ?

2009-02-23 Thread keith chapman
Hi Gaurav, Your Response is not valid XML, That is the reason for this error. xmlns:urn:="urn:Alcatel_Lucent_OSP_BPEL"> should have been xmlns:urn="urn:Alcatel_Lucent_OSP_BPEL"> This looks to be a bug in the server (OSP 2.4 BPEL engine) Thanks, Keith. On Mon, Feb 23, 2009 at 10:11 PM, GKGT80

Re: Axis2: how to skip namespace prefixes ?

2009-02-23 Thread GKGT80
Hello keith , I am also facing problem in SOAP response. SOAP Response I am getting (TCP Monitor trace):- * HTTP/1.1 200 OK Server: OSP 2.4 BPEL engine Content-Type: text/xml; charset=ISO-8859-1 Content-Length: 1965 Connection: close http://schemas.xm

Re: Bug in "Code Generator Wizard - Eclipse Plug-in"

2009-02-23 Thread TomazM
Look hare for solution: http://blogiterox.wordpress.com/2008/10/24/exploring-apache-axis2-and-eclipse-plug-in-development/ Regards, Tomaz Car Toper wrote: > I am reading through the book "Developing Web Services with Apache > Axis2" and it talked about the "Code Generator Wizard - Eclipse > Plug

Bug in "Code Generator Wizard - Eclipse Plug-in"

2009-02-23 Thread Car Toper
I am reading through the book "Developing Web Services with Apache Axis2" and it talked about the "Code Generator Wizard - Eclipse Plug-in". When I try to run v1.4.1 of the plug-in I am getting a error, some exception is being thrown when you click on finish. I should have posted this Q last nigh

SCOPE="SOAPSESSION"

2009-02-23 Thread Stadelmann Josef
Dear axis2/Java community my Java Client calls an axis2 service. The server runs in scope="soapsession" returning a ServicegroupId up on a initial call to init() & login(). I can launch several Java Clients, which reach in a 1 to 1 correspondence each his own instance of a service; call it "a