Hi together,
I have an application based on the booking-faces sample.
There are two types of pages. The flow-related pages are located under "WEB-INF/flows/**".
And the non-flow pages are...
Type: Posts; User: Thomas Ziem; Keyword(s):
Hi together,
I have an application based on the booking-faces sample.
There are two types of pages. The flow-related pages are located under "WEB-INF/flows/**".
And the non-flow pages are...
Hi Mark,
you are right. I can use an outbound channel adapter to control my object.
Thanks,
Thomas
Hi,
is it possible to use the Control Bus without dependencies on Spring?
~Thomas
Hi,
I opend the following issue: SPR-7908 one month ago, but nothing happened so far.
Can someone please take a look at it?
It would be nice if it can be fixed in version 3.0.6 (next week).
...
Hi,
how can I configure the following dependencies with Spring?
Queue<String> queue = new ArrayBlockingQueue<String>(10);
Alpha alpha = new Alpha(queue);
Beta beta = new Beta(queue);...
Sorry, this was the wrong forum.
Hi,
how can I configure the following dependencies with Spring?
Queue<String> queue = new ArrayBlockingQueue<String>(10);
Alpha alpha = new Alpha(queue);
Beta beta = new Beta(queue);...
Oleg,
here is my simplified configuration:
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns:beans="http://www.springframework.org/schema/beans"
...
It seems that scoping doesn't work well with SI. I've configured a bean for an inbound channel adapter with scope="session". If you have more than one thread running in your pipe (e.g. if you are...
Hi Oleg,
I'll take a look at custom scoping.
Assuming it can be solved, the state machine will call a callback function for new events. These events should be send to a channel for further...
I'm using the state machine implementation from apache commons (http://commons.apache.org/scxml/).
The state will be managed by the instance of the state machine.
Hi Oleg,
Let me try to describe my use case more in detail (I made some simplifications).
HTTP client sends an init request (HTTP PUT) to server (URI parameters: instance id, payload: xml)...
Hi,
I need help to verify the usage of SI for the following scenario:
I have a service component (interface), whose implementation consists of several sub components like endpoints, routers,...
I'm using the following snapshot repository:
<repository>
<id>repository.springframework.maven.snapshot</id>
<name>Spring Framework Maven Snapshot Repository</name>
...
What is the latest snapshot? I just can see "3.0.5.RELEASE" but no "3.0.6.BUILD-SNAPSHOT".
Hi,
I've seen a fixed issue in spring-web (SPR-7869). The fixed versions are "3.0.6" and "3.1 M1".
Where can I find version 3.0.6 in a maven repository?
~Thomas
I've opened a JIRA issue: https://jira.springframework.org/browse/INT-1757
Oleg,
I mean if a message with a payload other than HttpStatus the status code is always 200.
I want to return a 201 AND a content body (e.g. xml).
~Thomas
Hi Oleg,
yes, if a payload of the message contains a HttpStatus object then the status will be propagated. But otherwise the status is always "200 OK".
~Thomas
Oleg, I saw the resolved issues INT-1753 and INT-1754. Thank you for that!
Sorry, but I have an additional requirement:
I have an incoming POST request which should be answered with status code...
Hi Oleg,
I can't find in HttpRequestHandlingEndpointSupport where the status code of ServletServerHttpResponse will be set.
Currently, the status code is not part of the message headers but in...
Thanks Oleg & Neil,
The outbound request returns with no content just with a response code (204).
The inbound gateway throws an exception:
org.springframework.integration.MessagingException:...
Hi,
I want to connect a HTTP inbound gateway with a HTTP outbound gateway as follows:
client -> inbound gateway -> outbound gateway -> server
The HTTP POST request will be transfered to the...
OK. Are there SI resources who can handle this (maybe something like a MessageStore)?
You mentioned in a comment of INT-852 that you are working on part 2 of your loan broker sample. Are there any...
Hi Oleg,
here the use case:
A client makes a HTTP POST request to the server. At server-side there is a HTTP inbound gateway, which creates a message from the request payload and sends the...