Difference between revisions of "Teams Winter 2011/team1/OSGI/Implement the Service Consumer"

From CDOT Wiki
Jump to: navigation, search
(Created page with '=== 3. Implement the Service Consumer === 1. In order to use the service provided we need to create a new Plug-in-Project '''Ticketing Consumer''' (''File -> New -> Other -> Plug…')
 
Line 1: Line 1:
 
=== 3. Implement the Service Consumer ===
 
=== 3. Implement the Service Consumer ===
1. In order to use the service provided we need to create a new Plug-in-Project '''Ticketing Consumer''' (''File -> New -> Other -> Plug-in-Project'')
+
1. You need service interface and service provider bundles to run your consumer
 +
2. Create a new Plug-in-Project '''Ticketing Consumer''' (''File -> New -> Other -> Plug-in-Project'')
 +
3. Give it a distinctive name and accept all defaults for the next screens. Click ''Finish''
 +
4. Your project is created and MANIFEST file opens. Click on ''Dependences'' and add interface bundle
 +
6. Check your manifest file:
 +
<pre>
 +
'''Manifest-Version:''' 1.0
 +
'''Bundle-ManifestVersion:''' 2
 +
'''Bundle-Name:''' Consumer
 +
'''Bundle-SymbolicName:''' cs.ecl.osgi.lab.ticketing.consumer
 +
'''Bundle-Version:''' 1.0.0.qualifier
 +
'''Bundle-Activator:''' cs.ecl.osgi.lab.ticketing.consumer.Activator
 +
'''Bundle-Vendor:''' Team1
 +
'''Require-Bundle:''' org.eclipse.ui,
 +
org.eclipse.core.runtime
 +
'''Bundle-RequiredExecutionEnvironment:''' JavaSE-1.6
 +
'''Bundle-ActivationPolicy:''' lazy
 +
'''Import-Package:''' cs.ecl.osgi.lab.ticketing,
 +
    org.osgi.framework;version="1.3.0"
 +
</pre>
 +
5. You should have three bundles now:
 +
[[Image | Consumer1.jpg : 500px ]]

Revision as of 17:00, 16 February 2011

3. Implement the Service Consumer

1. You need service interface and service provider bundles to run your consumer 2. Create a new Plug-in-Project Ticketing Consumer (File -> New -> Other -> Plug-in-Project) 3. Give it a distinctive name and accept all defaults for the next screens. Click Finish 4. Your project is created and MANIFEST file opens. Click on Dependences and add interface bundle 6. Check your manifest file:

 '''Manifest-Version:''' 1.0
 '''Bundle-ManifestVersion:''' 2
 '''Bundle-Name:''' Consumer
 '''Bundle-SymbolicName:''' cs.ecl.osgi.lab.ticketing.consumer
 '''Bundle-Version:''' 1.0.0.qualifier
 '''Bundle-Activator:''' cs.ecl.osgi.lab.ticketing.consumer.Activator
 '''Bundle-Vendor:''' Team1
 '''Require-Bundle:''' org.eclipse.ui,
 org.eclipse.core.runtime
 '''Bundle-RequiredExecutionEnvironment:''' JavaSE-1.6
 '''Bundle-ActivationPolicy:''' lazy
 '''Import-Package:''' cs.ecl.osgi.lab.ticketing,
    org.osgi.framework;version="1.3.0"
 

5. You should have three bundles now: Consumer1.jpg : 500px