Thanks Martin,
I solved the issue and posted the updated POM to the original SMX thread I referenced above.
Cheers,
Yogesh
Type: Posts; User: ychawla; Keyword(s):
Thanks Martin,
I solved the issue and posted the updated POM to the original SMX thread I referenced above.
Cheers,
Yogesh
Hi,
I am having the same issues that you are. Adding ooxml to the POM file causes multiple import issues and when I resolve one, it creates another and then circles back around. More details on...
Here is the solution.
When hashing do this:
bobspassword{test}
The actual password precedes the salt which is in curly braces. Also tell your users not to use any curlys in their password...
Well I tried to simplify it with no luck. Rather than use a property, I tried to apply a system wide salt like this:
<authentication-provider>
<password-encoder hash="sha">
...
Hello All,
I am using Spring Security 2 to do form based authentication on a simple web app. First off, Spring Security 2 configuration is greatly simplified as compared to Acegi. Nice job all.
...
Hi Gang,
I found this link online from Matt Raible:
http://raibledesigns.com/page/rd?entry=logout_your_users_automatically_after
Is this a suitable solution or is their a more Acegi/Springlike...
Hello All,
We currently use Acegi/Spring in our java app. The user can manually log out by clicking the logout button; we then invalidate the session and they are good to go.
The question I have...
Hello All,
I want to run a quartz job every 15 minutes from 9 to 6 and then once an hour from 6 to 9. Is this possible to configure. Is there a way to configure this in the simpleTriggerBean?...
Hi,
I had the same issue you did and I tried a config. like this example using MethodInvokingJobDetailFactoryBean :
<bean id="wijisPollerPointerUpload"...
Hi Gang,
I am using a product named JNotify. It adds a directory watch for File creation, deletion, renaming system events. What I have done is created multiple beans that watch different...
Hello All,
I would like to create a bean pool to handle concurrent requests. Here is my business case.
I am using JNotify to pick up files that are dropped in a directory which then quick off a...
Hi,
Thanks for the tip. I succesfully implemented scheduling a Spring Bean w/ quartz using that technique.
-Yogesh
Hello Injecteer,
You wrote:
"Anyway, I would use the jobDataAsMap prop to wire-up all needed collaborators, just provide appropriate setters in you class. The only limitation here is that you...
Hello All,
I did complete a simple J-unit test which generates stubs from WSDLs:
import junit.framework.TestCase;
import org.codehaus.xfire.gen.Wsdl11Generator;
public class...
Hello All,
I am working on a project that already has WSDL and XML schemas designed. I have written the business logic for these services as spring beans and I am looking to turn these beans into...
Hello,
The delete method is actually from the Spring hibernate template and it expects an object. Any other ideas...?
Thanks for the help.
-Yogesh
Hello All,
We have been using spring 2 with hibernate 3 and when we try to delete an object we get this error:
Unknown entity: gov.wisconsin.wijis.gateway.PersonActivityHeader; nested exception...
Hello,
I am trying to do the same thing. I have a spring application running and an Axis2 servlet running with my web services. I would like to call beans in my spring application from the Axis2...
Looks like c3p0 is working so far... We haven't seen that error again. The one slight bit of annoyance is that all the properties had to be configured in the datasource bean rather than using a...
Well... it seems that I was not actually using c3p0... it was using apache dbcp. Here is an upated configuration file snippet using c3p0. I will try this and let you all know if it solves the...
Here is a full stack trace in case anyone can take a look:
2006-07-05 17:37:48,005 WARN [org.hibernate.util.JDBCExceptionReporter] - SQL Error: 17002, SQLState: null
2006-07-05 17:37:48,005...
Hello All:
I am seeing the following error come up. We are using Spring 2.0 m4, hibernate 3.1, and Oracle 10g. I have not seen this on MySQL in our dev environment, but it seems to happen when we...
Hello All,
Here is a method we put together to write these files out to the temp directory. We have a HashMap of file handles and we write to them after examining the message and seeing if it is a...
Hello All,
We are using a message driven POJO to read a large file off of a JMS queue. It appears that activemq is splitting this large file into 64k messages when it gets sent over JMS. Is there...
Hi,
We saw the same error with spring m4 and activemq. It is a known issue and apparently the fix is a big one... We gave up on running it embedded and are hoping that the problem is fixed in...