Ok, I've attached a simple example, depending only on SI and JUnit. Hopefully, this is more clear. It's a banking example where I want to send two deposits to a channel, route these to a service...
Type: Posts; User: tjg184; Keyword(s):
Ok, I've attached a simple example, depending only on SI and JUnit. Hopefully, this is more clear. It's a banking example where I want to send two deposits to a channel, route these to a service...
Let's say I have the following flow. Through ChannelA flows some request (RequestA). I need RequestA split into subparts, so
I use a splitter to build a list of RequestB. Each RequestB flows...
This seems like an interesting idea. I've had the same issues as he is describing. I want to use Spring but I don't want my clients to be dependent on it or even aware of it for most things.
...
Below is my test. It hits this service fine, but now I need the CommonServiceResponse marshalled back to xml.
public CommonServiceResponse execute(CommonServiceRequest request)
{
...
[Servlet Error]-[inboundGateway]: javax.servlet.ServletException: failed to generate HTTP response from reply Message
at...
Now, I'm getting the following exception. I think the issue is in the marshaller. How do I tell it to marshal from my custom object returned from the service back to xml? Right now, the marshaller...
Could someone help with how to create an HTTP endpoint for accepting and returning xml? I posted part of the configuration. It correctly converts the xml into the object so the service executes,...
The connections are retrieved from the same data source (in this case the TransactionAwareDataSourceProxy). Does it seem reasonable to wrap the connection to ignore commit and rollback calls? I...
We use a WebSphere connection pool. The driver is an XA-compliant DB2 driver. We use Spring managed transactions in the new code.
When commit is called on the connection, an exception is...
We are actually using both of these Spring classes. I'm definitely seeing where the TransactionAwareDataSourceProxy is ensuring the same physical connection is being used. Our legacy code is using...
We have existing legacy code that uses jdbc (connections, prepared statements, etc.) to update a DB2 database. We use WebSphere 6.1. A connection is obtained from the Datasource and then commit is...