Our Spring version is 2.0.7 and Quartz is 1.6
We are using SchedulerFactoryBean to schedule and fire Quartz jobs from within our Spring-based web application deployed in WebSphere 6.1. At times,...
Type: Posts; User: seemamani; Keyword(s):
Our Spring version is 2.0.7 and Quartz is 1.6
We are using SchedulerFactoryBean to schedule and fire Quartz jobs from within our Spring-based web application deployed in WebSphere 6.1. At times,...
Acegi documentation says "Acegi Security integrates with Spring's EHCACHE factory. This flexibility means your database (or other authentication repository) is not repeatedly queried for...
I did try adding Acegi's channel security filters, but it didn't make any difference in the application. Can someone please let me know if I am missing anything here.
Thanks,
Seema
hi,
We use Acegi for authentication and authorization in our web application. Now the requirement is to use https as the transport protocol. I have added the following to web.xml for that.
...
ok so you are saying that the StdScheduler of Quartz that is injected by Spring is thread safe. So making the SchedulerFactory bean a singleton does not matter. Right?
Thanks,
Seema
hi all,
I have configured the SchedulerFactoryBean to get the Scheduler reference in my service class. I'm using the Scheduler object to add jobs, modify triggers, get jobs etc. The jobs are also...
It is working now, I changed the method call to JMSTemplate.execute(SessionCallback, true) instead. This is the method that should be used when we also need to receive.
public void...
I tried to use the following code in the execute() method of JMSTemplate class to send a message and receive its reply. It is sending the message, but not receiving the reply. I think it is because...
Yes, thats right. I don't want the context to be passed to a business method as argument. The context should get passed implicitly.
hi,
We have multiple wars in the presentation tier communicating with the same business engine on a remote machine. The business APIs are exposed as stateless session beans. I need to pass an...
hi,
I have an application consisting of JSF in the presentation layer, Spring beans exposed as EJB services in the business layer and Hibernate in the data layer. Which is the right place to load...
Thanks, Arjen
I added this to my file and had to put two more jar files in my path - appserv-rt.jar and saaj-impl.jar.
Now it works fine. Please do add this information in the faq for the benefit...
I'm not sure what you mean by the message sender bean? Can you elaborate on which bean's settings I need to modify?
Thanks,
Seema
Why do you say that the problem is at the client end? The response from the server has junk characters, right? Morover, I tried with other clients as well. Anyway, I will try what you suggested.
...
hi Arjen,
I have downloaded RC2 and replaced my files, but the result is the same. Here is the SOAP request that is sent from the client.
POST /EchoServer HTTP/1.1
Accept-Encoding: gzip...
I used tcpmon to capture the messages, like you suggested. This is the message getting sent from the echo client.
POST /EchoServer HTTP/1.1
Accept-Encoding: gzip
Accept: text/xml, text/html,...
Thanks, Arjen. As mentioned in that post, I tried to add this section to my spring -ws-servlet.xml.
<bean id="messageFactory"...
hi,
I new to Spring WS. I have deployed the Echo sample in JBoss and am able to communicate with it from my client. However the soap response from the web service is missing the text content...