facebook

Creating Web Service with WSDL doesn’t work with array

  1. MyEclipse Archived
  2.  > 
  3. Web Services
Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #257915 Reply

    golduck
    Member

    I have a WSDL with complex data type to generate Web service but failed. I suspect the problem would be array type. So I downloaded a simplest WSDL which includes array types to test, using JAXB2 binding:

    <?xml version=”1.0″ encoding=”UTF-8″?>
    <definitions name=”PriceListService”
    targetNamespace=”http://www.ecerami.com/wsdl/PriceListService.wsdl&#8221;
    xmlns=”http://schemas.xmlsoap.org/wsdl/&#8221;
    xmlns:soap=”http://schemas.xmlsoap.org/wsdl/soap/&#8221;
    xmlns:tns=”http://www.ecerami.com/wsdl/PriceListService.wsdl&#8221;
    xmlns:xsd=”http://www.w3.org/2001/XMLSchema&#8221;
    xmlns:xsd1=”http://www.ecerami.com/schema”&gt;

    <types>
    <schema xmlns=”http://www.w3.org/2001/XMLSchema&#8221;
    targetNamespace=”http://www.ecerami.com/schema&#8221;
    xmlns:wsdl=”http://schemas.xmlsoap.org/wsdl/&#8221;
    xmlns:soapenc=”http://schemas.xmlsoap.org/soap/encoding/”&gt;

    <complexType name=”ArrayOfString”>
    <complexContent>
    <restriction base=”soapenc:Array”>
    <attribute ref=”soapenc:arrayType”
    wsdl:arrayType=”string[]”/>
    </restriction>
    </complexContent>
    </complexType>
    <complexType name=”ArrayOfDouble”>
    <complexContent>
    <restriction base=”soapenc:Array”>
    <attribute ref=”soapenc:arrayType”
    wsdl:arrayType=”double[]”/>
    </restriction>
    </complexContent>
    </complexType>
    </schema>
    </types>

    <message name=”PriceListRequest”>
    <part name=”sku_list” type=”xsd1:ArrayOfString”/>
    </message>

    <message name=”PriceListResponse”>
    <part name=”price_list” type=”xsd1:ArrayOfDouble”/>
    </message>

    <portType name=”PriceList_PortType”>
    <operation name=”getPriceList”>
    <input message=”tns:PriceListRequest”/>
    <output message=”tns:PriceListResponse”/>
    </operation>
    </portType>

    <binding name=”PriceList_Binding” type=”tns:PriceList_PortType”>
    <soap:binding style=”rpc” transport=”http://schemas.xmlsoap.org/soap/http”/&gt;
    <operation name=”getPriceList”>
    <soap:operation soapAction=”urn:examples:pricelistservice”/>
    <input>
    <soap:body
    encodingStyle=”http://schemas.xmlsoap.org/soap/encoding/&#8221;
    namespace=”urn:examples:pricelistservice”
    use=”encoded”/>
    </input>
    <output>
    <soap:body
    encodingStyle=”http://schemas.xmlsoap.org/soap/encoding/&#8221;
    namespace=”urn:examples:pricelistservice” use=”encoded”/>
    </output>
    </operation>
    </binding>

    <service name=”PriceList_Service”>
    <port name=”PriceList_Port” binding=”tns:PriceList_Binding”>
    <soap:address location=”http://localhost:8080/soap/servlet/rpcrouter”/&gt;
    </port>
    </service>
    </definitions>

    but also failed. Error is

    org.codehaus.xfire.gen.GenerationException: Error generating JAXB model.
    at org.codehaus.xfire.gen.jaxb.JAXBSchemaSupport.initialize(JAXBSchemaSupport.java:102)
    at org.codehaus.xfire.gen.Wsdl11Generator.generate(Wsdl11Generator.java:115)
    at com.genuitec.eclipse.ws.xfire.generator.WSGenJob.run(WSGenJob.java:59)
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:58)

    seems like JAXB problem.

    My Installation is:

    *** Date: Fri Sep 01 00:17:24 CST 2006

    *** System properties:
    OS=WindowsXP
    OS version=5.1
    Java version=1.5.0_08

    *** MyEclipse details:
    MyEclipse Enterprise Workbench

    Version: 5.0 GA
    Build id: 20060805-5.0-GA

    *** Eclipse details:
    MyEclipse Enterprise Workbench

    Version: 5.0.1 GA
    Build id: 20060810-5.0.1-GA

    Eclipse Platform

    Version: 3.2.0.v20060609m-AgOexn6hlEUsvBO
    Build id: M20060629-1905

    Eclipse RCP

    Version: 3.2.0.v20060609m-SVDNgVrNoh-MeGG
    Build id: M20060629-1905

    Eclipse Java Development Tools

    Version: 3.2.0.v20060609m-F7snq1fxia-Z4XP
    Build id: M20060629-1905

    Eclipse Plug-in Development Environment

    Version: 3.2.0.v20060609m——6zXJJzJzJq
    Build id: M20060629-1905

    Eclipse Project SDK

    Version: 3.2.0.v20060609m-GNq6oQq-7es-Y81
    Build id: M20060629-1905

    Eclipse Graphical Editing Framework

    Version: 3.2.0.v20060626
    Build id: 20060627-0816

    Eclipse startup command=-os
    win32
    -ws
    win32
    -arch
    x86
    -launcher
    D:\eclipse32\eclipse.exe
    -name
    Eclipse
    -showsplash
    600
    -exitdata
    11c_6c
    -product
    com.genuitec.myeclipse.product.ide
    -vm
    D:\jdk1.5\bin\javaw.exe

    #258016 Reply

    Riyad Kalla
    Member

    This looks like a bug, I have filed it for investigation. Thank you for submitting it.

    #258714 Reply

    lqtlyl
    Member

    Has it been resolved yet? The popular google search api has such type and myeclipse/xfire fails.
    I see quite some wsdl have such type, so this bug seems significant.

    #258783 Reply

    Riyad Kalla
    Member

    It has not been resolved yet, but I will see if the dev team can boost the priority.

    #260275 Reply

    clwandling
    Member

    Is there a work around since I am running into the same problem?

    #260319 Reply

    Riyad Kalla
    Member

    I’m sorry clwandling, I’m not aware of one right now.

    #260354 Reply

    clwandling
    Member

    It seems that no matter what options I use I cannot create a Web Service from a WSDL without getting an error. Is that true?

    #260368 Reply

    From what I have seen, the Web Service client generator does not work at all.

    #260390 Reply

    clwandling
    Member

    In years gone by I always trusted the MyEclipse guys to have pretty good job of shaking out the bugs before going GA. This does not appear to be true anymore. Just this feature alone looks like it was NEVER tested. Or else they tested it and decided to deliver stuff that did not work at all.

    #262346 Reply

    westbrom
    Member

    Has there been a fix for this?

    I have downloaded and installed Version: 5.1.0 GA
    Build id: 20061111-5.1.0-GA and still this issue persists.

    #262358 Reply

    Riyad Kalla
    Member

    To address the cannot-generate-WS from WSDL, the issue is that we currently cannot process RPC/Encoded web services correctly. WE are looking to address this in the 6.0 release. It was something that really pissed off our product manager but we couldn’t stop the entire 5.1 release for it. Sorry about that guys, we know it’s a show stopper for some of you guys, we are working on it.

    #290688 Reply

    ankurmit
    Member

    @support-rkalla wrote:

    To address the cannot-generate-WS from WSDL, the issue is that we currently cannot process RPC/Encoded web services correctly. WE are looking to address this in the 6.0 release. It was something that really pissed off our product manager but we couldn’t stop the entire 5.1 release for it. Sorry about that guys, we know it’s a show stopper for some of you guys, we are working on it.

    Is this solved in Eclipse 6.5

    #290871 Reply

    Riyad Kalla
    Member

    ankurmit,

    It depends on the WSDL, you can install MyEclipse 6.5 and try and gen a service or client from the WSDL, the wizard will validate the WSDL for you and tell you what is wrong if it finds anything.

    #306776 Reply

    Jeff Finley
    Member

    Version 8.0.0 is not generating the soapenc:Array handling like it should. Using Atlassians WSDL to try it out, and it’s a no go.

    WSDL: http://jira.atlassian.com/rpc/soap/jirasoapservice-v2?wsdl

    Log location: http://pastebin.com/2FyAzp0s

    *** Date: Saturday, March 13, 2010 10:57:57 PM CT

    *** Platform Details:

    *** System properties:
    awt.toolkit=sun.awt.windows.WToolkit
    com.genuitec.pulse.client.basedir.location.override=C:\Users\jfinley\AppData\Local\Genuitec
    com.genuitec.pulse.client.blueprint.id=rmb-483043
    com.genuitec.pulse.client.credentials=SlxMq+a2F8sEk1ZKwjLTTc6OjWIuLVlc+RxkXlkH0yKQLVTg6nukUzE+0eFkzlh9BVWD5eoel6cG 1xbHD4i4wxaTF+zfwgfSTptut/rP3ocOsMDXBSL6tVK40wiXZuaCagCRQlSoofHwmb0UJuBx0yd6 whdK84soLbdnwB0LcTw=
    com.genuitec.pulse.client.handshake.id=a8653f2d-d5af-43da-b4ab-4eeea1e97cdc
    com.genuitec.pulse.client.jvmarg.deduplicate.prefixes=-Xmx,-Xms,-Xmm,-XX:MaxPermSize
    com.genuitec.pulse.common.server.url=https://www.poweredbypulse.com:443
    eclipse.commands=-os
    win32
    -ws
    win32
    -arch
    x86
    -showsplash
    -launcher
    C:\Users\jfinley\AppData\Local\Genuitec\Profiles\MyEclipse 8.0\myeclipse.exe
    -name
    Myeclipse
    –launcher.library
    C:\Users\jfinley\AppData\Local\Genuitec\Profiles\MyEclipse 8.0\../../Common/plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090519\eclipse_1206.dll
    -startup
    C:\Users\jfinley\AppData\Local\Genuitec\Profiles\MyEclipse 8.0\../../Common/plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar
    -install
    C:/Users/jfinley/AppData/Local/Genuitec/Profiles/MyEclipse 8.0
    -configuration
    configuration
    -vm
    C:/Users/jfinley/AppData/Local/Genuitec/Common/binary/com.sun.java.jdk.win32.x86_1.6.0.013/jre/bin/client/jvm.dll
    eclipse.home.location=file:/C:/Users/jfinley/AppData/Local/Genuitec/Profiles/MyEclipse 8.0/
    eclipse.launcher=C:\Users\jfinley\AppData\Local\Genuitec\Profiles\MyEclipse 8.0\myeclipse.exe
    eclipse.p2.data.area=C:\Users\jfinley\AppData\Local\Genuitec\Common\configuration
    eclipse.p2.profile=com.poweredbypulse.profile-306180-rmb-483043
    eclipse.product=com.genuitec.myeclipse.product8.ide
    eclipse.startTime=1268443639452
    eclipse.vm=C:/Users/jfinley/AppData/Local/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:\Users\jfinley\AppData\Local\Genuitec\Profiles\MyEclipse 8.0\../../Common/plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar
    file.encoding=Cp1252
    file.encoding.pkg=sun.io
    file.separator=\
    http.proxyHost=
    http.proxyPort=
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    java.class.path=C:\Users\jfinley\AppData\Local\Genuitec\Profiles\MyEclipse 8.0\../../Common/plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar
    java.class.version=50.0
    java.endorsed.dirs=C:\Users\jfinley\AppData\Local\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\lib\endorsed
    java.ext.dirs=C:\Users\jfinley\AppData\Local\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:\Users\jfinley\AppData\Local\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre
    java.io.tmpdir=C:\Users\jfinley\AppData\Local\Temp\
    java.library.path=C:\Users\jfinley\AppData\Local\Genuitec\Profiles\MyEclipse 8.0;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/Users/jfinley/AppData/Local/Genuitec/Common/binary/com.sun.java.jdk.win32.x86_1.6.0.013/jre/bin/client;C:/Users/jfinley/AppData/Local/Genuitec/Common/binary/com.sun.java.jdk.win32.x86_1.6.0.013/jre/bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Lenovo\Access Connections\;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;c:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;c:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;c:\Program Files\Microsoft SQL Server\100\Tools\Binn\;c:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\; c:\Java\jdk1.6.0_18\jre\bin;C:\Program Files (x86)\OpenVPNTech\bin;c:\Java\jdk1.6.0_18\jre\bin;
    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=

    maven.mode.standalone=true
    maynstall.basepath=/pulse/action/
    maynstall.rootelement=pulse
    org.eclipse.debug.ui.breakpoints.toggleFactoriesUsed=false
    org.eclipse.equinox.launcher.splash.location=C:\Users\jfinley\AppData\Local\Genuitec\Common\plugins\com.genuitec.myeclipse.product8_8.0.0.me200911192201\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=en
    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.102.v200911181800.jar@1:start
    osgi.bundles.defaultStartLevel=4
    osgi.bundlestore=C:\Users\jfinley\AppData\Local\Genuitec\Profiles\MyEclipse 8.0\configuration\org.eclipse.osgi\bundles
    osgi.configuration.area=file:/C:/Users/jfinley/AppData/Local/Genuitec/Profiles/MyEclipse 8.0/configuration/
    osgi.framework=file:/C:/Users/jfinley/AppData/Local/Genuitec/Profiles/MyEclipse 8.0/../../Common/plugins/org.eclipse.osgi_3.5.1.R35x_v20090827.jar
    osgi.framework.extensions=
    osgi.framework.shape=jar
    osgi.framework.version=3.5.1.R35x_v20090827
    osgi.install.area=file:/C:/Users/jfinley/AppData/Local/Genuitec/Profiles/MyEclipse 8.0/
    osgi.instance.area=file:/C:/eclipse/workspaces/Android/
    osgi.instance.area.default=file:/C:/Users/jfinley/Workspaces/MyEclipse 8.0/
    osgi.logfile=C:\eclipse\workspaces\Android\.metadata\.log
    osgi.manifest.cache=C:\Users\jfinley\AppData\Local\Genuitec\Profiles\MyEclipse 8.0\configuration\org.eclipse.osgi\manifests
    osgi.nl=en_US
    osgi.os=win32
    osgi.splashLocation=C:\Users\jfinley\AppData\Local\Genuitec\Common\plugins\com.genuitec.myeclipse.product8_8.0.0.me200911192201\splash.bmp
    osgi.splashPath=platform:/base/plugins/com.genuitec.myeclipse.product8
    osgi.syspath=c:\Users\jfinley\AppData\Local\Genuitec\Profiles\MyEclipse 8.0\..\..\Common\plugins
    osgi.tracefile=C:\eclipse\workspaces\Android\.metadata\trace.log
    osgi.ws=win32
    path.separator=;
    product.home=/C:/Users/jfinley/AppData/Local/Genuitec/Common/plugins/org.jboss.tools.common.model_2.0.0.me200911090405/
    pulse.console.redirect=true
    sun.arch.data.model=32
    sun.boot.class.path=C:\Users\jfinley\AppData\Local\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\lib\resources.jar;C:\Users\jfinley\AppData\Local\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\lib\rt.jar;C:\Users\jfinley\AppData\Local\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\lib\sunrsasign.jar;C:\Users\jfinley\AppData\Local\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\lib\jsse.jar;C:\Users\jfinley\AppData\Local\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\lib\jce.jar;C:\Users\jfinley\AppData\Local\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\lib\charsets.jar;C:\Users\jfinley\AppData\Local\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\classes
    sun.boot.library.path=C:\Users\jfinley\AppData\Local\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=Cp1252
    sun.management.compiler=HotSpot Client Compiler
    sun.os.patch.level=
    user.country=US
    user.dir=C:\Users\jfinley\AppData\Local\Genuitec\Profiles\MyEclipse 8.0
    user.home=C:\Users\jfinley
    user.language=en
    user.name=jfinley
    user.timezone=America/Chicago
    user.variant=

    *** Features:

    *** Plug-in Registry:
    com.android.ide.eclipse.adt (0.9.6.v201002051504-24846) “Android Development Toolkit” [Active]
    com.android.ide.eclipse.ddms (0.9.6.v201002051504-24846) “Dalvik Debug Monitor Service” [Active]
    com.genuitec.eclipse.aspphp.core (8.0.0.me200911090405) “MyEclipse ASP and PHP Support Core” [Starting]
    com.genuitec.eclipse.aspphp.ui (8.0.0.me200911090405) “MyEclipse ASP and PHP Support UI” [Starting]
    com.genuitec.eclipse.ast.deploy.core (8.0.0.me200911090405) “MyEclipse Deployment Support” [Active]
    com.genuitec.eclipse.browser (8.0.0.me200911090405) “MyEclipse Web Browser” [Starting]
    com.genuitec.eclipse.core (8.0.0.me200911192113) “MyEclipse Core” [Active]
    com.genuitec.eclipse.core.common (8.0.0.me200911181750) “MyEclipse Common Core Utilities” [Active]
    com.genuitec.eclipse.core.common.platform (8.0.0.me200911181750) “MyEclipse Common Core Platform Utilities” [Active]
    com.genuitec.eclipse.cross.easystruts.eclipse (8.0.0.me200911090405) “MyEclipse Struts Support” [Starting]
    com.genuitec.eclipse.dashboard (8.0.0.me200911170033) “MyEclipse Plugin Dashboard” [Active]
    com.genuitec.eclipse.derby (8.0.0.me200911090405) “MyEclipse Derby” [Active]
    com.genuitec.eclipse.desktop (8.0.0.me200911192043) “MyEclipse Desktop Utilities” [Starting]
    com.genuitec.eclipse.dtd (8.0.0.me200911090405) “MyEclipse DTD Support” [Starting]
    com.genuitec.eclipse.easie.core (8.0.0.me200911181720) “MyEclipse EASIE Core” [Active]
    com.genuitec.eclipse.easie.jboss (8.0.0.me200911090405) “MyEclipse EASIE JBoss” [Active]
    com.genuitec.eclipse.easie.jboss2 (8.0.0.me200911090405) “MyEclipse EASIE JBoss 2” [Active]
    com.genuitec.eclipse.easie.jboss3 (8.0.0.me200911090405) “MyEclipse EASIE JBoss 3” [Active]
    com.genuitec.eclipse.easie.jboss4 (8.0.0.me200911090405) “MyEclipse EASIE JBoss 4” [Active]
    com.genuitec.eclipse.easie.jboss5 (8.0.0.me200911090405) “MyEclipse EASIE JBoss 5” [Active]
    com.genuitec.eclipse.easie.sun (8.0.0.me200911090405) “MyEclipse EASIE Sun One” [Active]
    com.genuitec.eclipse.easie.tomcat (8.0.0.me200911090405) “MyEclipse EASIE Tomcat” [Active]
    com.genuitec.eclipse.easie.tomcat.myeclipse (8.0.0.me200911090405) “MyEclipse EASIE MyEclipse Tomcat 6 Server” [Active]
    com.genuitec.eclipse.easie.tomcat4 (8.0.0.me200911090405) “MyEclipse EASIE Tomcat 4” [Active]
    com.genuitec.eclipse.easie.tomcat5 (8.0.0.me200911090405) “MyEclipse EASIE Tomcat 5” [Active]
    com.genuitec.eclipse.easie.tomcat6 (8.0.0.me200911090405) “MyEclipse EASIE Tomcat 6” [Active]
    com.genuitec.eclipse.examples (8.0.0.me200911090405) “MyEclipse Examples” [Active]
    com.genuitec.eclipse.export.wizard (8.0.0.me200911090405) “MyEclipse J2EE Export Wizards” [Starting]
    com.genuitec.eclipse.fileview (8.0.0.me200911090405) “MyEclipse File View” [Active]
    com.genuitec.eclipse.hibernate (8.0.0.me200911090405) “MyEclipse Hibernate Capabilities” [Active]
    com.genuitec.eclipse.imageeditor (8.0.0.me200911090405) “MyEclipse Image Editor” [Starting]
    com.genuitec.eclipse.integration (8.0.0.me200911090405) “MyEclipse Integration Utilities” [Starting]
    com.genuitec.eclipse.intro (8.0.0.me200911120452) “MyEclipse Intro” [Active]
    com.genuitec.eclipse.j2eedt.core (8.0.0.me200911192043) “MyEclipse Java Enterprise Development Tooling” [Active]
    com.genuitec.eclipse.javascript (8.0.0.me200911090405) “MyEclipse Javascript Support” [Starting]
    com.genuitec.eclipse.javascript.iedebugger (8.0.0.me200911181720) “MyEclipse IE JavaScript Debugger” [Starting]
    com.genuitec.eclipse.javascript.ielaunching (8.0.0.me200911090405) “MyEclipse IE JavaScript Debugger” [Starting]
    com.genuitec.eclipse.jniwrapper (8.0.0.me200911090405) “pluginName” [Starting]
    com.genuitec.eclipse.jsf (8.0.0.me200911131749) “MyEclipse JSF Capabilities” [Active]
    com.genuitec.eclipse.jsf.designer (8.0.0.me200911120452) “MyEclipse JSF Designer Plug-in” [Starting]
    com.genuitec.eclipse.maven (8.0.0.me200911181720) “Maven4MyEclipse Plug-in” [Active]
    com.genuitec.eclipse.memory (8.0.0.me200911090405) “MyEclipse Memory Monitor” [Active]
    com.genuitec.eclipse.modeling.core (8.0.0.me200911090405) “MyEclipse Modeling Core” [Starting]
    com.genuitec.eclipse.modeling.core.layout (8.0.0.me200911090405) “MyEclipse Graph Layout” [Starting]
    com.genuitec.eclipse.persistence.jpa (8.0.0.me200911090405) “MyEclipse JPA” [Active]
    com.genuitec.eclipse.portlet (8.0.0.me200911090405) “MyEclipse Portlet Support” [Starting]
    com.genuitec.eclipse.springframework (8.0.0.me200911090405) “MyEclipse Spring Framework Support” [Active]
    com.genuitec.eclipse.springhibernate (8.0.0.me200911090405) “MyEclipse Spring / Hibernate Support” [Starting]
    com.genuitec.eclipse.sqlexplorer (8.0.0.me200911192043) “MyEclipse Database Explorer Plugin” [Active]
    com.genuitec.eclipse.sqlexplorer.mssql (8.0.0.me200911090405) “MyEclipse SQLServer Support” [Starting]
    com.genuitec.eclipse.sqlexplorer.mysql (8.0.0.me200911090405) “MyEclipse MySQL Support” [Starting]
    com.genuitec.eclipse.sqlexplorer.oracle (8.0.0.me200911090405) “MyEclipse Oracle Database Explorer” [Starting]
    com.genuitec.eclipse.struts (8.0.0.me200911120452) “MyEclipse Struts Capabilities” [Starting]
    com.genuitec.eclipse.struts2 (8.0.0.me200911192114) “MyEclipse Struts 2 Support” [Starting]
    com.genuitec.eclipse.templates (8.0.0.me200911090405) “MyEclipse Code Generation Template Support” [Active]
    com.genuitec.eclipse.wdt.jsp.debug (8.0.0.me200911090405) “MyEclipse JSP Debug Tooling” [Active]
    com.genuitec.eclipse.web.imagepreviewer (8.0.0.me200911090405) “MyEclipse Image Previewer” [Starting]
    com.genuitec.eclipse.webdesigner3 (8.0.0.me200911120452) “MyEclipse Visual Web Designer” [Starting]
    com.genuitec.eclipse.wizards (8.0.0.me200911090405) “MyEclipse File Creation Wizards” [Active]
    com.genuitec.eclipse.ws (8.0.0.me200911090405) “MyEclipse REST Web Services Support” [Active]
    com.genuitec.eclipse.ws.xfire (8.0.0.me200911170033) “MyEclipse Web Services Support” [Active]
    com.genuitec.eclipse.ws.xfire.framework (8.0.0.me200911090405) “MyEclipse XFire Web Services Support” [Active]
    com.genuitec.javascript.debug (8.0.0.me200911090405) “MyEclipse JavaScript Debugger” [Active]
    com.genuitec.javascript.debug.mozilla (8.0.0.me200911090405) “MyEclipse JavaScript Browser” [Resolved]
    com.genuitec.jboss.ide.eclipse.apache.xalan (8.0.0.me200911090405) “MyEclipse XDoclet Apache Xalan” [Resolved]
    com.genuitec.jboss.ide.eclipse.core (8.0.0.me200911090405) “MyEclipse XDoclet Support Core” [Starting]
    com.genuitec.jboss.ide.eclipse.xdoclet.assist (8.0.0.me200911090405) “MyEclipse XDoclet Assist” [Starting]
    com.genuitec.jboss.ide.eclipse.xdoclet.core (8.0.0.me200911090405) “MyEclipse XDoclet Core” [Starting]
    com.genuitec.jboss.ide.eclipse.xdoclet.run (8.0.0.me200911090405) “MyEclipse XDoclet Runner” [Starting]
    com.genuitec.jboss.ide.eclipse.xdoclet.ui (8.0.0.me200911090405) “MyEclipse XDoclet UI Plug-in” [Starting]
    com.genuitec.jsdebugger.registration (8.0.0.me200911131749) “MyEclipse JavaScript Debugger Registration” [Starting]
    com.genuitec.myeclipse.compatibility (8.0.0.me200911090405) “MyEclipse Backward Compatibility” [Active]
    com.genuitec.myeclipse.database (8.0.0.me200911192113) “MyEclipse Database Support” [Resolved]
    com.genuitec.myeclipse.doc (8.0.0.me200911192043) “MyEclipse Documentation” [Starting]
    com.genuitec.myeclipse.doc.toc (8.0.0.me200911192043) “MyEclipse Documentation TOC” [Starting]
    com.genuitec.myeclipse.perspective (8.0.0.me200911192043) “MyEclipse Perspective Plug-in” [Active]
    com.genuitec.myeclipse.product8 (8.0.0.me200911192201) “MyEclipse Product” [Starting]
    com.genuitec.org.eclipse.webbrowser (8.0.0.me200911090405) “MyEclipse Web Browser” [Starting]
    com.genuitec.org.hibernate.eclipse (3.2.4.CR1-me200911090405) “MyEclipse Hibernate Core” [Active]
    com.genuitec.org.hibernate.eclipse.console (3.2.4.CR1-me200911090405) “MyEclipse Hibernate Console” [Active]
    com.genuitec.org.hibernate.eclipse.mapper (3.2.4.CR1-me200911090405) “MyEclipse Hibernate Mapper” [Starting]
    com.genuitec.pulse.client.common.shortcut (2.5.1.v200911181800) “Shortcut Support” [Starting]
    com.genuitec.pulse.client.common.shortcut.win32 (2.5.1.v200911181800) “Windows Shortcut Support” [Resolved]
    com.genuitec.pulse.client.common.ui (2.5.1.v200911181800) “Pulse Common UI” [Resolved]
    com.genuitec.pulse.client.common.ui.win32 (2.5.1.v200911181800) “Pulse Common UI Windows Support” [Resolved]
    com.genuitec.pulse.compatibility.e35 (2.5.1.v200911181800) “Eclipse 3.5 Compatibility” [Resolved]
    com.genuitec.pulse.compatibility.ui.e35 (2.5.1.v200911181800) “Eclipse 3.5 UI Compatibility” [Resolved]
    com.genuitec.pulse2.client.auth.addon (2.5.1.v200911181800) “External Login Service” [Resolved]
    com.genuitec.pulse2.client.authentication (2.5.1.v200911181800) “Client Authentication” [Starting]
    com.genuitec.pulse2.client.common (2.5.1.v200911181800) “Pulse Client Common” [Active]
    com.genuitec.pulse2.client.common.exec (2.5.1.v200911181800) “Common Execution Services” [Active]
    com.genuitec.pulse2.client.common.provisioning (2.5.1.v200911181800) “Common Pulse Provisioning Services” [Active]
    com.genuitec.pulse2.client.installer.common (2.5.1.v200911181800) “Pulse Client Common Services” [Active]
    com.genuitec.pulse2.client.installer.ui (2.5.1.v200911181800) “Pulse Client Installer” [Active]
    com.genuitec.pulse2.client.launcher.ui (2.5.1.v200911181800) “Launcher UI with p2 Support” [Active]
    com.genuitec.pulse2.client.properties (2.5.1.v200911181800) “Pulse Client Properties Service” [Active]
    com.genuitec.pulse2.client.services (2.5.1.v200911181800) “Pulse Client Services” [Active]
    com.genuitec.pulse2.client.services.ui (2.5.1.v200911181800) “Pulse Client Services UI” [Active]
    com.genuitec.pulse2.client.targetcfg.dropins (2.5.1.v200911181800) “Pulse Target Configuration Dropins Extensions” [Active]
    com.genuitec.pulse2.client.targetcfg.jdt (2.5.1.v200911181800) “Pulse Target Configuration JDT Extensions” [Active]
    com.genuitec.pulse2.client.targetcfg.ui (2.5.1.v200911181800) “Pulse Target Configuration UI” [Active]
    com.genuitec.pulse2.client.updatesite (2.5.1.v200911181800) “Pulse Update Site Services” [Active]
    com.genuitec.pulse2.common (2.5.1.v200911181800) “Pulse Common Services” [Active]
    com.genuitec.pulse2.common.http (2.7.0.v200911181800) “Http Plug-in” [Active]
    com.genuitec.pulse2.common.http.httpclient (2.5.1.v200911181800) “Pulse’s HttpClient Communication Provider” [Active]
    com.genuitec.pulse2.common.http.httpclient.ws (2.5.1.v200911181800) “Pulse HttpClient Web Services Client” [Active]
    com.genuitec.pulse2.common.http.oakland (2.5.1.v200911181800) “Pulse’s Oakland Software Provider” [Starting]
    com.genuitec.pulse2.common.http.oakland.ws (2.5.1.v200911181800) “Pulse Oakland Software Web Services” [Starting]
    com.genuitec.pulse2.common.ui (2.5.1.v200911181800) “Pulse Common UI Services” [Active]
    com.genuitec.pulse2.model (2.5.1.v200911181800) “Pulse Data Model” [Active]
    com.genuitec.pulse2.model.clientext (2.5.1.v200911181800) “Client-side Mappings for Context” [Resolved]
    com.ibm.icu (4.0.1.v20090822) “International Components for Unicode for Java (ICU4J)” [Active]
    com.iw.plugins.spindle.core (8.0.0.me200911090405) “MyEclipse Spindle Core Support” [Starting]
    com.jcraft.jsch (0.1.41.v200903070017) “JSch” [Resolved]
    com.lowagie.itext (1.5.4.v20090305) “Lowagie Itext” [Resolved]
    com.myeclipseide.feature.branding (8.0.0.me200911091536) “MyEclipse Enterprise Workbench” [Resolved]
    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.v200911181800) “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.v200911181800) “Cglib Plug-in” [Resolved]
    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.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.3.1.4) “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.2.me200911090405) “Albireo Core (Incubation)” [Resolved]
    org.eclipse.ant.core (3.2.100.v20090817_r351) “Ant Build Tool Core” [Starting]
    org.eclipse.ant.ui (3.4.1.v20090901_r351) “Ant UI” [Active]
    org.eclipse.atf.core (0.2.2.me200911090405) “Core Plug-in (Incubation)” [Starting]
    org.eclipse.atf.mozilla.ide.core (0.2.2.me200911090405) “Mozide Core Plugin (Incubation)” [Starting]
    org.eclipse.atf.mozilla.ide.debug (0.2.2.me200911090405) “Mozilla Debug Plug-in (Incubation)” [Active]
    org.eclipse.atf.mozilla.ide.debug.ui (0.2.2.me200911090405) “Mozilla Debug UI Plug-in (Incubation)” [Active]
    org.eclipse.atf.mozilla.ide.ui (0.2.2.me200911090405) “Moz IDE UI Plug-in (Incubation)” [Active]
    org.eclipse.atf.mozilla.ide.ui.extras (0.2.2.me200911090405) “Mozilla IDE UI Extras Plug-in (Incubation)” [Starting]
    org.eclipse.atf.templates (0.2.2.me200911090405) “Templates Plug-in (Incubation)” [Starting]
    org.eclipse.atf.ui (0.2.2.me200911090405) “Ui Plug-in (Incubation)” [Active]
    org.eclipse.compare (3.5.0.I20090514-0808) “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.100.v20090429-1800) “Expression Language” [Active]
    org.eclipse.core.filebuffers (3.5.0.v20090526-2000) “File Buffers” [Active]
    org.eclipse.core.filesystem (1.2.0.v20090507) “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.1.R35x_v20090826-0451) “Core Resource Management” [Active]
    org.eclipse.core.resources.compatibility (3.4.0.v20090505) “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.300.v200909170800) “Eclipse CVS Client” [Starting]
    org.eclipse.dali.core (0.5.0.me200911090405) “Dali Core” [Starting]
    org.eclipse.dali.db (0.5.0.me200911090405) “Dali DB” [Starting]
    org.eclipse.dali.edit (0.5.0.me200911090405) “Dali Edit” [Starting]
    org.eclipse.dali.gen (0.5.0.me200911090405) “Dali Entity Gen” [Starting]
    org.eclipse.dali.ui (0.5.0.me200911090405) “Dali Java Persistence API (JPA) Tools” [Starting]
    org.eclipse.dali.utility (0.5.0.me200911090405) “Dali Utility” [Starting]
    org.eclipse.datatools.common.doc.user (1.7.0.20090521092446) “Data Tools Platform User Documentation” [Starting]
    org.eclipse.datatools.connectivity (1.1.2.v200908180040) “Data Tools Platform Connectivity Plug-in” [Starting]
    org.eclipse.datatools.connectivity.apache.derby (1.0.100.v200906020900) “Eclipse Data Tools Platform Derby Plug-in” [Starting]
    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.1.v200909031448) “DTP Open Data Access” [Starting]
    org.eclipse.datatools.connectivity.oda.consumer (3.2.1.v200908281118) “DTP ODA Consumer Helper Component Plug-in” [Starting]
    org.eclipse.datatools.connectivity.oda.design (3.2.1.v200909020856) “DTP ODA Design Session Model” [Starting]
    org.eclipse.datatools.connectivity.oda.design.ui (3.2.1.v200908190818) “DTP ODA Designer UI Framework Plug-in” [Starting]
    org.eclipse.datatools.connectivity.oda.flatfile (3.1.0.v200907061455) “Eclipse Data Tools Platform Flat File ODA Runtime Driver” [Starting]
    org.eclipse.datatools.connectivity.oda.flatfile.ui (3.1.0.v200908311750) “Eclipse Data Tools Platform Flat File ODA Designer” [Starting]
    org.eclipse.datatools.connectivity.oda.profile (3.2.0.v200906020553) “DTP ODA Connection Profile Framework Plug-in” [Starting]
    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.0.me200911090405) “Eclipse Data Tools Platform SQM Core Plug-in” [Starting]
    org.eclipse.datatools.connectivity.sqm.core.ui (1.1.100.v200906020553) “Eclipse Data Tools Platform SQM UI Plug-in” [Starting]
    org.eclipse.datatools.connectivity.sqm.server.ui (1.1.100.v200906020553) “Eclipse Data Tools Platform Server UI Plug-in” [Starting]
    org.eclipse.datatools.connectivity.ui (1.1.4.v200908130540) “Data Tools Platform Connectivity UI Plug-in” [Starting]
    org.eclipse.datatools.connectivity.ui.dse (1.1.3.v200906020553) “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” [Starting]
    org.eclipse.datatools.enablement.jdt.classpath (1.0.1.me200911090405) “Data Tools Platform Connectivity JDT Extension Plug-in” [Starting]
    org.eclipse.datatools.enablement.msft.sqlserver (1.0.1.v200906020900) “Eclipse Data Tools Platform Microsoft SQL Server Plug-in” [Starting]
    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]
    org.eclipse.datatools.enablement.mysql (1.0.2.me200911090405) “Eclipse Data Tools Platform MySQL Enablement Plug-in” [Starting]
    org.eclipse.datatools.enablement.mysql.dbdefinition (1.0.4.v200906161800) “Eclipse Data Tools Platform MySQL Database Definition Plug-in” [Starting]
    org.eclipse.datatools.enablement.mysql.ui (1.0.0.v200906020900) “Eclipse Data Tools Platform MySQL UI Plug-in” [Starting]
    org.eclipse.datatools.enablement.oda.ws (1.2.1.v200907300941) “Eclipse Data Tools Platform Web Services ODA Runtime Driver” [Starting]
    org.eclipse.datatools.enablement.oda.ws.ui (1.2.1.v200906230955) “Eclipse Data Tools Platform Web Services ODA Designer” [Starting]
    org.eclipse.datatools.enablement.oda.xml (1.2.0.v200907061455) “Eclipse Data Tools Platform XML ODA Runtime Driver” [Starting]
    org.eclipse.datatools.enablement.oda.xml.ui (1.2.0.v200907270953) “Eclipse Data Tools Platform XML ODA Designer” [Starting]
    org.eclipse.datatools.enablement.oracle (1.0.0.v200908130544) “Eclipse Data Tools Platform Oracle Plug-in” [Starting]
    org.eclipse.datatools.enablement.oracle.dbdefinition (1.0.100.v200906161800) “Eclipse Data Tools Platform Oracle Database Definition Plug-in” [Starting]
    org.eclipse.datatools.enablement.oracle.ui (1.0.1.v200906020900) “Eclipse Data Tools Platform Oracle UI Plug-in” [Starting]
    org.eclipse.datatools.enablement.postgresql (1.0.1.v200906020900) “PostgreSQL Connection Profile and Driver Template Plug-in” [Starting]
    org.eclipse.datatools.enablement.postgresql.dbdefinition (1.0.1.v200906161800) “PostgreSQL DB Definition” [Starting]
    org.eclipse.datatools.enablement.postgresql.ui (1.0.0.v200906020900) “PostgreSQL Connection Profile and Driver Template UI Plug-in” [Starting]
    org.eclipse.datatools.enablement.sap.maxdb (1.0.0.v200906020900) “Eclipse Data Tools Platform MaxDB Enablement Plug-in” [Starting]
    org.eclipse.datatools.enablement.sap.maxdb.dbdefinition (1.0.0.v200906161800) “Eclipse Data Tools Platform MaxDB Definition Plug-in” [Starting]
    org.eclipse.datatools.enablement.sap.maxdb.ui (1.0.0.v200906020900) “Eclipse Data Tools Platform MaxDB UI Plug-in” [Starting]
    org.eclipse.datatools.enablement.sqlite (1.0.0.v200906020900) “Eclipse Data Tools Platform SQLite Enablement Plug-in” [Starting]
    org.eclipse.datatools.enablement.sqlite.dbdefinition (1.0.1.v200906161800) “Eclipse Data Tools Platform SQLite Database Definition Enablement Plug-in” [Starting]
    org.eclipse.datatools.enablement.sqlite.ui (1.0.0.v200906020900) “Eclipse Data Tools Platform SQLite UI Enablement Plug-in” [Starting]
    org.eclipse.datatools.enablement.sybase (1.0.1.v200906020900) “High-level Sybase Enablement Plug-in” [Starting]
    org.eclipse.datatools.enablement.sybase.asa (1.0.1.v200906020900) “Sybase ASA Plug-in” [Starting]
    org.eclipse.datatools.enablement.sybase.asa.dbdefinition (1.0.0.v200906161800) “Eclipse Data Tools Platform Sybase ASA Database Definition” [Starting]
    org.eclipse.datatools.enablement.sybase.asa.models (1.0.0.v200906020900) “Sybase ASA SQL Model” [Starting]
    org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples (2.5.0.200810071) “Sybase ASA Schema Object Editor” [Starting]
    org.eclipse.datatools.enablement.sybase.asa.ui (1.0.1.v200906111150) “Sybase ASA Connection Profile UI Plug-in” [Starting]
    org.eclipse.datatools.enablement.sybase.ase (1.0.1.v200906020900) “JDBC/Sybase ASE Connection Profile Plug-in” [Starting]
    org.eclipse.datatools.enablement.sybase.ase.dbdefinition (1.0.0.v200906161800) “Eclipse Data Tools Platform Sybase ASE Database Definition” [Starting]
    org.eclipse.datatools.enablement.sybase.ase.models (1.0.1.v200906020900) “Sybase ASE Model Plug-in” [Starting]
    org.eclipse.datatools.enablement.sybase.ase.ui (1.0.1.v200906020900) “ASE Enablement UI Plug-in” [Starting]
    org.eclipse.datatools.enablement.sybase.models (1.0.0.v200906020900) “Sybase Model Plug-in” [Starting]
    org.eclipse.datatools.enablement.sybase.ui (1.0.0.v200906090458) “Sybase UI Plug-in” [Starting]
    org.eclipse.datatools.help (1.5.0.v200906020553) “Data Tools Platform Help Utilities” [Resolved]
    org.eclipse.datatools.modelbase.dbdefinition (1.0.1.v200906022249) “Eclipse Data Tools Platform DBDefinition Model” [Starting]
    org.eclipse.datatools.modelbase.derby (1.0.0.v200906020900) “Eclipse Data Tools Platform Derby Model Plug-in” [Starting]
    org.eclipse.datatools.modelbase.sql (1.0.2.v200906022249) “Eclipse Data Tools Platform SQLModel Plug-in” [Starting]
    org.eclipse.datatools.modelbase.sql.edit (1.0.0.v200906022249) “Eclipse Data Tools Platform SQLModel Edit Plug-in” [Starting]
    org.eclipse.datatools.modelbase.sql.query (1.0.1.v200906022249) “Eclipse Data Tools Platform SQL Query Model Plugin” [Starting]
    org.eclipse.datatools.modelbase.sql.query.edit (1.0.0.v200906022249) “SQL Query Edit Support Plugin” [Starting]
    org.eclipse.datatools.modelbase.sql.xml.query (1.0.0.v200906022249) “Eclipse Data Tools Platform SQL XML Query Model Plugin” [Starting]
    org.eclipse.datatools.oda.cshelp (1.1.1.v200907031118) “DTP ODA Context-sensitive Help” [Starting]
    org.eclipse.datatools.sqltools.common.ui (1.0.0.v200906022302) “Eclipse Data Tools Platform SQL Tools Common UI Plug-in” [Starting]
    org.eclipse.datatools.sqltools.db.derby (1.0.0.v200906020900) “Eclipse Data Tools Platform Derby SQL Tools Plug-in” [Starting]
    org.eclipse.datatools.sqltools.db.derby.ui (1.0.0.v200906020900) “Eclipse Data Tools Platform Derby SQL Tools UI Plug-in” [Starting]
    org.eclipse.datatools.sqltools.db.generic (1.0.0.v200906020900) “Eclipse Data Tools Platform SQL Tools Generic Database Plug-in” [Starting]
    org.eclipse.datatools.sqltools.db.generic.ui (1.0.0.v200906020900) “Eclipse Data Tools Platform SQL Tools Generic Database UI Plug-in” [Starting]
    org.eclipse.datatools.sqltools.ddlgen.ui (1.0.0.v200906022302) “Eclipse Data Tools Platform FE UI Plug-in” [Starting]
    org.eclipse.datatools.sqltools.debugger.core (1.0.0.v200906022302) “Eclipse Data Tools Platform SQL Debugger Framework” [Starting]
    org.eclipse.datatools.sqltools.debugger.core.ui (1.0.0.me200911090405) “Eclipse Data Tools Platform SQL Debugger UI Framework” [Starting]
    org.eclipse.datatools.sqltools.editor.core (1.0.0.v200906022302) “Eclipse Data Tools Platform SQL Editor Core Plug-in” [Starting]
    org.eclipse.datatools.sqltools.editor.core.ui (1.0.0.v200906022302) “Eclipse Data Tools Platform SQL Editor Core UI Plug-in” [Starting]
    org.eclipse.datatools.sqltools.parsers.sql (1.0.1.v200906022302) “Eclipse Data Tools Platform SQL Parser Plugin” [Starting]
    org.eclipse.datatools.sqltools.parsers.sql.lexer (1.0.1.v200906030654) “Eclipse Data Tools Platform Lexer Plug-in” [Starting]
    org.eclipse.datatools.sqltools.parsers.sql.query (1.0.1.v200906022302) “Eclipse Data Tools Platform SQL Query Parser Plugin” [Starting]
    org.eclipse.datatools.sqltools.parsers.sql.xml.query (1.0.0.v200906022302) “Eclipse Data Tools Platform SQL XML Query Parser Plugin” [Starting]
    org.eclipse.datatools.sqltools.plan (1.0.0.v200906022302) “Eclipse Data Tools Platform SQL Execution Plan View Plug-in” [Starting]
    org.eclipse.datatools.sqltools.result (1.0.0.v200906022302) “Eclipse Data Tools Platform SQL Results View Plug-ins” [Starting]
    org.eclipse.datatools.sqltools.result.ui (1.0.1.v200908070830) “Eclipse Data Tools Platform SQL Results View UI Plug-in” [Starting]
    org.eclipse.datatools.sqltools.routineeditor (1.0.0.v200906022302) “Eclipse Data Tools Platform SQL Tools Routine Editor Plug-in” [Starting]
    org.eclipse.datatools.sqltools.routineeditor.ui (1.0.0.v200906022302) “Eclipse Data Tools Platform SQL Tools Routine Editor UI Plug-in” [Starting]
    org.eclipse.datatools.sqltools.schemaobjecteditor (1.1.0.v200906022302) “Schema Object Editor Plug-in” [Starting]
    org.eclipse.datatools.sqltools.schemaobjecteditor.ui (1.1.0.200810071) “Schema Object Editor Framework” [Starting]
    org.eclipse.datatools.sqltools.schemaobjecteditor.ui.pages (1.1.0.200810071) “Schema Object Editor Pages Plug-in” [Starting]
    org.eclipse.datatools.sqltools.sql (1.0.0.v200906022302) “Eclipse Data Tools Platform SQL Core Plug-in” [Starting]
    org.eclipse.datatools.sqltools.sql.ui (1.0.0.v200906022302) “Eclipse Data Tools Platform SQL Core UI Plug-in” [Starting]
    org.eclipse.datatools.sqltools.sqlbuilder (1.0.0.me200911090405) “SQL Builder” [Starting]
    org.eclipse.datatools.sqltools.sqleditor (1.0.0.me200911090405) “Eclipse Data Tools Platform SQL Editor” [Starting]
    org.eclipse.datatools.sqltools.sqlscrapbook (1.0.0.me200911090405) “Eclipse Data Tools Platform Sqlscrapbook Plug-in” [Starting]
    org.eclipse.debug.core (3.5.0.v20090526-1600) “Debug Core” [Active]
    org.eclipse.debug.ui (3.5.1.v20090811_r351) “Debug UI” [Active]
    org.eclipse.dltk (1.0.0.me200911090405) “Eclipse Dynamic Languages Toolkit” [Resolved]
    org.eclipse.dltk.console (1.0.0.me200911090405) “Dynamic Languages Toolkit Console Core” [Starting]
    org.eclipse.dltk.console.ui (1.0.0.me200911090405) “Dynamic Languages Toolkit Console UI” [Starting]
    org.eclipse.dltk.core (1.0.0.me200911090405) “Dynamic Languages Toolkit Core” [Active]
    org.eclipse.dltk.debug (1.0.0.me200911131749) “Dynamic Languages Toolkit Debug Core” [Starting]
    org.eclipse.dltk.debug.ui (2.0.0.me200911090405) “Dynamic Languages Toolkit Debug UI” [Starting]
    org.eclipse.dltk.javascript.core (2.0.0.me200911090405) “Dynamic Languages JavaScripr Core” [Active]
    org.eclipse.dltk.javascript.debug (1.0.0.me200911090405) “Dynamic Languages Toolkit JavaScript Debug Core” [Starting]
    org.eclipse.dltk.javascript.debug.ui (1.0.0.me200911192043) “Dynamic Languages Toolkit JavaScript Debug UI” [Starting]
    org.eclipse.dltk.javascript.jsjdtdebugger (1.0.0.me200911090405) “Dynamic Languages Toolkit JavaScript/JDT debugging engine” [Starting]
    org.eclipse.dltk.javascript.launching (1.0.0.me200911090405) “Dynamic Languages Toolkit JavaScript Launching Core” [Starting]
    org.eclipse.dltk.javascript.ui (1.0.0.me200911090405) “Dynamic Languages Toolkit Javascript UI” [Starting]
    org.eclipse.dltk.launching (2.0.0.me200911090405) “Dynamic Languages Toolkit Launching Core” [Active]
    org.eclipse.dltk.ui (1.0.0.me200911090405) “Dynamic Languages Toolkit Core UI” [Active]
    org.eclipse.draw2d (3.5.1.v20090813-1341) “Graphical Editing Framework Draw2d” [Active]
    org.eclipse.ecf (3.0.0.v200911181800) “Eclipse Communication Framework (ECF)” [Active]
    org.eclipse.ecf.filetransfer (3.0.0.v200911181800) “ECF Filetransfer API” [Active]
    org.eclipse.ecf.identity (3.0.0.v200911181800) “ECF Identity API” [Active]
    org.eclipse.ecf.provider.filetransfer (3.0.0.v200911181800) “ECF Filetransfer Provider” [Active]
    org.eclipse.ecf.provider.filetransfer.httpclient (3.0.0.v200911181800) “ECF HttpClient Filetransfer Provider” [Active]
    org.eclipse.ecf.provider.filetransfer.httpclient.ssl (1.0.0.v200911181800) “ECF HttpClient Filetransfer Provider” [Resolved]
    org.eclipse.ecf.provider.filetransfer.ssl (1.0.0.v200911181800) “ECF Filetransfer Provider” [Resolved]
    org.eclipse.ecf.ssl (1.0.0.v200911181800) “Eclipse Communication Framework (ECF)” [Resolved]
    org.eclipse.emf (2.5.0.v200906151043) “EMF – Eclipse Modeling Framework Runtime and Tools” [Starting]
    org.eclipse.emf.ant (2.4.0.v200906151043) “EMF Ant Tasks” [Starting]
    org.eclipse.emf.codegen (2.5.0.v200906151043) “EMF Code Generation” [Starting]
    org.eclipse.emf.codegen.ecore (2.5.0.v200906151043) “EMF Ecore Code Generator” [Starting]
    org.eclipse.emf.codegen.ecore.ui (2.5.0.v200906151043) “EMF Ecore Code Generator UI” [Starting]
    org.eclipse.emf.codegen.ui (2.5.0.v200906151043) “EMF Code Generation UI” [Starting]
    org.eclipse.emf.common (2.5.0.v200906151043) “EMF Common” [Active]
    org.eclipse.emf.common.ui (2.5.0.v200906151043) “EMF Common UI” [Starting]
    org.eclipse.emf.commonj.sdo (2.4.0.v200902171115) “CommonJ SDO – Service Data Objects” [Starting]
    org.eclipse.emf.converter (2.5.0.v200906151043) “EMF Model Converter” [Starting]
    org.eclipse.emf.databinding (1.1.0.v200906151043) “EMF Data Binding” [Starting]
    org.eclipse.emf.databinding.edit (1.1.0.v200906151043) “EMF Edit Data Binding” [Starting]
    org.eclipse.emf.ecore (2.5.0.v200906151043) “EMF Ecore” [Active]
    org.eclipse.emf.ecore.change (2.5.0.v200906151043) “EMF Change Model” [Starting]
    org.eclipse.emf.ecore.change.edit (2.5.0.v200906151043) “EMF Change Edit” [Starting]
    org.eclipse.emf.ecore.edit (2.5.0.v200906151043) “EMF Ecore Edit” [Starting]
    org.eclipse.emf.ecore.editor (2.5.0.v200906151043) “EMF Sample Ecore Editor” [Starting]
    org.eclipse.emf.ecore.sdo (2.4.0.v200902171115) “EMF SDO – EMF’s Service Data Objects Implementation” [Starting]
    org.eclipse.emf.ecore.xmi (2.5.0.v200906151043) “EMF XML/XMI Persistence” [Active]
    org.eclipse.emf.edit (2.5.0.v200906151043) “EMF Edit” [Starting]
    org.eclipse.emf.edit.ui (2.5.0.v200906151043) “EMF Edit UI” [Starting]
    org.eclipse.emf.exporter (2.5.0.v200906151043) “EMF Model Exporter” [Starting]
    org.eclipse.emf.importer (2.5.0.v200906151043) “EMF Model Importer” [Starting]
    org.eclipse.emf.importer.ecore (2.4.0.v200906151043) “EMF Ecore Importer” [Starting]
    org.eclipse.emf.importer.java (2.5.0.v200906151043) “EMF Annotated Java Importer” [Starting]
    org.eclipse.emf.importer.rose (2.5.0.v200906151043) “EMF Rose Importer” [Starting]
    org.eclipse.emf.mapping (2.5.0.v200906151043) “EMF Mapping” [Starting]
    org.eclipse.emf.mapping.ecore (2.5.0.v200906151043) “EMF Ecore Mapping” [Starting]
    org.eclipse.emf.mapping.ecore.editor (2.5.0.v200906151043) “EMF Ecore Mapping Editor” [Starting]
    org.eclipse.emf.mapping.ecore2ecore (2.5.0.v200906151043) “EMF Ecore to Ecore Mapping” [Starting]
    org.eclipse.emf.mapping.ecore2ecore.editor (2.4.0.v200906151043) “EMF Ecore to Ecore Mapping Editor” [Starting]
    org.eclipse.emf.mapping.ecore2xml (2.5.0.v200906151043) “EMF Ecore to XML Mapping” [Starting]
    org.eclipse.emf.mapping.ecore2xml.ui (2.5.0.v200906151043) “EMF Ecore to XML Mapping Editor” [Starting]
    org.eclipse.emf.mapping.ui (2.5.0.v200906151043) “EMF Mapping UI” [Starting]
    org.eclipse.equinox.app (1.2.0.v20090520-1800) “Equinox Application Container” [Active]
    org.eclipse.equinox.common (3.5.1.R35x_v20090807-1100) “Common Eclipse Runtime” [Active]
    org.eclipse.equinox.concurrent (1.0.1.R35x_v20100209) “Equinox Concurrent API” [Starting]
    org.eclipse.equinox.ds (1.1.1.R35x_v20090806) “Declarative Services” [Resolved]
    org.eclipse.equinox.frameworkadmin (1.0.100.v200911181800) “Equinox Framework Admin” [Active]
    org.eclipse.equinox.frameworkadmin.equinox (1.0.100.v200911181800) “Equinox Framework Admin for Equinox” [Active]
    org.eclipse.equinox.http.jetty (2.0.0.v20090520-1800) “Jetty Http Service” [Active]
    org.eclipse.equinox.http.registry (1.0.200.v20090520-1800) “Http Service Registry Extensions” [Active]
    org.eclipse.equinox.http.servlet (1.0.200.v20090520-1800) “Http Services Servlet” [Active]
    org.eclipse.equinox.jsp.jasper (1.0.200.v20090520-1800) “Jasper Jsp Support Bundle” [Active]
    org.eclipse.equinox.jsp.jasper.registry (1.0.100.v20090520-1800) “Jasper Jsp Registry Support Plug-in” [Active]
    org.eclipse.equinox.launcher (1.0.201.R35x_v20090715) “Equinox Launcher” [Resolved]
    org.eclipse.equinox.launcher.win32.win32.x86 (1.0.200.v20090519) “Equinox Launcher Win32 X86 Fragment” [Resolved]
    org.eclipse.equinox.p2.artifact.optimizers (1.0.0.v200911181800) “Equinox p2 Artifact Optimizers” [Starting]
    org.eclipse.equinox.p2.artifact.processors (1.0.100.v200911181800) “Equinox p2 Artifact Processing Support” [Starting]
    org.eclipse.equinox.p2.artifact.repository (1.0.100.v200911181800) “Equinox Provisioning Artifact Repository Support” [Active]
    org.eclipse.equinox.p2.console (1.0.100.v200911181800) “Equinox Provisioning Console” [Starting]
    org.eclipse.equinox.p2.core (1.0.100.v200911181800) “Equinox Provisioning Core” [Active]
    org.eclipse.equinox.p2.director (1.0.100.v200911181800) “Equinox Provisioning Director” [Active]
    org.eclipse.equinox.p2.director.app (1.0.100.v200911181800) “Equinox Provisioning Director Application” [Starting]
    org.eclipse.equinox.p2.directorywatcher (1.0.100.v200911181800) “Equinox Provisioning Directory Watcher” [Active]
    org.eclipse.equinox.p2.engine (1.0.100.v200911181800) “Equinox Provisioning Engine” [Active]
    org.eclipse.equinox.p2.exemplarysetup (1.0.100.v200911181800) “Equinox Provisioning Exemplary Setup” [Active]
    org.eclipse.equinox.p2.extensionlocation (1.0.100.v200911181800) “Extension Location Repository Support” [Starting]
    org.eclipse.equinox.p2.garbagecollector (1.0.100.v200911181800) “Provisioning Garbage Collector” [Active]
    org.eclipse.equinox.p2.jarprocessor (1.0.100.v200911181800) “Equinox Provisioning JAR Processor” [Resolved]
    org.eclipse.equinox.p2.metadata (1.0.100.v200911181800) “Equinox Provisioning Metadata” [Active]
    org.eclipse.equinox.p2.metadata.generator (1.0.100.v200911181800) “Equinox Provisioning Metadata Generator” [Starting]
    org.eclipse.equinox.p2.metadata.repository (1.0.100.v200911181800) “Equinox Provisioning Metadata Repository” [Active]
    org.eclipse.equinox.p2.publisher (1.0.0.v200911181800) “Equinox Provisioning Publisher” [Starting]
    org.eclipse.equinox.p2.reconciler.dropins (1.0.100.v200911181800) “Dropin Reconciler Plug-in” [Active]
    org.eclipse.equinox.p2.repository (1.0.0.v200911181800) “Equinox Provisioning Repository” [Active]
    org.eclipse.equinox.p2.repository.tools (1.0.2.v200911181800) “Equinox p2 repository tools.” [Starting]
    org.eclipse.equinox.p2.sar (0.1.0) “Sar Plug-in” [Starting]
    org.eclipse.equinox.p2.touchpoint.eclipse (1.0.100.v200911181800) “Equinox Provisioning Eclipse Touchpoint” [Starting]
    org.eclipse.equinox.p2.touchpoint.natives (1.0.100.v200911181800) “Equinox Provisioning Native Touchpoint” [Starting]
    org.eclipse.equinox.p2.ui (1.0.100.v200911181800) “Equinox Provisioning UI Support” [Active]
    org.eclipse.equinox.p2.ui.sdk (1.0.100.v200911181800) “Equinox Provisioning Platform Update Support” [Starting]
    org.eclipse.equinox.p2.ui.sdk.scheduler (1.0.0.v200911181800) “Equinox Provisioning Platform Automatic Update Support” [Starting]
    org.eclipse.equinox.p2.updatechecker (1.1.0.v200911181800) “Equinox Provisioning Update Checker” [Resolved]
    org.eclipse.equinox.p2.updatesite (1.0.100.v200911181800) “Update site repository adapter bundle (Incubation)” [Starting]
    org.eclipse.equinox.preferences (3.2.300.v20090520-1800) “Eclipse Preferences Mechanism” [Active]
    org.eclipse.equinox.registry (3.4.100.v20090520-1800) “Extension Registry Support” [Active]
    org.eclipse.equinox.security (1.0.100.v200911181800) “Equinox Java Authentication and Authorization Service (JAAS)” [Active]
    org.eclipse.equinox.security.ui (1.0.100.v200911181800) “Equinox Security Default UI” [Starting]
    org.eclipse.equinox.security.win32.x86 (1.0.100.v200911181800) “Windows Data Protection services integration” [Resolved]
    org.eclipse.equinox.simpleconfigurator (1.0.102.v200911181800) “Simple Configurator” [Active]
    org.eclipse.equinox.simpleconfigurator.manipulator (1.0.100.v200911181800) “Simple Configurator Manipulator” [Active]
    org.eclipse.equinox.util (1.0.100.v20090520-1800) “Equinox Util Bundle” [Starting]
    org.eclipse.gef (3.5.0.v20090528-1511) “Graphical Editing Framework GEF” [Active]
    org.eclipse.help (3.4.1.v20090805_35x) “Help System Core” [Active]
    org.eclipse.help.appserver (3.1.400.v20090429_1800) “Help Application Server” [Starting]
    org.eclipse.help.base (3.4.0.v200909170800) “Help System Base” [Active]
    org.eclipse.help.ui (3.4.1.v20090819_35x) “Help System UI” [Active]
    org.eclipse.help.webapp (3.4.1.v20090819_35x) “Help System Webapp” [Active]
    org.eclipse.jdt (3.5.1.v200909170800) “Eclipse Java Development Tools” [Resolved]
    org.eclipse.jdt.apt.core (3.3.201.R35x_v20090818-0235) “Java Annotation Processing Core” [Active]
    org.eclipse.jdt.apt.pluggable.core (1.0.201.R35x_v20090818-0225) “Java Compiler Apt IDE” [Active]
    org.eclipse.jdt.apt.ui (3.3.200.v20090528-1135) “Java Annotation Processing UI” [Starting]
    org.eclipse.jdt.compiler.apt (1.0.201.R35x_v20090825-1530) “Java Compiler Apt” [Resolved]
    org.eclipse.jdt.compiler.tool (1.0.100.v_972_R35x) “Java Compiler Tool Support” [Resolved]
    org.eclipse.jdt.core (3.5.1.v_972_R35x) “Java Development Tools Core” [Active]
    org.eclipse.jdt.core.manipulation (1.3.0.v20090603) “Java Code Manipulation Functionality” [Active]
    org.eclipse.jdt.debug (3.5.0.v20090526) “JDI Debug Model” [Active]
    org.eclipse.jdt.debug.ui (3.4.1.v20090811_r351) “JDI Debug UI” [Active]
    org.eclipse.jdt.doc.user (3.5.1.r351_v20090821-0800) “Eclipse Java development user guide” [Resolved]
    org.eclipse.jdt.junit (3.5.1.r351_v20090708-0800) “Java Development Tools JUnit support” [Active]
    org.eclipse.jdt.junit.runtime (3.4.100.v20090513-2000) “Java Development Tools JUnit runtime support” [Resolved]
    org.eclipse.jdt.junit4.runtime (1.1.0.v20090513-2000) “Java Development Tools JUnit4 runtime support” [Resolved]
    org.eclipse.jdt.launching (3.5.0.v20090527) “Java Development Tools Launching Support” [Active]
    org.eclipse.jdt.ui (3.5.1.r351_v20090821-0800) “Java Development Tools UI” [Active]
    org.eclipse.jem (2.0.300.v200901272200) “Java EMF Model” [Active]
    org.eclipse.jem.beaninfo (2.0.300.v200905030615) “Java EMF Model BeanInfo (Introspection) Support” [Starting]
    org.eclipse.jem.beaninfo.vm (2.0.200.v200811260651) “JEM Beaninfo VM Jar” [Resolved]
    org.eclipse.jem.beaninfo.vm.common (2.0.201.v200908101600) “JEM Beaninfo Common Jar” [Resolved]
    org.eclipse.jem.proxy (2.0.201.v200908101600) “Java EMF Model Proxy Support” [Starting]
    org.eclipse.jem.util (2.0.200.v200905140200) “Java EMF Model Utilities” [Active]
    org.eclipse.jem.workbench (2.0.201.v200908271530) “Java EMF Model Workbench Support” [Starting]
    org.eclipse.jface (3.5.1.M20090826-0800) “JFace” [Active]
    org.eclipse.jface.databinding (1.3.1.M20090826-0800) “JFace Data Binding for SWT and JFace” [Resolved]
    org.eclipse.jface.text (3.5.1.r351_v20090708-0800) “JFace Text” [Resolved]
    org.eclipse.jpt.core (2.2.1.me200911090405) “Dali Java Persistence Tools – Core” [Active]
    org.eclipse.jpt.db (1.2.101.v200908270220) “Dali Java Persistence Tools – DB” [Starting]
    org.eclipse.jpt.utility (1.4.0.v200905310000) “Dali Java Persistence Tools – Utility” [Resolved]
    org.eclipse.jsch.core (1.1.100.I20090430-0408) “JSch Core” [Active]
    org.eclipse.jsch.ui (1.1.200.I20090430-0408) “JSch UI” [Starting]
    org.eclipse.jst.common.annotations.controller (1.1.100.v200805140020) “Annotation Controller Plug-in” [Resolved]
    org.eclipse.jst.common.annotations.core (1.1.100.v200805140020) “Annotation Core Plug-in” [Resolved]
    org.eclipse.jst.common.annotations.ui (1.1.102.v200806010600) “Annotations UI Plug-in” [Starting]
    org.eclipse.jst.common.frameworks (1.1.300.v200904132230) “Integration Plug-in” [Starting]
    org.eclipse.jst.common.project.facet.core (1.4.1.v200908111817) “Eclipse Faceted Project Framework JDT Enablement” [Active]
    org.eclipse.jst.common.project.facet.ui (1.4.1.v200908111817) “Eclipse Faceted Project Framework JDT Enablement UI” [Starting]
    org.eclipse.jst.ejb.ui (1.1.301.v200908131325) “WTP EJB UI Plug-in” [Starting]
    org.eclipse.jst.ejb.ui.infopop (1.0.200.v200905141725) “EJB infopop” [Starting]
    org.eclipse.jst.j2ee (1.1.301.me200911090405) “Java EE Component” [Active]
    org.eclipse.jst.j2ee.core (1.1.301.me200911090405) “J2EE Core Component” [Active]
    org.eclipse.jst.j2ee.ejb (1.1.300.me200911090405) “EJB component Plug-in” [Starting]
    org.eclipse.jst.j2ee.ejb.annotation.model (1.1.102.v200805140020) “EJB Annotation Model Plug-in” [Starting]
    org.eclipse.jst.j2ee.ejb.annotations.emitter (1.1.102.v200805140135) “EJB Emitter Plug-in” [Starting]
    org.eclipse.jst.j2ee.ejb.annotations.ui (1.1.102.v200805140020) “EJB Annotations Ui Plug-in” [Starting]
    org.eclipse.jst.j2ee.ejb.annotations.xdoclet (1.2.0.me200911090405) “Xdoclet Annotations Plug-in” [Starting]
    org.eclipse.jst.j2ee.infopop (1.0.300.v200805140415) “J2EE tools infopops” [Resolved]
    org.eclipse.jst.j2ee.jca (1.1.300.me200911090405) “JCA Plug-in” [Starting]
    org.eclipse.jst.j2ee.jca.ui (1.1.300.v200809052300) “WTP JCA UI Plug-in” [Starting]
    org.eclipse.jst.j2ee.navigator.ui (1.1.300.me200911090405) “J2EE Extensions to Common Navigator” [Starting]
    org.eclipse.jst.j2ee.ui (1.1.301.me200911090405) “WTP J2EE UI Plug-in” [Starting]
    org.eclipse.jst.j2ee.web (1.1.301.me200911090405) “Web Plug-in” [Starting]
    org.eclipse.jst.j2ee.webservice (1.1.300.v200901220600) “Web Service Plug-in” [Starting]
    org.eclipse.jst.j2ee.webservice.ui (1.1.300.v200902052230) “WTP Webservice UI Plug-in” [Starting]
    org.eclipse.jst.j2ee.xdoclet.runtime (1.1.102.v200805140135) “XDocletRuntime Plug-in” [Starting]
    org.eclipse.jst.jee (1.0.201.v200909030330) “JEE common Plug-in” [Active]
    org.eclipse.jst.jee.ejb (1.0.201.v200908101600) “JEE Ejb Plug-in” [Starting]
    org.eclipse.jst.jee.ui (1.0.201.me200911090405) “Eclipse Java EE Developer Tools” [Starting]
    org.eclipse.jst.jee.web (1.0.200.v200904130912) “JEE Web Plug-in” [Starting]
    org.eclipse.jst.jsf.apache.trinidad.tagsupport (1.1.0.v20090525) “JavaServer Faces Tools – Taglibrary Metadata (Apache Trinidad)” [Starting]
    org.eclipse.jst.jsf.common (1.1.7.me200911090405) “JavaServer Faces Tools – Common” [Active]
    org.eclipse.jst.jsf.common.runtime (1.0.201.v20090205) “JavaServer Faces Tools – Common Runtime” [Starting]
    org.eclipse.jst.jsf.common.ui (1.1.1.me200911090405) “JavaServer Faces Tools – Common UI” [Starting]
    org.eclipse.jst.jsf.core (1.2.2.me200911131749) “JavaServer Faces Tools – Core” [Active]
    org.eclipse.jst.jsf.facesconfig (1.1.3.me200911090405) “JavaServer Faces Tools – FacesConfig Model” [Starting]
    org.eclipse.jst.jsf.facesconfig.ui (1.1.5.v20090902) “JavaServer Faces Tools – FacesConfig Editor” [Starting]
    org.eclipse.jst.jsf.standard.tagsupport (1.1.204.v20090903) “JavaServer Faces Tools – Taglibrary Metadata” [Starting]
    org.eclipse.jst.jsf.ui (1.2.1.me200911090405) “JavaServer Faces Tools – UI” [Starting]
    org.eclipse.jst.jsp.core (1.2.203.me200911192043) “Structured Source JSP Model” [Active]
    org.eclipse.jst.jsp.ui (1.1.401.me200911181720) “SSE JSP Source Editor” [Active]
    org.eclipse.jst.jsp.ui.infopop (1.0.100.v200805301545) “JSP tools infopops” [Resolved]
    org.eclipse.jst.pagedesigner (1.2.2.me200911181720) “JavaServer Faces Tools – Web Page Editor” [Starting]
    org.eclipse.jst.pagedesigner.jsf.ui (1.1.3.me200911090405) “JavaServer Faces Tools – Pagedesigner UI” [Starting]
    org.eclipse.jst.pagedesigner.jsp.core (1.1.2.me200911090405) “JavaServer Faces Tools – JSP Core Pagedesigner” [Starting]
    org.eclipse.jst.server.core (1.2.0.me200911090405) “Java Server Support” [Starting]
    org.eclipse.jst.server.generic.core (1.0.506.v20090817) “Generic Server Plugin” [Starting]
    org.eclipse.jst.server.generic.jboss (1.6.1.v200904151730) “JBoss Generic server definitions” [Starting]
    org.eclipse.jst.server.generic.jonas (1.5.205.v200805140145) “JOnAS Generic Server definitions” [Starting]
    org.eclipse.jst.server.generic.oc4j (1.5.206.v20090812) “OC4J Generic server definitions” [Starting]
    org.eclipse.jst.server.generic.ui (1.0.405.v200905022002) “Generic Server Plugin UI” [Starting]
    org.eclipse.jst.server.preview.adapter (1.1.0.v20090311b) “JEE Preview Server Support” [Starting]
    org.eclipse.jst.server.tomcat.core (1.1.106.v20090814) “Apache Tomcat Support” [Starting]
    org.eclipse.jst.server.tomcat.ui (1.1.102.v20090424) “Apache Tomcat UI Support” [Starting]
    org.eclipse.jst.server.ui (1.1.0.me200911090405) “Java Server UI Support” [Starting]
    org.eclipse.jst.server.ui.infopop (1.0.400.v200805140145) “Server Tools infopops for J2EE Standard Tools” [Resolved]
    org.eclipse.jst.server.websphere.core (1.0.302.v20080620) “WebSphere Generic Server Definition Core Plug-in” [Starting]
    org.eclipse.jst.servlet.ui (1.1.301.me200911090405) “WTP Servlet UI Plug-in” [Starting]
    org.eclipse.jst.servlet.ui.infopop (1.0.300.v200805140415) “Servlet infopop” [Starting]
    org.eclipse.jst.standard.schemas (1.0.200.me200911090405) “JEE Related Schemas” [Resolved]
    org.eclipse.jst.ws (1.0.407.v200905191120) “Web Services” [Starting]
    org.eclipse.jst.ws.axis.consumption.core (1.0.306.v200810082309) “Web service Axis Consumption Core” [Starting]
    org.eclipse.jst.ws.axis.consumption.ui (1.0.405.v200901261650) “Webservice Axis Consumption UI” [Starting]
    org.eclipse.jst.ws.axis.creation.ui (1.0.406.v200903031852) “Webservice Axis Creation UI” [Starting]
    org.eclipse.jst.ws.axis.infopop (1.0.300.v200805140230) “Web services Axis context sensitive help” [Starting]
    org.eclipse.jst.ws.axis2.consumption.core (1.0.104.v200810151442) “Webservice Axis2 Consumption Core Plug-in” [Starting]
    org.eclipse.jst.ws.axis2.consumption.ui (1.0.102.v200807232000) “Webservice Axis2 Consumption UI Plug-in” [Starting]
    org.eclipse.jst.ws.axis2.core (1.0.104.v200810151442) “Webservice Axis2 Core Plug-in” [Starting]
    org.eclipse.jst.ws.axis2.creation.core (1.0.105.v200901220134) “Webservice Axis2 Creation Core Plu

    #308311 Reply

    lhammond
    Member

    anyone having success with this?
    any word on getting this fixed?

    Version: 8.5
    Build id: 8.5-20100319

Viewing 15 posts - 1 through 15 (of 15 total)
Reply To: Creating Web Service with WSDL doesn’t work with array

You must be logged in to post in the forum log in