Hello,
here's my workflow so far. The filter returns false when the exception thrown is an UnknownHostException, but the transformer doesn't work at all.
By the way, how do you debug a...
Type: Posts; User: Philroc; Keyword(s):
Hello,
here's my workflow so far. The filter returns false when the exception thrown is an UnknownHostException, but the transformer doesn't work at all.
By the way, how do you debug a...
Hi,
here's how I have rewritten my context.xml file further to you response:
...
<int-ftp:inbound-channel-adapter id="ftpInbound"
channel="ftpChannel" ...
Hello,
how do you create a timeout for an int-ftp:inbound-channel-adapter?
For instance, let's say the FTP address used the following adapter is invalid (because someone typed it wrong.) As a...
Thanks for your reply.
I am aware of the fact that security is handled by Spring Security.
I just wondered if you could create some kind of nifty authentication filter in Integration, which you...
Hi Cleric,
I am familiar with Request Mapping and Controllers as I have developed a few Spring MVC applications before.
In MVC, you can specify whether @RequestParams are optional or not. In...
Hello,
is there a way to trigger basic or other types of authentication when users call an inbound-gateway?
I only want authenticated users to be able to submit their e-mails and...
Hello,
I have created the following inbound-gateway
which lets users store e-mails and numbers in the application, eg, http:mysite.com/email/myemail@iht.com/number/123
When users forget...
Here's my web.xml file.
My web.xml contained this
instead of
Hello,
I am having problems with the http:inbound-gateway path parameter.
First or all, only paths containing document names with an .html extension work. For instance,
works fine.
It worked!
Many thanks.
Hi,
I have create an http:inbound-gateway whose GatewayHandler code is as follows:
When I watch my network with TCPDUMP, the server returns the following:
I found this page: http://static.springsource.org/spring-integration/reference/htmlsingle/#jpa-inbound-channel-adapter
Thread closed.
Hello,
the Pro Spring Integration book mentions a JDBC Inbound Channel Adapter.
Is there a JPA2 Inbound Channel Adapter? I prefer not to use native database SQL.
Many thanks.
Philroc
I meant an inbound gateway.
Let me explain my problem better.
I have set up a Spring Integration with an inbound gateway, a channel, and a service activator:
When a user sends a ticket...
Hello,
I have implemented the Ticket example in chapter 14 of the Pro Spring Integration Book published by Apress (see output below), and wonder how I can return HTTP error codes (200, 401,...
I found the solution in one of the forums:
@InitBinder
public void initBinder(WebDataBinder binder) {
SimpleDateFormat dateFormat = New SimpleDateFormat("dd/MM/yyyy");
...
Hello,
is there a way to format a date displayed by <form:input path="issueDate"/>?
At runtime, this tag displays the issue date as YYYY-MM-DD, which is not particularly user-friendly. I would...
Hello,
I would like to retrieve emails from a MS Exchange Server, via Exchange Web Services, using Spring Integration, after authenticating.
Here's my (very rough) app-context.xml file. Does it...
HI Cleric,
thanks for your reply.
Here's my spring-integration-context.xml file so far:
What should I put in the securityPolicy.xml file?
Hello,
I am currently trying to connect to Entreprise Web Services on a secure MS Echange Server using a Spring Integration WS Outbound Gateway.
How do you do NTLM authentication in Spring WS?...
Thanks for your reply, Artem.
I have followed the instructions in the following article
http://stackoverflow.com/questions/7744075/how-to-connect-via-https-using-jsoup)
to retrieve a...
Hello,
is there a way in Spring Integration to make a SOAP request, say, on a MS Exchange Server (eg, https://mymailserver.com/ews), and do basic authentication by sending it a user name and...
Hello,
I have written the following ws:outbound-gateway, which connects to
www.w3schools.com/webservices/tempconvert.asmx and converts Celsius degrees to Fahrenheit,
as a learning exercise:
...
Hi,
I wonder if anyone has ever written a Spring Integration application that is event-driven by MS Exchange? If so, how do you make MS Exchange send a message to it, when, for instance, e-mails...