ช่วงนี้ก็กลับมาทำ Thesis แล้วครับ หลังจากที่ได้ทำงานอย่างหนัก เพื่อลูกค้าไปจนดึกดื่นครับ โดยในปัญหาที่ผมเจอ คือ ต้องการ Update ค่าใน XML ครับ โดยมีตัวอย่างของ XML ที่ต้องการแก้ไขค่า ดังนี้ครับ
ก่อนแก้ไข
<bpmn:sequenceFlow id="SequenceFlow_1527j5i" name="else" sourceRef="ExclusiveGateway_0xrpnpu" targetRef="Reject_Loan_Request">
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression"><![CDATA[${!(collateralAmt / loanAmt*100 > 70)}]]></bpmn:conditionExpression>
</bpmn:sequenceFlow>หลังแก้ไข
<bpmn:sequenceFlow id="SequenceFlow_1527j5i" name="else" sourceRef="ExclusiveGateway_0xrpnpu" targetRef="Reject_Loan_Request">
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression"><![CDATA[${!(collateralAmt + loanAmt*100 > 70)}]]></bpmn:conditionExpression>
</bpmn:sequenceFlow>จากรูปเห็นว่าค่าใน XML Node ที่ผมต้องการแก้ไขมันมีอักขระพิเศษอย่าง
<


