Are Flash Builder 4 data services production grade, or demo grade?

I've experimented a bit with the data services feature that Flash builder 4 beta 2 offers. Frankly they seem to be just about what I was waiting for. We build a lot of data centric applications and anything that reduces the amount of code required to wire things up is great. I do have some questions re the data services as implmented in beta 2, and forward. Note I've almost no hands on with Flex, any version, at this point.
With Flex Builder 3, there was a crud wizard. From what I read the code it generated was not considered production grade. I hope that the data services feature shown with beta 2 would be considered robust enough to use in production? I am sure that there are many different ways of handling data services in general with Flex, so I am not asking if it's the best approach or makes any other approach redundant. I just mean, could the tooling around the data services feature of flash builder 4 remain a viable approach for getting at data, once a flex developer was past the training wheels stage?
Another aspect I'm curious about is whether the data services features of Flash Builder 4 would remain relevant if one was using some other data access system? I can't really phrase this question properly because I don't really understand Flex or the various data access technologies that everyone is using. Hopefully the quesiton makes sense...if one was NOT using the data services wizard or whatever it's called, would whatever data services one was using show in the data services area of builder? It would be cool of course if they did.

Hi,
   When it comes to runtime performance of the applications created using Data Centric Development ( DCD ) wizards, they perform same as the ones created without using DCD.
   Even the code generated by these wizards are easy to read & maintain with proper inheritance, packages & overriding. But, if you are planning to use any of the MVC style frameworks, the generated code may not fit so well right now. We are already working on improving the experience for people who are using these frameworks.
   Overall, using DCD gives a lot of productivity gain with its unified wizards & advanced UI Authoring workflows including Automatic Form Generation, Charts, Master-Detail views, Paging, Client Side Data Management etc.
  Please let us know if you have any specific concerns in the generated code.
Regards
Srinivas Annam
http://srinivasannam.wordpress.com

