Hi,
I am working on a Spring mvc portlet project and i am not using annotation validation logic. I guess this question also is applicable for Spring MVC projects.
I am performing a manual...
Type: Posts; User: srikondoji; Keyword(s):
Hi,
I am working on a Spring mvc portlet project and i am not using annotation validation logic. I guess this question also is applicable for Spring MVC projects.
I am performing a manual...
just bumping up the thread to see, if anybody has an answer.
Thanks
sri
Hi,
Given a java bean def like below
public class MyBean {
private String name;
private String age;
private Address address
}
Still looking for an answer or suggestion.
I have written and registered a formatter to format 'firstname lastname' string to Name object. This works fine, however my formatter is not called when i enter a empty string in the name field. So i...
After applying one-way hash with SHA-256 alg, i did apply Base64 encoding. Base 64 encoding does use slash as one of the character.
AS a temporary solution, i am using old url style with...
Hi,
I am using Restful controllers. One of the controller is of the work
/activate/${activationCode}
I am using SHA-256 encoding of email id as my activationCode. Often this encoded code as...
Thank you Gary. I was using lte rather than le
--sri
Hi pompeii,
Thanks for the pointer. gt and lt are working fine now, but i tried 'lte' for Less Than or Equal to functionality and it looks like it doesn't recognize 'lte'. Is there anyway i can get...
<int:chain id="leadRetryChain" input-channel="leadExportRetryRequestChannel">
<int:header-enricher>
<int:header name="LeadSource" value="RetryQueue"/>
...
Following is the list of framework pieces and their versions.
The code i am using is as follows
I am bombarding the queue with many messages anywhere between 5 and 100 and it hangs.
The...
Thanks for the suggestion. This is what is working for me after making changes as per your suggestion.
I am assuming that the underlying httpClient and its connection pool will appropriately...
I am using Springframework 3.0.5.RELEASE and Spring Integration 2.0.5.RELEASE.
I am actually using http outbound gateway as following.
<int-http:outbound-gateway ...
It looks like a Flex client issue.
I have described the problem on adobe forums and hope to get an answer.
More description at the following url
http://forums.adobe.com/thread/880356?tstart=0
I have my Cookies disabled.
My setup includes 2 Tomcat servers running on my windows box.
On one instance i have simple web app that loads my swf file. This App uses RemoteObjects to communicate...
Ah, got the answer. From what i understand from other blog post is that SitePreference will reflect Device by default. I was under the impression that SitePreference will be set to NORMAL by default....
Finally i was able to get this thing right. Now my controllers are getting these arguments correctly. However, what i would like to know from other members who are developing mobile applications...
I am using following software and their versions. Can anyone suggest what is wrong with my configuration?
Pom config for javaagent.
<plugin>
...
I extended this class ExceptionMappingAuthenticationFailureHandler to implemenet maxFailedLogin attempts feature and also to catch several exceptions and redirect them to appropriate controllers.
...
Here is what i did to not use invalid-session-url of Session-Management namespace.
Implemented HandlerInterceptorAdapter and registered with DispatcherServlet.
public boolean...
Thanks for the tip and also the answer.
In that case, i will have to tweak HandlerInterceptorAdapter to achieve this and ignore 'invalid-session-url' of SessionManagementFilter.
In any case, i have another thing to clarify.
When...
Luke: Thanks for quick and timely response. It looks like i have to upgrade to Maintainenece release for delete cookies feature on logout. I think i can hold on to present release version until the...
Here is what am using
<properties>
<org.springframework.version>3.0.5.RELEASE</org.springframework.version>
<org.slf4j.version>1.5.10</org.slf4j.version>
...
Best option would be to have your own version of SavedRequestAwareAuthenticationSuccessHandler filter.
Pass whatever request parameters from login form and make decision to where to redirect in...