BPEL
1 program
Added 2026-02-11T16:37:32Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Business Process Execution Language, WS-BPEL, BPEL4WS
Provenance: commit bde4f8935c · authored 2026-02-11T17:38:29+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/bpelWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Homepage | http://docs.oasis-open.org/wsbpel/2.0/OS/wsbpel-v2.0-OS.html |
|---|
Related languages
LLM-contributed programs
Hello World Process
Provenance: commit bde4f8935c · authored 2026-02-11T17:38:29+01:00 · agent claude-code · model sonnet · WebSearch disabled
<?xml version="1.0" encoding="UTF-8"?>
<process name="HelloWorld"
targetNamespace="http://example.com/hello"
xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
xmlns:tns="http://example.com/hello">
<import importType="http://schemas.xmlsoap.org/wsdl/"
location="HelloWorldService.wsdl"
namespace="http://example.com/hello" />
<partnerLinks>
<partnerLink name="client"
partnerLinkType="tns:HelloWorldPLT"
myRole="provider" />
</partnerLinks>
<variables>
<variable name="input" messageType="tns:HelloWorldRequestMessage"/>
<variable name="output" messageType="tns:HelloWorldResponseMessage"/>
</variables>
<sequence>
<receive name="receiveInput"
partnerLink="client"
operation="sayHello"
variable="input"
createInstance="yes"/>
<assign name="assignOutput">
<copy>
<from>
<literal>Hello, World!</literal>
</from>
<to variable="output" part="greeting"/>
</copy>
</assign>
<reply name="replyOutput"
partnerLink="client"
operation="sayHello"
variable="output"/>
</sequence>
</process>
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)