RE: Any experience with SOAP Server WITHOUT Axis ?

2006-11-06 Thread Geert Josten
Hi, A while back I wanted to use Cocoon as a SOAP server myself and found it not that difficult. I used the stream generator to get access to the SOAP envelop, processed it with XSL, transforming it to an 'internal' request with request-parameters and/or XML fragments, used cinclude to execute

Re: Any experience with SOAP Server WITHOUT Axis ?

2006-11-01 Thread Andreas Kuehne
= xmltosoap.xsl/ map:serialize type = xml/ /map:match -Original Message- From: Andreas Kuehne [EMAIL PROTECTED] To: [EMAIL PROTECTED], users@cocoon.apache.org Date: Tue, 10 Oct 2006 12:41:46 +0200 Subject: Re: Any experience with SOAP Server WITHOUT Axis ? Hi Thomas

Re: Any experience with SOAP Server WITHOUT Axis ?

2006-10-31 Thread Jan Hinzmann
type = getRecords/ map:transform src = xmltosoap.xsl/ map:serialize type = xml/ /map:match -Original Message- From: Andreas Kuehne [EMAIL PROTECTED] To: [EMAIL PROTECTED], users@cocoon.apache.org Date: Tue, 10 Oct 2006 12:41:46 +0200 Subject: Re: Any experience with SOAP Server

Any experience with SOAP Server WITHOUT Axis ?

2006-10-10 Thread Andreas Kuehne
Hi Folks, I don't want to use Axis for a SOAP server. It generates code that doesn't even compile ... Beeing in Cocoon I would like to serve request without any detour. Does anyone got an example with the SOAP header and content processing ? Thanks in advance Andreas

Re: Any experience with SOAP Server WITHOUT Axis ?

2006-10-10 Thread Thomas Soddemann
Andreas Kuehne wrote: Hi Folks, I don't want to use Axis for a SOAP server. It generates code that doesn't even compile ... Beeing in Cocoon I would like to serve request without any detour. Does anyone got an example with the SOAP header and content processing ? Thanks in advance

Re: Any experience with SOAP Server WITHOUT Axis ?

2006-10-10 Thread Andreas Kuehne
Hi Thomas, what about xfire http://xfire.codehaus.org E.g., it can be used in conjunction with xmlbeans. sounds intersting ! But as I'm a lazy guy, I don't want to go for a Java model. I would dream of using my already-made-and-tested pipelines enabled with a SOAP frontend ...

Re: Any experience with SOAP Server WITHOUT Axis ?

2006-10-10 Thread Yves Zoundi
] To: [EMAIL PROTECTED], users@cocoon.apache.org Date: Tue, 10 Oct 2006 12:41:46 +0200 Subject: Re: Any experience with SOAP Server WITHOUT Axis ? Hi Thomas, what about xfire http://xfire.codehaus.org E.g., it can be used in conjunction with xmlbeans. sounds intersting ! But as I'm a lazy guy

cocoon as webservice (SOAP-Server)

2005-03-30 Thread Jan Hinzmann
Hi *, I'm working on a little Webservice and I'm needing help on generating and serializing xml-content from the flowscript to the sitemap and viceversa. My approach is to generate a received SOAP-Envelope with a StreamGenerator and extracting the called method and the arguments using xslt and

Re: cocoon as webservice (SOAP-Server)

2005-03-30 Thread Jan Hinzmann
Me again :) I had a lot of thinking today and a lot of help from the irc (irc.freenode.net#cocoon). Thanks joose and ugocei! since it is kind of working now, i have set up a wikipage and hope. its not that crappy: http://wiki.apache.org/cocoon/WebServiceServer hth, jan Jan Hinzmann

SOAP Server in Cocoon

2004-07-29 Thread Alexei Neizvestny
Hi, Is there a better way to implement a SOAP-based web service in Cocoon but using AxisRPCRouter? What does not suit me is the need to reissue HTTP requests from the web service implementation to Cocoon server located within the same web application. Is it possible to make such interaction

Re: SOAP Server?

2004-07-14 Thread Joose Vettenranta
Hi, just wondering, could it possible to create new matcher for soap-requests? like this: map:matcher name=soap map:parameter name=namespace value=http://example.com/; / /map:matcher ... map:match type=soap match=foo map:generate src=foo / map:transform src=toSoap / map:serialize /

Re: SOAP Server?

2004-07-14 Thread Brent Johnson
Could someone point me in the right direction for some docs or samples on using the JXTemplateTransformer? The archive search on marc.theaimsgroup.com is pretty bad.. it wont accept a search word that long or something. I also did a Google search and all I'm getting are links to the API docs for

Re: SOAP Server?

2004-07-14 Thread Nacho Jimenez
Brent Johnson wrote: Could someone point me in the right direction for some docs or samples on using the JXTemplateTransformer? The archive search on marc.theaimsgroup.com is pretty bad.. it wont accept a search word that long or something. I also did a Google search and all I'm getting are

Re: SOAP Server?

2004-07-14 Thread Brent Johnson
Aha! I found a document in the Wiki for the JXTemplateGenerator. What I didn't see in this doc was a way to call Java methods from this generator/transformer (see Conal's email This is an easy way to define a transformation that calls Java methods.). Any thoughts? Is this possible and its just

