WSFL
1 program
Added 2026-03-12T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Web Services Flow Language
Provenance: commit c7a3f6d90e · authored 2026-03-12T09:28:10+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Loan Approval Flow
Provenance: commit c7a3f6d90e · authored 2026-03-12T09:28:10+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
<?xml version="1.0" encoding="UTF-8"?>
<flowModel name="LoanApproval"
xmlns="http://www.ibm.com/wsfl/2001/05/wsfl"
targetNamespace="http://example.com/loanapproval"
xmlns:tns="http://example.com/loanapproval">
<!-- Activities for loan approval process -->
<activity name="ReceiveLoanRequest">
<implement>
<plugLink portType="tns:LoanService" operation="requestLoan"/>
</implement>
</activity>
<activity name="CheckCreditScore">
<implement>
<plugLink portType="tns:CreditService" operation="checkCredit"/>
</implement>
</activity>
<activity name="ApproveLoan">
<implement>
<plugLink portType="tns:LoanApprover" operation="approve"/>
</implement>
</activity>
<activity name="RejectLoan">
<implement>
<plugLink portType="tns:LoanApprover" operation="reject"/>
</implement>
</activity>
<!-- Control links define the flow -->
<controlLink source="ReceiveLoanRequest" target="CheckCreditScore"/>
<controlLink source="CheckCreditScore" target="ApproveLoan">
<condition>creditScore >= 700</condition>
</controlLink>
<controlLink source="CheckCreditScore" target="RejectLoan">
<condition>creditScore < 700</condition>
</controlLink>
</flowModel>