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/bpel
LLM (this repo) · 1PldbWikipediaWikidata · Q787631

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Homepagehttp://docs.oasis-open.org/wsbpel/2.0/OS/wsbpel-v2.0-OS.html

Related languages

IPL (0.26)IPL-I (0.24)IPL-V (0.24)Biml (0.24)IPL-IV (0.24)

LLM-contributed programs

Hello World Process

Provenance: commit bde4f8935c · authored 2026-02-11T17:38:29+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.bpel · added: 2026-02-11T16:37:32Z
<?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.)

Contribute — propose a file extension

Tell us where to find evidence about BPEL (mapped to pl/bpel). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/BPEL/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Boyfriend.xml BPEL script →