Similar Messages

  • Is there a way to import large XML files into HANA efficiently are their any data services provided to do this?

    1. Is there a way to import large XML files into HANA efficiently?
    2. Will it process it node by node or the entire file at a time?
    3. Are there any data services provided to do this?
    This for a project use case i also have an requirement to process bulk XML files, suggest me to accomplish this task

    Hi Patrick,
         I am addressing the similar issue. "Getting data from huge XMLs into Hana."
    Using Odata services can we handle huge data (i.e create schema/load into Hana) On-the-fly ?
    In my scenario,
    I get a folder of different complex XML files which are to be loaded into Hana database.
    Then I gotta transform & cleanse the data.
    Can I use oData services to transform and cleanse the data ?
    If so, how can I create oData services dynamically ?
    Any help is highly appreciated.
    Thank you.
    Regards,
    Alekhya

  • Are Flash Builder 4 and Flex 4 the same ?

    Hi Everyone,
    1. Are Flash Builder 4 and Flex 4 the same ?
    2. Are Flash Builder 4 and Flash CS4 the same ?
    Thanks,
    May

    Grizzzzzzzzzz wrote:
    AFAIK
    1. Are Flash Builder 4 and Flex 4 the same ?
    Yes, flash builder 4 was the name given to what is effectively flex 4.
    This answer is, essentially wrong.
    Flex 4 is a Software Development Kit (SDK) that includes a compiler, a user interface framework, and a few other items.
    Flash Builder 4 is an IDE that can be used to develop Flex applications.  Flash Builder 4 can also be used to code ActionScript w/o any dependencies to the Flex Framework.
    Grizzzzzzzzzz wrote: 2. Are Flash Builder 4 and Flash CS4 the same ?
    No, Creative suite 4 is a software library consisting of many different programs
    This answer is much more correct; but for additional clarification:
    Flash Builder 4 is an IDE that programmers can use to develop applications for the Flash Platform.
    Flash Professional CS4 is an IDE that Designers can use to create time-line based animations for the Flash Platform.
    One is geared for designers; and another for programmers.  In theory they can be used to reach the same end point although I wouldn't want to do application programming in Flash Professional; nor would I Want to do design stuff in Flash Builder.

  • Flash Builder Data problem - mysqli_stmt_bind_param ?

    Hi All.. hope someone can help.
    I've started a very simple application and experiencing a problem regarding creating a new record in a MySQL database via PHP & Zend.
    Here's the snippet of AS:
              newLine.buy_price = cursor.current.buy;
              newLine.sell_price = cursor.current.sell;
              linesService.createLines(newLine);
              createLineResult.token = linesService.commit();
    Here's the snippet of PHP (all generated by FB):
         public function createLines($item) {
              $stmt = mysqli_prepare($this->connection, "INSERT INTO $this->tablename (supplier, sku, product_name, quantity, buy_price, sell_price) VALUES (?, ?, ?, ?, ?, ?)");
              $this->throwExceptionOnError();
              mysqli_stmt_bind_param($stmt, 'iisiii', $item->supplier, $item->sku, $item->product_name, $item->quantity, $item->buy_price, $item->sell_price);
              $this->throwExceptionOnError();
              mysqli_stmt_execute($stmt);          
              $this->throwExceptionOnError();
              $autoid = mysqli_stmt_insert_id($stmt);
              mysqli_stmt_free_result($stmt);          
              mysqli_close($this->connection);
              return $autoid;
    When I run the createLines() function then commit(), I get the following error popup from my application:
    MySQL Error - 1064: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'lines (supplier, sku, product_name, quantity, buy_price, sell_price) VALUES (?, ' at line 1
    #0 C:\wamp\www\XOM-debug\services\LinesService.php(119): LinesService->throwExceptionOnError()
    #1 [internal function]: LinesService->createLines(Object(stdClass))
    #2 [internal function]: ReflectionMethod->invokeArgs(Object(LinesService), Array)
    #3 C:\wamp\www\ZendFramework\library\Zend\Server\Reflection\Function\Abstract.php(380): call_user_func_array(Array, Array)
    #4 C:\wamp\www\ZendFramework\library\Zend\Amf\Server.php(359): Zend_Server_Reflection_Function_Abstract->__call('invokeArgs', Array)
    #5 C:\wamp\www\ZendFramework\library\Zend\Amf\Server.php(359): Zend_Server_Reflection_Method->invokeArgs(Object(LinesService), Array)
    #6 C:\wamp\www\ZendFramework\library\Zend\Amf\Server.php(553): Zend_Amf_Server->_dispatch('createLines', Array, 'LinesService')
    #7 C:\wamp\www\ZendFramework\library\Zend\Amf\Server.php(629): Zend_Amf_Server->_handle(Object(Zend_Amf_Request_Http))
    #8 C:\wamp\www\XOM-debug\gateway.php(69): Zend_Amf_Server->handle()
    #9 {main}
    As as I see it, the parameters are not being replaced by the actual values, so MySQL is freaking out as it's getting question marks in the statements. What I don't understand is how this is happening! Everything is auto-generated by FB. I created a new project from scratch and used only drag & drop from the Data/Services panel to generate a form for data entry and got the same error.
    Any ideas!?
    Cheers,
    Steve

    Hi,
    Thanks for your feedback!
    This feature has been going through a lot of changes with the BlazeDS and Flash Builder builds.
    We request you to pick up the BETA2 build of Flash Builder and BlazeDS 4.0.0.10654, hopefully you should see things working fine.
    Kindly let us know if you still encounter problems.
    Thanks,
    Balaji
    http://balajisridhar.wordpress.com

  • Would you use Flash Builder Beta2 for production project?

    i am currently developing a project in Flash Builder beta2 with flex 4 sdk with the new spark components.
    But as i can see not all mx components have a spark equivalent and in my bin-debug folder there are
    spark_4.0.0.10485.swf 431,927  bytes
    rpc_4.0.0.10485.swf 206,435  bytes
    framework_4.0.0.10485.swf 1,018,863  bytes
    without taking in mind my main application file sizes.
    An i am wondering will my project that use a mix of mx and spark components will have to load the hole frameworks?

    i've got the same pb... any ideas ?

  • Flash Builder autogenerated service code explanation

    Hi
    When you connect to some backend via the Flash Builder "service inspector", it autogenerates alot of code, which seems to be giving you some additionel intellisense. I'm very interested in some documents that describe whats actually being autogenerated and for what reasons. Because when you don't use the service helper, you can connect to a backend in like 2-3 lines of code.
    Best Regards
    Martin Andersen

    Generally, the more specific you can be in programming the more efficient and less error prone the code is. The downside is that explicit declarations require much more typing.
    The auto generator attempts to generate code that is as specific as possible, and provides you some strongly typed methods to wrap the calls in. The VO objects probably look the most strange, but I think a lot of that is just explicit binding declarations. There is also some functionality added for advanced server setups (like lazy loading and such).

  • Flash Builder SOAP service generation quirks?

    Is there some documentation on the generated value object classes?  I noticed a couple things today while trying to debug the generated value objects/service:
    When a value object contains only a single property, it does not generate the value object.  Ie, if class named "serviceClass" has a property named "serviceProperty" of type ServiceProperty, and ServiceProperty is a class with just a String.  The generated "ServiceClass" value object will have a serviceProperty of type String.
    When the service returns a single value object, flex returns with ObjectProxy rather than the specified strong type.  When there's more than one, it returns with ArrayCollection with strong typed elements.
    I'm wondering if there's something stupid I'm doing?
    Thanks in advance

    Is there some documentation on the generated value object classes?  I noticed a couple things today while trying to debug the generated value objects/service:
    When a value object contains only a single property, it does not generate the value object.  Ie, if class named "serviceClass" has a property named "serviceProperty" of type ServiceProperty, and ServiceProperty is a class with just a String.  The generated "ServiceClass" value object will have a serviceProperty of type String.
    When the service returns a single value object, flex returns with ObjectProxy rather than the specified strong type.  When there's more than one, it returns with ArrayCollection with strong typed elements.
    I'm wondering if there's something stupid I'm doing?
    Thanks in advance

  • Flash Builder 4.5 Data Services Wizard, setting up REST service call returns Internal Error Occurred

    Dear all -
    I am writing with the confidence that someone will be able to assist me.
    I am using the Flash Builder Data Services Wizard to access a Server that utilizes REST type calls and returns JSON objects. The server is a JETTY server and it apparantly already works and is returning JSON objects (see below for example). It is both HTTP and HTTPS enabled, and right now it has a cross-domain policy file that is wide open (insecure but its not a production server, it's internal).
    The crossdomain file looks like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
       <allow-http-request-headers-from domain="*" headers="*" secure="false"   />
       <allow-access-from domain="*" to-ports="*" secure="false"/>
       <site-control permitted-cross-domain-policies="master-only" />
    </cross-domain-policy>
    The crossdomain file is in the jetty server's root directory and is browseable via HTTP and HTTPS (i.e. browsing to it returns the xml)
    Now before all of you say that using wizards sucks (generally) I thought I would utilize the FB Data Services Wizard as at least it would provide a template for which I could build additional code against, or replace and improve the code it produces.
    With that in mind, I browse to the URL of the Jetty Server with any web browser (for example, Google Chrome, Firefox or IE) with a URL like this (the URL is a little confidential at the moment, but the structure is the same)
    https://localhost:somePort/someKey/someUser/somePassword/someTask
    *somePort is the SSL port like 8443
    *someKey is a key to access the URL's set of services
    returns a JSON object as a string in the web browser and it appears like the following:
    {"result":success,"value":"whatEverTheValueShould"}
    Looks like the JSON string/object is valid.
    I went through the Flash Builder Data Services Wizard to set up HTTP access to this server. The information that I filled in is described below:
    Do you want to use a Base URL as a prefix for all operation URLs?
    YES
    Base URL:
    https://localhost:8443/someKey/
    Name                    : someTask
    Method                    : POST
    Content-Type: application/x-www-form-urlencoded
    URL                              : {someUser}/{somePassword}/someTask
    Service Name: SampleRestapi
    Services Package: services.SampleRestapi
    datatype objects: valueObjects:
    Completing the wizard, I run the Test Operation command. Remember, no authentication is needed to get a JSON string.
    It returns:
    InvocationTargetException: Unable to connect to the URL specified
    I am thinking - okay, but the URL IS browseable (as I originally was able to browse to it, as noted above).
    I continue to test the service by creating a Flex application that accepts a username and password in a form. when the form is submitted, the call to the service is invoked and an event handler returns the result. The code is below (with some minor changes to mask the actual source).
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                                     xmlns:s="library://ns.adobe.com/flex/spark"
                                     xmlns:mx="library://ns.adobe.com/flex/mx"
                                     xmlns:SampleRestapi="services.SampleRestapi.*"
                                     minWidth="955" minHeight="600">
              <fx:Script>
                        <![CDATA[
                                  import mx.controls.Alert;
                                  import mx.rpc.events.ResultEvent;
                                  protected function button_clickHandler(event:MouseEvent):void
                                            isUserValidResult.token = SampleRestAPI.isUserValid(userNameTextInput.text,passwordTextInput.text);
                                  protected function SampleRestAPI_resultHandler(event:ResultEvent):void
                                            // TODO Auto-generated method stub
                                            // print out the results
                                            txtAreaResults.text = event.result.message as String;
                                            // txtAreaResults.appendText( "headers \n" + event.headers.toString() );
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <SampleRestapi:SampleRestAPI id="SampleRestAPI"
                                                                                                 fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)"
                                                                                                 result="SampleRestAPI_resultHandler(event)"
                                                                                                 showBusyCursor="true"/>
                        <s:CallResponder id="isUserValidResult"/>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
              <s:Form defaultButton="{button}">
                        <s:FormItem label="UserName">
                                  <s:TextInput id="userNameTextInput" text="q"/>
                        </s:FormItem>
                        <s:FormItem label="Password">
                                  <s:TextInput id="passwordTextInput" text="q"/>
                        </s:FormItem>
                        <s:Button id="button" label="IsUserValid" click="button_clickHandler(event)"/>
                        <s:FormItem  label="results:">
                                  <s:TextArea id="txtAreaResults"/>
                        </s:FormItem>
              </s:Form>
    </s:Application>
    It's a simple application to be sure. When I run it , I get the following returned in the text area field txtAreaResults:
    An Internal Error Occured.
    Which is equivalent to the following JSON string being returned:
    {"success":false,"value":"An Internal Error Occured"}
    It appears that the call is being made, and that a JSON object is being returned... however it does not return the expected results?
    Again the URL constructed is the same:
    https://www.somedomain.com:somePort/someKey/someUser/somePassword/someTask
    So I am wondering what the issue could be:
    1) is it the fact that I am browsing the test application from an insecure (http://) web page containing the Flex application and it is accessing a service through https:// ?
    2) is the JSON string structurally correct? (it appears so).
    3) There is a certificate enabled for HTTPs. it does not match the test site I am using ( the cert is for www.somedomain.com but I am using localhost for testing). Would that be an issue? Google Chrome and IE just asks me to proceed anyway, which I say "yes".
    Any help or assistance on this would be appreciated.
    thanks
    Edward

    Hello everyone -
    Since I last posted an interesting update happened. I tested my  Flex application again, it is calling a Jetty Server that returns a JSON object, in different BROWSERS.  I disabled HTTPS for now, and the crossdomain.xml policy file is wide open for testing (ie. allowing every request to return data). So the app accessing the data using HTTP only. Browsers  -  IE, Opera, Firefox and Chrome. Each browser contained the SAME application, revision of the Flash Player (10.3.183.10 debugger for firefox, chrome, opera, safari PC; 11.0.1.129 consumer version in IE9,) take a look at the screen shot (safari not shown although the result was the same as IE and chrome)
    Note that Opera and Firefox returned successful values (i.e. successful JSON objects) using the same code generated from the Data Services Wizard. Chrome, IE and, Safari failed with an Internal error. So I am left wondering - WHY? Is it something with the Flash Player? the Browsers?  the Flex SDK? Any thoughts are appreciated. Again, the code is found in the original thread above.

  • Flash Builder 4 and Blaze Data Services wizard

    Hello,
    My project uses BlazeDS for backend and Flex for frontend.
    I use Data Services wizard to auto generate the valueObjects from the corresponding Java classes.
    But the generated code does not seem to implement object inheritance. The valueObjects only inherit from their own _Super* classes.
    Example
    Java objects
    Circle extends Shape
    Generated actionscript objects
    Circle extends _Super_Circle extends EventDispatcher
    Shape extends _Super_Shape extends EventDispatcher
    Doesn't Flash Builder Data wizards support this feature or am i missing something?
    Thank you
    Filaretos Postekoglou

    Hi,
    It should work fine. Can you please share the exact version of the LCDS. Also please let us know the service types and channel types you are using in your application.

  • Flash Builder 4 standalone on win7 64bit is broken after update

    Today Adobe Updater promted that there are updates for Adobe Flash Builder 4 and Photoshop CS5. The update downloaded and installed without any errors and Photoshop is still working fine for me. But when I open Flash Builder I get a bunch of error messages and can't use Flash Builder any more. Here are screenshots of what the errors looks like:
    Sadly not only the Flash Builder perspective is affected but all other perspectives (SVN, Debugging, Profiling) are throwing errors too.
    These are the steps I tried to fix these errors - without success:
    - switching back to my personal workspace (after the update another workspace was selected)
    - opening Flash Builder with the "-clean" parameter (this worked for me several times when plugins didn't want to install properly)
    - opening Flash Builder with administration rights
    - checking inside Flash Builder for any updates
    None of these steps worked for me and I don't know how to fix this problem. Has anyone experienced the same errors after the 4.0.1.-update or are there any infos I missed?
    Any help would be appreciated!
    Miracula

    @pinnamur:
    here is the log you requested. I am not allowed to attach text files, so here is the content:
    *** Date: Friday, July 2, 2010 9:42:59 AM Germany Time
    *** Platform Details:
    *** System properties:
    awt.toolkit=sun.awt.windows.WToolkit
    eclipse.application=com.adobe.flexbuilder.standalone.FlexBuilderApplication
    eclipse.commands=-os
    win32
    -ws
    win32
    -arch
    x86
    -showsplash
    -launcher
    C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\FlashBuilder.exe
    -name
    FlashBuilder
    --launcher.library
    C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090519\eclipse_1206.dll
    -startup
    C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar
    -nl
    en_US
    -vm
    C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\jre\bin\client\jvm.dll
    eclipse.home.location=file:/C:/Program Files (x86)/Adobe/Adobe Flash Builder 4/
    eclipse.launcher=C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\FlashBuilder.exe
    [email protected]/../p2/
    eclipse.p2.profile=profile
    eclipse.product=com.adobe.flexbuilder.standalone.product
    eclipse.startTime=1278056489353
    eclipse.vm=C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\jre\bin\client\jvm.dll
    eclipse.vmargs=-Xms256m
    -Xmx512m
    -XX:MaxPermSize=256m
    -XX:PermSize=64m
    -Djava.net.preferIPv4Stack=true
    -Dorg.eclipse.equinox.p2.reconciler.dropins.directory=dropins
    -Djava.class.path=C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar
    file.encoding=Cp1252
    file.encoding.pkg=sun.io
    file.separator=\
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    java.class.path=C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar
    java.class.version=50.0
    java.endorsed.dirs=C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\jre\lib\endorsed
    java.ext.dirs=C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\jre\lib\ext;C:\Windows\Sun\Java\lib\ext
    java.home=C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\jre
    java.io.tmpdir=C:\Users\Tine\AppData\Local\Temp\
    java.library.path=C:\Program Files (x86)\Adobe\Adobe Flash Builder 4;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/Program Files (x86)/Adobe/Adobe Flash Builder 4/jre/bin/client;C:/Program Files (x86)/Adobe/Adobe Flash Builder 4/jre/bin;C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPow erShell\v1.0\;C:\Program Files\WIDCOMM\Bluetooth Software\;C:\Program Files\WIDCOMM\Bluetooth Software\syswow64;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\Common Files\Roxio Shared\10.0\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\DLLShared\;C:\Windows\Microsoft.NET\Framework\v2.0.50727;C:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files (x86)\Common Files\DivX Shared\;C:\Program Files\TortoiseSVN\bin
    java.net.preferIPv4Stack=true
    java.runtime.name=Java(TM) SE Runtime Environment
    java.runtime.version=1.6.0_16-b01
    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_16
    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=14.2-b01
    line.separator=
    org.eclipse.debug.ui.breakpoints.toggleFactoriesUsed=false
    org.eclipse.equinox.p2.reconciler.dropins.directory=dropins
    org.eclipse.equinox.simpleconfigurator.configUrl=file:org.eclipse.equinox.simpleconfigurat or/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=Windows7
    org.osgi.framework.os.version=6.1.0
    org.osgi.framework.processor=x86
    org.osgi.framework.system.packages=javax.accessibility,javax.activation,javax.activity,jav ax.annotation,javax.annotation.processing,javax.crypto,javax.crypto.interfaces,javax.crypt o.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,jav ax.management,javax.management.loading,javax.management.modelmbean,javax.management.monito r,javax.management.openmbean,javax.management.relation,javax.management.remote,javax.manag ement.remote.rmi,javax.management.timer,javax.naming,javax.naming.directory,javax.naming.e vent,javax.naming.ldap,javax.naming.spi,javax.net,javax.net.ssl,javax.print,javax.print.at tribute,javax.print.attribute.standard,javax.print.event,javax.rmi,javax.rmi.CORBA,javax.r mi.ssl,javax.script,javax.security.auth,javax.security.auth.callback,javax.security.auth.k erberos,javax.security.auth.login,javax.security.auth.spi,javax.security.auth.x500,javax.s ecurity.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.rows et.spi,javax.swing,javax.swing.border,javax.swing.colorchooser,javax.swing.event,javax.swi ng.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.anno tation,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.dataty pe,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.transfo rm.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,java x.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.Dyn amicAny,org.omg.DynamicAny.DynAnyFactoryPackage,org.omg.DynamicAny.DynAnyPackage,org.omg.I OP,org.omg.IOP.CodecFactoryPackage,org.omg.IOP.CodecPackage,org.omg.Messaging,org.omg.Port ableInterceptor,org.omg.PortableInterceptor.ORBInitInfoPackage,org.omg.PortableServer,org. omg.PortableServer.CurrentPackage,org.omg.PortableServer.POAManagerPackage,org.omg.Portabl eServer.POAPackage,org.omg.PortableServer.portable,org.omg.PortableServer.ServantLocatorPa ckage,org.omg.SendingContext,org.omg.stub.java.rmi,org.w3c.dom,org.w3c.dom.bootstrap,org.w 3c.dom.css,org.w3c.dom.events,org.w3c.dom.html,org.w3c.dom.ls,org.w3c.dom.ranges,org.w3c.d om.stylesheets,org.w3c.dom.traversal,org.w3c.dom.views,org.w3c.dom.xpath,org.xml.sax,org.x ml.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 7
    os.version=6.1
    osgi.arch=x86
    osgi.bundles=reference:file:org.eclipse.osgi.nl1_3.5.0.v20091121043401.jar,reference:file: org.eclipse.equinox.ds_1.1.1.R35x_v20090806.jar@1:start,reference:file:org.eclipse.equinox .simpleconfigurator_1.0.101.R35x_v20090807-1100.jar@1:start
    osgi.bundles.defaultStartLevel=4
    osgi.bundlestore=C:\Users\Tine\.eclipse\com.adobe.flexbuilder.standalone.product_4.0.1_108 4004438\configuration\org.eclipse.osgi\bundles
    osgi.configuration.area=file:/C:/Users/Tine/.eclipse/com.adobe.flexbuilder.standalone.prod uct_4.0.1_1084004438/configuration/
    osgi.framework=file:/c:/Program Files (x86)/Adobe/Adobe Flash Builder 4/plugins/org.eclipse.osgi_3.5.1.R35x_v20090827.jar
    osgi.framework.extensions=reference:file:org.eclipse.osgi.nl1_3.5.0.v20091121043401.jar
    osgi.framework.shape=jar
    osgi.framework.version=3.5.1.R35x_v20090827
    osgi.frameworkClassPath=., file:c:/Program Files (x86)/Adobe/Adobe Flash Builder 4/plugins/org.eclipse.osgi.nl1_3.5.0.v20091121043401.jar
    osgi.install.area=file:/C:/Program Files (x86)/Adobe/Adobe Flash Builder 4/
    osgi.instance.area=file:/D:/flashBuilder_workspace/
    osgi.instance.area.default=file:/C:/Users/Tine/Adobe Flash Builder 4/
    osgi.logfile=D:\flashBuilder_workspace\.metadata\.log
    osgi.manifest.cache=C:\Users\Tine\.eclipse\com.adobe.flexbuilder.standalone.product_4.0.1_ 1084004438\configuration\org.eclipse.osgi\manifests
    osgi.nl=en_US
    osgi.nl.user=en_US
    osgi.os=win32
    osgi.sharedConfiguration.area=file:/c:/Program Files (x86)/Adobe/Adobe Flash Builder 4/configuration/
    osgi.splashPath=platform:/base/plugins/com.adobe.flexbuilder.standalone
    osgi.syspath=c:\Program Files (x86)\Adobe\Adobe Flash Builder 4\plugins
    osgi.tracefile=D:\flashBuilder_workspace\.metadata\trace.log
    osgi.ws=win32
    path.separator=;
    sun.arch.data.model=32
    sun.boot.class.path=C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\jre\lib\resources.jar;C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\jre\lib\rt.jar;C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\jre\lib\sunrsasign.jar;C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\jre\lib\jsse.jar;C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\jre\lib\jce.jar;C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\jre\lib\charsets.jar;C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\jre\classes
    sun.boot.library.path=C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\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=DE
    user.dir=C:\Program Files (x86)\Adobe\Adobe Flash Builder 4
    user.home=C:\Users\Tine
    user.language=de
    user.name=Tine
    user.timezone=Europe/Berlin
    user.variant=
    *** Features:
    com.adobe.flexbuilder.feature.standalone (4.0.1.277662) "Adobe Flash Builder Standalone"
    com.adobe.flexbuilder.feature.standalone.nl1 (4.0.1.277662) "Adobe Flash Builder Standalone"
    com.collabnet.subversion.merge.feature (2.1.0) "CollabNet Subversion Merge Client"
    com.sun.jna (3.2.3) "JNA Library Plug-in"
    org.eclipse.cvs (1.1.101.R35x_v20090811-7E79FEd9KKF5H2YDWFLLBL01A16) "Eclipse CVS Client"
    org.eclipse.datatools.connectivity.feature (1.7.2.v200909251450-7B7OANEn1Xi4gycmhPC6njFVDz0q) "Data Tools Platform Connectivity Plug-in"
    org.eclipse.datatools.connectivity.oda.designer.feature (1.7.2.v200909251450-7E7C7BDZRDIVDUKiEaXU) "DTP ODA Designer UI Framework Plug-in"
    org.eclipse.datatools.connectivity.oda.feature (1.7.2.v200909251450-7H797BCcNBHBBHMWDbRK) "DTP Open Data Access"
    org.eclipse.datatools.doc.user (1.7.2.v200909251450-47C08w95ENAK6AFDFK7) "Data Tool Platform User Documentation"
    org.eclipse.datatools.enablement.apache.derby.feature (1.7.2.v200909251450-7768dBmKDLfMjHuIFJW7SBI) "High-level Sybase Enablement Plug-in"
    org.eclipse.datatools.enablement.feature (1.7.2.v200909251450-7J8i7UBWwSLRWdU50unZvFu_Pz0t) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.hsqldb.feature (1.7.2.v200909251450-67B2AqGBJVKbGuH3GP7SBI) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.ibm.feature (1.7.2.v200909251450-7F47HFC7sRTNSjXAYIRR) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.ingres.feature (1.7.2.v200909251450-540AkF77g7VBLBPH7) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.jdbc.feature (1.7.2.v200909251450-4-29oB55W5P7G6RAH) "High-level Sybase Enablement Plug-in"
    org.eclipse.datatools.enablement.jdt.feature (1.7.2.v200909251450-2-07w311A1A351453) "Data Tools Platform Connectivity JDT Extension Plug-in"
    org.eclipse.datatools.enablement.msft.feature (1.7.2.v200909251450-542AkF78Y7SBU9UAB) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.mysql.feature (1.7.2.v200909251450-546AkF78Y7R9PAX87) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.oda.designer.feature (1.7.2.v200909251450-3328s7353356I4F53) "Eclipse Data Tools Platform XML ODA Designer"
    org.eclipse.datatools.enablement.oda.feature (1.7.2.v200909251450-7A7T78DZRDFuD_KmFcNp) "Eclipse Data Tools Platform XML ODA Runtime Driver"
    org.eclipse.datatools.enablement.oracle.feature (1.7.2.v200909251450-548aAkF77g7XAO9aBB) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.postgresql.feature (1.7.2.v200909251450-542AkF77g7V9N9e77) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.sap.feature (1.7.2.v200909251450-540AkF77g7V9N9e77) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.sqlite.feature (1.7.2.v200909251450-541AkF79P7N8NAQ97) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.sybase.feature (1.7.2.v200909251450-7E45F9NiNWvOOXxPdVT) "High-level Sybase Enablement Plug-in"
    org.eclipse.datatools.modelbase.feature (1.7.2.v200909251450-77-5CcNBCtCcCQJYZl) "Eclipse Data Tools Platform SQLModel Plug-in"
    org.eclipse.datatools.sqldevtools.ddlgen.feature (1.7.2.v200909251450-7A-1F7RZHKFIwMhStRm) "Eclipse Data Tools Platform FE UI Plug-in"
    org.eclipse.datatools.sqldevtools.feature (1.7.2.v200909251450-7N7q7GFDr_mX5M8JAs38u8wWDRWU) "Eclipse Data Tools Platform SQL Tools Common UI Plug-in"
    org.eclipse.datatools.sqldevtools.parsers.feature (1.7.2.v200909251450-602BgJ99q9_9OGXFJ) "Eclipse Data Tools Platform SQL Parser Plugin"
    org.eclipse.draw2d (3.5.2.v20100111-1352-4417w311A223702A19) "Graphical Editing Framework Draw2d"
    org.eclipse.emf (2.5.0.v200906151043) "EMF - Eclipse Modeling Framework Runtime and Tools"
    org.eclipse.emf.codegen (2.5.0.v200906151043) "EMF Code Generation"
    org.eclipse.emf.codegen.ecore (2.5.0.v200906151043) "EMF Ecore Code Generator"
    org.eclipse.emf.codegen.ecore.ui (2.5.0.v200906151043) "EMF Ecore Code Generator UI"
    org.eclipse.emf.codegen.ui (2.4.0.v200906151043) "EMF Code Generation UI"
    org.eclipse.emf.common (2.5.0.v200906151043) "EMF Common"
    org.eclipse.emf.common.ui (2.5.0.v200906151043) "EMF Common UI"
    org.eclipse.emf.converter (2.5.0.v200906151043) "EMF Model Converter"
    org.eclipse.emf.databinding (1.1.0.v200906151043) "EMF Data Binding"
    org.eclipse.emf.databinding.edit (1.1.0.v200906151043) "EMF Edit Data Binding"
    org.eclipse.emf.ecore (2.5.0.v200906151043) "EMF Ecore"
    org.eclipse.emf.ecore.edit (2.5.0.v200906151043) "EMF Ecore Edit"
    org.eclipse.emf.ecore.editor (2.5.0.v200906151043) "EMF Sample Ecore Editor"
    org.eclipse.emf.edit (2.5.0.v200906151043) "EMF Edit"
    org.eclipse.emf.edit.ui (2.5.0.v200906151043) "EMF Edit UI"
    org.eclipse.emf.mapping (2.5.0.v200906151043) "EMF Mapping"
    org.eclipse.emf.mapping.ecore (2.5.0.v200906151043) "EMF Ecore Mapping"
    org.eclipse.emf.mapping.ecore.editor (2.5.0.v200906151043) "EMF Ecore Mapping Editor"
    org.eclipse.emf.mapping.ui (2.5.0.v200906151043) "EMF Mapping UI"
    org.eclipse.gef (3.5.2.v20100111-1352-777928194B66D5D476C33B2A) "Graphical Editing Framework GEF"
    org.eclipse.help (1.1.1.R35x_v20090811-7e7eFAnFEx2XZoYz0uPgIfwD) "Help System Base"
    org.eclipse.jdt (3.5.2.r352_v20100108-7r88FEwFI0WTuoBl0iaG0tyhfZH6) "Eclipse Java Development Tools"
    org.eclipse.jpt.eclipselink.feature (2.2.2.v200911250220-65A9AkF77g8OFL7BB7) "Dali Java Persistence Tools - EclipseLink Support"
    org.eclipse.jpt.feature (2.2.2.v200911250220-7L7OAPFBBoPS0TBgXV1je) "Dali Java Persistence Tools"
    org.eclipse.jst.enterprise_ui.feature (3.1.1.v200908101600-7_7EGrjFQRwRb4P511ebObS5XZhq) "Eclipse Java EE Developer Tools"
    org.eclipse.jst.ws.axis2tools.feature (1.1.0.v200905242110-78-FBpDZRDE6FdPdLYYe) "Axis2 Tools"
    org.eclipse.pde (3.5.2.R35x_v20100119-7Z7_FA2FDX-aXQYWqYDBz-z0qufo) "PDE"
    org.eclipse.platform (3.5.1.R35x_v20090910-9gEeG1_FthkNDSP2odXdThaOu9GFDPn83DGB7) "Eclipse Platform"
    org.eclipse.rcp (3.5.1.R35x_v20090811-9SA0FxVFqE70OL1ARMrfcO6e7BA6) "Eclipse RCP"
    org.eclipse.wst.jsdt.feature (1.1.2.v200908101420-77-FGDCcNBDjBXMoBbFb) "JavaScript Developer Tools "
    org.eclipse.wst.web_ui.feature (3.1.1.v200908120400-7R77FStEVw2z07WtDz-OZrhL5C-3) "Eclipse Web Developer Tools"
    org.eclipse.wst.xml_ui.feature (3.1.1.v200907161031-7H6FMbDxtkMs9OeLGF98LRhdPKeo) "Eclipse XML Editors and Tools"
    org.eclipse.wst.xsl.feature (1.0.2.v200908271520-7R7T8sFIhIehWg454rq_U1) "Eclipse XSL Developer Tools"
    org.tigris.subversion.clientadapter.feature (1.6.12) "Subversion Client Adapter"
    org.tigris.subversion.clientadapter.javahl.feature (1.6.12) "Subversion JavaHL"
    org.tigris.subversion.clientadapter.svnkit.feature (1.6.12) "SVNKit Client Adapter"
    org.tigris.subversion.subclipse (1.6.12) "SVN Team Provider Core"
    org.tmatesoft.svnkit (1.3.3.6648) "SVNKit Library Plug-in"
    *** Plug-in Registry:
    ActionscriptInfoCollector (0.7.4) "ActionscriptInfoCollector Plug-in" [Starting]
    com.adobe.coldfusion.rds.client (1.0.272885) "RDS Core and Database Client Plug-in" [Starting]
    com.adobe.coldfusion.rds.client.nl1 (1.0.1.v20100112266797) "Nl1 Fragment" [Resolved]
    com.adobe.flash.codemodel.core (4.0.1.277662) "Adobe Flash CodeModel Core" [Active]
    com.adobe.flash.codemodel.osgi (4.0.1.277662) "Code Model OSGI Support" [Active]
    com.adobe.flash.profiler (4.0.1.277662) "Adobe Flash Profiler" [Active]
    com.adobe.flash.profiler.nl1 (4.0.1.277662) "Adobe Flash Profiler Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.ajaxbridge (4.0.1.277662) "Adobe Flash Builder Ajaxbridge" [Active]
    com.adobe.flexbuilder.ajaxbridge.nl1 (4.0.1.277662) "Adobe Flash Builder Ajaxbridge Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.as.editor (4.0.1.277662) "Adobe Flash Builder ActionScript Editor" [Active]
    com.adobe.flexbuilder.as.editor.nl1 (4.0.1.277662) "Adobe Flash Builder ActionScript Editor Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.axis2 (4.0.1.277662) "Adobe Flash Builder AXIS 2" [Starting]
    com.adobe.flexbuilder.axis2.nl1 (4.0.1.277662) "Adobe Flash Builder AXIS 2 Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.codemodel (4.0.1.277662) "Adobe Flex IDE CodeModel" [Resolved]
    com.adobe.flexbuilder.codemodel.nl1 (4.0.1.277662) "Adobe Flash Builder CodeModel Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.crimson (4.0.1.277662) "Adobe Flash Builder Crimson" [Resolved]
    com.adobe.flexbuilder.crimson.nl1 (4.0.1.277662) "Adobe Flash Builder Crimson Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.css.editor (4.0.1.277662) "Adobe Flash Builder CSS Editor" [Starting]
    com.adobe.flexbuilder.css.editor.nl1 (4.0.1.277662) "Adobe Flash Builder CSS Editor Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.DCDService (4.0.1.277662) "Adobe Flash Builder DCDService" [Starting]
    com.adobe.flexbuilder.DCDService.nl1 (4.0.1.277662) "Adobe Flash Builder DCDService Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.dcrad (4.0.1.277662) "Adobe Flash Builder Data Centric RAD" [Active]
    com.adobe.flexbuilder.dcrad.derived (4.0.1.277662) "Adobe Flash Builder Data Centric RAD Derived Sources" [Starting]
    com.adobe.flexbuilder.dcrad.nl1 (4.0.1.277662) "Adobe Flash Builder DCRAD Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.debug (4.0.1.277662) "Adobe Flash Builder Debug Model" [Active]
    com.adobe.flexbuilder.debug.e33 (4.0.1.277662) "Adobe Flash Builder Debug Fragment for Eclipse 3.3" [Resolved]
    com.adobe.flexbuilder.debug.nl1 (4.0.1.277662) "Adobe Flash Builder Debug Model Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.debug.ui (4.0.1.277662) "Adobe Flash Builder Debug UI" [Active]
    com.adobe.flexbuilder.debug.ui.actions (4.0.1.277662) "Adobe Flash Builder Debug UI Actions Fragment" [Resolved]
    com.adobe.flexbuilder.debug.ui.nl1 (4.0.1.277662) "Adobe Flash Builder Debug Model UI Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.designview (4.0.1.277662) "Adobe Flash Builder Designview" [Starting]
    com.adobe.flexbuilder.designview.nl1 (4.0.1.277662) "Adobe Flash Builder Designview Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.editorcore (4.0.1.277662) "Adobe Flash Builder Editor Core" [Active]
    com.adobe.flexbuilder.editorcore.nl1 (4.0.1.277662) "Adobe Flash Builder Editor Core Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.editors.derived (4.0.1.277662) "Adobe Flash Builder Editors Derived" [Active]
    com.adobe.flexbuilder.editors.derived.nl1 (4.0.1.277662) "Adobe Flash Builder Editors Derived Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.exportimport (4.0.1.277662) "Adobe Flash Builder Exportimport" [Active]
    com.adobe.flexbuilder.exportimport.nl1 (4.0.1.277662) "Adobe Flash Builder Exportimport Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.flashbridge (4.0.1.277662) "Flash IDE Plug-in" [Active]
    com.adobe.flexbuilder.flashbridge.nl1 (4.0.1.277662) "Flash IDE Plug-in Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.flex (4.0.1.277662) "Adobe Flash Builder Flex SDKs" [Resolved]
    com.adobe.flexbuilder.flexunit (4.0.1.277662) "Adobe Flash Builder FlexUnit UI" [Active]
    com.adobe.flexbuilder.flexunit.derived (4.0.1.277662) "Adobe Flash Builder FlexUnit Derived" [Starting]
    com.adobe.flexbuilder.flexunit.nl1 (4.0.1.277662) "Adobe Flash Builder FlexUnit Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.help (4.0.1.277662) "Adobe Flash Builder Help" [Starting]
    com.adobe.flexbuilder.help.nl1 (4.0.1.277662) "Adobe Flash Builder Help - Localized" [Resolved]
    com.adobe.flexbuilder.importartwork (4.0.1.277662) "Adobe Flash Builder Import Artwork" [Active]
    com.adobe.flexbuilder.importartwork.nl1 (4.0.1.277662) "Adobe Flash Builder Import Artwork Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.json (4.0.1.277662) "Adobe Flash Builder JSON" [Starting]
    com.adobe.flexbuilder.launching.ui (4.0.1.277662) "Adobe Flash Builder Launching UI" [Active]
    com.adobe.flexbuilder.launching.ui.nl1 (4.0.1.277662) "Adobe Flash Builder Launching UI Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.monitors.network (4.0.1.277662) "Adobe Flash Builder Network Monitor" [Starting]
    com.adobe.flexbuilder.monitors.network.nl1 (4.0.1.277662) "Adobe Flash Builder Network Monitor Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.multisdk (4.0.1.277662) "Adobe Flash Builder Multi-SDK" [Active]
    com.adobe.flexbuilder.mxml.editor (4.0.1.277662) "Adobe Flash Builder MXML Editor" [Active]
    com.adobe.flexbuilder.mxml.editor.nl1 (4.0.1.277662) "Adobe Flash Builder MXML Editor Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.mxmlmodel (4.0.1.277662) "Adobe Flash Builder MXML Model" [Active]
    com.adobe.flexbuilder.project (4.0.1.277662) "Adobe Flash Builder Project" [Active]
    com.adobe.flexbuilder.project.e35 (1.0.0.201001080934) "Adobe Flash Builder Project for Eclipse 3.5" [Resolved]
    com.adobe.flexbuilder.project.nl1 (4.0.1.277662) "Adobe Flash Builder Project Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.project.ui (4.0.1.277662) "Adobe Flash Builder Project UI" [Active]
    com.adobe.flexbuilder.project.ui.nl1 (4.0.1.277662) "Adobe Flash Builder Project UI Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.services.BlazeDSService (4.0.1.277662) "Adobe Flash Builder BlazeDSService" [Starting]
    com.adobe.flexbuilder.services.CFService (4.0.1.277662) "Adobe Flash Builder CFService" [Starting]
    com.adobe.flexbuilder.services.CFService.nl1 (4.0.1.277662) "Adobe Flash Builder CFService NL1 Fragment" [Resolved]
    com.adobe.flexbuilder.services.HTTPService (4.0.1.277662) "Adobe Flash Builder HTTPService" [Starting]
    com.adobe.flexbuilder.services.HTTPService.nl1 (4.0.1.277662) "Adobe Flash Builder HTTPService NL1 Fragment" [Resolved]
    com.adobe.flexbuilder.services.J2EEService (4.0.1.277662) "Adobe Flash Builder J2EEService" [Starting]
    com.adobe.flexbuilder.services.J2EEService.nl1 (4.0.1.277662) "Adobe Flash Builder J2EEService Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.services.LCDSService (4.0.1.277662) "Adobe Flash Builder LCDSService" [Starting]
    com.adobe.flexbuilder.services.PHPService (4.0.1.277662) "Adobe Flash Builder PHPService" [Starting]
    com.adobe.flexbuilder.services.PHPService.nl1 (4.0.1.277662) "Adobe Flash Builder PHPService NL1 Fragment" [Resolved]
    com.adobe.flexbuilder.services.StaticContentService (4.0.1.277662) "Adobe Flash Builder StaticContentService" [Starting]
    com.adobe.flexbuilder.services.StaticContentService.nl1 (4.0.1.277662) "Adobe Flash Builder StaticContentService Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.services.WEBService (4.0.1.277662) "Adobe Flash Builder WEBService" [Starting]
    com.adobe.flexbuilder.services.WEBService.derived (4.0.1.277662) "Adobe Flash Builder WEBService Derived Sources" [Starting]
    com.adobe.flexbuilder.services.WEBService.nl1 (4.0.1.277662) "Adobe Flash Builder WEBService NL1 Fragment" [Resolved]
    com.adobe.flexbuilder.standalone (4.0.1.277662) "Adobe Flash Builder Standalone" [Active]
    com.adobe.flexbuilder.standalone.nl1 (4.0.1.277662) "Adobe Flash Builder Standalone Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.tengine (4.0.1.277662) "Adobe Flash Builder Tengine" [Starting]
    com.adobe.flexbuilder.tengine.nl1 (4.0.1.277662) "Adobe Flash Builder Tengine Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.ui (4.0.1.277662) "Adobe Flash Builder Global UI" [Active]
    com.adobe.flexbuilder.ui.nl1 (4.0.1.277662) "Adobe Flash Builder Global UI Nl1 Fragment" [Resolved]
    com.adobe.flexbuilder.utils.osnative (4.0.1.277662) "Adobe Flash Builder OS Native Utils" [Active]
    com.adobe.flexbuilder.utils.osnative.win (4.0.1.277662) "Adobe Flash Builder OS Native Utils Windows Fragment" [Resolved]
    com.adobe.flexide.amt (4.0.1.277662) "Adobe Flash Builder AMT" [Active]
    com.adobe.flexide.as.core (4.0.1.277662) "Adobe Flash Builder ActionScript Core" [Active]
    com.adobe.flexide.as.core.nl1 (4.0.1.277662) "Adobe Flash Builder ActionScript Core Nl1 Fragment" [Resolved]
    com.adobe.flexide.communityhelp (4.0.1.277662) "CommunityHelp Plug-in" [Starting]
    com.adobe.flexide.communityhelp.nl1 (4.0.1.277662) "Adobe Common CommunityHelp Nl1 Fragment" [Resolved]
    com.adobe.flexide.css.core (4.0.1.277662) "Adobe Flash Builder CSS Editor Core" [Active]
    com.adobe.flexide.css.core.nl1 (4.0.1.277662) "Adobe Flash Builder CSS Editor Core Nl1 Fragment" [Resolved]
    com.adobe.flexide.designitems (4.0.1.277662) "Adobe Flash Builder DesignItems" [Starting]
    com.adobe.flexide.editorcore (4.0.1.277662) "Adobe Flash Builder Editor Core" [Active]
    com.adobe.flexide.editorcore.nl1 (4.0.1.277662) "Adobe Flash Builder Editor Core Nl1 Fragment" [Resolved]
    com.adobe.flexide.embeddedplayer (4.0.1.277662) "Adobe Flash Builder Embedded Flash Player" [Starting]
    com.adobe.flexide.exportimport (4.0.1.277662) "Exportimport" [Starting]
    com.adobe.flexide.exportimport.nl1 (4.0.1.277662) "Export Import Nl1 Fragment" [Resolved]
    com.adobe.flexide.externaleditors (4.0.1.277662) "Adobe Flash Builder External Editors" [Active]
    com.adobe.flexide.externaleditors.nl1 (4.0.1.277662) "Adobe Flash Builder External Editors Nl1 Fragment" [Resolved]
    com.adobe.flexide.fonts (4.0.1.277662) "Fonts" [Starting]
    com.adobe.flexide.launching (4.0.1.277662) "Adobe Flash Builder Launching" [Active]
    com.adobe.flexide.launching.nl1 (4.0.1.277662) "Adobe Flash Builder Launching Nl1 Fragment" [Resolved]
    com.adobe.flexide.multisdk.nl1 (4.0.1.277662) "Adobe Flash Builder Multi-SDK Nl1 Fragment" [Resolved]
    com.adobe.flexide.mxml.core (4.0.1.277662) "Adobe Flash Builder MXML Core" [Active]
    com.adobe.flexide.mxml.core.nl1 (4.0.1.277662) "Adobe Flash Builder MXML Core Nl1 Fragment" [Resolved]
    com.adobe.flexide.nativelibs (4.0.1.277662) "Adobe Flash Builder Native Libraries" [Active]
    com.adobe.flexide.playerview (4.0.1.277662) "Adobe Flash Builder Playerview" [Starting]
    com.adobe.flexide.refactoring.core (4.0.1.277662) "Adobe Flash Builder Refactoring Core" [Starting]
    com.adobe.flexide.refactoring.core.nl1 (4.0.1.277662) "Adobe Flash Builder Refactoring Core Nl1 Fragment" [Resolved]
    com.adobe.model.core (1.0.2.v20100315273147) "Adobe Data Model Core Wrapper" [Active]
    com.collabnet.subversion.merge (2.1.0) "CollabNet Subversion Merge Client" [Starting]
    com.crispico.flexbridge (1.0.0.M0_2010-06-11) "Flower Modeling Platform - Flexbridge" [Resolved]
    com.crispico.flower.mp (1.0.0.M0_2010-06-11) "Flower Modeling Platform - Core" [Resolved]
    com.crispico.flower.mp.dependencies.internal (1.0.0.M0_2010-06-11) "Flower Modeling Platform - Internal Dependencies" [Active]
    com.crispico.flower.mp.eclipse (1.0.0.M0_2010-06-11) "Flower Modeling Platform - Eclipse" [Active]
    com.crispico.flower.mp.eclipse.compare.base (1.0.0.M0_2010-06-11) "Flower Modeling Platform - Compare Base" [Starting]
    com.crispico.flower.mp.eclipse.compare.codesync (1.0.0.M0_2010-06-11) "Flower Modeling Platform - Compare CodeSync" [Starting]
    com.crispico.flower.mp.eclipse.uml4as (1.0.0.M0_2010-06-11) "Flower Modeling Platform - UML4AS" [Active]
    com.crispico.flower.mp.metamodel.classmetamodel (1.0.0.M0_2010-06-11) "Flower Modeling Platform - Class Metamodel" [Resolved]
    com.crispico.flower.mp.metamodel.codesync (1.0.0.M0_2010-06-11) "Flower Modeling Platform - CodeSync Metamodel" [Active]
    com.crispico.flower.mp.metamodel.codesyncas (1.0.0.M0_2010-06-11) "Flower Modeling Platform - CodeSync AS Metamodel" [Active]
    com.crispico.flower.mp.metamodelset.uml4asfile (1.0.0.M0_2010-06-11) "Flower Modeling Platform - UML4AS File Metamodel Set" [Resolved]
    com.crispico.flower.mp.propertieseditor (1.0.0.M0_2010-06-11) "Flower Modeling Platform - Properties Editor" [Starting]
    com.ibm.icu (4.0.1.v20090822) "International Components for Unicode for Java (ICU4J)" [Active]
    com.idefactory.enterprisehelp (1.0.8.beta) "Enterprise IDE Help" [Starting]
    com.idefactory.fxsdk (1.0.1) "Enterprise IDE Fx Sdk" [Active]
    com.idefactory.rhino (1.0.0) "Enterprise IDE Rhino" [Starting]
    com.jcraft.jsch (0.1.41.v200903070017) "JSch" [Resolved]
    com.sun.jna (3.2.3) "JNA Library Plug-in" [Starting]
    FlexASDocGenCommand (0.7.4) "FlexASDocGenCommand Plug-in" [Starting]
    FlexPrettyPrintCommand (0.7.4) "FlexPrettyPrintCommand Plug-in" [Active]
    java_cup.runtime (0.10.0.v200803061811) "Java Cup" [Resolved]
    javax.activation (1.1.0.v200906290531) "Apache Geronimo Activation Plug-in" [Resolved]
    javax.mail (1.4.0.v200905040518) "Javax Mail Plug-in" [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.sourceforge.lpg.lpgjavaruntime (1.1.0.v200803061910) "SourceForge LPG" [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.bcel (5.2.0.v200803061811) "Apache BCEL" [Resolved]
    org.apache.commons.codec (1.3.0.v20080530-1600) "Apache Commons Codec Plug-in" [Resolved]
    org.apache.commons.collections (3.2.0.v200803061811) "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.jxpath (1.2.0.v20080604-1500) "Apache Commons JXPath" [Resolved]
    org.apache.commons.lang (2.4.0.v20081016-1030) "Apache Jakarta Commons Lang" [Resolved]
    org.apache.commons.lang (2.1.0.v200803061811) "Apache Jakarta Commons Lang" [Resolved]
    org.apache.commons.logging (1.0.4.v200904062259) "Apache Commons Logging Plug-in" [Resolved]
    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.oro (2.0.8.v200903061218) "Apache Jakarta ORO" [Resolved]
    org.apache.velocity (1.5.0.v200905192330) "Apache Velocity Plug-in" [Resolved]
    org.apache.wsil4j (1.0.0.v200901211807) "WSIL4J" [Resolved]
    org.apache.xalan (2.7.1.v200905122109) "Xalan-Java" [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.eclipse.ant.core (3.2.100.v20090817_r351) "Ant Build Tool Core" [Starting]
    org.eclipse.ant.core.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.ant.ui (3.4.2.v20091204_r352) "Ant UI" [Starting]
    org.eclipse.compare (3.5.0.I20090514-0808) "Compare Support" [Starting]
    org.eclipse.compare.core (3.5.0.I20090430-0408) "Core Compare Support" [Starting]
    org.eclipse.compare.core.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.compare.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.compare.win32 (1.0.0.I20090430-0408) "Compare Support for Word" [Starting]
    org.eclipse.compare.win32.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.core.boot (3.1.100.v20080218) "Core Boot" [Starting]
    org.eclipse.core.boot.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.core.commands (3.5.0.I20090525-2000) "Commands" [Resolved]
    org.eclipse.core.commands.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.core.contenttype (3.4.1.R35x_v20090826-0451) "Eclipse Content Mechanism" [Active]
    org.eclipse.core.contenttype.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    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.beans.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.core.databinding.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [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.expressions.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.core.filebuffers (3.5.0.v20090526-2000) "File Buffers" [Active]
    org.eclipse.core.filebuffers.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.core.filesystem (1.2.0.v20090507) "Core File Systems" [Active]
    org.eclipse.core.filesystem.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    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.jobs.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.core.net (1.2.1.r35x_20090812-1200) "Internet Connection Management" [Active]
    org.eclipse.core.net.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    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.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [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.auth.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.core.runtime.compatibility.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.core.runtime.compatibility.registry (3.2.200.v20090429-1800) "Eclipse Registry Compatibility Fragment" [Resolved]
    org.eclipse.core.runtime.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.core.variables (3.2.200.v20090521) "Core Variables" [Starting]
    org.eclipse.core.variables.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.cvs (1.0.300.v200909170800) "Eclipse CVS Client" [Starting]
    org.eclipse.datatools.connectivity (1.1.3.v201001230803) "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.2.v201001270833) "DTP Open Data Access" [Starting]
    org.eclipse.datatools.connectivity.oda.consumer (3.2.2.v201001261113) "DTP ODA Consumer Helper Component Plug-in" [Starting]
    org.eclipse.datatools.connectivity.oda.design (3.2.2.v201001210350) "DTP ODA Design Session Model" [Starting]
    org.eclipse.datatools.connectivity.oda.design.ui (3.2.2.v201001210350) "DTP ODA Designer UI Framework Plug-in" [Starting]
    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" [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.1.v201001180200) "Eclipse Data Tools Platform SQM Core Plug-in" [Starting]
    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" [Starting]
    org.eclipse.datatools.enablement.jdt.classpath (1.0.1.v200909240342) "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" [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.v201002041110) "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.2.v201001131420) "Eclipse Data Tools Platform Web Services ODA Runtime Driver" [Starting]
    org.eclipse.datatools.enablement.oda.ws.ui (1.2.2.v201001260400) "Eclipse Data Tools Platform Web Services ODA Designer" [Starting]
    org.eclipse.datatools.enablement.oda.xml (1.2.1.v201001151620) "Eclipse Data Tools Platform XML ODA Runtime Driver" [Starting]
    org.eclipse.datatools.enablement.oda.xml.ui (1.2.1.v201001191820) "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.v201002041110) "Eclipse Data Tools Platform SQLite Enablement Plug-in" [Starting]
    org.eclipse.datatools.enablement.sqlite.dbdefinition (1.0.1.v201002041110) "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.3.v200912150851) "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.2.v201002020730) "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.data.core (1.1.0.v200910161545) "Data Core Plugin" [Starting]
    org.eclipse.datatools.sqltools.data.ui (1.1.2.v200912080845) "Data UI Plugin" [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.v200906022302) "Eclipse Data Tools Platform SQL Debugger UI Framework" [Starting]
    org.eclipse.datatools.sqltools.editor.core (1.0.0.v201001150815) "Eclipse Data Tools Platform SQL Editor Core Plug-in" [Starting]
    org.eclipse.datatools.sqltools.editor.core.ui (1.0.0.v201001150815) "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.2.v201002011830) "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.v201001200600) "SQL Builder" [Starting]
    org.eclipse.datatools.sqltools.sqleditor (1.0.1.v200912241345) "Eclipse Data Tools Platform SQL Editor" [Starting]
    org.eclipse.datatools.sqltools.sqlscrapbook (1.0.0.v200906022302) "Eclipse Data Tools Platform Sqlscrapbook Plug-in" [Starting]
    org.eclipse.datatools.sqltools.tabledataeditor (1.0.0.v200906022302) "Eclipse Data Tools Platform Table Data Editor Plug-in" [Starting]
    org.eclipse.debug.core (3.5.0.v20090526-1600) "Debug Core" [Active]
    org.eclipse.debug.core.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.debug.ui (3.5.1.v20090811_r351) "Debug UI" [Active]
    org.eclipse.debug.ui.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.draw2d (3.5.2.v20091126-1908) "Graphical Editing Framework Draw2d" [Starting]
    org.eclipse.ecf (3.0.0.v20090831-1906) "Eclipse Communication Framework (ECF)" [Active]
    org.eclipse.ecf.filetransfer (3.0.0.v20090831-1906) "ECF Filetransfer API" [Active]
    org.eclipse.ecf.identity (3.0.0.v20090831-1906) "ECF Identity API" [Active]
    org.eclipse.ecf.provider.filetransfer (3.0.1.v20090831-1906) "ECF Filetransfer Provider" [Active]
    org.eclipse.ecf.provider.filetransfer.httpclient (3.0.1.v20090831-1906) "ECF HttpClient Filetransfer Provider" [Active]
    org.eclipse.ecf.provider.filetransfer.httpclient.ssl (1.0.0.v20090831-1906) "ECF HttpClient Filetransfer Provider" [Resolved]
    org.eclipse.ecf.provider.filetransfer.ssl (1.0.0.v20090831-1906) "ECF Filetransfer Provider" [Resolved]
    org.eclipse.ecf.ssl (1.0.0.v20090831-1906) "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.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.xmi (2.5.0.v200906151043) "EMF XML/XMI Persistence" [Starting]
    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.common.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.concurrent (1.0.1.R35x_v20100209) "Equinox Concurrent API" [Starting]
    org.eclipse.equinox.ds (1.1.1.R35x_v20090806) "Declarative Services" [Active]
    org.eclipse.equinox.ds.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.frameworkadmin (1.0.100.v20090520-1905) "Equinox Framework Admin" [Active]
    org.eclipse.equinox.frameworkadmin.equinox (1.0.100.v20090520-1905) "Equinox Framework Admin for Equinox" [Active]
    org.eclipse.equinox.http.jetty (2.0.0.v20090520-1800) "Jetty Http Service" [Starting]
    org.eclipse.equinox.http.registry (1.0.200.v20090520-1800) "Http Service Registry Extensions" [Resolved]
    org.eclipse.equinox.http.registry.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.http.servlet (1.0.200.v20090520-1800) "Http Services Servlet" [Starting]
    org.eclipse.equinox.http.servlet.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.jsp.jasper (1.0.200.v20090520-1800) "Jasper Jsp Support Bundle" [Starting]
    org.eclipse.equinox.jsp.jasper.registry (1.0.100.v20090520-1800) "Jasper Jsp Registry Support Plug-in" [Starting]
    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.repository (1.0.101.R35x_v20090721) "Equinox Provisioning Artifact Repository Support" [Active]
    org.eclipse.equinox.p2.artifact.repository.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.p2.console (1.0.100.v20090520-1905) "Equinox Provisioning Console" [Starting]
    org.eclipse.equinox.p2.console.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.p2.core (1.0.101.R35x_v20090819) "Equinox Provisioning Core" [Active]
    org.eclipse.equinox.p2.core.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.p2.director (1.0.100.v20090520-1905) "Equinox Provisioning Director" [Active]
    org.eclipse.equinox.p2.director.app (1.0.100.v20090521-1912) "Equinox Provisioning Director Application" [Starting]
    org.eclipse.equinox.p2.director.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.p2.directorywatcher (1.0.100.v20090525) "Equinox Provisioning Directory Watcher" [Active]
    org.eclipse.equinox.p2.engine (1.0.101.R35x_v20090825) "Equinox Provisioning Engine" [Active]
    org.eclipse.equinox.p2.engine.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.p2.exemplarysetup (1.0.100.v20090520-1905) "Equinox Provisioning Exemplary Setup" [Active]
    org.eclipse.equinox.p2.exemplarysetup.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.p2.extensionlocation (1.0.100.v20090520-1905) "Extension Location Repository Support" [Active]
    org.eclipse.equinox.p2.extensionlocation.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.p2.garbagecollector (1.0.100.v20090520-1905) "Provisioning Garbage Collector" [Active]
    org.eclipse.equinox.p2.garbagecollector.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.p2.jarprocessor (1.0.100.v20090520-1905) "Equinox Provisioning JAR Processor" [Resolved]
    org.eclipse.equinox.p2.jarprocessor.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.p2.metadata (1.0.100.v20090525) "Equinox Provisioning Metadata" [Active]
    org.eclipse.equinox.p2.metadata.generator (1.0.100.v20090520-1905) "Equinox Provisioning Metadata Generator" [Starting]
    org.eclipse.equinox.p2.metadata.generator.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.p2.metadata.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.p2.metadata.repository (1.0.101.R35x_v20090812) "Equinox Provisioning Metadata Repository" [Active]
    org.eclipse.equinox.p2.metadata.repository.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.p2.publisher (1.0.0.v20090527-1812) "Equinox Provisioning Publisher" [Active]
    org.eclipse.equinox.p2.publisher.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.p2.reconciler.dropins (1.0.100.v20090520-1905) "Dropin Reconciler Plug-in" [Active]
    org.eclipse.equinox.p2.reconciler.dropins.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.p2.repository (1.0.1.v20090901-1041) "Equinox Provisioning Repository" [Active]
    org.eclipse.equinox.p2.repository.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.p2.repository.tools (1.0.1.R35x_v20090806) "Equinox p2 repository tools." [Starting]
    org.eclipse.equinox.p2.repository.tools.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.p2.touchpoint.eclipse (1.0.101.R35x_20090820-1821) "Equinox Provisioning Eclipse Touchpoint" [Active]
    org.eclipse.equinox.p2.touchpoint.eclipse.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.p2.touchpoint.natives (1.0.101.R35x_v20090806) "Equinox Provisioning Native Touchpoint" [Starting]
    org.eclipse.equinox.p2.touchpoint.natives.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.p2.ui (1.0.101.R35x_v20090819) "Equinox Provisioning UI Support" [Active]
    org.eclipse.equinox.p2.ui.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.p2.ui.sdk (1.0.100.v20090520-1905) "Equinox Provisioning Platform Update Support" [Active]
    org.eclipse.equinox.p2.ui.sdk.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.p2.ui.sdk.scheduler (1.0.0.v20090520-1905) "Equinox Provisioning Platform Automatic Update Support" [Active]
    org.eclipse.equinox.p2.ui.sdk.scheduler.nl1_3.5.0.v20091121043401 (3.5.0.v20091121043401) "nlFragmentName" [Resolved]
    org.eclipse.equinox.p2.updatechecker (1.1.0.v20090520-1905) "Equinox Provisioning Update Checker"

  • How we can configure a bachup Data services Server?

    Hello,
    "Data services" Production Server :
    OS: Windows 2003 Server SP2
    Data services: 11.3
    Repository: oracle10gr2
    We want to prepare a backup server identical to that of production. The Backup Server will be used in case of problems on the production server.
    Can you help us to make procedure that build a backup server from production server.
    thanks

    Hi,
    Short answer would be: there is no automatic way to do that.
    The amount of work to create this redundancy will depends heavily on your platform and how the Data Services components are deployed u2013 such as Job Server, repository databases, access servers, etc.
    If I understood your aim, the intention is not to create a load balance environment, but to 'clone' a deployment and let it in standby in case of issues with the default server. Is that right?
    In this case, you still could take advantage of the server group functionality to create a redundant Job Server, for instance. This configuration helps you to create the u2018backup serveru2019 you intent to and, at the same time, leverage the load balance resources available in DS. You will need to replicate the access server, adapters, and ODBC driversu2019 configurations (if applicable) in the other server.
    Just as important as the Job Server, a database redundancy for the Locals and Central repositories in your environment should be created, so you can replicate the repository in another machine using your RDBMS native resources, instead of backing it up constantly. Iu2019m not sure though if the repositories databases replication could affects job performance. Itu2019s recommended to double check that.
    As for the licensing issues regarding this redundant server, I suggest you talk with your Account Representative.
    Hope Iu2019m not flogging a dead horse here.
    Regards,
    Pedro
    PS. You should consider upgrading your software. You can ask your Account Representative for that as well.

  • Flex Application Only Compiles in Flash Builder

    Hello,
        I am a newbie trying to become familiar with Flex.  I am starting by building and running some sample applications.  For some reason, the applications will execute inside of FlashBuilder, but I am getting a compile error when I compile them on my linux box. The I used the Flash Builder remote services finder to generate the code for the remote service.  The class that produces the error was generated by Flash Builder.  I have appended the class at the bottom of this post.  Any suggestions?  Thanks in advance.
    --Marco
    [mjmatch@mjmatch-linux flexsphi]$ ant
    Buildfile: build.xml
    compile-flex:
        [mxmlc] Loading configuration file /opt/tools/flex-sdk/4.1/frameworks/flex-config.xml
        [mxmlc] /opt/tools/blazeds/4.0.0/tomcat/webapps/flexsphi/src/client/services/_Super_Foo.as(20): col: 68 Error: The definition of base class RemoteObjectServiceWrapper was not found.
        [mxmlc] internal class _Super_Foo extends com.adobe.fiber.services.wrapper.RemoteObjectServiceWrapper
        [mxmlc]                                                                    ^
    BUILD FAILED
    /opt/tools/blazeds/4.0.0/tomcat/webapps/flexsphi/build.xml:16: mxmlc task failed
    Environment
    =========
    Flex SDK 4.1
    Flash Builder 4
    ant compile tasks
    ============
        <property name="FLEX_HOME" value="/opt/tools/flex-sdk/4.1"/>
        <property name="DEPLOY_DIR" value="/opt/tools/blazeds/4.0.0/tomcat/webapps/flexsphi"/>
        <property name="CONTEXT_ROOT" value="flexsphi"/>
        <taskdef resource="flexTasks.tasks" classpath="${FLEX_HOME}/ant/lib/flexTasks.jar"  />
        <target name="compile-flex">
            <mxmlc file="src/client/Main.mxml"
                    services="${DEPLOY_DIR}/WEB-INF/flex/services-config.xml"
                    context-root="${CONTEXT_ROOT}"
                    output="${DEPLOY_DIR}/flexsphi.swf"/>
        </target>
    _Super_Foo
    =========
    * This is a generated class and is not intended for modification.  To customize behavior
    * of this service wrapper you may modify the generated sub-class of this class - Foo.as.
    package services
    import com.adobe.fiber.core.model_internal;
    import com.adobe.fiber.services.wrapper.RemoteObjectServiceWrapper;
    import com.adobe.serializers.utility.TypeUtility;
    import mx.rpc.AbstractOperation;
    import mx.rpc.AsyncToken;
    import mx.rpc.remoting.Operation;
    import mx.rpc.remoting.RemoteObject;
    import valueObjects.Bar;
    import mx.collections.ItemResponder;
    import com.adobe.fiber.valueobjects.AvailablePropertyIterator;
    [ExcludeClass]
    internal class _Super_Foo extends com.adobe.fiber.services.wrapper.RemoteObjectServiceWrapper
        // Constructor
        public function _Super_Foo()
            // initialize service control
            _serviceControl = new mx.rpc.remoting.RemoteObject();
            // initialize RemoteClass alias for all entities returned by functions of this service
            valueObjects.Bar._initRemoteClassAlias();
            var operations:Object = new Object();
            var operation:mx.rpc.remoting.Operation;
            operation = new mx.rpc.remoting.Operation(null, "getBars");
             operation.resultElementType = valueObjects.Bar;
            operations["getBars"] = operation;
            operation = new mx.rpc.remoting.Operation(null, "addBar");
            operations["addBar"] = operation;
            _serviceControl.operations = operations;
            _serviceControl.convertResultHandler = com.adobe.serializers.utility.TypeUtility.convertResultHandler;
            destination = "foo";
             model_internal::initialize();
          * This method is a generated wrapper used to call the 'getBars' operation. It returns an mx.rpc.AsyncToken whose
          * result property will be populated with the result of the operation when the server response is received.
          * To use this result from MXML code, define a CallResponder component and assign its token property to this method's return value.
          * You can then bind to CallResponder.lastResult or listen for the CallResponder.result or fault events.
          * @see mx.rpc.AsyncToken
          * @see mx.rpc.CallResponder
          * @return an mx.rpc.AsyncToken whose result property will be populated with the result of the operation when the server response is received.
        public function getBars() : mx.rpc.AsyncToken
            var _internal_operation:mx.rpc.AbstractOperation = _serviceControl.getOperation("getBars");
            var _internal_token:mx.rpc.AsyncToken = _internal_operation.send() ;
            return _internal_token;
          * This method is a generated wrapper used to call the 'addBar' operation. It returns an mx.rpc.AsyncToken whose
          * result property will be populated with the result of the operation when the server response is received.
          * To use this result from MXML code, define a CallResponder component and assign its token property to this method's return value.
          * You can then bind to CallResponder.lastResult or listen for the CallResponder.result or fault events.
          * @see mx.rpc.AsyncToken
          * @see mx.rpc.CallResponder
          * @return an mx.rpc.AsyncToken whose result property will be populated with the result of the operation when the server response is received.
        public function addBar(arg0:String) : mx.rpc.AsyncToken
            var _internal_operation:mx.rpc.AbstractOperation = _serviceControl.getOperation("addBar");
            var _internal_token:mx.rpc.AsyncToken = _internal_operation.send(arg0) ;
            return _internal_token;

    The SWC files are within the resource directory of LCDS.
    For example:
    C:\lcds31\resources\lcds_swcs\FlexSDK4\frameworks\locale\en_US
    fiber_rb.swc
    C:\lcds31\resources\lcds_swcs\FlexSDK4\frameworks\libs
    fiber.swc and fds.swc
    You can use the following within ANT.
    <!-- Get default compiler options. -->
              <load-config filename="${FLEX_HOME}/frameworks/flex-config.xml"/>
                <!-- List of path elements that form the roots of ActionScript
                class hierarchies. -->
                <source-path path-element="${FLEX_HOME}/frameworks"/>
              <!-- List of SWC files or directories that contain SWC files. -->
                <compiler.library-path dir="${FLEX_HOME}/frameworks" append="true">
                    <include name="libs" />
                    <include name="../bundles/{locale}" />
                </compiler.library-path>

  • Flash builder 4 + blazeDS 4.0.0.14931 remoteObject over SSL, spring-blazeds 1.5.0

    I am trying to use remoteObject over amfsecure channel running on https  with no authentications.  On flash client side, I am using Flash Builder  4 with Flex SDK 4.1. After imported the self-signed certificates into  cacerts in Flash Builder install, I could configure  Window/Preferences/Adobe/RDS Configuration to point to the web app  running on SSL and test connection was successful. When hit on https://mymachine/myApp/messagebroker/amfsecure in browser, my app log file indicated that a request was received.
    But  when trying to connect my flash project data/services through BlazeDS, I  got RDS 404 error with reason as Not Found. Flex server is set to https://mymachine/myApp and context root is /myApp.
    web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app> 
      <!-- Spring security -->
      <filter>
          <filter-name>springSecurityFilterChain</filter-name>
          <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
      </filter>
      <filter-mapping>
          <filter-name>springSecurityFilterChain</filter-name>
          <url-pattern>/*</url-pattern>
      </filter-mapping>
      <!-- Spring configuration -->
      <context-param>
          <param-name>contextConfigLocation</param-name>
          <param-value>
              /WEB-INF/spring/*-config.xml
          </param-value>
      </context-param>
      <listener>
           <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
      </listener> 
      <servlet>
             <servlet-name>myApp</servlet-name>
             <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
             <load-on-startup>1</load-on-startup>
      </servlet>
      <servlet-mapping>
             <servlet-name>myApp</servlet-name>
             <url-pattern>/messagebroker/*</url-pattern>
      </servlet-mapping>
      <servlet>
             <servlet-name>spring-mvc</servlet-name>
             <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
             <load-on-startup>1</load-on-startup>
      </servlet>     
      <servlet-mapping>
             <servlet-name>spring-mvc</servlet-name>
             <url-pattern>/spring/*</url-pattern>
      </servlet-mapping>
      <servlet>
          <servlet-name>RDSDispatchServlet</servlet-name>
          <servlet-class>flex.rds.server.servlet.FrontEndServlet</servlet-class>
           <init-param>
               <param-name>useAppserverSecurity</param-name>
               <param-value>false</param-value>
           </init-param>
           <init-param>
               <param-name>messageBrokerId</param-name>
               <param-value>_messageBroker</param-value>
           </init-param>
           <load-on-startup>10</load-on-startup>
      </servlet>
      <servlet-mapping id="RDS_DISPATCH_MAPPING">
          <servlet-name>RDSDispatchServlet</servlet-name>
          <url-pattern>/CFIDE/main/ide.cfm</url-pattern>
      </servlet-mapping>
      <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>
      </welcome-file-list>
    </web-app>
    flex/services-config.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <services-config>
        <services>
            <default-channels>
               <channel ref="my-secure-amf"/>
            </default-channels>
            <service-include file-path="remoting-config.xml" />
        </services>
        <channels>
            <channel-definition id="my-streaming-amf" class="mx.messaging.channels.StreamingAMFChannel">
                <endpoint url="http://{server.name}:{server.port}/{context.root}/messagebroker/streamingamf" class="flex.messaging.endpoints.StreamingAMFEndpoint"/>
            </channel-definition>
            <channel-definition id="my-amf" class="mx.messaging.channels.AMFChannel">
                <endpoint url="http://{server.name}:{server.port}/{context.root}/messagebroker/amf" class="flex.messaging.endpoints.AMFEndpoint"/>
                <properties>
                    <polling-enabled>false</polling-enabled>
                    <add-no-cache-headers>false</add-no-cache-headers>
                </properties>
            </channel-definition>
            <channel-definition id="my-secure-amf" class="mx.messaging.channels.SecureAMFChannel">
                <endpoint url="https://{server.name}:443/{context.root}/messagebroker/amfsecure" class="flex.messaging.endpoints.SecureAMFEndpoint"/>
                <properties>
                     <add-no-cache-headers>false</add-no-cache-headers>
                </properties>
            </channel-definition>
            <channel-definition id="my-polling-amf" class="mx.messaging.channels.AMFChannel">
                <endpoint url="http://{server.name}:{server.port}/{context.root}/messagebroker/amfpolling" class="flex.messaging.endpoints.AMFEndpoint"/>
                <properties>
                    <polling-enabled>true</polling-enabled>
                    <polling-interval-seconds>4</polling-interval-seconds>
                </properties>
            </channel-definition>
            <channel-definition id="my-http" class="mx.messaging.channels.HTTPChannel">
                <endpoint url="http://{server.name}:{server.port}/{context.root}/messagebroker/http" class="flex.messaging.endpoints.HTTPEndpoint"/>
            </channel-definition>
            <channel-definition id="my-secure-http" class="mx.messaging.channels.SecureHTTPChannel">
                <endpoint url="https://{server.name}:{server.port}/{context.root}/messagebroker/httpsecure" class="flex.messaging.endpoints.SecureHTTPEndpoint"/>
                <properties>
                     <add-no-cache-headers>false</add-no-cache-headers>
                </properties>
            </channel-definition>
        </channels>
        <logging>
            <target class="flex.messaging.log.ConsoleTarget" level="Debug">
                <properties>
                    <prefix>[BlazeDS] </prefix>
                    <includeDate>false</includeDate>
                    <includeTime>false</includeTime>
                    <includeLevel>false</includeLevel>
                    <includeCategory>false</includeCategory>
                </properties>
                <filters>
                    <pattern>Endpoint.*</pattern>
                    <pattern>Service.*</pattern>
                    <pattern>Configuration</pattern>
                </filters>
            </target>
        </logging>
        <security>
             <security-constraint id="trusted">
                <roles>
                    <role>ROLE_ANONYMOUS</role>
                    <role>ROLE_USER</role>
                    <role>ROLE_ADMIN</role>
                </roles>
            </security-constraint>
        </security>
        <system>
            <redeploy>
                <enabled>false</enabled>
            </redeploy>
        </system>
    </services-config>
    flex/remoting-config.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <service id="remoting-service"
        class="flex.messaging.services.RemotingService">
        <adapters>
            <adapter-definition id="java-object" class="flex.messaging.services.remoting.adapters.JavaAdapter" default="true"/>
        </adapters>
        <default-channels>
            <channel ref="my-secure-amf"/>
        </default-channels>
    </service>
    Please help! I don't seem to find any working samples for RDS SSL configuration. If there is one, would you please point me to the link?
    Thanks in advance!

    Hi Experts,
    Can you confirm if RDS supports SSL at all in FB 4? If not, any plan to do so?
    Thanks

  • Simple Flip Book in Flash Builder

    I built this simple Flip Book in Flash Builder starting with Flash Catalyst...I guess the big issue is that when I make these components...they work well at z=0, but when I change z things don't work...why? Definitely needs a fix...everything is below (source, demo, book blog, video):
    Source: http://lv3d.googlecode.com/files/FlipBook.zip
    Demo: http://www.professionalpapervision.com/demos/flipbook/
    Book Blog
    Video

    Hi,
    After thinking about your solution and doing some testing I have two comments...
    (1) I'm concerned that your change may not be congruent with Flash Catalyst and its logical flow, and
    (2) The solution did not solve the problem. I fear I have not explained myself well. So here is a video on the problem...
    http://www.youtube.com/watch?v=wg-pUX6lpuM
    And if anyone wants to know how to install a new SDK in Flash Builder. Here is a video on that too
    http://www.youtube.com/watch?v=OhHxPK_p2jQ
    Best Regards,
    Mike
    From: [email protected]
    To: [email protected]
    Subject: RE: Simple Flip Book in Flash Builder
    Date: Sat, 6 Feb 2010 15:51:36 +0000
    Thanks so much I really appreciate the comment...I'm digesting and testing it!!!
    From a PV3D and Away3D perspective...one of the difficulties I've run into is that in Flash Builder there are three ways to do 3D...MXML (from Flash Catalyst), Matrix Manipulation using update display, and dot syntax methods (hey which one do I use?). It's really difficult to get the same visual effects in Flash Builder that you get in PV3D and Away3D, but in doing so you don't have to run your processor so hard and can do more. And you can't beat how easy it is to work with Flash Catalyst...you can develop 3D 10 times faster...
    That means I'm taking my lumps while things are being repaired and developed. But that's the business...thanks again for your comments.
    Just one more comment...I've built the data-driven case of the book for 3 pages using FB data wizard:
    Part 1: http://www.youtube.com/watch?v=WzKba9qyrp0
    Part 2: http://www.youtube.com/watch?v=xz9htZXYZyU
    Part 3: http://www.youtube.com/watch?v=_Nyeg4_zuXo
    Part 4: http://www.youtube.com/watch?v=uG_uUIHSyqU
    ...in the multi-page case I will actually turn the pages into a particle system and treat the 3D a little differently...I'll take a real good look at your suggestions below then.
    Best Regards,
    Mike
    Date: Fri, 5 Feb 2010 14:18:03 -0700
    From: [email protected]
    To: [email protected]
    Subject: Simple Flip Book in Flash Builder
    Mike,
    Steven Shongrunden played around with your original FlipBook example and noticed that it doesn't work the same in the current builds as it did in Beta2. The problem is that we changed the behavior of the 3D effects recently, to fix this bug:
    http://bugs.adobe.com/jira/browse/sdk-24993
    Basically, 3D effects used to side-effect the 3D properties of objects and persist their changes on the objects after transitions were over. This is different from the way that the rest of the effects work, where we install the proper end-state values in the objects when transitions end.
    This means that if you do a Rotate3D with angleYTo="180", that we'll do that rotation during the effect ... and then wipe out that change when the transition ends.
    There are two workarounds for this situation. The first, which is the way to go in general and definitely for Catalyst users, is to have 2-sided objects. So instead of simply seeing the back of the front cover, the user would see the front of a completely different object (the inside cover page, if you like). Then the transition should rotate both objects (the cover to 180 and the inside object to 0), then make the old object disappear and the new object appear at the right times (like at 90 degrees). So when the values are restored to the front cover upon transition end they will not be visible because the object is not visible.
    The workaround for coders is to actually tell the states the values that the object should have. So if you actually want to rotate the object around y, then set that information in the states so that we won't blow it away when the transition ends. In fact, you could even set it in the states and not in the effect and we'll run the transition automatically. This is really the best approach for state transitions in general: tell the states what values the objects should have, and tell the transitions what effects to run, then the effects will automatically figure out the values to animate from/to.
    The trick with this workaround is that the 3D effects affect the post-layout properties by default, and setting those values is not as obvious as setting pre-layout properties on the object.
    Here's an example of how to do this for the cover component:
         <components:frontCoverCustomComponent x="0" y="0" id="frontcovercustomcomponent1"   click="frontCoverCustomComponent_clickHandler()">
            <components:postLayoutTransformOffsets.State2>
                <s:TransformOffsets rotationY="180"/>
            </components:postLayoutTransformOffsets.State2>
        </components:frontCoverCustomComponent>
    I added this code to your custom component (and left the transition code as-is) and it now works as expect. It's still a bit weird to see the back of a two-dimensional object, so using two objects for anything that you'll see flipped is still a good thing to do in any case (as someone else suggested on this thread).
    Chet.
    >

  • Structure List for a Service Product ?

    Hi,
    If I maintain a Bill of Material for a Service Product, is it possible to view its components in the 'Structure List' of the Service Order ?
    Situation is: Each Service Product represent a "Level of Repair" and only specific components are associated with that Service Product though the Serviceable Material may have several components (BOM).
    Or how else can I associate allowable components to Service Product ?
    Thanks.
    Raj

    Hello Janakiraman,
    Generally for configuration , you cannot update the configuraton directly . There are no bapis in VC to do so. you have to update the configuration data via the Object itself. Service orders are objects with type PMSDO. There is unfortunately no bapi that will update configuration directly. I checked BAPI_ALM_ORDER_MAINTAIN but that doesnot have any input data for configuration. Configuration is stored via unique number PMSDO-CUOBJ. You can then take this value and check the data in txn CUTABLEINFO. Instance = CUOBJ in CUTABLEINFO.  You will find the object key and number in this transaction .Eg
    INSTANCE           OBJECT-OBJECT_TYPE OBJECT-OBJECT_KEY
    000000000000203448 PMSDO              OR000004032826
    To maintain the data , you can check to enhance this BAPI , Otherwise best way is to get the CUOBJ number and use VC function modules to update.
    But you will neeed to create a Z program to do. You can find all the VC function as mentioned in the thread above.
    Thanks

Maybe you are looking for

  • My Ipod 4th gen stopped charging after 5.1 Update...HELP?

    After the 5.1 update, as soon as my ipod died, it has not started charging again, I have tried different cords, wall chargers, computers, you name it. I was looking at some answers before and it said to restart, hard reset and charge, but mine wont w

  • Firefox 4 Beta 2 autohide taskbar problems

    I am using Windows 7 and have my taskbar set to auto-hide, but after updating to firefox 4 beta 2, my taskbar gets stuck down when firefox is maximized. I must minimize firefox or hit the windows key to get the taskbar up again. its really annoying.

  • Calling java script in view

    Hi gurus, I am stuck with some issu, here is my issue as fallows Scenario: I am planning to open outlook client by passing some java script and i want to attach history of the email like same as reply button in MSoutlook - To call java script i am us

  • OCCI-getString error

    The following is a small console program written with Visual C++ 6.0 sp 4. The program has a crash when it tries to destruct the string variable fodt in the while loop. Is this a known bug or is there an error in the code ? Bertil Reppen #include "st

  • Can't get color themes to load in illustrator cc

    As someone has already asked earlier this month. Any help appreciated. Been 2 days. Libraries seems to sync and sync status says all good. It says "unable to connect to the adobe server, you're either offline or the server is busy" Anybody ? my CC co