I'm attempting to get JSF 2.1 and SWF 2.3 working together (deploying on GlassFish 3.1.1) and have made a lot of strides, thanks in part to your suggestion about the JSF 2.1 fix above.
However,...
Type: Posts; User: enricopulatzo; Keyword(s):
I'm attempting to get JSF 2.1 and SWF 2.3 working together (deploying on GlassFish 3.1.1) and have made a lot of strides, thanks in part to your suggestion about the JSF 2.1 fix above.
However,...
Over the past few weeks I've been working on a project that takes advantage of Java 1.5's parameterized interfaces. This post will hopefully help someone else from running into the same issue that I...
I use a similar approach in some of my projects. Sometimes one simply cannot inject everything via autowired (for example, String properties are not easily dealt with).
why not use a taglib using JSP?
Here's a tag defined (in a file called node.tag under the folder "WEB-INF/tags/foo"):
<%@ tag %>
<div class="node">
</div>
Well, there may be an auto-proxy involved, but I don't have to specifically include any extra code/config in order to get my @Resource autowired.
Here's the XML context:
<beans … >
<util:map...
I'll assume that you're using <context:component-scan ... /> to instantiate your bean, right?
I've had good luck with autowiring via @Resource annotations for some datatypes that aren't working...
Hi debo, what I did was to use the convention adopted by WebFlow: create a plain class whose name is <modelName>Validator and then I was free to use the ValidatorUtils to actually enable...
After more digging I've decided the issue has to do with this class: WebFlowMessageCodesResolver (which implements MessageCodesResolver).
As I was using 2.0.6 of web flow I was behind a release.
...
I'm in the process of updating a web application formerly using just Spring MVC to using Web Flow. For the most part things have gone swimmingly (it's a very straightforward application).
One...
It turned out that the sysadmin needed to add the javax.activation and javax.mail jars to the front of my application server's classpath. The OS package manager (yum in this case) would not allow us...
Hello forum, I hope this message finds you well.
I've got a Spring MVC web application running on an IBM PowerPC server using GNU's implementation of javax.mail. I'm developing the application on...
I continue to make myself look foolish on this forum :-/
My issue is fixed in that I have to leave the securementPassword to be null when using PasswordNone.
I've got a system that will be using an X.509 certificate for message-level signing, and our provider server (i.e. the service being requested) will then take the signed message and extract the...
Well, my face is red. It turns out that I was filtering the keystore file that was in my src/test/resources in my Maven build. Perhaps maven doesn't filter binary files on the Mac but my issue was...
Well, removing all other JDKs and JREs from my system didn't improve things.
I have tracked the issue down though!
After downloading wss4j-1.5.4 and attaching its sources to the jar in Eclipse...
Still suffering from this error on Windows, but I have an interesting tidbit to share.
Last night I remotely connected to my work PC and grabbed a copy of the code that is giving me errors. After...
Hello forum!
I'm attempting to create a web service client using Spring WS that signs outgoing requests with a X.509 certificate. I searched through the forums and found many helpful posts for...
Thank you very much. I figured this out yesterday afternoon but forgot to post back to the forum regarding my solution. Hours of sifting through Spring WS source code and a few lucky hits on Google...
After using TCPMon to proxy the request the HTTP Header for content-type looks like this: "Content-type: text/xml". Note the lack of charset being added.
Of course the server SHOULD just use a...
Hi everyone, may your weeks be going well.
At my workplace I'm trying to consume a web service hosted on a CICS Transaction Server mainframe. Everything was going well until a recent system patch...
I know this message was a bit ago, but I was curious if you could be more specific as to what aspect of the activation library was causing the issue?
Thank you very much for the work you've done here. Given the error message I wasted half of a day looking for dependency issues thinking that somehow my client didn't have the right version of...
I have created this as an issue in JIRA as you asked: http://opensource.atlassian.com/projects/spring/browse/SWS-180
Hi, I'm quite new to Spring and especially Spring WS (but who isn't really there?) but really like what I see so far.
Having worked a few MVC applications in Spring so far I have started looking...