Questions tagged [apache-servicemix]

Questions relating to the Apache Foundation's ServiceMix integration platform.

ServiceMix is an Apache foundation sponsored project, with commercial support provided by FuseSource

Apache ServiceMix is a flexible, open-source integration container that unifies the features and functionality of Apache ActiveMQ, Camel, CXF, Karaf into a powerful runtime platform you can use to build your own integrations solutions. It provides an enterprise ready ESB exclusively powered by OSGi.

655 questions
0
votes
1 answer

"Cannot rollback() inside an XASession" error on Fuse ESB 7.1.0

Yesterday I tried to migrate my bundles from ServiceMix 4.4.1 to Fuse ESB Enterprise 7.1.0. Bundles with local transactions work fine, but other ones with XA transaction don't work well. They write continuously tracebacks with the following messages…
0
votes
1 answer

deploy Apache ServiceMix 4 application into JBoss Application Server 7

I have an standalone Apache ServiceMix 4.4 application, it works nicely. Now, I want to deploy this application inside a JBoss Application Server 7. I use Maven as project and dependency management tool. My objective is deploying the application not…
logoff
  • 3,347
  • 5
  • 41
  • 58
0
votes
1 answer

activemq in servicemix

I have a bundle with my implementation of managing messaging with activemq queue. I want to deploy this bundle on servicemix however I dont know the broker URL which I should use. when I deployed this on standalone activemq server I used following…
Manglesh
  • 520
  • 1
  • 13
  • 29
0
votes
1 answer

Implementing XSLT within ServiceMix

I'm trying to write a xslt that takes a html page and transforms it so that it contains only the contents of a div tag with id "content". I'm using Apache ServiceMix to develop a service unit that performs this action but am completely lost! So far…
Pete
  • 1,095
  • 3
  • 9
  • 17
0
votes
1 answer

Strange output from FuseESB

I am working on parsing the request. I developed route in Java for parsing incoming request. I am using Camel 2.9 with FuseESB 7.0.1.0.84. I used simple(“{body}”).getText() to fetch incoming request as per Camel Manual So I am checking the incoming…
Ashish Nijai
  • 321
  • 2
  • 13
0
votes
1 answer

Bundle with exception org.xml.sax.SAXParseException: Content is not allowed in prolog

I have deployed a bundle in FuseESB which will log incoming soap request. I have used Java DSL as from("cxf:bean:comprovaWS?dataFormat=MESSAGE").setHeader("SOAPAction", new ConstantExpression("http://www.about.com")).streamCaching() …
Ashish Nijai
  • 321
  • 2
  • 13
0
votes
1 answer

Camel + ActiveMQ: Handling Two Distinct Concurrency Constraints With Competing Consumers

Problem: Process a backlog of messages where each message has three headers "service", "client", and "stream". I want to process the backlog of messages with maximum concurrency, but I have some requirements: Only 10 messages with the same service…
0
votes
1 answer

SOAP request is returned when used headers in logging

Ashish here again. I have developed a route which parses incoming SOAP request and logs some of information from the request. I used headers and XPATH for fetching information from SOAP service request. The route successfully parse and logs…
Ashish Nijai
  • 321
  • 2
  • 13
0
votes
1 answer

Want to build a route which will check contents of Soap request and pass the request to appropriate URI

I am Ashish from Mumbai and very new to Apache Camel. Currently I am building a route in XML which will scan the SOAP request and will redirect the request to appropriate URI. My Soap request isn as follows:
Ashish Nijai
  • 321
  • 2
  • 13
0
votes
1 answer

Servicemix - Expose CXF Endpoint in SOAP 1.2

I'm trying to expose a WS in SOAP 1.2 in my servicemix (Fuse based). I've declare the CXF endpoint in my blueprint configuration file :
yodamad
  • 1,452
  • 14
  • 24
0
votes
2 answers

camel-example-cxf Not Deployed in ServiceMix 4.4.2

I was trying to run the camel-example-cxf example project which I downloaded from Camel website. (downloaded apache-camel-2.10.2) I built the project using the pom.xml & the build was successful. However when I tried to deploy it in servicemix…
0
votes
3 answers

Camel - unmarshal().serialization() - ClassNotFoundException

I'm trying to unmarshal with serialization method a bean that is not the current bundle but in a commons components bundle. I get the following error when camel tries to unmarshal my bean : 22:43:11,865 | ERROR | nModule-thread-1 |…
yodamad
  • 1,452
  • 14
  • 24
0
votes
1 answer

HTTP POST/GET on ServiceMix

In the broadest sense, I have numerous Web Service which the user sends HTTP Post commands to, and returns XML results back. The problem is they all sit on separate Tomcat servers, making the URLs are completely different and hard to keep track;…
0
votes
1 answer

ServiceMix start page says 404 Not Found

ServiceMix is binding to both 8080 and 8181 but start page is not coming as expected says: URL I used is "http://localhost:8080". Response: HTTP ERROR: 404 Problem accessing /. Reason: Not Found Powered by Jetty:// How should I access it? Also…
Madhav
  • 97
  • 1
  • 6
0
votes
1 answer

setting the ContextPath in Jetty running under ServiceMix (OSGI)

Here is my brief background of environment. I am trying to convert a myapp WAR to an OSGi compliant by making the MANIFEST.MF as shown below, and wanted to deploy this war in ServiceMix an OSGi based container. MANIFEST.MF Manifest-Version:…