- This topic has 4 replies, 2 voices, and was last updated 14 years, 4 months ago by Giorgos Maravelias.
-
AuthorPosts
-
Giorgos MaraveliasMemberwhen i create a dataset with a so simple query like this
select inst.facilityType , pdatas.operationType from institutions as inst inner join patients as pat ON pat.institution_id = inst.id INNER JOIN patients_datas as pdatas ON pdatas.patient_id = pat.id
and i try to see the preview results i get an error like this …
org.eclipse.birt.report.designer.core.runtime.GUIException: Caused by java.lang.reflect.InvocationTargetException. at org.eclipse.birt.report.designer.core.runtime.GUIException.createGUIException(GUIException.java:78) at org.eclipse.birt.report.designer.internal.ui.util.ExceptionHandler.handle(ExceptionHandler.java:169) at org.eclipse.birt.report.designer.internal.ui.util.ExceptionHandler.handle(ExceptionHandler.java:150) at org.eclipse.birt.report.designer.internal.ui.util.ExceptionHandler.handle(ExceptionHandler.java:89) at org.eclipse.birt.report.designer.data.ui.dataset.ResultSetPreviewPage.updateResultsProcess(ResultSetPreviewPage.java:548) at org.eclipse.birt.report.designer.data.ui.dataset.ResultSetPreviewPage.access$1(ResultSetPreviewPage.java:414) at org.eclipse.birt.report.designer.data.ui.dataset.ResultSetPreviewPage$4.runInUIThread(ResultSetPreviewPage.java:264) at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:95) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3342) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3071) at org.eclipse.jface.window.Window.runEventLoop(Window.java:825) at org.eclipse.jface.window.Window.open(Window.java:801) at org.eclipse.birt.report.designer.ui.dialogs.BaseDialog.open(BaseDialog.java:110) at org.eclipse.birt.report.designer.data.ui.providers.EditableDataSetNodeProvider.performEdit(EditableDataSetNodeProvider.java:99) at org.eclipse.birt.report.designer.internal.ui.views.DefaultNodeProvider.performRequest(DefaultNodeProvider.java:432) at org.eclipse.birt.report.designer.internal.ui.views.actions.EditAction.doAction(EditAction.java:90) at org.eclipse.birt.report.designer.internal.ui.views.actions.AbstractElementAction.run(AbstractElementAction.java:70) at org.eclipse.birt.report.designer.internal.ui.views.RenameListener.doubleClick(RenameListener.java:214) at org.eclipse.jface.viewers.StructuredViewer$1.run(StructuredViewer.java:821) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.runtime.Platform.run(Platform.java:888) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:48) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175) at org.eclipse.jface.viewers.StructuredViewer.fireDoubleClick(StructuredViewer.java:819) at org.eclipse.jface.viewers.AbstractTreeViewer.handleDoubleSelect(AbstractTreeViewer.java:1419) at org.eclipse.jface.viewers.StructuredViewer$4.widgetDefaultSelected(StructuredViewer.java:1195) at org.eclipse.jface.util.OpenStrategy.fireDefaultSelectionEvent(OpenStrategy.java:238) at org.eclipse.jface.util.OpenStrategy.access$0(OpenStrategy.java:235) at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:296) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1598) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1622) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1607) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1396) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3484) at org.eclipse.swt.widgets.Control.sendTrackEvents(Control.java:3036) at org.eclipse.swt.widgets.Control.kEventControlTrack(Control.java:2116) at org.eclipse.swt.widgets.Widget.controlProc(Widget.java:375) at org.eclipse.swt.widgets.Display.controlProc(Display.java:863) at org.eclipse.swt.internal.carbon.OS.CallNextEventHandler(Native Method) at org.eclipse.swt.widgets.Tree.kEventMouseDown(Tree.java:2653) at org.eclipse.swt.widgets.Widget.mouseProc(Widget.java:1362) at org.eclipse.swt.widgets.Display.mouseProc(Display.java:2930) at org.eclipse.swt.internal.carbon.OS.SendEventToEventTarget(Native Method) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3051) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2405) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2369) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2221) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:368) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:559) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:514) at org.eclipse.equinox.launcher.Main.run(Main.java:1311) Caused by: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:421) at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:507) at org.eclipse.birt.report.designer.data.ui.dataset.ResultSetPreviewPage.updateResultsProcess(ResultSetPreviewPage.java:544) ... 62 more Caused by: org.eclipse.swt.SWTException: Invalid thread access at org.eclipse.swt.SWT.error(SWT.java:3884) at org.eclipse.swt.SWT.error(SWT.java:3799) at org.eclipse.swt.SWT.error(SWT.java:3770) at org.eclipse.swt.widgets.Widget.error(Widget.java:696) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:341) at org.eclipse.swt.widgets.Tree.deselectAll(Tree.java:826) at org.eclipse.birt.report.designer.internal.ui.views.property.ReportPropertySheetPage.refresh(ReportPropertySheetPage.java:694) at org.eclipse.birt.report.designer.internal.ui.views.property.ReportPropertySheetPage.elementChanged(ReportPropertySheetPage.java:1000) at org.eclipse.birt.report.model.core.DesignElement.broadcast(DesignElement.java:799) at org.eclipse.birt.report.model.activity.NotificationRecordTask.doTask(NotificationRecordTask.java:278) at org.eclipse.birt.report.model.activity.ActivityRecord.performPostTasks(ActivityRecord.java:514) at org.eclipse.birt.report.model.activity.ActivityStack.execute(ActivityStack.java:362) at org.eclipse.birt.report.model.command.ComplexPropertyCommand.addItem(ComplexPropertyCommand.java:133) at org.eclipse.birt.report.model.command.ComplexPropertyCommand.addItem(ComplexPropertyCommand.java:165) at org.eclipse.birt.report.model.api.DesignElementHandle.setPropertyBinding(DesignElementHandle.java:3150) at org.eclipse.birt.report.model.api.DesignElementHandle.setPropertyBinding(DesignElementHandle.java:2363) at org.eclipse.birt.report.designer.data.ui.dataset.DataSetUIUtil.resetPropertyBinding(DataSetUIUtil.java:312) at org.eclipse.birt.report.designer.data.ui.dataset.ResultSetPreviewPage$5.run(ResultSetPreviewPage.java:517) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:121)
with this installation details
*** Date: Saturday, July 3, 2010 3:30:29 AM EEST ** System properties: OS=MacOSX OS version=10.6.4 Java version=1.6.0_20 *** MyEclipse details: MyEclipse Enterprise Workbench Version: 8.5 Build id: 8.5-20100319 *** Eclipse details: MyEclipse Enterprise Workbench Version: 8.5 Build id: 8.5-20100319 Eclipse startup command=-os macosx -ws carbon -arch x86 -showsplash -launcher /Library/Genuitec/MyEclipse 8.5/myeclipse.app/Contents/MacOS/myeclipse -name Myeclipse --launcher.library /Library/Genuitec/MyEclipse 8.5/myeclipse.app/Contents/MacOS//../../../../Common/plugins/org.eclipse.equinox.launcher.carbon.macosx_1.0.200.v20090520-1835/eclipse_1206.so -startup /Library/Genuitec/MyEclipse 8.5/myeclipse.app/Contents/MacOS/../../../../Common/plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar -install /Library/Genuitec/MyEclipse 8.5 -configuration ../../../configuration -keyring /Users/maravelias/.eclipse_keyring -consoleLog -showlocation -vm /System/Library/Frameworks/JavaVM.framework
Thanks in advance !!
( for unknown reason some times apears the same error in my win7 installation of myeclipse ide)
Brian FernandesModeratorgmaravel,
What version of MyEclipse did you create this project in? If you look at the project in the package explorer, it will have a MyEclipse Reports container – this will include the BIRT version (2.3, 2.5, etc.).
Besides the preview, if you deploy the project, does the report show up okay?
Can you try creating a report with a simpler query, perhaps with only a single column – does the Preview for that report work?
Giorgos MaraveliasMemberI dont remeber the version of myeclipse that i use for create this project , propably i use 8.0 version and maybe i had upgrade the libs on the project .
The current configuration of the project says (MyEclipse 8.5 / BIRT 2.5.2 ).
The truth is that i have see many compatibility errors between versions in the past and some time i have recreate a new project and i paste the report files in.
Is anyway to validate if the birt project have the right configuration ? ( /.settings files or .project file or .classpath file , etc )Please advice me because i use primary the myeclipse ide for birt report creation.
Giorgos MaraveliasMemberThe same report in the same project with the same query it works on my PC with windows7 64bit
Giorgos MaraveliasMemberDo you find any solution for this problem ???
Today (after the successfuly creation of many reports) the problem apears again .this time i work on win7 64bit OS
The query that i made was
select pocdetails.fset ,pocdetails.name ,pocdetails.value ,patient.patient_key ,surgeon.lastname ,institution.country ,institution.name from post_op_complications_details as pocdetails INNER JOIN post_op_complications_AND_details as pocanddetails on pocanddetails.detail_id = pocdetails.id INNER JOIN post_op_complications as postop on postop.id = pocanddetails.complication_id INNER JOIN patients_datas as pdatas on pdatas.id = postop.patientData_id INNER JOIN patients as patient on patient.id = pdatas.patient_id INNER JOIN surgeons as surgeon on surgeon.id = patient.surgeon_id INNER JOIN institutions as institution on institution.id = patient.institution_id where (pocdetails.name Like 'icu' OR pocdetails.name like 'icuRequired') and pocdetails.value like 'true' and pocdetails.fset like 'NO_COMPLICATION';
The query works on SQL editor … after i place it on a report and i try to preview the results this problem apears again …
the same error apears and on my macbookpro.
I dont know why but i try tha same think in Eclipse Galileo and it works without errors …
So what is the problem with MyEclipseIDE ?
*** Date: Τ�ίτη, 13 Ιουλίου 2010 1:07:20 μ.μ. Ελλάδα *** Platform Details: *** System properties: awt.toolkit=sun.awt.windows.WToolkit birt.designer=true birt.viewer.root.path=/C:/develop/Genuitec/Common/plugins/org.eclipse.birt.report.viewer_2.5.2.v20091210/birt/ birt.viewer.working.path=C:\Workspaces\MyEclipse8.x\.metadata\.plugins\org.eclipse.birt.report.viewer com.genuitec.pulse.client.basedir.location.override=C:\develop\Genuitec com.genuitec.pulse.client.blueprint.id=rmb-485040 com.genuitec.pulse.client.credentials=F/uhg6qm/hcqAlGbQK9rFD8RQCDM+BT4SmpKbrNSdL3IHU93gVIyAbgYXSm0HvbUm2koGubNP196 Ca39szI6gJsW9CXGbF+dA2Ggrcn7bCztflxMr48rIgg7ohvwCD7alnLfEyI/xlk0Fd6VVpwBdafZ smMpDvRNbl9+GtjzrW8= com.genuitec.pulse.client.handshake.id=473f7cba-3498-48ad-a799-134414b65c2d com.genuitec.pulse.common.server.url=https://www.poweredbypulse.com:443 eclipse.commands=-os win32 -ws win32 -arch x86 -showsplash -launcher C:\develop\Genuitec\MyEclipse 8.x Latest\myeclipse.exe -name Myeclipse --launcher.library C:\develop\Genuitec\MyEclipse 8.x Latest\../Common/plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090519\eclipse_1206.dll -startup C:\develop\Genuitec\MyEclipse 8.x Latest\../Common/plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar -install C:/develop/Genuitec/MyEclipse 8.x Latest -configuration configuration -vm C:/develop/Genuitec/Common/binary/com.sun.java.jdk.win32.x86_1.6.0.013/jre/bin/client/jvm.dll eclipse.home.location=file:/C:/develop/Genuitec/MyEclipse 8.x Latest/ eclipse.launcher=C:\develop\Genuitec\MyEclipse 8.x Latest\myeclipse.exe eclipse.p2.data.area=C:\develop\Genuitec\Common\configuration eclipse.p2.profile=com.poweredbypulse.profile-0-rb-578452 eclipse.product=com.genuitec.myeclipse.product85.ide eclipse.startTime=1279005126493 eclipse.vm=C:/develop/Genuitec/Common/binary/com.sun.java.jdk.win32.x86_1.6.0.013/jre/bin/client/jvm.dll eclipse.vmargs=-Xmx512m -XX:MaxPermSize=256m -XX:ReservedCodeCacheSize=64m -Djava.class.path=C:\develop\Genuitec\MyEclipse 8.x Latest\../Common/plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar file.encoding=Cp1253 file.encoding.pkg=sun.io file.separator=\ java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment java.awt.printerjob=sun.awt.windows.WPrinterJob java.class.path=C:\develop\Genuitec\MyEclipse 8.x Latest\../Common/plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar java.class.version=50.0 java.endorsed.dirs=C:\develop\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\lib\endorsed java.ext.dirs=C:\develop\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\lib\ext;C:\Windows\Sun\Java\lib\ext java.home=C:\develop\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre java.io.tmpdir=C:\Users\MARAVE~1.OFF\AppData\Local\Temp\ java.library.path=C:\develop\Genuitec\MyEclipse 8.x Latest;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/develop/Genuitec/Common/binary/com.sun.java.jdk.win32.x86_1.6.0.013/jre/bin/client;C:/develop/Genuitec/Common/binary/com.sun.java.jdk.win32.x86_1.6.0.013/jre/bin;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Common Files\Teleca Shared;C:\Program Files\MySQL\MySQL Server 5.1\bin;c:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;c:\Program Files\Microsoft SQL Server\100\Tools\Binn\;c:\Program Files\Microsoft SQL Server\100\DTS\Binn\;c:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;c:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files\Common Files\Microsoft Shared\Windows Live java.runtime.name=Java(TM) SE Runtime Environment java.runtime.version=1.6.0_13-b03 java.specification.name=Java Platform API Specification java.specification.vendor=Sun Microsystems Inc. java.specification.version=1.6 java.vendor=Sun Microsystems Inc. java.vendor.url=http://java.sun.com/ java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi java.version=1.6.0_13 java.vm.info=mixed mode java.vm.name=Java HotSpot(TM) Client VM java.vm.specification.name=Java Virtual Machine Specification java.vm.specification.vendor=Sun Microsystems Inc. java.vm.specification.version=1.0 java.vm.vendor=Sun Microsystems Inc. java.vm.version=11.3-b02 line.separator= maynstall.basepath=/pulse/action/ maynstall.rootelement=pulse org.eclipse.debug.ui.breakpoints.toggleFactoriesUsed=false org.eclipse.equinox.launcher.splash.location=C:\develop\Genuitec\Common\plugins\com.genuitec.myeclipse.product85_8.5.0.me201003250242\splash.bmp org.eclipse.equinox.simpleconfigurator.configUrl=file:org.eclipse.equinox.simpleconfigurator/bundles.info org.eclipse.update.reconcile=false org.osgi.framework.executionenvironment=OSGi/Minimum-1.0,OSGi/Minimum-1.1,OSGi/Minimum-1.2,JRE-1.1,J2SE-1.2,J2SE-1.3,J2SE-1.4,J2SE-1.5,JavaSE-1.6 org.osgi.framework.language=el org.osgi.framework.os.name=WindowsVista org.osgi.framework.os.version=6.1.0 org.osgi.framework.processor=x86 org.osgi.framework.system.packages=javax.accessibility,javax.activation,javax.activity,javax.annotation,javax.annotation.processing,javax.crypto,javax.crypto.interfaces,javax.crypto.spec,javax.imageio,javax.imageio.event,javax.imageio.metadata,javax.imageio.plugins.bmp,javax.imageio.plugins.jpeg,javax.imageio.spi,javax.imageio.stream,javax.jws,javax.jws.soap,javax.lang.model,javax.lang.model.element,javax.lang.model.type,javax.lang.model.util,javax.management,javax.management.loading,javax.management.modelmbean,javax.management.monitor,javax.management.openmbean,javax.management.relation,javax.management.remote,javax.management.remote.rmi,javax.management.timer,javax.naming,javax.naming.directory,javax.naming.event,javax.naming.ldap,javax.naming.spi,javax.net,javax.net.ssl,javax.print,javax.print.attribute,javax.print.attribute.standard,javax.print.event,javax.rmi,javax.rmi.CORBA,javax.rmi.ssl,javax.script,javax.security.auth,javax.security.auth.callback,javax.security.auth.kerberos,javax.security.auth.login,javax.security.auth.spi,javax.security.auth.x500,javax.security.cert,javax.security.sasl,javax.sound.midi,javax.sound.midi.spi,javax.sound.sampled,javax.sound.sampled.spi,javax.sql,javax.sql.rowset,javax.sql.rowset.serial,javax.sql.rowset.spi,javax.swing,javax.swing.border,javax.swing.colorchooser,javax.swing.event,javax.swing.filechooser,javax.swing.plaf,javax.swing.plaf.basic,javax.swing.plaf.metal,javax.swing.plaf.multi,javax.swing.plaf.synth,javax.swing.table,javax.swing.text,javax.swing.text.html,javax.swing.text.html.parser,javax.swing.text.rtf,javax.swing.tree,javax.swing.undo,javax.tools,javax.transaction,javax.transaction.xa,javax.xml,javax.xml.bind,javax.xml.bind.annotation,javax.xml.bind.annotation.adapters,javax.xml.bind.attachment,javax.xml.bind.helpers,javax.xml.bind.util,javax.xml.crypto,javax.xml.crypto.dom,javax.xml.crypto.dsig,javax.xml.crypto.dsig.dom,javax.xml.crypto.dsig.keyinfo,javax.xml.crypto.dsig.spec,javax.xml.datatype,javax.xml.namespace,javax.xml.parsers,javax.xml.soap,javax.xml.stream,javax.xml.stream.events,javax.xml.stream.util,javax.xml.transform,javax.xml.transform.dom,javax.xml.transform.sax,javax.xml.transform.stax,javax.xml.transform.stream,javax.xml.validation,javax.xml.ws,javax.xml.ws.handler,javax.xml.ws.handler.soap,javax.xml.ws.http,javax.xml.ws.soap,javax.xml.ws.spi,javax.xml.ws.wsaddressing,javax.xml.xpath,org.ietf.jgss,org.omg.CORBA,org.omg.CORBA_2_3,org.omg.CORBA_2_3.portable,org.omg.CORBA.DynAnyPackage,org.omg.CORBA.ORBPackage,org.omg.CORBA.portable,org.omg.CORBA.TypeCodePackage,org.omg.CosNaming,org.omg.CosNaming.NamingContextExtPackage,org.omg.CosNaming.NamingContextPackage,org.omg.Dynamic,org.omg.DynamicAny,org.omg.DynamicAny.DynAnyFactoryPackage,org.omg.DynamicAny.DynAnyPackage,org.omg.IOP,org.omg.IOP.CodecFactoryPackage,org.omg.IOP.CodecPackage,org.omg.Messaging,org.omg.PortableInterceptor,org.omg.PortableInterceptor.ORBInitInfoPackage,org.omg.PortableServer,org.omg.PortableServer.CurrentPackage,org.omg.PortableServer.POAManagerPackage,org.omg.PortableServer.POAPackage,org.omg.PortableServer.portable,org.omg.PortableServer.ServantLocatorPackage,org.omg.SendingContext,org.omg.stub.java.rmi,org.w3c.dom,org.w3c.dom.bootstrap,org.w3c.dom.css,org.w3c.dom.events,org.w3c.dom.html,org.w3c.dom.ls,org.w3c.dom.ranges,org.w3c.dom.stylesheets,org.w3c.dom.traversal,org.w3c.dom.views,org.w3c.dom.xpath,org.xml.sax,org.xml.sax.ext,org.xml.sax.helpers org.osgi.framework.vendor=Eclipse org.osgi.framework.version=1.5.0 org.osgi.supports.framework.extension=true org.osgi.supports.framework.fragment=true org.osgi.supports.framework.requirebundle=true os.arch=x86 os.name=Windows Vista os.version=6.1 osgi.arch=x86 osgi.bundles=reference:file:org.eclipse.equinox.simpleconfigurator_1.0.100.v201005252100.jar@1:start osgi.bundles.defaultStartLevel=4 osgi.bundlestore=C:\develop\Genuitec\MyEclipse 8.x Latest\configuration\org.eclipse.osgi\bundles osgi.configuration.area=file:/C:/develop/Genuitec/MyEclipse 8.x Latest/configuration/ osgi.framework=file:/C:/develop/Genuitec/MyEclipse 8.x Latest/../Common/plugins/org.eclipse.osgi_3.5.2.R35x_v20100126.jar osgi.framework.extensions= osgi.framework.shape=jar osgi.framework.version=3.5.2.R35x_v20100126 osgi.install.area=file:/C:/develop/Genuitec/MyEclipse 8.x Latest/ osgi.instance.area=file:/C:/Workspaces/MyEclipse8.x/ osgi.instance.area.default=file:/C:/Users/maravelias.OFFICE/Workspaces/MyEclipse 8.5/ osgi.logfile=C:\Workspaces\MyEclipse8.x\.metadata\.log osgi.manifest.cache=C:\develop\Genuitec\MyEclipse 8.x Latest\configuration\org.eclipse.osgi\manifests osgi.nl=el_GR osgi.os=win32 osgi.splashLocation=C:\develop\Genuitec\Common\plugins\com.genuitec.myeclipse.product85_8.5.0.me201003250242\splash.bmp osgi.splashPath=platform:/base/plugins/com.genuitec.myeclipse.product85 osgi.syspath=c:\develop\Genuitec\MyEclipse 8.x Latest\..\Common\plugins osgi.tracefile=C:\Workspaces\MyEclipse8.x\.metadata\trace.log osgi.ws=win32 path.separator=; product.home=/C:/develop/Genuitec/Common/plugins/org.jboss.tools.common.model_2.0.0.me201003052220/ pulse.console.redirect=true sun.arch.data.model=32 sun.boot.class.path=C:\develop\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\lib\resources.jar;C:\develop\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\lib\rt.jar;C:\develop\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\lib\sunrsasign.jar;C:\develop\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\lib\jsse.jar;C:\develop\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\lib\jce.jar;C:\develop\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\lib\charsets.jar;C:\develop\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\classes sun.boot.library.path=C:\develop\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\bin sun.cpu.endian=little sun.cpu.isalist=pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86 sun.desktop=windows sun.io.unicode.encoding=UnicodeLittle sun.jnu.encoding=Cp1253 sun.management.compiler=HotSpot Client Compiler sun.os.patch.level= user.country=GR user.dir=C:\develop\Genuitec\MyEclipse 8.x Latest user.home=C:\Users\maravelias.OFFICE user.language=el user.name=maravelias user.timezone=Europe/Athens user.variant= *** Features: *** Plug-in Registry: ca.ecliptical.emf.xpath (1.0.0.me201003052220) "EMF XPath Plug-in" [Starting] com.genuitec.eclipse.aspphp.core (8.5.0.me201003052220) "MyEclipse ASP and PHP Support Core" [Starting] com.genuitec.eclipse.aspphp.ui (8.5.0.me201003052220) "MyEclipse ASP and PHP Support UI" [Starting] com.genuitec.eclipse.ast.deploy.core (8.5.0.me201003232017) "MyEclipse Deployment Support" [Active] com.genuitec.eclipse.browser (8.5.0.me201003190322) "MyEclipse Web Browser" [Starting] com.genuitec.eclipse.core (8.5.0.me201003250242) "MyEclipse Core" [Active] com.genuitec.eclipse.core.common (8.5.0.me201003250241) "MyEclipse Common Core Utilities" [Active] com.genuitec.eclipse.core.common.platform (8.5.0.me201003101716) "MyEclipse Common Core Platform Utilities" [Active] com.genuitec.eclipse.cross.easystruts.eclipse (8.5.0.me201003101716) "MyEclipse Struts Support" [Starting] com.genuitec.eclipse.dashboard (8.5.0.me201003231033) "MyEclipse Plugin Dashboard" [Starting] com.genuitec.eclipse.dehory (8.5.0.me201003190314) "MyEclipse Visual Swing Designer" [Starting] com.genuitec.eclipse.derby (8.5.0.me201003052220) "MyEclipse Derby" [Active] com.genuitec.eclipse.desktop (8.5.0.me201003052220) "MyEclipse Desktop Utilities" [Starting] com.genuitec.eclipse.dtd (8.5.0.me201003052220) "MyEclipse DTD Support" [Starting] com.genuitec.eclipse.easie.core (8.5.0.me201003232017) "MyEclipse EASIE Core" [Active] com.genuitec.eclipse.easie.geronimo1 (8.5.0.me201003190322) "MyEclipse EASIE Geronimo 1" [Active] com.genuitec.eclipse.easie.geronimo2 (8.5.0.me201003121946) "MyEclipse EASIE Geronimo 2" [Active] com.genuitec.eclipse.easie.jboss (8.5.0.me201003190322) "MyEclipse EASIE JBoss" [Active] com.genuitec.eclipse.easie.jboss2 (8.5.0.me201003121946) "MyEclipse EASIE JBoss 2" [Active] com.genuitec.eclipse.easie.jboss3 (8.5.0.me201003121946) "MyEclipse EASIE JBoss 3" [Active] com.genuitec.eclipse.easie.jboss4 (8.5.0.me201003121946) "MyEclipse EASIE JBoss 4" [Active] com.genuitec.eclipse.easie.jboss5 (8.5.0.me201003121946) "MyEclipse EASIE JBoss 5" [Active] com.genuitec.eclipse.easie.jboss6 (8.5.0.me201003121946) "MyEclipse EASIE JBoss 6" [Active] com.genuitec.eclipse.easie.jetty (8.5.0.me201003190322) "MyEclipse EASIE Jetty" [Active] com.genuitec.eclipse.easie.jetty4 (8.5.0.me201003121946) "MyEclipse EASIE Jetty 4" [Active] com.genuitec.eclipse.easie.jetty5 (8.5.0.me201003121946) "MyEclipse EASIE Jetty 5" [Active] com.genuitec.eclipse.easie.jetty6 (8.5.0.me201003121946) "MyEclipse EASIE Jetty 6" [Active] com.genuitec.eclipse.easie.jetty7 (8.5.0.me201003231033) "MyEclipse EASIE Jetty 7" [Active] com.genuitec.eclipse.easie.jonas (8.5.0.me201003190322) "MyEclipse EASIE JOnAS" [Active] com.genuitec.eclipse.easie.jonas3 (8.5.0.me201003121946) "MyEclipse EASIE JOnAS 3" [Active] com.genuitec.eclipse.easie.jonas4 (8.5.0.me201003121946) "MyEclipse EASIE JOnAS 4" [Active] com.genuitec.eclipse.easie.jonas5 (8.5.0.me201003121946) "MyEclipse EASIE JOnAS 5" [Active] com.genuitec.eclipse.easie.jrun (8.5.0.me201003190322) "MyEclipse EASIE JRun" [Active] com.genuitec.eclipse.easie.jrun4 (8.5.0.me201003121946) "MyEclipse EASIE JRun 4" [Active] com.genuitec.eclipse.easie.oracle (8.5.0.me201003190322) "MyEclipse EASIE Oracle AS" [Active] com.genuitec.eclipse.easie.oracle10 (8.5.0.me201003121946) "MyEclipse EASIE Oracle 10 AS" [Active] com.genuitec.eclipse.easie.oracle9 (8.5.0.me201003121946) "MyEclipse EASIE Oracle 9 AS" [Active] com.genuitec.eclipse.easie.orion1 (8.5.0.me201003121946) "MyEclipse EASIE Orion 1" [Active] com.genuitec.eclipse.easie.orion2 (8.5.0.me201003121946) "MyEclipse EASIE Orion 2" [Active] com.genuitec.eclipse.easie.resin (8.5.0.me201003190322) "MyEclipse EASIE Resin" [Active] com.genuitec.eclipse.easie.resin2 (8.5.0.me201003121946) "MyEclipse EASIE Resin 2" [Active] com.genuitec.eclipse.easie.resin3 (8.5.0.me201003121946) "MyEclipse EASIE Resin 3" [Active] com.genuitec.eclipse.easie.resin4 (8.5.0.me201003121946) "MyEclipse EASIE Resin 4" [Active] com.genuitec.eclipse.easie.sun (8.5.0.me201003190322) "MyEclipse EASIE Sun One" [Active] com.genuitec.eclipse.easie.sun8 (8.5.0.me201003121946) "MyEclipse EASIE Sun 8" [Active] com.genuitec.eclipse.easie.sun81 (8.5.0.me201003121946) "MyEclipse EASIE Sun 8.x" [Active] com.genuitec.eclipse.easie.sun9 (8.5.0.me201003121946) "MyEclipse EASIE Sun 9" [Active] com.genuitec.eclipse.easie.sun91 (8.5.0.me201003121946) "MyEclipse EASIE Sun 9.1" [Active] com.genuitec.eclipse.easie.sunglassfish (8.5.0.me201003121946) "MyEclipse EASIE Glassfish 1" [Active] com.genuitec.eclipse.easie.sunglassfish2 (8.5.0.me201003121946) "MyEclipse EASIE Glassfish 2" [Active] com.genuitec.eclipse.easie.sunglassfish3 (8.5.0.me201003121946) "MyEclipse EASIE GlassFish v3 Prelude" [Active] com.genuitec.eclipse.easie.sunglassfishv3final (8.5.0.me201003121946) "MyEclipse EASIE GlassFish v3 Final" [Active] com.genuitec.eclipse.easie.sunwebserver (8.5.0.me201003250241) "MyEclipse EASIE Sun Java System Webserver" [Active] com.genuitec.eclipse.easie.tomcat (8.5.0.me201003190322) "MyEclipse EASIE Tomcat" [Active] com.genuitec.eclipse.easie.tomcat.myeclipse (8.5.0.me201003121946) "MyEclipse EASIE MyEclipse Tomcat 6 Server" [Active] com.genuitec.eclipse.easie.tomcat4 (8.5.0.me201003121946) "MyEclipse EASIE Tomcat 4" [Active] com.genuitec.eclipse.easie.tomcat5 (8.5.0.me201003121946) "MyEclipse EASIE Tomcat 5" [Active] com.genuitec.eclipse.easie.tomcat6 (8.5.0.me201003121946) "MyEclipse EASIE Tomcat 6" [Active] com.genuitec.eclipse.easie.weblogic (8.5.0.me201003190322) "MyEclipse EASIE WebLogic" [Active] com.genuitec.eclipse.easie.weblogic10 (8.5.0.me201003121946) "MyEclipse EASIE WebLogic 10" [Active] com.genuitec.eclipse.easie.weblogic6 (8.5.0.me201003121946) "MyEclipse EASIE WebLogic 6" [Active] com.genuitec.eclipse.easie.weblogic7 (8.5.0.me201003121946) "MyEclipse EASIE WebLogic 7" [Active] com.genuitec.eclipse.easie.weblogic8 (8.5.0.me201003121946) "MyEclipse EASIE WebLogic 8" [Active] com.genuitec.eclipse.easie.weblogic9 (8.5.0.me201003121946) "MyEclipse EASIE WebLogic 9" [Active] com.genuitec.eclipse.easie.websphere (8.5.0.me201003190322) "MyEclipse EASIE WebSphere 4" [Active] com.genuitec.eclipse.easie.websphere.wasce (8.5.0.me201003121946) "MyEclipse EASIE WebSphere Community Edition" [Active] com.genuitec.eclipse.easie.websphere5 (8.5.0.me201003121946) "MyEclipse EASIE WebSphere 5" [Active] com.genuitec.eclipse.easie.websphere6 (8.5.0.me201003121946) "MyEclipse EASIE WebSphere 6" [Active] com.genuitec.eclipse.easie.websphere61 (8.5.0.me201003121946) "MyEclipse EASIE WebSphere 6.1" [Active] com.genuitec.eclipse.examples (8.5.0.me201003052220) "MyEclipse Examples" [Active] com.genuitec.eclipse.export.wizard (8.5.0.me201003052220) "MyEclipse J2EE Export Wizards" [Starting] com.genuitec.eclipse.fileview (8.5.0.me201003052220) "MyEclipse File View" [Active] com.genuitec.eclipse.hibernate (8.5.0.me201003212033) "MyEclipse Hibernate Capabilities" [Active] com.genuitec.eclipse.icefaces (8.5.0.me201003052220) "ICEfaces Runtime Libraries for MyEclipse" [Starting] com.genuitec.eclipse.imageeditor (8.5.0.me201003052220) "MyEclipse Image Editor" [Starting] com.genuitec.eclipse.integration (8.5.0.me201003052220) "MyEclipse Integration Utilities" [Starting] com.genuitec.eclipse.j2eedt.core (8.5.0.me201003231033) "MyEclipse Java Enterprise Development Tooling" [Active] com.genuitec.eclipse.javascript (8.5.0.me201003180050) "MyEclipse Javascript Support" [Active] com.genuitec.eclipse.javascript.iedebugger (8.5.0.me201003052220) "MyEclipse IE JavaScript Debugger" [Starting] com.genuitec.eclipse.javascript.ielaunching (8.5.0.me201003052220) "MyEclipse IE JavaScript Debugger" [Starting] com.genuitec.eclipse.jniwrapper (8.5.0.me201003052220) "MyEclipse JNIWrapper" [Starting] com.genuitec.eclipse.jsf (8.5.0.me201003231033) "MyEclipse JSF Capabilities" [Active] com.genuitec.eclipse.jsf.designer (8.5.0.me201003250241) "MyEclipse JSF Designer Plug-in" [Active] com.genuitec.eclipse.lib.spring3 (8.5.0.me201003162025) "bundleName" [Starting] com.genuitec.eclipse.maven (8.5.0.me201003232017) "Maven4MyEclipse Plug-in" [Active] com.genuitec.eclipse.memory (8.5.0.me201003052220) "MyEclipse Memory Monitor" [Active] com.genuitec.eclipse.modeling.core (8.5.0.me201003052220) "MyEclipse Modeling Core" [Starting] com.genuitec.eclipse.modeling.core.layout (8.5.0.me201003052220) "MyEclipse Graph Layout" [Starting] com.genuitec.eclipse.persistence.jpa (8.5.0.me201003052220) "MyEclipse JPA" [Active] com.genuitec.eclipse.portlet (8.5.0.me201003101716) "MyEclipse Portlet Support" [Starting] com.genuitec.eclipse.reporting (8.5.0.me201003052220) "MyEclipse Reports" [Active] com.genuitec.eclipse.reporting.branding (8.5.0.me201003052220) "MyEclipse Reports" [Starting] com.genuitec.eclipse.reporting.oda (8.5.0.me201003052220) "MyEclipse ODA Runtime Driver" [Starting] com.genuitec.eclipse.reporting.oda.ui (8.5.0.me201003052220) "MyEclipse ODA Designer" [Active] com.genuitec.eclipse.springframework (8.5.0.me201003052220) "MyEclipse Spring Framework Support" [Active] com.genuitec.eclipse.springhibernate (8.5.0.me201003052220) "MyEclipse Spring / Hibernate Support" [Active] com.genuitec.eclipse.sqlexplorer (8.5.0.me201003052220) "MyEclipse Database Explorer Plugin" [Active] com.genuitec.eclipse.sqlexplorer.mssql (8.5.0.me201003052220) "MyEclipse SQLServer Support" [Active] com.genuitec.eclipse.sqlexplorer.mysql (8.5.0.me201003052220) "MyEclipse MySQL Support" [Active] com.genuitec.eclipse.sqlexplorer.oracle (8.5.0.me201003052220) "MyEclipse Oracle Database Explorer" [Active] com.genuitec.eclipse.struts (8.5.0.me201003160859) "MyEclipse Struts Capabilities" [Starting] com.genuitec.eclipse.struts2 (8.5.0.me201003121946) "MyEclipse Struts 2 Support" [Active] com.genuitec.eclipse.tapestry (8.5.0.me201003052220) "MyEclipse Tapestry Integration" [Active] com.genuitec.eclipse.tapestry.docs.contrib (8.5.0.me201003052220) "MyEclipse Spindle Documentation Additions" [Resolved] com.genuitec.eclipse.tapestry.ui.contrib (8.5.0.me201003052220) "MyEclipse Tapestry UI Integration Fragment" [Resolved] com.genuitec.eclipse.templates (8.5.0.me201003052220) "MyEclipse Code Generation Template Support" [Active] com.genuitec.eclipse.uml (8.5.0.me201003161551) "MyEclipse UML1" [Starting] com.genuitec.eclipse.uml2.core (8.5.0.me201003160859) "MyEclipse UML2" [Starting] com.genuitec.eclipse.uml2.ui (8.5.0.me201003212033) "MyEclipse UML2 UI" [Starting] com.genuitec.eclipse.visualvm (8.5.0.me201003052220) "VisualVM for MyEclipse" [Active] com.genuitec.eclipse.visualvm.binary (8.5.0.me201003052220) "VisualVM for MyEclipse Binaries" [Resolved] com.genuitec.eclipse.visualvm.server (8.5.0.me201003121946) "VisualVM for MyEclipse Servers" [Active] com.genuitec.eclipse.wdt.jsp.debug (8.5.0.me201003052220) "MyEclipse JSP Debug Tooling" [Active] com.genuitec.eclipse.web.imagepreviewer (8.5.0.me201003052220) "MyEclipse Image Previewer" [Starting] com.genuitec.eclipse.webdesigner3 (8.5.0.me201003231033) "MyEclipse Visual Web Designer" [Starting] com.genuitec.eclipse.wizards (8.5.0.me201003052220) "MyEclipse File Creation Wizards" [Active] com.genuitec.eclipse.ws (8.5.0.me201003180050) "MyEclipse REST Web Services Support" [Active] com.genuitec.eclipse.ws.xfire (8.5.0.me201003052220) "MyEclipse Web Services Support" [Active] com.genuitec.eclipse.ws.xfire.framework (8.5.0.me201003052220) "MyEclipse XFire Web Services Support" [Active] com.genuitec.javascript.debug (8.5.0.me201003180050) "MyEclipse JavaScript Debugger" [Active] com.genuitec.javascript.debug.mozilla (8.5.0.me201003052220) "MyEclipse JavaScript Browser" [Resolved] com.genuitec.jboss.ide.eclipse.apache.xalan (8.5.0.me201003052220) "MyEclipse XDoclet Apache Xalan" [Resolved] com.genuitec.jboss.ide.eclipse.core (8.5.0.me201003052220) "MyEclipse XDoclet Support Core" [Starting] com.genuitec.jboss.ide.eclipse.xdoclet.assist (8.5.0.me201003052220) "MyEclipse XDoclet Assist" [Starting] com.genuitec.jboss.ide.eclipse.xdoclet.core (8.5.0.me201003052220) "MyEclipse XDoclet Core" [Starting] com.genuitec.jboss.ide.eclipse.xdoclet.run (8.5.0.me201003052220) "MyEclipse XDoclet Runner" [Starting] com.genuitec.jboss.ide.eclipse.xdoclet.ui (8.5.0.me201003052220) "MyEclipse XDoclet UI Plug-in" [Starting] com.genuitec.jsdebugger.registration (8.5.0.me201003052220) "MyEclipse JavaScript Debugger Registration" [Starting] com.genuitec.myeclipse.compatibility (8.5.0.me201003052220) "MyEclipse Backward Compatibility" [Active] com.genuitec.myeclipse.database (8.5.0.me201003052220) "MyEclipse Database Support" [Resolved] com.genuitec.myeclipse.doc (8.5.0.me201003250241) "MyEclipse Documentation" [Starting] com.genuitec.myeclipse.doc.toc (8.5.0.me201003232017) "MyEclipse Documentation TOC" [Starting] com.genuitec.myeclipse.icefaces (8.5.0.me201003121946) "ICEfaces Integration for MyEclipse" [Active] com.genuitec.myeclipse.icefaces.branding (8.5.0.me201003052220) "ICEfaces AJAX and Java EE Tooling for MyEclipse" [Resolved] com.genuitec.myeclipse.matisse (8.5.0.me201003052220) "Matisse4MyEclipse Swing UI Designer" [Resolved] com.genuitec.myeclipse.perspective (8.5.0.me201003232017) "MyEclipse Perspective Plug-in" [Active] com.genuitec.myeclipse.product85 (8.5.0.me201003250242) "MyEclipse Product" [Starting] com.genuitec.myeclipse.uml2 (8.5.0.me201003052220) "MyEclipse UML2 Feature" [Resolved] com.genuitec.myeclipse.visualvm (8.5.0.me201003052220) "MyEclipse VisualVM Profiler" [Resolved] com.genuitec.org.eclipse.webbrowser (8.5.0.me201003180050) "MyEclipse Web Browser" [Starting] com.genuitec.org.hibernate.eclipse (3.2.4.CR1-me201003101716) "MyEclipse Hibernate Core" [Active] com.genuitec.org.hibernate.eclipse.console (3.2.4.CR1-me201003052220) "MyEclipse Hibernate Console" [Active] com.genuitec.org.hibernate.eclipse.mapper (3.2.4.CR1-me201003052220) "MyEclipse Hibernate Mapper" [Active] com.genuitec.pulse.client.common.collab.ui (3.0.3.v201005252100) "Pulse Collaboration UI" [Active] com.genuitec.pulse.client.common.shortcut (3.0.3.v201005252100) "Shortcut Support" [Starting] com.genuitec.pulse.client.common.shortcut.win32 (3.0.3.v201005252100) "Windows Shortcut Support" [Resolved] com.genuitec.pulse.client.common.ui (3.0.3.v201005252100) "Pulse Common UI" [Resolved] com.genuitec.pulse.client.common.ui.win32 (3.0.3.v201005252100) "Pulse Common UI Windows Support" [Resolved] com.genuitec.pulse.client.contrib.ui (3.0.3.v201005252100) "Pulse Contributor UI" [Active] com.genuitec.pulse.client.targetcfg.collab.ui (3.0.3.v201005252100) "Pulse Collaboration Control Center" [Active] com.genuitec.pulse.client.targetcfg.collab.workspace.ui (3.0.3.v201005252100) "Pulse Workspace Collaboration UI" [Starting] com.genuitec.pulse.compatibility.e35 (3.0.3.v201005252100) "Eclipse 3.5 Compatibility" [Resolved] com.genuitec.pulse.compatibility.ui.e35 (3.0.3.v201005252100) "Eclipse 3.5 UI Compatibility" [Resolved] com.genuitec.pulse2.client.auth.addon (3.0.3.v201005252100) "External Login Service" [Resolved] com.genuitec.pulse2.client.authentication (3.0.3.v201005252100) "Client Authentication" [Starting] com.genuitec.pulse2.client.common (3.0.3.v201005252100) "Pulse Client Common" [Active] com.genuitec.pulse2.client.common.exec (3.0.3.v201005252100) "Common Execution Services" [Active] com.genuitec.pulse2.client.common.provisioning (3.0.3.v201005252100) "Common Pulse Provisioning Services" [Active] com.genuitec.pulse2.client.installer.common (3.0.3.v201005252100) "Pulse Client Common Services" [Active] com.genuitec.pulse2.client.installer.ui (3.0.3.v201005252100) "Pulse Client Installer" [Active] com.genuitec.pulse2.client.launcher.ui (3.0.3.v201005252100) "Launcher UI with p2 Support" [Active] com.genuitec.pulse2.client.properties (3.0.3.v201005252100) "Pulse Client Properties Service" [Active] com.genuitec.pulse2.client.services (3.0.3.v201005252100) "Pulse Client Services" [Active] com.genuitec.pulse2.client.services.ui (3.0.3.v201005252100) "Pulse Client Services UI" [Active] com.genuitec.pulse2.client.targetcfg.dropins (3.0.3.v201005252100) "Pulse Target Configuration Dropins Extensions" [Active] com.genuitec.pulse2.client.targetcfg.jdt (3.0.3.v201005252100) "Pulse Target Configuration JDT Extensions" [Active] com.genuitec.pulse2.client.targetcfg.ui (3.0.3.v201005252100) "Pulse Target Configuration UI" [Active] com.genuitec.pulse2.client.updatesite (3.0.3.v201005252100) "Pulse Update Site Services" [Active] com.genuitec.pulse2.common (3.0.3.v201005252100) "Pulse Common Services" [Active] com.genuitec.pulse2.common.http (3.0.3.v201005252100) "Http Plug-in" [Active] com.genuitec.pulse2.common.http.httpclient (3.0.3.v201005252100) "Pulse's HttpClient Communication Provider" [Active] com.genuitec.pulse2.common.http.httpclient.ws (3.0.3.v201005252100) "Pulse HttpClient Web Services Client" [Active] com.genuitec.pulse2.common.http.oakland (3.0.3.v201005252100) "Pulse's Oakland Software Provider" [Starting] com.genuitec.pulse2.common.http.oakland.ws (3.0.3.v201005252100) "Pulse Oakland Software Web Services" [Starting] com.genuitec.pulse2.common.ui (3.0.3.v201005252100) "Pulse Common UI Services" [Active] com.genuitec.pulse2.model (3.0.3.v201005252100) "Pulse Data Model" [Active] com.genuitec.pulse2.model.clientext (3.0.3.v201005252100) "Client-side Mappings for Context" [Resolved] com.ibm.icu (4.0.1.v20090822) "International Components for Unicode for Java (ICU4J)" [Active] com.icesoft.ide.eclipse.designtime (8.5.0.me201003052220) "ICEfaces Design-Time Support for MyEclipse" [Starting] com.icesoft.ide.eclipse.icefaces.doc (8.5.0.me201003052220) "ICEfaces Help Documentation for MyEclipse" [Resolved] com.iw.plugins.spindle.core (8.5.0.me201003161551) "MyEclipse Spindle Core Support" [Active] com.iw.plugins.spindle.docs (8.5.0.me201003052220) "MyEclipse Spindle 3 Documentation" [Starting] com.iw.plugins.spindle.ui (8.5.0.me201003161550) "MyEclipse Spindle UI" [Active] com.jcraft.jsch (0.1.41.v200903070017) "JSch" [Resolved] com.lowagie.itext (1.5.4.v20090305) "Lowagie Itext" [Resolved] com.myeclipseide.feature.branding (8.5.0.me201003052220) "MyEclipse Enterprise Workbench" [Resolved] fr.obeo.acceleo.bridge (2.6.0.200906261742) "Acceleo Bridge Plug-in" [Starting] fr.obeo.acceleo.bridge.ui (2.6.0.200906261742) "Acceleo Bridge Ui Plug-in" [Starting] fr.obeo.acceleo.chain (2.6.0.200906261744) "Acceleo Chain Model" [Starting] fr.obeo.acceleo.chain.edit (2.6.0.200906261744) "Acceleo Chain Edit Support" [Starting] fr.obeo.acceleo.chain.editor (2.6.0.200906261744) "Acceleo Chain Editor" [Starting] fr.obeo.acceleo.chain.ui (2.6.0.200906261744) "Acceleo Chain Ui Plug-in" [Starting] fr.obeo.acceleo.ecore (2.6.0.200906261744) "Acceleo Ecore Plug-in" [Starting] fr.obeo.acceleo.ecore.ui (2.6.0.200906261744) "Acceleo Ecore Ui Plug-in" [Starting] fr.obeo.acceleo.gen (2.6.0.200906261744) "Acceleo Generator Plug-in" [Starting] fr.obeo.acceleo.gen.debug.ui (2.6.0.200906261744) "Acceleo Gen Debug Ui Plug-in" [Starting] fr.obeo.acceleo.gen.profiler (2.6.0.200906261744) "Acceleo Profiler Model" [Starting] fr.obeo.acceleo.gen.profiler.edit (2.6.0.200906261744) "Acceleo Profiler Edit Support" [Starting] fr.obeo.acceleo.gen.profiler.editor (2.6.0.200906261744) "Acceleo Profiler Editor" [Starting] fr.obeo.acceleo.gen.ui (2.6.0.200906261744) "Acceleo Generator Ui Plug-in" [Starting] fr.obeo.acceleo.template (2.6.0.200906261744) "Acceleo Template Model Plug-in" [Starting] fr.obeo.acceleo.template.edit (2.6.0.200906261744) "Acceleo Template Model Edit Support Plug-in" [Starting] fr.obeo.acceleo.template.gen (2.6.0.200906261744) "Acceleo Template Model Gen Plug-in" [Resolved] fr.obeo.acceleo.tools (2.6.0.200906261744) "Acceleo Tools Plug-in" [Starting] fr.obeo.acceleo.tools.ui (2.6.0.200906261744) "Acceleo Tools Ui Plug-in" [Starting] fr.obeo.acceleo.uml13 (2.6.0.200906261742) "Acceleo Uml13 Model" [Starting] fr.obeo.acceleo.uml14 (2.6.0.200906261742) "Acceleo Uml14 Model" [Starting] fr.obeo.acceleo.uml14.mof (2.6.0.200906261742) "Acceleo Uml14 Mof Plug-in" [Starting] fr.obeo.acceleo.uml14.ui (2.6.0.200906261742) "Acceleo Uml14 Ui Plug-in" [Starting] ie.wombat.jbdiff (0.1.0.1) "Jbdiff Plug-in" [Starting] javax.activation (1.1.0.v200906290531) "Apache Geronimo Activation Plug-in" [Resolved] javax.annotation (1.1.1.v201002111330) "geronimo jta 1.1 spec" [Resolved] javax.mail (1.4.0.v200905040518) "Javax Mail Plug-in" [Resolved] javax.persistence (1.99.0.v201005252100) "JPA 1.99 - Extended for OSGi" [Resolved] javax.servlet (2.5.0.v200806031605) "Servlet API Bundle" [Resolved] javax.servlet.jsp (2.0.0.v200806031607) "Java Server Pages API Bundle" [Resolved] javax.wsdl (1.5.1.v200806030408) "WSDL4J" [Resolved] javax.xml (1.3.4.v200902170245) "JAXP XML" [Resolved] javax.xml.rpc (1.1.0.v200905122109) "JAX-RPC" [Resolved] javax.xml.soap (1.2.0.v200905122109) "SAAJ" [Resolved] net.sf.cglib (1.0.0.v201005252100) "Cglib Plug-in" [Resolved] net.sf.solareclipse.ui (0.4.0.me201003052220) "MyEclipse Spindle SolarEclipse UI" [Resolved] net.sf.solareclipse.xml.ui (0.4.0.me201003052220) "MyEclipse Spindle XML Development Tools UI" [Starting] net.sourceforge.lpg.lpgjavaruntime (1.1.0.v200803061910) "SourceForge LPG" [Resolved] org.aopalliance (1.0.0) "aopalliance" [Resolved] org.apache.ant (1.7.1.v20090120-1145) "Apache Ant" [Resolved] org.apache.axis (1.4.0.v200905122109) "Apache Web Services" [Resolved] org.apache.batik.bridge (1.6.0.v200805290154) "Apache Batik Bridge/GVT/Scripting" [Resolved] org.apache.batik.css (1.6.0.v200805290154) "Apache Batik CSS" [Resolved] org.apache.batik.dom (1.6.0.v200805290154) "Apache Batik DOM" [Resolved] org.apache.batik.dom.svg (1.6.0.v200805290154) "Apache Batik SVG DOM" [Resolved] org.apache.batik.ext.awt (1.6.0.v200805290154) "Apache Batik AWT Utilities" [Resolved] org.apache.batik.parser (1.6.0.v200805290154) "Apache Batik Parser" [Resolved] org.apache.batik.pdf (1.6.0.v200806031500) "Apache Batik PDF" [Resolved] org.apache.batik.svggen (1.6.0.v200805290154) "Apache Batik SVG Generation" [Resolved] org.apache.batik.transcoder (1.6.0.v200805290154) "Apache Batik Transcoder" [Resolved] org.apache.batik.util (1.6.0.v200805290154) "Apache Batik Utilities" [Resolved] org.apache.batik.util.gui (1.6.0.v200805290154) "Apache Batik GUI Utilities" [Resolved] org.apache.batik.xml (1.6.0.v200805290154) "Apache Batik XML" [Resolved] org.apache.commons.codec (1.3.0.v20080530-1600) "Apache Commons Codec Plug-in" [Resolved] org.apache.commons.collections (3.2.0) "Apache Commons Collections" [Resolved] org.apache.commons.discovery (0.2.0.v200905122109) "Jakarta-Commons Discovery" [Resolved] org.apache.commons.el (1.0.0.v200806031608) "Apache Commons JSP 2.0 Expression Language Interpreter" [Resolved] org.apache.commons.httpclient (3.1.0.v20080605-1935) "Apache Commons Httpclient" [Resolved] org.apache.commons.io (1.3.2.v20080604-1500) "Apache Commons IO" [Resolved] org.apache.commons.jxpath (1.2.0.v20080604-1500) "Apache Commons JXPath" [Resolved] org.apache.commons.logging (1.0.4.v20080605-1930) "Apache Commons Logging Plug-in" [Resolved] org.apache.commons.logging (1.0.4.v200904062259) "Apache Commons Logging Plug-in" [Resolved] org.apache.derby.core (10.5.1.1_v20100129) "Apache Derby Core Plug-in for Eclipse" [Starting] org.apache.jasper (5.5.17.v200903231320) "Apache Jasper 2 Plug-in" [Resolved] org.apache.log4j (1.2.13.v200903072027) "Apache Jakarta log4j Plug-in" [Resolved] org.apache.lucene (1.9.1.v20080530-1600) "Apache Lucene" [Resolved] org.apache.lucene.analysis (1.9.1.v20080530-1600) "Apache Lucene Analysis" [Resolved] org.apache.wsil4j (1.0.0.v200901211807) "WSIL4J" [Resolved] org.apache.xerces (2.9.0.v200909240008) "Apache Xerces-J" [Resolved] org.apache.xml.resolver (1.2.0.v200902170519) "Apache XmlResolver" [Resolved] org.apache.xml.serializer (2.7.1.v200902170519) "Apache XML Commons Serializer" [Resolved] org.aspectj.aspectjrt (1.6.0.v200808071200) "aspecjrt" [Resolved] org.aspectj.aspectjweaver (1.6.0.v200805211800) "aspectjweaver" [Resolved] org.eclipse.albireo.core (0.0.3.me201003052220) "Albireo Core (Incubation)" [Resolved] org.eclipse.ant.core (3.2.101.v20091110_r352) "Ant Build Tool Core" [Starting] org.eclipse.ant.ui (3.4.2.v20091204_r352) "Ant UI" [Starting] org.eclipse.atf.core (0.2.2.me201003052220) "Core Plug-in (Incubation)" [Starting] org.eclipse.atf.mozilla.ide.core (0.2.2.me201003052220) "Mozide Core Plugin (Incubation)" [Starting] org.eclipse.atf.mozilla.ide.debug (0.2.2.me201003052220) "Mozilla Debug Plug-in (Incubation)" [Active] org.eclipse.atf.mozilla.ide.debug.ui (0.2.2.me201003052220) "Mozilla Debug UI Plug-in (Incubation)" [Active] org.eclipse.atf.mozilla.ide.ui (0.2.2.me201003052220) "Moz IDE UI Plug-in (Incubation)" [Active] org.eclipse.atf.mozilla.ide.ui.extras (0.2.2.me201003052220) "Mozilla IDE UI Extras Plug-in (Incubation)" [Starting] org.eclipse.atf.templates (0.2.2.me201003052220) "Templates Plug-in (Incubation)" [Starting] org.eclipse.atf.ui (0.2.2.me201003052220) "Ui Plug-in (Incubation)" [Active] org.eclipse.birt (2.5.2.me201003052220) "Business Intelligence and Reporting Tools" [Resolved] org.eclipse.birt.chart.device.extension (2.5.2.v20100204) "BIRT Chart Device Extension(s)" [Starting] org.eclipse.birt.chart.device.pdf (2.5.2.v20091022) "BIRT Chart Device PDF Extension" [Starting] org.eclipse.birt.chart.device.svg (2.5.2.v20100204) "BIRT Chart Device SVG Extension" [Starting] org.eclipse.birt.chart.device.swt (2.5.2.v20091022) "BIRT Chart Device SWT Extension" [Starting] org.eclipse.birt.chart.engine (2.5.2.v20100209) "BIRT Chart Engine" [Active] org.eclipse.birt.chart.engine.extension (2.5.2.v20100121) "BIRT Chart Engine Extension" [Starting] org.eclipse.birt.chart.reportitem (2.5.2.v20100209) "BIRT Chart-Report Integration" [Active] org.eclipse.birt.chart.reportitem.ui (2.5.2.v20100210) "BIRT Chart-Report UI Integration Plug-in" [Active] org.eclipse.birt.chart.runtime (2.5.2.v20091020) "BIRT Chart Runtime" [Resolved] org.eclipse.birt.chart.ui (2.5.2.v20100209) "BIRT Chart Library UI Plug-in" [Active] org.eclipse.birt.chart.ui.extension (2.5.2.v20100210) "BIRT Chart UI Extension" [Active] org.eclipse.birt.core (2.5.2.v20100208) "BIRT Core Package" [Active] org.eclipse.birt.core.script.function (2.5.2.v20100205) "Function Plug-in" [Active] org.eclipse.birt.core.ui (2.5.2.v20091217) "BIRT Core UI" [Active] org.eclipse.birt.cshelp (2.5.2.me201003052220) "BIRT Context-sensitive Help" [Starting] org.eclipse.birt.data (2.5.2.v20100209) "BIRT Data Engine" [Active] org.eclipse.birt.data.aggregation (2.5.2.v20100205) "Build-in Aggregation Plug-in" [Active] org.eclipse.birt.doc (2.5.2.me201003052220) "BIRT Documentation" [Starting] org.eclipse.birt.integration.wtp.ui (2.5.1.me201003052220) "BIRT WTP Integration Plug-in" [Active] org.eclipse.birt.report.data.adapter (2.5.2.v20100208) "BIRT Data Adapter" [Active] org.eclipse.birt.report.data.bidi.utils (2.5.2.v20100205) "Bidi Utils" [Starting] org.eclipse.birt.report.data.bidi.utils.ui (2.5.2.v20100205) "Bidi UI Utils" [Starting] org.eclipse.birt.report.data.oda.jdbc (2.5.2.me201003052220) "BIRT ODA-JDBC Bridge Driver" [Active] org.eclipse.birt.report.data.oda.jdbc.dbprofile (2.5.2.v20100205) "JDBC Database Connection Data Source ODA Runtime Driver" [Starting] org.eclipse.birt.report.data.oda.jdbc.dbprofile.sampledb (2.5.2.v20100205) "BIRT Sample Database Connection Profile Plug-in" [Active] org.eclipse.birt.report.data.oda.jdbc.dbprofile.ui (2.5.2.v20100205) "JDBC Database Connection Data Source ODA Designer" [Starting] org.eclipse.birt.report.data.oda.jdbc.ui (2.5.2.me201003052220) "BIRT JDBC UI Plug-in" [Active] org.eclipse.birt.report.data.oda.sampledb (2.5.2.v20100205) "BIRT Sample Database" [Starting] org.eclipse.birt.report.data.oda.sampledb.ui (2.5.2.v20100205) "BIRT Sample Database UI Plug-in" [Starting] org.eclipse.birt.report.data.oda.xml (2.5.2.v20100205) "BIRT ODA-XML Driver" [Starting] org.eclipse.birt.report.data.oda.xml.ui (2.5.2.v20100205) "BIRT ODA XML Designer" [Starting] org.eclipse.birt.report.debug.core (2.5.2.me201003052220) "BIRT Debug Core Plug-in" [Resolved] org.eclipse.birt.report.debug.ui (2.5.2.me201003052220) "BIRT Debug UI Plug-in" [Active] org.eclipse.birt.report.designer.core (2.5.2.me201003052220) "BIRT Designer Core" [Active] org.eclipse.birt.report.designer.ui (2.5.2.me201003052220) "BIRT Designer UI" [Active] org.eclipse.birt.report.designer.ui.cubebuilder (2.5.2.v20100127) "BIRT Cube Builder Plug-in" [Active] org.eclipse.birt.report.designer.ui.data (2.5.2.me201003052220) "BIRT Designer Data Plug-in" [Active] org.eclipse.birt.report.designer.ui.editor.script (2.5.2.v20100127) "BIRT Enhanced Script Editor Plug-in" [Active] org.eclipse.birt.report.designer.ui.editors (2.5.2.me201003052220) "BIRT MultipageEditor Extension Point Plug-in" [Active] org.eclipse.birt.report.designer.ui.editors.schematic (2.5.2.v20100127) "BIRT Editors Plug-in" [Active] org.eclipse.birt.report.designer.ui.ide (2.5.2.me201003052220) "BIRT Designer UI for IDE" [Active] org.eclipse.birt.report.designer.ui.lib (2.5.2.v20100127) "BIRT Designer UI for Library" [Starting] org.eclipse.birt.report.designer.ui.lib.explorer (2.5.2.v20100127) "BIRT Library Explorer Plug-in" [Starting] org.eclipse.birt.report.designer.ui.preview.web (2.5.2.me201003052220) "BIRT Preview Plug-in" [Active] org.eclipse.birt.report.designer.ui.views (2.5.2.v20100127) "BIRT UI Views Plug-in" [Active] org.eclipse.birt.report.engine (2.5.2.v20100210) "BIRT Engine" [Active] org.eclipse.birt.report.engine.dataextraction (2.5.2.v20100115) "Dataextraction Plug-in" [Starting] org.eclipse.birt.report.engine.dataextraction.csv (2.5.2.v20100115) "CSV Data Extraction Plug-in" [Starting] org.eclipse.birt.report.engine.emitter.config (2.5.2.v20100208) "BIRT Emitter Configuration Plug-in" [Starting] org.eclipse.birt.report.engine.emitter.excel.config (2.5.2.v20100208) "BIRT Excel Emitter Descriptor" [Starting] org.eclipse.birt.report.engine.emitter.html (2.5.2.v20100208) "BIRT HTML Emitter" [Starting] org.eclipse.birt.report.engine.emitter.html.config (2.5.2.v20100208) "BIRT HTML Emitter Descriptor" [Starting] org.eclipse.birt.report.engine.emitter.pdf (2.5.2.v20100129) "BIRT PDF emitter" [Starting] org.eclipse.birt.report.engine.emitter.pdf.config (2.5.2.v20100208) "BIRT PDF Emitter Descriptor" [Starting] org.eclipse.birt.report.engine.emitter.postscript (2.5.2.v20100107) "BIRT POSTSCRIPT emitter" [Resolved] org.eclipse.birt.report.engine.emitter.postscript.config (2.5.2.v20100208) "BIRT Postscript Emitter Descriptor" [Starting] org.eclipse.birt.report.engine.emitter.ppt (2.5.2.v20091224) "BIRT PPT emitter" [Starting] org.eclipse.birt.report.engine.emitter.ppt.config (2.5.2.v20100208) "BIRT PPT Emitter Descriptor" [Starting] org.eclipse.birt.report.engine.emitter.prototype.excel (2.5.2.v20100201) "BIRT Excel emitter" [Starting] org.eclipse.birt.report.engine.emitter.wpml (2.5.2.v20091224) "BIRT Word emitter" [Starting] org.eclipse.birt.report.engine.emitter.wpml.config (2.5.2.v20100208) "BIRT Word Emitter Descriptor" [Starting] org.eclipse.birt.report.engine.fonts (2.5.2.v20091224) "BIRT Engine fonts" [Resolved] org.eclipse.birt.report.engine.script.javascript (2.5.2.v20091224) "BIRT Javascript Engine" [Active] org.eclipse.birt.report.item.crosstab.core (2.5.2.v20100127) "BIRT Crosstab Plug-in" [Active] org.eclipse.birt.report.item.crosstab.ui (2.5.2.me201003160859) "BIRT Crosstab UI Plug-in" [Active] org.eclipse.birt.report.model (2.5.2.v20100127) "BIRT Model" [Active] org.eclipse.birt.report.model.adapter.oda (2.5.2.v20091210) "BIRT Model ODA Adapter" [Active] org.eclipse.birt.report.runtime (2.5.2.v20091020) "BIRT Report Runtime" [Resolved] org.eclipse.birt.report.viewer (2.5.2.v20091210) "BIRT Web Viewer" [Active] org.eclipse.birt.resources (2.5.2.me201003052220) "BIRT Resources Plug-in" [Resolved] org.eclipse.compare (3.5.2.r35x_20100113-0800) "Compare Support" [Active] org.eclipse.compare.core (3.5.0.I20090430-0408) "Core Compare Support" [Active] org.eclipse.compare.win32 (1.0.0.I20090430-0408) "Compare Support for Word" [Starting] org.eclipse.core.boot (3.1.100.v20080218) "Core Boot" [Starting] org.eclipse.core.commands (3.5.0.I20090525-2000) "Commands" [Resolved] org.eclipse.core.contenttype (3.4.1.R35x_v20090826-0451) "Eclipse Content Mechanism" [Active] org.eclipse.core.databinding (1.2.0.M20090819-0800) "JFace Data Binding" [Starting] org.eclipse.core.databinding.beans (1.2.0.I20090525-2000) "JFace Data Binding for JavaBeans" [Resolved] org.eclipse.core.databinding.observable (1.2.0.M20090902-0800) "JFace Data Binding Observables" [Active] org.eclipse.core.databinding.property (1.2.0.M20090819-0800) "JFace Data Binding" [Starting] org.eclipse.core.expressions (3.4.101.R35x_v20100209) "Expression Language" [Active] org.eclipse.core.filebuffers (3.5.0.v20090526-2000) "File Buffers" [Active] org.eclipse.core.filesystem (1.2.1.R35x_v20091203-1235) "Core File Systems" [Active] org.eclipse.core.filesystem.win32.x86 (1.1.0.v20080604-1400) "Core File System for Windows" [Resolved] org.eclipse.core.jobs (3.4.100.v20090429-1800) "Eclipse Jobs Mechanism" [Active] org.eclipse.core.net (1.2.1.r35x_20090812-1200) "Internet Connection Management" [Active] org.eclipse.core.net.win32.x86 (1.0.0.I20080909) "Proxy for Windows" [Resolved] org.eclipse.core.resources (3.5.2.R35x_v20091203-1235) "Core Resource Management" [Active] org.eclipse.core.resources.compatibility (3.4.1.R35x_v20100113-0530) "Core Resource Management Compatibility Fragment" [Resolved] org.eclipse.core.resources.win32.x86 (3.5.0.v20081020) "Core Resource Management Win32 Fragment" [Resolved] org.eclipse.core.runtime (3.5.0.v20090525) "Core Runtime" [Active] org.eclipse.core.runtime.compatibility (3.2.0.v20090413) "Core Runtime Plug-in Compatibility" [Active] org.eclipse.core.runtime.compatibility.auth (3.2.100.v20090413) "Authorization Compatibility Plug-in" [Active] org.eclipse.core.runtime.compatibility.registry (3.2.200.v20090429-1800) "Eclipse Registry Compatibility Fragment" [Resolved] org.eclipse.core.variables (3.2.200.v20090521) "Core Variables" [Active] org.eclipse.cvs (1.0.400.v201002111343) "Eclipse CVS Client" [Starting] org.eclipse.dali.core (0.5.0.me201003052220) "Dali Core" [Active] org.eclipse.dali.db (0.5.0.me201003052220) "Dali DB" [Starting] org.eclipse.dali.edit (0.5.0.me201003052220) "Dali Edit" [Starting] org.eclipse.dali.gen (0.5.0.me201003052220) "Dali Entity Gen" [Starting] org.eclipse.dali.ui (0.5.0.me201003052220) "Dali Java Persistence API (JPA) Tools" [Starting] org.eclipse.dali.utility (0.5.0.me201003052220) "Dali Utility" [Starting] org.eclipse.datatools.connectivity (1.1.3.v201001230803) "Data Tools Platform Connectivity Plug-in" [Active] org.eclipse.datatools.connectivity.apache.derby (1.0.100.v200906020900) "Eclipse Data Tools Platform Derby Plug-in" [Active] org.eclipse.datatools.connectivity.apache.derby.dbdefinition (1.0.2.v200906161815) "Eclipse Data Tools Platform Apache Derby Database Definition" [Starting] org.eclipse.datatools.connectivity.apache.derby.ui (1.0.1.v200906020900) "Eclipse Data Tools Platform Apache Derby UI Plug-in" [Starting] org.eclipse.datatools.connectivity.console.profile (1.0.0.v200906020553) "DTP Connection Profiles Storage File Editor Plug-in" [Starting] org.eclipse.datatools.connectivity.db.generic (1.0.1.v200908130547) "Eclipse Data Tools Platform Generic DB Connectivity Plug-in" [Starting] org.eclipse.datatools.connectivity.db.generic.ui (1.0.1.v200906020900) "Eclipse Data Tools Platform Generic DB UI Plug-in" [Starting] org.eclipse.datatools.connectivity.dbdefinition.genericJDBC (1.0.1.v200906161815) "Eclipse Data Tools Platform DBDefinition Generic JDBC Plug-in" [Starting] org.eclipse.datatools.connectivity.oda (3.2.2.v201001270833) "DTP Open Data Access" [Active] org.eclipse.datatools.connectivity.oda.consumer (3.2.2.v201001261113) "DTP ODA Consumer Helper Component Plug-in" [Active] org.eclipse.datatools.connectivity.oda.design (3.2.2.v201001210350) "DTP ODA Design Session Model" [Active] org.eclipse.datatools.connectivity.oda.design.ui (3.2.2.v201001210350) "DTP ODA Designer UI Framework Plug-in" [Active] org.eclipse.datatools.connectivity.oda.flatfile (3.1.1.v201001131420) "Eclipse Data Tools Platform Flat File ODA Runtime Driver" [Starting] org.eclipse.datatools.connectivity.oda.flatfile.ui (3.1.1.v201001131420) "Eclipse Data Tools Platform Flat File ODA Designer" [Starting] org.eclipse.datatools.connectivity.oda.profile (3.2.2.v201001210350) "DTP ODA Connection Profile Framework Plug-in" [Active] org.eclipse.datatools.connectivity.oda.template.ui (3.2.0.v200906020553) "DTP ODA New Plug-in Template Wizard" [Starting] org.eclipse.datatools.connectivity.sqm.core (1.1.1.me201003052220) "Eclipse Data Tools Platform SQM Core Plug-in" [Active] org.eclipse.datatools.connectivity.sqm.core.ui (1.1.100.v200910270525) "Eclipse Data Tools Platform SQM UI Plug-in" [Starting] org.eclipse.datatools.connectivity.sqm.server.ui (1.1.100.v200910270503) "Eclipse Data Tools Platform Server UI Plug-in" [Starting] org.eclipse.datatools.connectivity.ui (1.1.5.v201001190218) "Data Tools Platform Connectivity UI Plug-in" [Starting] org.eclipse.datatools.connectivity.ui.dse (1.1.3.v201001270323) "Eclipse Data Tools Platform Data Source Explorer Plug-in" [Starting] org.eclipse.datatools.doc.user (1.7.0.20090521092446) "Data Tool Platform User Documentation" [Starting] org.eclipse.datatools.enablement.finfo (1.5.1.v200906161800) "Eclipse Data Tools Platform Enablement" [Starting] org.eclipse.datatools.enablement.hsqldb (1.0.0.v200906020900) "Eclipse Data Tools Platform HSQLDB Enablement Plug-in" [Starting] org.eclipse.datatools.enablement.hsqldb.dbdefinition (1.0.0.v200906161800) "Eclipse Data Tools Platform HSQLDB Database Definition Enablement Plug-in" [Starting] org.eclipse.datatools.enablement.hsqldb.ui (1.0.0.v200906020900) "Eclipse Data Tools Platform HSQLDB UI Enablement Plug-in" [Starting] org.eclipse.datatools.enablement.ibm.db2.iseries (1.0.1.v200906020900) "Eclipse Data Tools Platform IBM DB2 UDB iSeries Plug-in" [Starting] org.eclipse.datatools.enablement.ibm.db2.iseries.dbdefinition (1.0.3.v200906161800) "DB2 UDB iSeries Database Definition Plug-in" [Starting] org.eclipse.datatools.enablement.ibm.db2.iseries.ui (1.0.0.v200906020900) "Eclipse Data Tools Platform IBM DB2 UDB UI iSeries Plug-in" [Starting] org.eclipse.datatools.enablement.ibm.db2.luw (1.0.1.v200906020900) "Eclipse Data Tools Platform IBM DB2 UDB LUW Plug-in" [Starting] org.eclipse.datatools.enablement.ibm.db2.luw.dbdefinition (1.0.3.v200906161800) "Eclipse Data Tools Platform DB2 UDB Database Definition Plug-in" [Starting] org.eclipse.datatools.enablement.ibm.db2.luw.ui (1.0.1.v200906020900) "Eclipse Data Tools Platform IBM DB2 UDB LUW UI Plug-in" [Starting] org.eclipse.datatools.enablement.ibm.db2.zseries (1.0.1.v200906020900) "Eclipse Data Tools Platform IBM DB2 UDB zSeries Plug-in" [Starting] org.eclipse.datatools.enablement.ibm.db2.zseries.dbdefinition (1.0.3.v200906161800) "DB2 UDB Database Definition Plug-in" [Starting] org.eclipse.datatools.enablement.ibm.db2.zseries.ui (1.0.0.v200906020900) "Eclipse Data Tools Platform IBM DB2 UDB zSeries UI Plug-in" [Starting] org.eclipse.datatools.enablement.ibm.informix (1.0.0.v200906020900) "Eclipse Data Tools Platform Informix Plug-in" [Starting] org.eclipse.datatools.enablement.ibm.informix.dbdefinition (1.0.3.v200906161800) "Eclipse Data Tools Platform Informix Database Definition Plug-in" [Starting] org.eclipse.datatools.enablement.ibm.informix.ui (1.0.1.v200906020900) "Eclipse Data Tools Platform Informix UI Plug-in" [Starting] org.eclipse.datatools.enablement.ibm.ui (1.0.0.v200906020900) "Eclipse Data Tools Platform IBM UI Plug-in" [Starting] org.eclipse.datatools.enablement.ingres (1.0.0.v200906111150) "Ingres DTP Plug-in" [Starting] org.eclipse.datatools.enablement.ingres.dbdefinition (1.0.0.v200906161800) "Ingres DTP Database Definition Plug-in" [Starting] org.eclipse.datatools.enablement.ingres.ui (1.0.0.v200906111150) "Ingres DTP UI Plug-in" [Active] org.eclipse.datatools.enablement.jdt.classpath (1.0.1.me201003052220) "Data Tools Platform Connectivity JDT Extension Plug-in" [Starting] org.eclipse.datatools.enablement.msft.sqlserver (1.0.1.v201001180222) "Eclipse Data Tools Platform Microsoft SQL Server Plug-in" [Active] org.eclipse.datatools.enablement.msft.sqlserver.dbdefinition (1.0.0.v200906161800) "Eclipse Data Tools Platform SQL Server Database Definition Plug-in" [Starting] org.eclipse.datatools.enablement.msft.sqlserver.ui (1.0.1.v200908130512) "Eclipse Data Tools Platform Microsoft SQL Server UI Plug-in" [Starting]
-
AuthorPosts