RE: SOAP Server?

2004-07-14 Thread H . vanderLinden
PROTECTED] Sent: Wednesday, 14 July 2004 17:21 To: [EMAIL PROTECTED] Subject: Re: SOAP Server? Aha! I found a document in the Wiki for the JXTemplateGenerator. What I didn't see in this doc was a way to call Java methods from this generator/transformer (see Conal's email This is an easy

Re: SOAP Server?

2004-07-14 Thread Brent Johnson
to the JXTemplate using sitemap parameters or a flowscript object, you can call the methods on the object. HTH. Bye, Helma -Original Message- From: Brent Johnson [mailto:[EMAIL PROTECTED] Sent: Wednesday, 14 July 2004 17:21 To: [EMAIL PROTECTED] Subject: Re: SOAP Server? Aha

SOAP Server?

2004-07-13 Thread Brent Johnson
Has anyone implemented a SOAP server with (or alongside) Cocoon? I was looking into Apache's SOAP implementation and it requires an app server. Since my WebGate app already uses an internal Jetty server.. it looks like I have 2 options: 1) Figure out how to get Servlets working alongside

Re: SOAP Server?

2004-07-13 Thread Tony Collen
Brent Johnson wrote: Has anyone implemented a SOAP server with (or alongside) Cocoon? I was looking into Apache's SOAP implementation and it requires an app server. Since my WebGate app already uses an internal Jetty server.. it looks like I have 2 options: 1) Figure out how to get Servlets

Re: SOAP Server?

2004-07-13 Thread Brent Johnson
an Apache SOAP module that fires up another Jetty instance. Thanks for the info! - Brent On Tue, 13 Jul 2004 15:40:08 -0500, Tony Collen [EMAIL PROTECTED] wrote: Brent Johnson wrote: Has anyone implemented a SOAP server with (or alongside) Cocoon? I was looking into Apache's SOAP

Re: SOAP Server?

2004-07-13 Thread Scott Schwab
=fromQueryModel.xsl/ map:serialize type=xml/ /map:match The next thing I am working on is how to handle a SOAP message with attachments. It looks doable, but I have just started working with Cocoon upload file stuff. Hope this helps, Scott Brent Johnson wrote: Has anyone implemented a SOAP

Re: SOAP Server?

2004-07-13 Thread Brent Johnson
to handle a SOAP message with attachments. It looks doable, but I have just started working with Cocoon upload file stuff. Hope this helps, Scott Brent Johnson wrote: Has anyone implemented a SOAP server with (or alongside) Cocoon? I was looking into Apache's SOAP implementation

RE: SOAP Server?

2004-07-13 Thread Conal Tuohy
Brent Johnson wrote: I've already got it reading the request and running an XSL transformation as a test and it works great! The next step though.. which I'm sure will be a pain.. is trying to figure out how I can run some arbitrary Java code to attempt to process this request. For

Re: SOAP server

2003-11-25 Thread Yury Mikhienko
On Mon, 24 Nov 2003 14:44:25 +0100 Bertrand Delacretaz [EMAIL PROTECTED] wrote: Can anyone explain me how to create (may be with cocoon usage) the SOAP server? The axis block samples demonstrate SOAP services implemented using Cocoon. I can't find SOAP server creation samples in axis

Re: SOAP server

2003-11-25 Thread Bertrand Delacretaz
Le Mardi, 25 nov 2003, à 09:03 Europe/Zurich, Yury Mikhienko a écrit : On Mon, 24 Nov 2003 14:44:25 +0100 Bertrand Delacretaz [EMAIL PROTECTED] wrote: Can anyone explain me how to create (may be with cocoon usage) the SOAP server? The axis block samples demonstrate SOAP services implemented

SOAP server

2003-11-24 Thread Yury Mikhienko
Hi cocooners! Can anyone explain me how to create (may be with cocoon usage) the SOAP server? Many thanks for advise! -- Best regards, Yury Mikhienko. IT ERP group head, ZAO Mobikom-Kavkaz - To unsubscribe, e-mail: [EMAIL

Re: SOAP server

2003-11-24 Thread Bertrand Delacretaz
Can anyone explain me how to create (may be with cocoon usage) the SOAP server? The axis block samples demonstrate SOAP services implemented using Cocoon. -Bertrand - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional