I have solved the integration problem by implementing a delayer channel and using shared database. In case someone is interesed in the solution to the similar scenario, it's posted here.
When a...
Type: Posts; User: jane; Keyword(s):
I have solved the integration problem by implementing a delayer channel and using shared database. In case someone is interesed in the solution to the similar scenario, it's posted here.
When a...
Can a PollableChannel be used for the hand-shake? The depending server polls a PollableChannel to retrieve a message produced by the depended server when finishing its work. But can a PollableChannel...
We are designing an application for an integration scenario:
Get data by calling Webservices from a server every 10 minutes. Then process them to save them into database. The data can have up to 3...
It's solved.
Basically I used org.apache.activemq.ActiveMQConnectionFactory so configue a redeliveryPolicy for it. It defines initialRedeliveryDelay that can be set to 10 minutes.
Sorry it was not made clear.
The listener to process the messages in a jms queue is not down but a service the listener calls as a part of the process is down. When that happens the listener gets...
Can I use the Competing Consumers Pattern to solve the problem below?
I use DefaultMessageListenerContainer defines a listener to pick up messages in a queue and process them.
The issue I need...
I am new to Spring Security community. I need to know how to use Spring Security for Authorization without going through the Authentication.
That means we don't have a login page to take...
Using jdk1.6 I got error in running saaj 1.3 on Tomcat 6.
First of all, MessageFactory.newInstance() got IllegalArgumentException: com.sun.xml.internal.messaging.saaj.soap.LocalStrings !=...
Thanks a lot derekxlu.
Hi Derek,
I am trying to make dynamic input text work as dynamic check box. I have <form:input path="items[${status.index}].description}"/>. But I got error:
Invalid property...
Thanks Derek. Array makes no difference with List. The thing is strange - after I initialize the items to be true at creatSampleData it seemed working better. Some of the checkbox showed selected...
Hi,
I tried this example. However at MyCategory class I found all items of MyItem are with "false" for "selected" even one of the checkbox was selected. ?
Wondering if we should define items as...
Just want to make myself clear.
The existing WS server has binding style - "rpc" and encoding style - "http://schemas.xmlsoap.org/soap/encoding/".
Does the WS client have to use rpc binding...
Hello,
We plan to implement a Spring WS client to query an existing JAX-RPC based Web Services. I have read thru the Tutorial and tried the Echo sample.
I still have several questions:
The...
If you have same servlet mapping as web.xml included in Echo sample:
<servlet-mapping>
<servlet-name>spring-ws</servlet-name>
<url-pattern>/*</url-pattern>
...
Thanks Arjen. http://localhost:8080/echo/echo.wsdl does get the wsdl.
But why did I get "No WebServiceMessageFactory found in servlet 'spring-ws': using default" and "No EndpointAdapters found,...
Hi there,
I built Echo.war by mvn package and didn't get any error. The EchoEndpointTest showed no failure. Deployed it to Tomcat 5.0.28. When run it by http://localhost:8080/echo/index.html I got...