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 "Service Interface and Data Types Editors"

m
(Build Infrastructure)
Line 45: Line 45:
  
 
1. You can find project's plugins in the folder "/plugins", and import them in Eclipse workspace<br>2. You may find project's source code formatter in the folder "/development/[https://git.eclipse.org/c/webtools/incubator/org.eclipse.webtools.incubator.sieditor.git/tree/development/sie_java_formatter.xml sie_java_formatter.xml]"  
 
1. You can find project's plugins in the folder "/plugins", and import them in Eclipse workspace<br>2. You may find project's source code formatter in the folder "/development/[https://git.eclipse.org/c/webtools/incubator/org.eclipse.webtools.incubator.sieditor.git/tree/development/sie_java_formatter.xml sie_java_formatter.xml]"  
 +
 +
== Creating Patches  ==
  
 
== Build Infrastructure  ==
 
== Build Infrastructure  ==
Line 50: Line 52:
 
You may find the project's [https://hudson.eclipse.org/hudson/view/WTP/job/cbi-wtp.inc-sieditor/ build job] hosted at Eclipse Hudson server.  
 
You may find the project's [https://hudson.eclipse.org/hudson/view/WTP/job/cbi-wtp.inc-sieditor/ build job] hosted at Eclipse Hudson server.  
  
<br>  
+
<br>
  
 
== How To File a Bug  ==
 
== How To File a Bug  ==

Revision as of 02:36, 12 July 2011

The Service Interface and Data Types editors are Eclipse form-based WSDL and XSD editors. They provide easy-to-use, unified user interface and facilitate developers with quick and efficient application development in all WS and XSD related areas. In order not to restrict WSDL and XSD experts to the visual-editing, rich text editing capabilities based on the WTP Structured Text Editor are also provided.

The project is in incubation phase at WTP Incubator. For more details about both editors see the project's proposal page Service Interface and Data Types Editors Proposal.

The Project's Status

The current version of the project is 0.9. It is in WTP Incubator, and is in stabilization phase. The project was tested with Eclipse Galileo and Helios releases.


How To Install

  1. Download the following zip file: project build at hudson
  2. From Eclipse IDE select "Install New Software", and point to the downloaded zip file.


How To Start Service Interface and Data Types Editors

  1. Press right mouse button on a WSDL file, and choose "Open With -> Service Interface Editor"
  2. Press right mouse button on a XSD file, and choose "Open With -> Data Types Editor"


How To Make Service Interface and Data Types Editors Your Default WSDL, and XSD Editors

  1. Open Preferences dialof from Eclipse menu "Window -> Preferences"
  2. Search for "File Associations", and select it
  3. Find (or create) file extensions *.wsdl, *.xsd, and associate Service Interface and Data Types Editors to them
  4. Press "Default" button to make the associated editor a default one


Where To Find The Source Files

Source files of the project are located in Eclipse GIT repository: web view of git repository

To get sources via https, read the following git info: setting up https for pushing

How to get the sources (step by step)

1. Install Git Bash for Windows (for other OS get a git client from Git download site )
2. Create your .gitconfig file with contents got from setting up https for pushing to your user's folder (e.g. c:\Users\ditenev)
    a) for commiter: change user in .gitconfig file with your committer id: e.g.: esimeonov.
    b) for any user: change URL in .gitconfig, so you do use HTTP instead HTTPS, and do not use any user ID in URL
4. Create an empty directory e.g. c:\mygitrepo
5.1 For Windows:
    a) Right click on “mygitrepo”, and execute “Git Init Here”
    b) Right click on “mygitrepo”, and execute “Git Bash”
    c) In bash do type: git pull
    d) Close bash
5.2 For other OS:
    a) Open that directory in a terminal
    b) Execute 'git init'
    c) Execute 'git pull'
    d) Close the terminal
6. Import projects into eclipse

How to edit the sources

1. You can find project's plugins in the folder "/plugins", and import them in Eclipse workspace
2. You may find project's source code formatter in the folder "/development/sie_java_formatter.xml"

Creating Patches

Build Infrastructure

You may find the project's build job hosted at Eclipse Hudson server.


How To File a Bug

To file a bug follow these steps:

  1. Login to Bugzilla
  2. Select project "WebTools"
  3. Select project "WTP Incubator"
  4. Select component "wtp.inc.sieditor"
  5. Describe the bug.



More Information

Service Interface and Data Types Editors Proposal

Short Introductory Screencast on Youtube



Back to the top