Hello - Has anyone else figured out how to improve the prototype bean instantiation performance? I profiled an application that uses prototype beans and the sycnhronize call in the following method...
Type: Posts; User: cwolfinger; Keyword(s):
Hello - Has anyone else figured out how to improve the prototype bean instantiation performance? I profiled an application that uses prototype beans and the sycnhronize call in the following method...
By building a bundle from the XWS-Security 2.0. FCS jar.
Hello - I am trying to get spring web services working within my OSGI env. I am running in eclipse and I am getting the following missing constraint for the org.springframework.ws.soap.security:
...
I have the need to use a custom event multicaster in my application. I configured a new bean in the spring/extender application context.xml called applicationEventMulticaster that uses my custom...
I am using 1.6.
It turns out that I had two bundles for apache commons loaded up (one from Spring / one from Eclipse). If you are running inside of JBoss AS you get that specific error I listed before, but in...
Hi - I am trying to run Spring Dynamic modules within Jboss 5 AS. I am using the servlet bridge from Eclipse to bridge the two environments. I have been able to run this successfully within a...
Hello - Is anyone else seeing this error with the Spring DM 1.2 release:
Class 'org.springframework.osgi.config.OsgiServiceLifecycleListenerAdapter' not found bundle-configuration-osgi.xml
...
The restart occurs if the fragment that contains the log4j.properties is refreshed. Note: I am running in a standard Equinox runtime right now.
Does anyone know how to configure log4j so that it does not cause a complete restart of all bundles that use log4j when the fragment with the configuration changes? For example, if you want to...
No. I setup a quartz scheduler to spawn off a job at a specific intervals. The jobs are invoking code which eventually encounters a bean with a scope of "request". That is when I receive the...
Is it possible to define a bean that is a request scope that is invoked by a Quartz job. When a request bean is encountered in the quartz job thread I get the following error:
Error creating...
The issue was that a method on ClassA was invoking the processMessage method directly on itself. When I invoked the method from another class that was using the interface it worked correctly.
I have a situation where I have two beans defined which are of the same implementation class (ClassA) and implement the same interface (in this case InterfaceA):
<bean id="beanA"...
Hello - I am trying to determine the best way to hookup web services ontop of an existing spring application. Spring Web Services seems very straightforward, but Spring 2.5 supports JAX-WS for web...
I have a Dao class that needs to store the user ID as audit information when processing a request. It is not clear to me how I would be able to retrieve the user ID that was passed into web service...