Re: No conduit initiator was found for the namespace http://schemas.xmlsoap.org/soap/http

2010-08-19 Thread Christian Schneider
Hmm, from what I understand you initialize the service proxy by instatiating the service client class. While this may work I would rather configure the service proxy in spring and inject the proxy into your bean. In any case I think the problem is that cxf is not initialized correctly. So at

Re: AW: AW: No conduit initiator was found for the namespace http://schemas.xmlsoap.org/soap/http

2010-08-19 Thread Roland Villemoes
Hi, Sounds so nice that this should be easy to fix. I really hope that's true. I have attached the source part of the bundle (/src) that contains the spring part as well as the webservice proxy etc. http://camel.465427.n5.nabble.com/file/n2641609/src2.zip src2.zip Thanks a lot. -- View this

Problem creating seda endpoint with queue size

2010-08-19 Thread ariekenb
I'm running FUSE ESB 4.2.0-fuse-01-00 with it's default version of Camel 2.2. I'm trying to do something simple: I have a camel context defined in a spring file: I inject it into a bean implementing CamelContextAware and try to do this: camelContext.ad

RE: netty issue

2010-08-19 Thread Sadanand Kusma
As suggested, I tried this with exchange pattern as inout. I think there are 2 issues. 1. it is not continuing with reply immediately, it waits till it receives a response. is this how it supposed to work in async mode?.I would think that like we had in deprecated toasync feature, it sends the a

CSV Reporting with Java and XML

2010-08-19 Thread somemightsay
Camel 2.4 Spring 3.0.3 I apologise in advance if this is asking to much but I've been looking for help with this for a long time and still cannot find an answer. I have a program which pulls data from a database and reports it to a CSV file. Simple enough. I have the database info defined i

Re: camel-cxfrs with custom http headers...

2010-08-19 Thread ben.oday
Willem, one more question. Does the same issue exist for SOAP requests as well? My team is telling me that it doesn't work for SOAP requests either. Let me know if a change is necessary there as well...thanks again - Ben O'Day IT Consultant (subcontractor for Progress) -- View this messa

Re: netty issue

2010-08-19 Thread Claus Ibsen
On Thu, Aug 19, 2010 at 4:45 PM, Sadanand Kusma wrote: > Thanks for the response, if you set sync=true doesn't it make a synchronous > call. > Are you saying that it always runs in a async mode?,how do we tell it to run > in an async mode?. > Well the sync option is badly named, now the async n

RE: netty issue

2010-08-19 Thread Sadanand Kusma
I am using 2.4. I have thread as 1 because I can establish only single connection with external server. Using that single connection, I can send multiple requests messages one after the other without waiting for responses and need to receive corresponding responses asynchronously. Each message w

Re: Simple Testcase: XPATH Query does not work

2010-08-19 Thread Claus Ibsen
Hi XPath is a weird language. You may have to tell it you only want the node / text or whatever Something like: //one/two/text() Check out some xpath sites how the syntax works. On Thu, Aug 19, 2010 at 4:50 PM, BAltmiks wrote: > > Hi, > > my xpath query does not work. Here is my Testcase: >

Simple Testcase: XPATH Query does not work

2010-08-19 Thread BAltmiks
Hi, my xpath query does not work. Here is my Testcase: import org.apache.camel.EndpointInject; import org.apache.camel.Produce; import org.apache.camel.ProducerTemplate; import org.apache.camel.builder.RouteBuilder; import org.apache.camel.component.mock.MockEndpoint; import org.apache.camel.tes

Re: netty issue

2010-08-19 Thread Claus Ibsen
What version of Camel are you using? And why do you have threads(1) in the route? On Thu, Aug 19, 2010 at 4:45 PM, Sadanand Kusma wrote: > Thanks for the response, if you set sync=true doesn't it make a synchronous > call. > Are you saying that it always runs in a async mode?,how do we tell it

RE: netty issue

2010-08-19 Thread Sadanand Kusma
Thanks for the response, if you set sync=true doesn't it make a synchronous call. Are you saying that it always runs in a async mode?,how do we tell it to run in an async mode?. -Original Message- From: Willem Jiang [mailto:willem.ji...@gmail.com] Sent: Wednesday, August 18, 2010 10:43

