Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EDT:v07 green threads"

Line 13: Line 13:
 
| Create EGL web client with service project.<br>  
 
| Create EGL web client with service project.<br>  
 
| bgcolor="#ccff00" | Blocked only<br>in P2 build<br>  
 
| bgcolor="#ccff00" | Blocked only<br>in P2 build<br>  
| The CQ for widget projects has not been finished yet. - Will<br>
+
| CQ has been finished.<br>
 
|-
 
|-
 
| Create RUI handler and the default handler created by the wizard can be opened successfully by VE.<br>  
 
| Create RUI handler and the default handler created by the wizard can be opened successfully by VE.<br>  
Line 56: Line 56:
 
|}
 
|}
  
<br>  
+
<br>
  
 
= Green thread scenario<br>  =
 
= Green thread scenario<br>  =

Revision as of 22:27, 29 August 2011

Last update: 2011/08/29, By Rocky

Overview

Note: By default, I use the P2 installable build to test the green thread. However, if the defects marked with * mean tested by development workspace.

Capability
Status
Defects
Create EGL web client with service project.
Blocked only
in P2 build
CQ has been finished.
Create RUI handler and the default handler created by the wizard can be opened successfully by VE.
Failed
356039: VE prints 'document.write("could not open %handler_name%");'
when opening the RUI handlers - Forest
The button, input box & grid can be drag/drop in VE.
Blocked
* 355624: Compile Error after creating a client project - Scott
The properties, outline, data view etc can be used.
Blocked
* 355624
Create interface, service part & set binding information in the dd file.
Failed
356046: The Java code for EGL interfaces cannot be generated. - Matt
Run service call in preview mode.
Blocked
Service Invocation problem in the preview tab of visual editor - Joe/Justin
Debug RUI handler & service (step over & into etc)
Blocked
* 355624
Deploy the RUI handler to the Tomcat
Blocked
* 355624
Deploy the service to the Tomcat
Blocked
The code has not been released yet. - Jimmy
Run the application
Blocked
* 355624
The service call with database
Blocked
Not know the test scenario - Tony/Zhi


Green thread scenario

1. Create EGL web client with service project

   1. Create an EGL Project
   2. type base package "org.eclipse.edt.greenthread.helloworld"
   3. Select "Web Client With Service Project" as the project template
   4. Add "Dojo Widget" (dojotoolkit.org) and RUI UI widgets (0.7.0) into the RUI widget libraries list
   5. Press "Finish"
   6. There should be a directory whose structure as follows
    [base package name].client (configured for JavaScript gen)
    [base package name].server (configured for Java gen)
    [base package name].common (configured for both JavaScript and Java gen)"

2. Create RUI handler and the default handler created by the wizard can be opened successfully by VE

   1. User enters name and package for a new RUIHandler.
   2. System creates the EGL part and then opens it in the Rich UI Editor
   3. Switch to Design, Source and preview tab to check if editor shows the proper content

3. The button, input box & grid can be drag/drop in VE

   1. Drag a Button in the grid layout from palette, Set the text to "Call Service" in properties view
   2. Use the EGL Source editor to instantiate a Dialog whose children include a Box named "content".
   3. Drag an input box and set the properties

4. The properties, outline, data view etc can be used

   1. In properties view, add a click event process function for the button we created above.
   2. Show the dialog in the click event function above.
   3. Check outline and preview view

5. Create service part & set binding information in the dd file.

   1. Create an interface
   2. Create a new service and implement the interface created in previous step, specifying package and part name.
   3. Use the EGL editor to implement a function that returns a string by concatenating Hello, to whatever is passed in.
   4. Extract EGL Service interface
   5. Add a service client binding in egl dd file

6. Run service call in preview mode.

   1. Open RUI handler, in the event handler function (created above), use code completion to instantiate the service.
   2. Use EGL's call statement to invoke the service, specifying that it returns to a callback function that does not yet exist.
   3. Use the EGL Editor's Quick Fix to automatically define the callback function.
   4. Implement the callback function to instantiate a textfield containing the service result and programmatically add it to the children of the dialog's UI (which again is a Box named content)
   5. switch back to preview tab to exercise a running instance of their UI.

7. Debug RUI handler & service (step over) & (step into) etc.

   1. In the EGL Editor, the User sets breakpoints on both the service invocation as well as the function that implements the service.
   2. From the preview pane, the user hits the Debug button to launch the UI in an external instance of their system browser.
   3. exercise Step into/step return/step over feature
   4. exercise resume/suspend/terminate feature
   5. verify the debug call stack tree, variables, breakpoints and expression view for the above debug operation

8. Deploy the RUI handler/service to the Tomcat

   1. User right clicks on the egl dd file and chooses "Deploy".
   2. System responds that there is no target (project), and prompts user to create one. From the deployment descriptor, the user specifies the target project by creating a new Dynamic Web Project and chooses Tomcat 6.0 as their target runtime.
   3. User clicks on the Deploy button in the descriptor to deploy the project to the target Dynamic Web Project.

9. Run the application

   1. User right-clicks on the UI HTML file that was generated in the target project, and chooses Run as... Run on Server.
   2. System gives the user a choice of web servers on which to run, and then publishes to that server and launches the HTML in a browser.


Back to the top