I'd like to know too!
Type: Posts; User: bob67; Keyword(s):
I'd like to know too!
Hi,
Does anyone know if there is a public repository that is hosting OSGi-ified versions of these jars? I've tried PAX wrap and it isn't going to work since spring-flex has a hard inclusion [4.0.0...
I'm looking at blazeds-common-4.0.0.14931.jar in the spring-external repo and I'm not seeing any OSGi metadata in the manifest. Am I looking in the wrong place for the OSGi-ified blazeds 4 jars?
...
Figured this out. This appears to be an issue with one of the repositories that I have configured in Nexus. The corrupt repository's priority is before Spring's repository and it seems to have a...
Hi,
I'm having some compilation errors due to Maven not being able to read the blazeds-common file.
[ERROR] COMPILATION ERROR :
[INFO]...
Figured it out.
Had to add: applicationContext.addNamespaceHandler(new ContextNamespaceHandler());
Figured it out. You need to add a namespacehandler for the messaging context
applicationContext.addNamespaceHandler(new MessagingNamespaceHandler());
Hi,
I have the standard code which loads an application context
trace("XmlApplicationContext is being loaded");
var applicationContext : XMLApplicationContext = new...
Hi,
I was wondering if there is a way to protect Spring AS configuration files like the application-context.xml and .properties files from being accessible via the web browser? I'd prefer not to...
Hi,
I have several services which I'd like to export as OSGi services. All of these services have @Scope("prototype").
When they are exported as OSGi services, is the prototype scope preserved?...
I found my own solution for this.
In my api module I create a new wrapper class called AdvisableDelegatingQueryProcessor which implements the same interface of the service I want to advise but is...
After changing the aspect to look at a method instead of the annotation, I was able to get AspectJAutoProxyCreator to run.
To answer some of my questions, it looks like AspectJAutoProxyCreator...
Hi,
I would like to advise an OSGi reference using an aspect with Spring AOP as the AOP implementation.
The OSGi reference which has an annotated method to be advised
<osgi:reference...
I seem to be experiencing some strange behavior with Spring OSGi testing that I can't seem to pinpoint.
I have a module which uses Xerces as it's JAXP impl for XML processing.
When I run...
It should be in the milestone repository -- add this repository to your POM:
http://repository.springsource.com/maven/bundles/milestone
Hi,
I'm trying to set the following property for use by my OSGi integration tests
org.osgi.framework.system.packages.extra=sun.io
I'm using the default Equinox OSGi environment during...
Thanks a lot for your help. I was looking for a method where you could override, just couldn't figure it out -- I will try getTestFrameworkBundlesNames.
I must not have caught that URL in the...
I'm trying to use spring-osgi-test v 1.2.0 and I'm unable to find the log4j.osgi-1.2.15-SNAPSHOT dependency.
I tried searching for it at http://www.springsource.com/repository/ and can't find it....
I will answer my own question in case other's have a similar issue.
The problem resulted from the fact that the client depends on the service module as a dependency. Therefore, I have a...
Hi,
I am having a strange issue that I can't seem to figure out. I have an OSGi service that requires a bean to be Autowired. When I call the service, the autowiring fails complaining that it...
Yep, looks to be back up. Sheeeeww!
I have been trying to connect to springide since last night, I am still not able to connect to it. How long is it going to be down?
I've tried dist.springframework.org/release/IDE but it points to...
I tried retrieving the collection I use to populate the drop down list (select) in the controller and find the label/text from there based on the value of the selected item but that didn't work...
Can you post a stack trace of your error?
Hi all,
I was wondering if it was possible to retrieve the selected text/itemLabel of a form:select tag in a controller? I know the 'path attribute' binds the selected value but I also need the...