How to control wsdl:binding name attribute through camel cxf exported classes

2015-06-11 Thread gargankur007
How to control wsdl:binding name attribute through camel cxf exported classes. >From which annotation is this derived? -- View this message in context: http://camel.465427.n5.nabble.com/How-to-control-wsdl-binding-name-attribute-through-camel-cxf-exported-classes-tp5768096.html Sent fr

Removing namespaces from soap response using SoapOutInterceptor

2015-06-11 Thread gargankur007
http://schemas.xmlsoap.org/soap/envelope/";> http://wem-rmhpimpl.demo.hcentive.com:9090/wsx/services/WemRmhpHop3PaymentEffectuationService"/> This is current outcome I need http://schemas.xmlsoap.org/soap/envelope/";> Can this be achieved through any SoapOut

Removing namespaces from Camel CXF soap response

2015-06-07 Thread gargankur007
Hi Team Below is my sample Soap Response for a service hosted in camel cxf http://schemas.xmlsoap.org/soap/envelope/";> http://wem-rmhpimpl.demo.hcentive.com:9090/wsx/services/WemXpgPaymentService"/> Now I dont want to generate "ns2" namespace prefix in response.Can anyone hel

Re: Document Style bare WSDL not working in camel cxf

2015-06-06 Thread gargankur007
Is there any way in camel cxf bare tsyle document WSDl can be made to work? -- View this message in context: http://camel.465427.n5.nabble.com/Document-Style-bare-WSDL-not-working-in-camel-cxf-tp5767867p5767942.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Using loop EIP to solve a Usecase

2015-06-06 Thread gargankur007
It worked fine.Thanks Claus..:) -- View this message in context: http://camel.465427.n5.nabble.com/Using-loop-EIP-to-solve-a-Usecase-tp5767874p5767943.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Document Style bare WSDL not working in camel cxf

2015-06-06 Thread gargankur007
HI I got to this point by googling Unfortunately, the only real solution here is fixing the wrong message. As a workaround, though, you might want to try setting the Apache CXF soap.no.validate.parts property to true in the message context. Unfortunately, on server side that's not easily done in

Re: Using loop EIP to solve a Usecase

2015-06-05 Thread gargankur007
Hi Claus If I am using a dynamic router to direct to same component from where message originated it is going into infinite loop Below is the log 23:29:13,492 | INFO | E-URL.readQueue] | SLAEventNotifer | 142 - org.apache.camel.camel-core - 2.12.0.redhat-610379 | [Message Id:ID:H

Re: Using loop EIP to solve a Usecase

2015-06-05 Thread gargankur007
HI Claus I have used dynamic router now. It helped a lot.. Please help me solve "http://camel.465427.n5.nabble.com/Document-Style-bare-WSDL-not-working-in-camel-cxf-td5767867.html"; as well -- View this message in context: http://camel.465427.n5.nabble.com/Using-loop-EIP-to-solve-a-Usecase-t

Re: Using loop EIP to solve a Usecase

2015-06-04 Thread gargankur007
Can I stop the loop in between based on some condition? So I fix the number of iterations to high number and then based on some condition terminate the loop early. -- View this message in context: http://camel.465427.n5.nabble.com/Using-loop-EIP-to-solve-a-Usecase-tp5767874p5767894.html Sent f

Using loop EIP to solve a Usecase

2015-06-04 Thread gargankur007
Hi I have a usecase in which I have a route which takes m number of rest URLS' as input and then hits each of these URLS's n number of times each until response code comes out to be 204. So hit a URL until 204 is response code and if it returns 204 move on to next URL and apply same procedure.

Document Style bare WSDL not working in camel cxf

2015-06-04 Thread gargankur007
Hi Below is my sample request " http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xenc="http://www.w3.org/2001/04/xmlenc#";> RMHP " Now when i hit the service it says that gives below fault "http://schemas.xmlsoap.org/soap/envelope/";> soap:Client Unexpec

Re: making a web service work without targetnamespace

2015-06-04 Thread gargankur007
Hi I am using BareStyle Document WSDL and still it is expecting a namespace -- View this message in context: http://camel.465427.n5.nabble.com/making-a-web-service-work-without-targetnamespace-tp5767325p5767866.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: making a web service work without targetnamespace

2015-06-04 Thread gargankur007
My Sample request is " http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xenc="http://www.w3.org/2001/04/xmlenc#";> RMHP PHBheW1lbnRzPjxwYXltZW50PjxwYXltZW50RGF0ZT4yMDE0LTA3LTAyPC9wYXltZW50RGF0ZT48c291cmNlUmVmZXJlbmNlSWQ+MjA5ODc2NTY0ODc4NTEyNDU0ODc4Nzk8L3NvdXJjZVJlZmVyZW5jZUlkPjxzb3VyY2VSZWZlcmVuY

Re: Web Srevice exposed over https not working

2015-05-25 Thread gargankur007
Hi William What more information will you need? What are the reasons that client may close connection? -- View this message in context: http://camel.465427.n5.nabble.com/Web-Srevice-exposed-over-https-not-working-tp5767156p5767441.html Sent from the Camel - Users mailing list archive at Nabble

making a web service work without targetnamespace

2015-05-20 Thread gargankur007
Hi I have exposed a soap service using CXF component. The issue is the Soap Body is like ? ? ? ? Now if my Webservice is like @WebService(targetNamespace = "") and it is declared in package "com.hcen

Re: How to make Soap Service Provider work over web

2015-05-20 Thread gargankur007
Hi I changed it to the mentioned address. But still not able to call the web servcie using the IP from other computer on same LAN even -- View this message in context: http://camel.465427.n5.nabble.com/How-to-make-Soap-Service-Provider-work-over-web-tp5767265p5767311.html Sent from the Camel -

How to make Soap Service Provider work over web

2015-05-19 Thread gargankur007
HI I have came route for Soap service Provider like from("cxf://http://localhost:9090/services?serviceClass=A&dataFormat=POJO";) My question is do I need to package the application as WAR to enable it accessing from web? I am able to use it by URL http://localhost:9090/services but not by "http

Re: Client not abel to recieve response within 20seconds

2015-05-18 Thread gargankur007
Hi I used the header option and it worked.Meanwhile I would be extrememly tahnkful if you could help me with this http://camel.465427.n5.nabble.com/Web-Srevice-exposed-over-https-not-working-td5767156.html Been stuck for few days on this -- View this message in context: http://camel.465427

Web Srevice exposed over https not working

2015-05-16 Thread gargankur007
Hi Previously I had deployed a JAX-WS using CXF over http. Eversince I have changed it to configure it over https it has started working. I am getting below exception on sending a request to it org.apache.cxf.interceptor.Fault: Marshalling Error: Closed at org.apache.cxf.jaxb.JAXBEncode

Client not abel to recieve response within 20seconds

2015-05-16 Thread gargankur007
Hi I am using a CXF based Web Service hosted on my machine. I am receiving following error when I try to hit from Soap Client 03:09:54,289 | WARN | null.errorQueue] | TemporaryQueueReplyManager | 206 - org.apache.camel.camel-jms - 2.12.0.redhat-610379 | Timeout occurred after 2 millis

