summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/modules/binding-jms-runtime/src/main/java/org/apache/tuscany/sca/binding/jms/provider (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-02-09TUSCANY-4011 - stop the SCDL callback binding configuration from being ↵slaws1-0/+9
overwritten. The JMS binding strangely relied on this so required some surgery. I've also simplified CallbackServiceReference and added a CALLBACK message header and CallbackHandler object to make is simpler to pass the callback address down the message chain. The existing approach of creating a CallbackEndpoint model is still supported at the moment. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1242412 13f79535-47bb-0310-9956-ffa450edef68
2012-02-06When the JMS binding returns an fault message for an unexpected exception ↵antelder1-1/+1
include the exception class name in the message git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1240983 13f79535-47bb-0310-9956-ffa450edef68
2012-01-28TUSCANY-4009: Apply patch from Jennifer Thompson to fix Java2 Secuity Errors ↵antelder1-5/+31
in JMSMessageProcessorUtil git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1237030 13f79535-47bb-0310-9956-ffa450edef68
2012-01-26Fix the two failing JMS compliance tests that set callback destiantions in ↵antelder1-12/+15
the request message. I'm not sure if its whats intended after the recent callback changes but this gets the JMS compliance tests working git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1236275 13f79535-47bb-0310-9956-ffa450edef68
2012-01-26Update the JMS Axiom XML helper to create more correct wrapper elementsantelder1-9/+8
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1236153 13f79535-47bb-0310-9956-ffa450edef68
2012-01-24Add parentheses to force correct evaluationantelder1-1/+1
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1235257 13f79535-47bb-0310-9956-ffa450edef68
2012-01-24Change the JMS binding MessageProcessor discovery to use ServiceDiscovery so ↵antelder1-21/+9
that additional processors can be added in OSGi git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1235221 13f79535-47bb-0310-9956-ffa450edef68
2011-12-22Make fields protected so subclasses can accessantelder1-12/+12
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1222193 13f79535-47bb-0310-9956-ffa450edef68
2011-12-20Make fields protected so subclasses can useantelder1-19/+19
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1221449 13f79535-47bb-0310-9956-ffa450edef68
2011-12-20Change fields to be protected so subclasses can access themantelder1-3/+3
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1221272 13f79535-47bb-0310-9956-ffa450edef68
2011-12-20MOve the initilization of a default destination name to a seperate method so ↵antelder1-10/+14
it can be overriden by subclasses git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1221271 13f79535-47bb-0310-9956-ffa450edef68
2011-11-18Update to avoid index out of bounds exception with 1 character operation namesantelder1-1/+1
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1203686 13f79535-47bb-0310-9956-ffa450edef68
2011-11-09Update the JMS binding so that the message format may be either AXIOM or ↵antelder7-101/+342
DOM. The default is still DOM as that minimizes the required dependencies but you can now configure it to use AXIOM OMElements which are optimized in some runtime environments git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1199797 13f79535-47bb-0310-9956-ffa450edef68
2011-11-08TUSCANY-3969: add fix from JIRA as suggested by Jennifer Thompson and Greg ↵antelder1-0/+25
Dritschler git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1199186 13f79535-47bb-0310-9956-ffa450edef68
2011-11-08TUSCANY-3969: add a setRequestTimeout methodantelder1-0/+5
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1199185 13f79535-47bb-0310-9956-ffa450edef68
2011-11-08TUSCANY-3969: add a getDefaultRequestTimeout methodantelder1-0/+2
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1199183 13f79535-47bb-0310-9956-ffa450edef68
2011-11-03TUSCANY-3968: Add getJMSResourceFactory() method to ↵antelder1-0/+4
JMSBindingReferenceBindingProvider git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1197122 13f79535-47bb-0310-9956-ffa450edef68
2011-11-03Remove ActiveMQ specific code as its now in the binding-jms-runtime-activemq ↵antelder1-61/+2
module git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1197113 13f79535-47bb-0310-9956-ffa450edef68
2011-07-27Fix NPE which I think was just causing noise in the logs in the case of a ↵scottkurz1-3/+3
1-way operation, as we were hitting NPE in the response path but never needed to send a response anyway. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151643 13f79535-47bb-0310-9956-ffa450edef68
2011-07-11Remove SCABindingAsyncResponseInvoker. It isn't used because of the local ↵slaws1-1/+0
optimization and it's function can be found in the LocalSCABindingInvocationInterceptor git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1145192 13f79535-47bb-0310-9956-ffa450edef68
2011-01-11Complete enablement of the JMS Binding to deal with Async invocations - as ↵edwardsmj2-3/+4
under TUSCANY-3809 git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1057651 13f79535-47bb-0310-9956-ffa450edef68
2010-12-20Extending binding-jms-runtime to provide native async service invocation ↵edwardsmj4-26/+223
with separate forward request messages and back response messages - as described in TUSCANY-3809 git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1051255 13f79535-47bb-0310-9956-ffa450edef68
2010-12-15Updating the fix for OSGi support to deal with error casesedwardsmj1-30/+56
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1049443 13f79535-47bb-0310-9956-ffa450edef68
2010-12-10Initial fixes to enable JMS runtime to work under OSGi as described in ↵edwardsmj2-3/+40
TUSCANY-3808 git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1044330 13f79535-47bb-0310-9956-ffa450edef68
2010-10-21Set JMSReplyTo based on the latest binding.jms specrfeng1-1/+3
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1026126 13f79535-47bb-0310-9956-ffa450edef68
2010-10-04TUSCANY-3698: Apply patch from Padraig Myers to have the JMS binding handle ↵antelder1-5/+30
unchecked exceptions by sending back the full exceptioninfo in a RuntimeException git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1004156 13f79535-47bb-0310-9956-ffa450edef68
2010-09-17Enhance the JAX-WS async client support and fix couple of issuesrfeng1-0/+5
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@998309 13f79535-47bb-0310-9956-ffa450edef68
2010-09-14BJM_3020 Validate that activationSpec is not used on a referencebdaniel1-0/+3
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@996943 13f79535-47bb-0310-9956-ffa450edef68
2010-08-30Add support for ActivationSpec error conditionsbdaniel2-0/+15
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@990951 13f79535-47bb-0310-9956-ffa450edef68
2010-08-30Don't try to lookup a destination if the jndiName is nullbdaniel1-0/+3
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@990864 13f79535-47bb-0310-9956-ffa450edef68
2010-08-30Update jms conection factory look up to check the type of the looked up objectantelder1-2/+6
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@990711 13f79535-47bb-0310-9956-ffa450edef68
2010-08-18Update to better handle messages where the operation can not be determinedantelder1-1/+1
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@986730 13f79535-47bb-0310-9956-ffa450edef68
2010-08-17Add interceptor to handle setting properties on the response messageantelder1-0/+4
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@986314 13f79535-47bb-0310-9956-ffa450edef68
2010-08-13Don't do create-if-not-exist when using the jms:jndi: url format, and don't ↵antelder2-1/+4
wrap jms exceptions in another jms exception git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@985173 13f79535-47bb-0310-9956-ffa450edef68
2010-07-29Sanity check the service binding response activation specantelder1-0/+4
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@980444 13f79535-47bb-0310-9956-ffa450edef68
2010-06-05Setting svn:eol-style for java and xml filesrfeng4-154/+154
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@951651 13f79535-47bb-0310-9956-ffa450edef68
2010-03-16Remove some now unneeded uses of DataExchangeSemanticsantelder1-7/+1
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@923761 13f79535-47bb-0310-9956-ffa450edef68
2010-02-03Finish moving all the JMS binding off the AXIOM databinding to the DOM based ↵antelder3-65/+80
one. Theres an intermittent issue with the JMS callbacks itest where trailing spaces seem to sometimes get lost, i'll take that itest out of the build for now while its investigated git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@906021 13f79535-47bb-0310-9956-ffa450edef68
2009-11-20Moving 2.x trunklresende17-0/+2469
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@882795 13f79535-47bb-0310-9956-ffa450edef68