exposing web-services in OE - linux scripts

rstanciu

Member
to deploy a new web-service in OE is not very easy task.
Here you can find some bash scripts which automate the deploy process.
(you have to modify these scripts on your environement)
To deply a new service, just you have to put you new 4GL procedure in WSA\4GL
directory, open the WSA/ws/WSTK.template and add your new procedure name
at the end of xml file like:

<Procedure isPersistent="false" useFullName="false">
<Name>getCustomerName</Name>
<ProcPath />
<ProPath>MY_WORKDIR/</ProPath>
<ProcExt>p</ProcExt>
<HelpString>Get Customer Name by CustNum</HelpString>
<ODLHelpString/>
</Procedure>
 

Attachments

  • WSA.zip
    13.3 KB · Views: 10
Top