Thanks for the information--I see it now that I need to have something to identify the request in the wsdl and in Spring WS. I appreciate the detailed explanation and the link.
Scott
Type: Posts; User: jackett_dad; Keyword(s):
Thanks for the information--I see it now that I need to have something to identify the request in the wsdl and in Spring WS. I appreciate the detailed explanation and the link.
Scott
I found a post online discussing generic WSDL mapping, and it is recommended to always have a request object, even for no-argument calls. I'm going with that.
How does Spring WS WebServiceTemplate handle web services having no arguments? I'm thinking that the template requires a unique instance of a request object to handle the mapping, but what if the...
I've investigated some more and found that my LSProfileActivator class could be implemented as a ApplicationContextInitializer. This is good, but for the life of me I can't find any way to pass it...
I've written a class that chooses which spring profile to activate based upon externally provided criteria. I define the bean that does this in xml configuration, and want to have that choose the...
I didn't realize that I could use JMS with Websphere MQ--I thought there would be a vendor-specific messaging api with it. Very interesting, and hopeful. Thanks.
I am at a company that uses IBM Websphere MQ. I would like to use spring integration with amqp like I presently do with RabbitMQ. In fact, most anything done with new development I would choose the...
As a follow up, I didn't pull the new samples since I have made some minor changes, such as adding an error logger. But I integrated Gunnar's changes and it works perfectly. This was a good...
It was before the fix was put in. I'll pull and try again. I have to remember to check the open issues as well as the forums before posting here. Thanks for trying it out. Reading the text of the...
I was able to get it to work by injecting the transformer as I mentioned I would try. The transformer is basic:
public class ByteArrayToJsonTransformer extends AbstractTransformer {
...
I've pulled the source for the latest spring integration examples and am having trouble with the last of four steps. The demo creates 100 drink orders and puts them onto a RabbitMQ queue. I can see...
Is it possible to have Spring reload the beans from a particular profile?
The requirement is this: I have to provide a gui panel that allows users in the system to change security settings. ...
Thanks for the reply--been on vacation.
I found the documentation hard to understand, but I did finally get something working, and with a custom FORM_LOGIN_FILTER as you've posted above. I...
The situation I have is that we have internal roles to our web application that are too generic to publish externally, and we are stubbing out to allow administrators to use LDAP to define users and...
Thanks for the reply, Rob. I'll take a look at Spring Profiles then.
I'm just looking into using spring-security for securing web pages, and we already use tomcat security. The requirement so far, unless it proves to be too difficult, is to used tomcat security...
Thanks for the feedback on the implementation. I was worried about old channels too, so I could implement some sort of stale channel checker. I was thinking I needed to implement some form of...
At long last I have something that is working. This last hurdle was a big one, but I actually am getting a reply from my gateway, all without having to hack into Spring or any such nonsense. It...
Sounds like there is a viable workaround--phew! I can step back from the ledge now.
I'll implemented this in the morning and give feedback. Thanks!
Scott
Just to let you know, I absolutely need to have a workaround on this. I've been banking on Spring Integration for going on six months, and I've almost got a solution implemented. But this business...
First, thanks for both replies. I thought I was going crazy so it's a relief to know there is a reason.
I'll take the source code in GitHub in case all other options are exhausted. But this is...
I'm knocking on the door of a round-trip message, but my gateway is not configured correctly to make it happen.
<int:channel id="cartridgeservice-reply-channel">
<int:dispatcher...
I appreciate both replies and the explanation. It was definitely a misunderstanding on my part. I was thinking that the activator could have multiple methods much the same as the gateway. My idea...
The problem appears to be in the class MethodMethodInvokerHelper (integration core, 2.1.0.RELEASE). I'm so baffled by this that it must be a misunderstanding on my part. It seems that methods in a...
I've found that I need to have two gateways. The first represents the non-messaging contract, the second, the messaging contract. I'm generating service activators to handle asynchronous returns,...