Search:

Type: Posts; User: polosatiy; Keyword(s):

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Thanks. It looks good.

    Thanks.

    It looks good.
  2. Hello! Is "mybatis-spring-1.0.0.jar" deployed?...

    Hello!

    Is "mybatis-spring-1.0.0.jar" deployed? What is it status?

    Could you provide yours bundle manifest and manifest from mybatis-spring-1.0.0.jar?
  3. Replies
    1
    Views
    1,618

    Hello. Yes, it's possible, but you must...

    Hello.



    Yes, it's possible, but you must use one of OSGi frameworks (Felix, Equinox, Knopplerfish) to get it work.
    Only one J2EE AS can deploy bindles - Glassfish.



    It's very important...
  4. Hello! Let me join to your question. I had the...

    Hello!

    Let me join to your question. I had the similar problem, but with JMS transport.
    I have jms topics and queues and I have a broker. I use spring jms support to simplify development and it...
  5. Replies
    3
    Views
    2,152

    No, I use Jetty instead of Tomcat, but it's very...

    No, I use Jetty instead of Tomcat, but it's very simple to switch between them.

    Also, I didn't use plain OSGi implementation with spring. I use Karaf. It has a lot of useful things and web support...
  6. Replies
    1
    Views
    1,739

    Maybe org.osgi.framework.ServiceFactory...

    Maybe org.osgi.framework.ServiceFactory?
  7. Hi! Try to change

    Hi!

    Try to change

    <osgi:service id="userSessionService" ref="userSessionBean"
    interface="de.idarewest.backend.service.transaction.IUserSessionLifecycle" />

    to
  8. I didn't work with FUSE ESB 4, but I have an...

    I didn't work with FUSE ESB 4, but I have an idea.
    OSGi framework usually have a framework properties folder. And usually it's folder called "etc".
    To check it, just put in "etc" folder any file...
  9. Hello! Could you show the full stacktrace when...

    Hello!

    Could you show the full stacktrace when you have got IllegalArgumentException?
  10. Replies
    2
    Views
    1,808

    I think you can use: 1. BundleContext to get...

    I think you can use:

    1. BundleContext to get service manually.

    2. Use Service registration and unregistration listener
    see (7.1.7. Service Registration And Unregistration Lifecycle)

    Try to...
  11. Replies
    3
    Views
    2,152

    I had an application with > 100 users in the...

    I had an application with > 100 users in the simplest scenario. But it's not the users like human. Mostly, users are defferent applications. I don't see any problems with performance.

    About the...
  12. Spring DM doesn't use BundleActivator at all. It...

    Spring DM doesn't use BundleActivator at all. It scans "META-INF/spring" folder or "Spring-Context" attribute in bundle manifest.

    So, if you need to use BundleActivator, you can use it in common...
  13. Replies
    1
    Views
    908

    Hello. Post the list of deployed bundles and...

    Hello.
    Post the list of deployed bundles and manifest of your bundle here.
  14. Replies
    13
    Views
    3,230

    I think It's a bug and I've posted a bug to...

    I think It's a bug and I've posted a bug to tracker
    https://jira.springsource.org/browse/OSGI-818

    If you need to use a file, I can suggest you to copy InputSteam from URL to a temp file like...
  15. Replies
    2
    Views
    1,326

    Show the list of deployed bundles.

    Show the list of deployed bundles.
  16. Yes, you could do this. Just make your bundle...

    Yes, you could do this.

    Just make your bundle with contextA.xml as a fragment bundle. Fragment bundle attaches to parent bundle Classloader so yours <import resource="classpath*:contextA.xml"/>...
  17. Replies
    13
    Views
    3,230

    I've just checked "getFile()" method and I've...

    I've just checked "getFile()" method and I've found an error.

    The problem with this line:


    ResourceUtils.getFile(getURI(), getDescription());

    URI starts from "bundle", but ResourceUtils...
  18. Replies
    13
    Views
    3,230

    I use URL. URL url = settings.getURL();...

    I use URL.



    URL url = settings.getURL();
    url.openStream();


    Can you post debug information about databaseFile? What is it value? It seems that OsgiResourceUtils#getSearchType method...
  19. Replies
    2
    Views
    1,110

    Yes, you could attach...

    Yes, you could attach OsgiBundleApplicationContextListener in you bundle activator, which gets an event about your context state.

    Or you could implement BundleContextAware interface in your bean...
  20. Show your final manifest file and maven message...

    Show your final manifest file and maven message about "not resolving dependencies in import-package"
  21. Replies
    9
    Views
    2,510

    What version of Spring are you using? Show the...

    What version of Spring are you using?

    Show the list of bundles, which are deployed in your app.
  22. Replies
    13
    Views
    3,230

    Does your bundle contains "repo/test.db4o" in jar...

    Does your bundle contains "repo/test.db4o" in jar file?

    That's very strange behavior. Here is my example:



    <bean id="settingsBean" class="ru.test.MyBean">
    <property name="settings"...
  23. Replies
    13
    Views
    3,230

    Show manifest of your bundle.

    Show manifest of your bundle.
  24. Replies
    13
    Views
    3,230

    Try to write:

    Try to write:
    <property name="databaseFile" value="classpath:repo/test.db4o" />
  25. Replies
    5
    Views
    1,045

    Can you post the felix log? It seems that you...

    Can you post the felix log?

    It seems that you have wrong MANIFEST in your bundle.
    Try to add in your manifest:
    Import-Package: org.springframework.beans;version="3.0"
Results 1 to 25 of 28
Page 1 of 2 1 2