Name
BPEL.BPEL.script_upload — Upload a new BPEL script source
Synopsis
BPEL.BPEL.script_upload
(
|
in name varchar , |
in url varchar , | |
in
content
any
) ; |
Parameters
name
varchar a human readable name for script
url
varchar the URL to the script source
content
any as an alternative to the URL, the content can be specified.
Return Types
returns an integer unique identifier for the uploaded script
Description
BPEL.BPEL.script_upload
uploads a new BPEL script, makes expanded version,
and put into edit mode. If content is supplied the function will not try to download or check
the URL specified.
Examples
Example 24.646. Simple example
SQL> select BPEL.BPEL.script_upload ('LoanFlow', 'file:/LoanFlow.bpel', null); unnamed INTEGER _______________________________________________________________________________ 1