http://www.nabble.com/CXF-%2B-ACEGI-security---full-example-tf4583091.html#a13082575 ? I would google Axis and ACEGI, CXF and ACEGI, for possibly more links.
Type: Posts; User: gmazza; Keyword(s):
http://www.nabble.com/CXF-%2B-ACEGI-security---full-example-tf4583091.html#a13082575 ? I would google Axis and ACEGI, CXF and ACEGI, for possibly more links.
Your desired change (pre-setting a last name) doesn't look like referenceData to me. Reference data is prepopulated values of combo boxes, for example, lists of countries, states, etc.
It looks...
"/*" is the default mapping, everything goes to it if no other matches are found. I have not tested this, but perhaps this might work:
<prop key="/callback*">callbackController</prop>
<prop...
If you download my "warthog" app[1] (http://warthog.googlecode.com), there is a working sample of a login screen you might be able to leverage (no guarantees of course to its suitability for your...
I haven't done that before, but would using the commandName[1] attribute help you?
[1] http://tinyurl.com/3ypzuo
One of the Spring books for Spring 2.0 (APress "Pro Spring" perhaps?) had recommended XML configuration where values were likely to change frequently, but java class configuration where the values...
No; but I would look at the Yahoo! shopping, eBay Developer, and PayPal developer sites; they may have something.
This is somewhat strange, the APress SpringMVC book says it should be named "_flowExecutionId" (not _key) but perhaps that's a book error. Worst-case scenario, I would hack the Spring source and put...
I would look at:
1.) http://static.springframework.org/spring/docs/1.2.x/reference/mvc.html, Section 13.5.3
2.) Spring Web Flow: http://www.ervacon.com/products/swf/tips/tip4.html
3.)...
Comment #6 of my web service notes here might help you:
http://www.jroller.com/gmazza/date/20071102#NWSNotes
It might be more helpful if you give a sample of what you're looking for; your question seems too vague.
Are you certain you need to set sessionForm to TRUE anyway? That is for when the command object needs to be the same for both the initial view and submission of the form--but I think you can preset...
I am not sure. I think you need to redirect to a controller (use RedirectView in OnSubmit() of your search) instead of directly going to the successView jsp page. To set custom editors, you must be...
Valang is just a one-for-one XML replacement of a Validator-interface implementing Java class, it will not solve the underlying problem of the validation infrastructure that Javaxmlsoapdev needs. It...
Vinnyboy, I'm unsure, but I think the JSTL fmt tag will do fine for you in formatting numbers and dates.
Glen
Because I had a similar incomprehensible problem with Oracle App Server[1]; my webapp worked fine on Tomcat but OAS was giving cryptic error messages. The only way I could determine the problem was...
You may need to look at some working examples to get your confidence back up with Spring, and then go back to get your code working. I would check the /samples directory of Spring.
Sing Li has a...
I'm not sure--this really *does* appear to be a Flex question. You want to keep server side validations in business layer. OK. So your business layer is going to throw Java exceptions should...
If your app server has classloader logging, that may also indicate the problem for you--some library may not be loading because another JAR is missing perhaps.
Glen
This may actually be a Flex question. If you're not using Spring MVC you won't want to use its validation mechanism--best to keep the server-side validation then in your business objects, returning...
http://forum.springframework.org/showpost.php?p=85872&postcount=3
Glen
You may wish to submit your suggestion to APress (Wrox already has something that you are mentioning.) I did not have much problem with that book myself. In the samples/ directory of the Spring...
JSTL <fmt:formatNumber>?
http://java.sun.com/products/jsp/jstl/1.1/docs/tlddocs/fmt/formatNumber.html
Glen
Why do you need a custom editor for referenceData() -- I believe rD() is just for static model data that will go to your view (for example, a list of countries or states for drop-down picklists in...
Does your QueryArguments class (POJO) have appropriate getters for patientID?
Make sure you're not making a patientID/patientId error, those are tricky--Spring treats them differently. As a...