Guidewire 我可以创建多个signature.pcf文件吗?

Guidewire 我可以创建多个signature.pcf文件吗?,guidewire,Guidewire,我试图在.pcf文件中为Exitpoint创建多个签名,它显示了一个错误 是否可以接受,那么如果没有明确提及默认签名是什么?是的,您可以在LocationEntryPoint选项卡中添加多个签名 示例代码 <?xml version="1.0"?> <PCF xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../

我试图在.pcf文件中为Exitpoint创建多个签名,它显示了一个错误

是否可以接受,那么如果没有明确提及默认签名是什么?是的,您可以在LocationEntryPoint选项卡中添加多个签名
示例代码

<?xml version="1.0"?>
<PCF
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="../../../../../../pcf.xsd">
    <Forward
        canVisit="true"
        id="YourPageForward">
        <LocationEntryPoint
            signature="YourPageForward(queryParamId1:String)"/>
        <LocationEntryPoint
            signature="YourPageForward(queryParamId1:String, queryParamId2:String)"/>
        <Variable
            name="queryParamId1"
            type="String"/>
        <Variable
            name="queryParamId2"
            type="String"/>
        <ForwardCondition
            action="my.web.YourPageForwardHandler.Instance.doProcessOne(queryParamId1)"/>
        <ForwardCondition
            action="my.web.YourPageForwardHandler.Instance.doProcessTow(queryParamId1, queryParamId2)"/>   
    </Forward>
</PCF>


Hi@m.kokhila,您遇到了什么错误?您好,OP,如果该解决方案对您的问题有效,您能否将Umanath的答案标记为正确答案,谢谢。