I had this working outside of blueprint, but want to run in OSGI container. I
am pretty new to camel and can't quite figure this one out.
[ Blueprint Extender: 1] BlueprintContainerImpl INFO Bundle
messaging-blueprint is waiting for namespace handlers
[http://activemq.apache.org/s
pache.org/using-osgi-blueprint-with-camel.html).
>
> Regards,
>
>
>
> On Thu, Aug 28, 2014 at 1:37 PM, billybobbain <[hidden email]
> <http://user/SendEmail.jtp?type=node&node=5755815&i=0>>
> wrote:
>
> > I had this working outside of b
That was it. Thanks for your help.
--
View this message in context:
http://camel.465427.n5.nabble.com/Can-t-find-the-BindingOperationInfo-with-operation-name-urn-login-tp5760654p5760783.html
Sent from the Camel - Users mailing list archive at Nabble.com.
The service I'm using requires that we "login" and maintain the session.
(Yuck, I know!)
I can do this using regular java and CXF, but can't figure out the right way
with Camel & CXF.
This works with Java / CXF.
((BindingProvider)
port).getRequestContext().put(BindingProvider.SESSION_MAINTA
I solved this by grabbing the "Set-Cookie" header coming back from the web
service and then adding it as a "Cookie" header.
${header.Set-Cookie}
Maybe there is a better way to do this, but it works for now.
--
View this message in context:
http://camel.465427.n5.nabble.com/How-