Posts Tagged ‘JBossESB’
Sending Messages to the DLQ in JBossESB 4.7
The page 65 of the Programmers Guide says that if you are trying to deliver the message (…) it will send the message to the DeadLetterService, but doesn’t say how to do so.
import org.jboss.soa.esb.actions.AbstractActionPipelineProcessor;
import org.jboss.soa.esb.addressing.EPR;
import org.jboss.soa.esb.addressing.eprs.LogicalEPR;
import org.jboss.soa.esb.client.ServiceInvoker;
import org.jboss.soa.esb.message.Message;
public static final DQLSampleAction extends AbstractActionPipelineProcessor {
private static final EPR DLQ_EPR = new LogicalEPR(ServiceInvoker.INTERNAL_SERVICE_CATEGORY, ServiceInvoker.DEAD_LETTER_SERVICE_NAME);
public Message process(final Message msg) {
msg.getHeader().getCall().setReplyTo(DLQ_EPR);
return msg;
}
}
Splitters in JBossESB
Definitely missed.
http://architecture-journal.blogspot.com/2009/08/splitter-pattern-no-jboss-esb.html
https://jira.jboss.org/jira/browse/JBESB-2805 (vote for it!)
Feature Request for JBossESB 4.7
Custom Apache Xalan Extensions for JBossESB
Bug in JBossESB 4.7
How to Publish a JBossESB 4.7 Service as a Web Service
<?xml version="1.0" encoding="UTF-8"?>
<jbossesb ...>
<services>
<service category="Sample" name="SampleService" description="Sample Service">
<listeners>
<http-gateway name="HTTP" />
</listeners>
<actions inXsd="/xsd/Sample.xsd" outXsd="/xsd/SampleResponse.xsd" faultXsd="/xsd/SampleFault.xsd">
...
</actions>
</service>
</services>
</jbossesb>
Refer to page 44 of the Programmers Guide.
Bug in JBossESB 4.7
Feature Request for JBossESB 4.7
From HTTP to ESB – JBossESB 4.7′s New Servlet based HTTP Gateway
A very nice addition.
http://jbossesb.blogspot.com/2009/12/from-http-to-esb-jboss-esb-47s-new.html