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:Tutorial: RUI With DataBase Lesson 5"

(Create a Service type)
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
 
[[EDT:Tutorial: Access a database with EGL Rich UI|Access a database with EGL Rich UI]]
 
[[EDT:Tutorial: Access a database with EGL Rich UI|Access a database with EGL Rich UI]]
  
Line 6: Line 5:
 
|[[EDT:Tutorial: RUI With DataBase Lesson 4|< Previous]] | [[EDT:Tutorial: RUI With DataBase Lesson 6|Next >]]
 
|[[EDT:Tutorial: RUI With DataBase Lesson 4|< Previous]] | [[EDT:Tutorial: RUI With DataBase Lesson 6|Next >]]
 
|}
 
|}
= Lesson 5: Create the service =
+
= Lesson 5: Create the service =
  
Create a dedicated service to access the database.
+
Create a dedicated service to access the database.  
  
In this lesson, you create an EGL Service part, which
+
In this lesson, you create an EGL Service type, which is a main type. You must place each main type in a separate source file, and the name of the type must be the same as the name of the file.  
is a generatable part. You must place each generatable part in a separate
+
source file, and the name of the part must be the same as the name
+
of the file.
+
  
== Create a Service part ==
+
== Create a Service type  ==
  
To create a Service part:
+
To create a Service type:  
  
<ol><li>In the Project Explorer window, right-click '''PaymentService''',
+
#In the Project Explorer window, right-click '''PaymentService''', and then click '''New''' &gt; '''Service'''.  
and then click '''New''' &gt; '''Service'''.
+
#In the New EGL Service&nbsp;window, enter the following information:  
<li>In the New EGL Service Part window,
+
##In the '''EGL source file name''' field, enter name '''SQLService'''. EGL adds the .egl file extension automatically.
enter the following information:
+
##In the '''Package''' field, enter the name '''services'''. Click '''Next'''.
 +
##Verify that '''Create as web (EGL REST-RPC) service''' is unchecked, and leave the '''Interfaces to implement''' field empty.<br>[[Image:RUIAccessDB Lesson5 1.png]]
 +
#Click '''Finish'''. EGL opens the new Service&nbsp;type in the editor.
 +
#Remove the code from the file, leaving only the following lines, and save the file, but do not close it.
  
<ol><li>In the '''EGL source file name''' field,
 
enter name '''SQLService'''.
 
EGL
 
adds the .egl file extension automatically.
 
<li>In the '''Package''' field, enter the
 
name '''services'''.
 
services
 
<li>Verify that
 
'''Create as web (REST) service''' are unchecked, and leave the '''Implements
 
Interfaces''' field empty.<br />[[Image:EDT_Tutorial_edt_richui_sql04_new_sql_service.jpg|The New EGL Service Part window shows the service name and package.]]
 
 
</ol>
 
 
<li>Click '''Finish'''. EGL
 
opens the new Service part in the editor.
 
<li>Remove the code from the file, leaving only the following
 
lines, and save the file, but do not close it.
 
</ol>
 
 
   package services;
 
   package services;
 
+
  service SQLService
+
service SQLService
 
+
  end
+
end
== Lesson checkpoint ==
+
  
You learned how to create an EGL Service part.
+
== Lesson checkpoint  ==
  
In
+
You learned how to create an EGL Service type.  
the next lesson, you add code for the functions to '''SQLService'''.
+
  
 +
In the next lesson, you add code for the functions to '''SQLService'''.
  
''' Related reference '''<br>
+
<br>'''Related reference '''<br>
  
* Help topic:   Services: a top-level overview<br />
+
*Help topic: Services: a top-level overview<br>
  
 +
<br>
  
{| style="float: right"
+
{| style="float: right" class="FCK__ShowTableBorders"
|[[EDT:Tutorial: RUI With DataBase Lesson 4|&lt; Previous]] | [[EDT:Tutorial: RUI With DataBase Lesson 6|Next >]]
+
|-
 +
| [[EDT:Tutorial: RUI With DataBase Lesson 4|&lt; Previous]] &#124; [[EDT:Tutorial: RUI With DataBase Lesson 6|Next &gt;]]
 
|}
 
|}
 
  
 
[[Category:EDT]]
 
[[Category:EDT]]

Latest revision as of 02:32, 27 December 2012

Access a database with EGL Rich UI


< Previous | Next >

Lesson 5: Create the service

Create a dedicated service to access the database.

In this lesson, you create an EGL Service type, which is a main type. You must place each main type in a separate source file, and the name of the type must be the same as the name of the file.

Create a Service type

To create a Service type:

  1. In the Project Explorer window, right-click PaymentService, and then click New > Service.
  2. In the New EGL Service window, enter the following information:
    1. In the EGL source file name field, enter name SQLService. EGL adds the .egl file extension automatically.
    2. In the Package field, enter the name services. Click Next.
    3. Verify that Create as web (EGL REST-RPC) service is unchecked, and leave the Interfaces to implement field empty.
      RUIAccessDB Lesson5 1.png
  3. Click Finish. EGL opens the new Service type in the editor.
  4. Remove the code from the file, leaving only the following lines, and save the file, but do not close it.
  package services;

service SQLService

end

Lesson checkpoint

You learned how to create an EGL Service type.

In the next lesson, you add code for the functions to SQLService.


Related reference

  • Help topic: Services: a top-level overview


< Previous | Next >

Copyright © Eclipse Foundation, Inc. All Rights Reserved.