Re: Web Srevice exposed over https not working

2015-05-16 Thread gargankur007
I googled and have a sense that may be connection is getting closed when SoapResposne is being written -- View this message in context: http://camel.465427.n5.nabble.com/Web-Srevice-exposed-over-https-not-working-tp5767156p5767157.html Sent from the Camel - Users mailing list archive at Nabble.

FTP Camel Component not picking up files if scheduler is set to about 30 seconds

2015-04-30 Thread gargankur007
Hi We have multiple routes in our application and every FTP endpoint is configured to poll in 30 seconds. However the routes are not able to pick up new files posted over there. Has anybody faced any problem like this before? -- View this message in context: http://camel.465427.n5.nabble.com

Re: BeanIODataFormat giving exception in OSGI compliant Karaf Server Camel

2015-04-08 Thread gargankur007
Hi Claus Is it possible if I can define the formats as Spring beans and then depending upon headers use a particular format to cater/handle the CSV payload -- View this message in context: http://camel.465427.n5.nabble.com/BeanIODataFormat-giving-exception-in-OSGI-compliant-Karaf-Server-Camel-

Re: BeanIODataFormat giving exception in OSGI compliant Karaf Server Camel

2015-04-07 Thread gargankur007
Hi Claus Thanks for your interest. Use case is "Can we use a beaniodataformat depending upon the exchange filetype or file extension?" Eg from("file://filPath") // do a little logging // aggregate bas

Re: BeanIODataFormat giving exception in OSGI compliant Karaf Server Camel

2015-04-07 Thread gargankur007
We are using Spring to wire beans -- View this message in context: http://camel.465427.n5.nabble.com/BeanIODataFormat-giving-exception-in-OSGI-compliant-Karaf-Server-Camel-tp5765404p5765425.html Sent from the Camel - Users mailing list archive at Nabble.com.

BeanIODataFormat giving exception in OSGI compliant Karaf Server Camel

2015-04-06 Thread gargankur007
I am using CAmel for one of my projects.The bundles are deployed in OSGI. I have a usecase in which I would need to unmarshal a CSV to POJO. I am using BeanIODataFormat for that. Somehow I am bale to unmarshal the same in Camel Main Program but when I put the same piece of code in OSGI I get follo