Hi All,
I am looking out for a workflow engine to integrate with Grails.
I checked out the activiti grails plugin by installing their sample application. It does not seem to work and is buggy....
Type: Posts; User: venkatesh.s; Keyword(s):
Hi All,
I am looking out for a workflow engine to integrate with Grails.
I checked out the activiti grails plugin by installing their sample application. It does not seem to work and is buggy....
Make sure that the custom HttpServletRequest or HttpServletResponse that you have written extends the HttpServletRequestWrapper or HttpServletResponseWrapper accordingly.
Hi All,
I solved this problem. I made MyHttpServletRequest extend the HttpServletRequestWrapper.
Hope this may help others with the same problem.
Thanks
Venki
Hi All,
I tried a custom implementation and it works perfectly on tomcat. I have a severe problem on weblogic. I get this exception.
java.lang.ClassCastException:...
I did try exactly the same thing.
1) Custom implementation for HttpServletRequest
I kept all the behaviors same apart from the getSession() behaviour
2) Custom implementation for HttpSession...
Hi,
You can check this link on stackoverflow.
http://stackoverflow.com/questions/706224/javawhy-http-session-is-not-destroyed-when-tab-or-browser-is-closed
Thanks
Venki
Hi All,
I have a web application written with Spring MVC. The application is deployed on tomcat as of now.
I want to provide a custom implementation for HttpSession. The default HttpSession...
Thanks Peter,
1) All the form fields are predefined. Not subject to changes. If changes do come for fields, it will be mostly increasing the fields length ( related to validations ) or adding of...
Thanks,
But since there are 50 forms, doing the same for each form would be really tedious. So I was thinking of having a GUI generator framework which reads in a XML (which contains all the form...
Hi All,
I have to design an application in grails which has the following requirement.
I have around 50 feedback forms, each one unique from the other. I should be able to create, read, update...
Yes,
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.1.1</version>
</dependency>
The document does not say that we need to register any custom binder for MultipartFile.
"The third (and final) option is where one binds directly to a MultipartFile property declared on the (form...
Hi All,
I am working on uploading the image files in spring using the multipart file approach and i am not able to get through it successfully. I use CommonsMultipartResolver.
My POJO has these...
Hi All,
I am working on uploading the image files in spring using the multipart file approach and i am not able to get through it successfully. I use CommonsMultipartResolver.
My POJO has these...
Hi,
I had to write some custom code to extract the exact key.
Thanks
Venkatesh
Hi,
I am using 2.0.x version. Also i was able to resolve the issue on tomcat using a trick filter. On jetty also same is required.
Thanks
Venki
Hi All,
I have a web application built with spring framework. I have used spring security as my security framework. I have a requirement where i need certain pages to be insecure and few others...
Hi,
I was able to successfully write a job that reads a delimited flat file and persist the values to DB. I need to do the following now.
1) Add retry-restart capabilities to the job.
2) Add...
Hi,
I am using the org.springframework.batch.item.validator.SpringValidator along with org.springmodules.validation.valang.ValangValidator.
This is as shown in the spring batch tutorial of...
Thanks for the update. I'll go with some custom implementation now. :)
Thanks for the reply.
I'll give a shot at the composite readers. One thing I am a bit worried about is that since i have multiple readers and mappers, my code becomes a bit messy in terms of...
Thanks for the update.
Hi All,
I have a scenario for which i am not able to decide which ItemReader and ItemWriter to use.
My flat file is of the following format
1;abcd;xyz;abc;123
2;xyz;abcd;1234
Hi,
These were the changes I made to the script to make it run on Oracle schema. Also i found that a few columns are missing which i have added to the scripts.
1) Changed all BIGINT to INTEGER....
Hi,
I am using Spring Batch 1.1.2.RELEASE. I wanted to configure the meta data scripts for oracle database. I was going through the spring batch documentation.
But i observed that the meta data...