Re: Java heap space issue with reading large CSV file

2010-08-19 Thread Claus Ibsen
Hi You should split the file before you do the CSV thingy. The splitter can work streaming on the file out of the box. So just split it by new line, or lets say per 10.000 lines etc. Then you avoid sucking in all the file, or having all the CSV records in one big Exchange. On Thu, Aug 19, 2010

Re: camel-cxfrs with custom http headers...

2010-08-19 Thread boday
It works great...thanks Willem. Any idea when this can be rolled into a Fuse release? My client (Alcatel-Lucent) will be eager to get this fix. thanks again... __ Ben O'Day Senior IT Consultant From: Willem.Jiang [via Camel] To: boda

AW: AW: No conduit initiator was found for the namespace http://schemas.xmlsoap.org/soap/http

2010-08-19 Thread Schneider Christian
Could you attach your complete spring config and camel routes (if outside spring)? Greetings Christian Christian Schneider Informationsverarbeitung Business Solutions Handel und Dispatching Tel : +49-(0)721-63-15482 EnBW Systeme Infrastruktur Support GmbH Sitz der Gesellschaft: Karlsruh

Re: AW: No conduit initiator was found for the namespace http://schemas.xmlsoap.org/soap/http

2010-08-19 Thread Willem Jiang
Can you send me your test bundle? It's just a CXF bus setup related issue and is easy to fix. Willem Roland Villemoes wrote: nope, same error. It still says: [org.apache.camel.RuntimeCamelException - javax.xml.ws.soap.SOAPFaultException: No conduit initiator was found for the namespace http:/

Re: AW: No conduit initiator was found for the namespace http://schemas.xmlsoap.org/soap/http

2010-08-19 Thread Roland Villemoes
nope, same error. It still says: [org.apache.camel.RuntimeCamelException - javax.xml.ws.soap.SOAPFaultException: No conduit initiator was found for the namespace http://schemas.xmlsoap.org/soap/http -- View this message in context: http://camel.465427.n5.nabble.com/No-conduit-initiator-was-fou

Re: CXF CORBA binding problem

2010-08-19 Thread M.Ismail
Hi, Actually I tried that too. In fact I have added other CXFConstants too to the Out header here is the ProcessNewTransaction() process: public void process(Exchange exchange) throws Exception { ECITECITSessionCORBAService ecitService = new ECITECITSessionCORBAService (); // Ge

Re: AW: No conduit initiator was found for the namespace http://schemas.xmlsoap.org/soap/http

2010-08-19 Thread Willem Jiang
How about add these imports Willem Roland Villemoes wrote: Thanks for you input, but that didn't seem to fix my problem. I still get the error: Caused by: [org.apache.camel.RuntimeCamelException - javax.xml.ws.soap.SOAPFaultException: No conduit initiator was found for the namespace http:/

Re: AW: No conduit initiator was found for the namespace http://schemas.xmlsoap.org/soap/http

2010-08-19 Thread Roland Villemoes
Thanks for you input, but that didn't seem to fix my problem. I still get the error: Caused by: [org.apache.camel.RuntimeCamelException - javax.xml.ws.soap.SOAPFaultException: No conduit initiator was found for the namespace http://schemas.xmlsoap.org/soap/http.] -- View this message in context:

AW: No conduit initiator was found for the namespace http://schemas.xmlsoap.org/soap/http

2010-08-19 Thread Schneider Christian
I think you could be missing an import statement. You could try these: Greetings Christian Christian Schneider Informationsverarbeitung Business Solutions Handel und Dispatching Tel : +49-(0)721-63-15482 EnBW Systeme Infrastruktur Support GmbH Sitz der Gesellschaft: Karlsruhe Handelsre

Re: No conduit initiator was found for the namespace http://schemas.xmlsoap.org/soap/http

2010-08-19 Thread Roland Villemoes
Hi, Actually I have made this thing by following the guide found here: http://fusesource.com/docs/framework/2.2/jaxws/index.html (Chapter 5: Developing a Consumer From a WSDL Contract). I have then just created and installed this a as simple bundle, where I have imported the genered webservice