Simples Assim

Posts Tagged ‘JBossESB

Sending Messages to the DLQ in JBossESB 4.7

leave a comment »

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;
  }

}

Written by Fernando Ribeiro

January 25, 2010 at 12:00 am

Posted in Software

Tagged with

Splitters in JBossESB

leave a comment »

Written by Fernando Ribeiro

January 14, 2010 at 4:41 pm

Posted in Software

Tagged with

Feature Request for JBossESB 4.7

with one comment

Written by Fernando Ribeiro

December 29, 2009 at 8:29 pm

Posted in Software

Tagged with

Custom Apache Xalan Extensions for JBossESB

leave a comment »

Written by Fernando Ribeiro

December 29, 2009 at 1:59 am

Posted in Software

Tagged with

Bug in JBossESB 4.7

with 2 comments

Written by Fernando Ribeiro

December 28, 2009 at 6:31 pm

Posted in Software

Tagged with

How to Publish a JBossESB 4.7 Service as a Web Service

leave a comment »

<?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.

Written by Fernando Ribeiro

December 24, 2009 at 6:25 pm

Posted in Software

Tagged with

Bug in JBossESB 4.7

with one comment

Written by Fernando Ribeiro

December 24, 2009 at 12:32 am

Posted in Software

Tagged with

Feature Request for JBossESB 4.7

leave a comment »

Written by Fernando Ribeiro

December 23, 2009 at 11:45 pm

Posted in Software

Tagged with

From HTTP to ESB – JBossESB 4.7′s New Servlet based HTTP Gateway

leave a comment »

Written by Fernando Ribeiro

December 23, 2009 at 11:28 pm

Posted in Software

Tagged with

JBoss Packaging Maven Plugin

leave a comment »

Written by Fernando Ribeiro

December 23, 2009 at 11:04 pm

Posted in Software

Tagged with ,

Follow

Get every new post delivered to your Inbox.

Join 784 other followers