OSGI bundle starting problem Programming Software Development by GDICommander … import java.util.Properties; import org.osgi.framework.BundleActivator; import org.osgi.framework.BundleContext; import Example2.Service.IDictionaryService;…Export-Package: Example2.Service Import-Package: org.osgi.framework Here are the commands that I …\Études\U niversité\Automne 2010\IFT697 - Projet\OSGI\felix-framework-3.0.2\bin\felix.jar'… Re: OSGi with Felix step by step tutorial for net beans? Programming Software Development by peter_budo … need it stuff from [Apache Felix OSGi Tutorial](http://felix.apache.org/site/apache-felix-osgi-tutorial.html) PS: Binding your slef… OSGI with Android Programming Mobile Development by annttiigs Hi all, I want to activate an OSGI bundle and interact with it on android environment. But I am not sure of the design pattern that I need to use. Can you provide me the design perspective ( etc.. you need an interface, and eventhandler.... ). I don't need the [B]source code[/B]. I need the idea! OSGi Bundle with JAX-WS Programming Software Development by funwithme Hi, Please anyone help me to develop **OSGi bundle with JAX-WS** and how can I deploy it into **jboss eap 6**. If anyone provide me sample hello world example or any tutorial link that is also helpfull for me. Thanks. OSGi with Felix step by step tutorial for net beans? Programming Software Development by agca Any tutorial step by step yo provide modular application development and dynamic deployment for Net Beans by using OSGi with Felix? Cannot access OSGI service provided in Rifidi Edge Server (RFID Middleware) Programming Software Development by Faisal_2 …quot; /> </bean> <osgi:reference id="confac" interface="javax.…- name="internalBrokerConFac" /> <osgi:reference id="internalMB" interface="javax.…-name="internalBrokerConFac" /> <osgi:reference id="internalMB" interface="javax… Re: Tutorial how to call OSGI service from EAR package Programming Software Development by StephNicolaou … something other than NetBeans... The OSGI Alliance provides tutorials for OSGI with Eclipse Equinox, Knopflerfish and … this) [url]http://manning.com/hall/[/url] OSGi in Practice (Creative Commons) [url]http://neilbartlett.…name/blog/osgibook/[/url] Modular Java (OSGi + Spring DM) [url]http://www.pragprog.com/… ClassNotFoundException (javax.xml.ws.Service) when starting OSGI bundle Programming Software Development by GDICommander …everyone! When I'm starting a OSGI bundle in my Apache Felix container, ….LocalDiscoveryService bundleChanged INFO: bundle changed: null org.osgi.framework.BundleException: Activator start error in bundle [131…-Activator: prototype1.client.Prototype1ClientActivator Import-Package: org.osgi.framework,javax.xml.* Export-Package: javax.xml.ws… Re: Tutorial how to call OSGI service from EAR package Programming Software Development by rcbandit … the EAR file then implementing a java interface within the OSGI bundle: [url]http://netbeans.org/kb/docs/javaee/maven…uses glassfish specific dependencies. I created a WAR package with OSGI bundle and I tested it successfully. But still I …the simple source code of the EAR package and the OSGI bundle that I cannot deplot. I will really appreciate … Re: ClassNotFoundException (javax.xml.ws.Service) when starting OSGI bundle Programming Software Development by GDICommander ….0.0 Bundle-Activator: prototype1.client.Prototype1ClientActivator Import-Package: org.osgi.framework,javax.xml.ws,javax.xml.namespace Bundle-ClassPath: lib… Can't run OSGI bundle with JAR only. Programming Mobile Development by GDICommander …'m having grave difficulties with generated JAR bundles from Maven OSGI plugin in Netbeans. When running the bundle from Netbeans, all…?WSDL[/url] Service name is: {http://common.prototype1/}ILocalisationService org.osgi.framework.BundleException: Activator start error in bundle domus.usherbrooke.ca… Tutorial how to call OSGI service from EAR package Programming Software Development by rcbandit Hi, Is it possible to call OSGI service implemented in external bundle from EAR package? Is there a tutorial how this is implemented? Regards Re: Tutorial how to call OSGI service from EAR package Programming Software Development by StephNicolaou Oh okay, from what I found you can follow this tutorial creating a managed bean into the EAR file then implementing a java interface within the OSGI bundle: [url]http://netbeans.org/kb/docs/javaee/maven-osgiservice-cdi.html[/url] Re: OSGI bundle starting problem Programming Software Development by adams161 I'm guessing its the manifest. lots out there if you google bunde-activator. saw this: Bundle-Activator: class-name where class-name is a fully qualified Java classname maybe your name isn't quite doing it with package.classname you have. Mike Re: OSGI bundle starting problem Programming Software Development by GDICommander I have verified the Bundle-Activator line in manifest.mf and unfortunately, it is ok. My Activator.class is in the Example2 package, according to the code I've posted. I was thinking of a different loading order for .class files to see it if's the class loading for jar construction that, maybe, does not include the Activator class. I've tried to … Re: OSGI bundle starting problem Programming Software Development by GDICommander I finally solved my problem: the jar I was creating did not have a directory for the package inside. So, I enter this command: PS C:\Users\Pierre-Alexandre\workspace\ApacheFelixExample\src> jar cfm ServiceExpositionExample.jar ServiceExpositionExa mple\manifest.mf .\ServiceExpositionExample\*.class And it works! Hope that this solution can … Re: OSGI with Android Programming Mobile Development by sarathsshanker try using the factory pattern with the user-interfaces inside the UI package and Business Logic inside the Business Package,with the main POJO's. Its simple and powerful. Re: OSGi with Felix step by step tutorial for net beans? Programming Software Development by Pobunjenik I'm new in this, and my college tutor told us to stich with NetBeans (which has worked nicely so far). We're still pretty much doing noob stuff. Could you please explain what you ment by "binding yourself to IDE is bad"? Re: OSGi with Felix step by step tutorial for net beans? Programming Software Development by peter_budo Tutor or teacher telling you to use THE tool sounds like someone that is unlikely to encourage you to take that extra mile that separates panioned developer from 8am-5pm code writer. You should be told that there are other tools, you should be encourage to try and explore them. In my last year at university I had teacher running Web Services … Re: OSGi with Felix step by step tutorial for net beans? Programming Software Development by stultuske not to mention that if you are only doing "noob stuff", using an IDE is the worst thing to do. you had better start of with notepad and the command prompt, in order to learn what the IDE is doing "behind your back". it's also best to learn to write the code, instead of depending on an IDE's auto-completion function. Re: OSGi with Felix step by step tutorial for net beans? Programming Software Development by Pobunjenik I see your point. We've been told about different IDEs like the mentioned Eclipse and Dr. Java (which is nice, because it's portable). However, most of my classmates are total dimwits (no eexaggeration) who literally struggle with hello world type stuff. I'm one of the few who, as peter budo put it (I believe), want to become a pioneer developer. … Re: OSGi with Felix step by step tutorial for net beans? Programming Software Development by stultuske do you know how to compile/package/run your class files by hand? especially if you want to become a professional developer and not just a NetBeans-user with a degree, my advice: start with notepad. learn how to compile your class files, how to use the api's instead of NetBeans "hey, this is wrong, I'll underline it in red" function and … Re: OSGi with Felix step by step tutorial for net beans? Programming Software Development by Pobunjenik You're right on all points, but do give me time. Most of what you wrote about will be examined in detail in later semesters at my Uni. One thing at a time mate. :) Re: OSGi with Felix step by step tutorial for net beans? Programming Software Development by stultuske that's just the thing. you are trying to run marathons and next month you'll learn how to walk? :) common sense says there's a certain order in things. if you only start next month with notepad / command prompt, most likely you'll spend as short as possible (being the minimum your instructor asks you to) using them, switching directly back to … Re: OSGi with Felix step by step tutorial for net beans? Programming Software Development by agca thank you Peter but what I want is enabling dynamic deployment of an application's jar file. While application is running sweep with new version.. Which one more specificially to follo? Re: Tutorial how to call OSGI service from EAR package Programming Software Development by StephNicolaou Yes, I see that you've answered your own question whilst looking into this. This thread can now be closed! Re: Tutorial how to call OSGI service from EAR package Programming Software Development by rcbandit [QUOTE=Cleo123;1729259]Yes, I see that you've answered your own question whilst looking into this. This thread can now be closed![/QUOTE] Thank you for the reply! Would you point me a tutorial with example how this can be implemented, please? Eclipse, Aptana, RadRails installation help on centos Programming Web Development by brynFlew ….r361_v20100903-897HF_oFSRe_8pL9GBQDCs7 No repository found containing: osgi.bundle,org.eclipse.equinox.preferences.source,3…-9pF78H4oFrRqnz-rr2sGKT6TX5Jjk3z0UdMaW No repository found containing: osgi.bundle,org.eclipse.rcp.source,3.6…G1z-jfKYkc-vqs8r_Xuk3eIYZU8_cvU No repository found containing: osgi.bundle,org.eclipse.search.source,3.6… Eclipse shutting down at start Programming Software Development by Spartan552 ….postFindLocalClass(EclipseLazyStarter.java:111) at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java:417) ….java:525) at org.eclipse.osgi.framework.internal.core.OSGi.close(OSGi.java:41) at org.eclipse.….java:525) at org.eclipse.osgi.framework.internal.core.OSGi.close(OSGi.java:41) at org.eclipse.… Practice exercise Help! Programming Software Development by DarkLightning7 …Program Files\sges-v3\glassfish\modules\endorsed\webservices-api-osgi.jar;C:\Program Files\sges-v3\glassfish\modules\…Program Files\sges-v3\glassfish\modules\endorsed\webservices-api-osgi.jar;C:\Program Files\sges-v3\glassfish\modules\… Files\sges-v3\glassfish\modules\endorsed\webservices-api-osgi.jar;C:\Program Files\sges-v3\glassfish\modules\…