在AnypointStudio中,我想构建一个用于打开html登录文件的连接器。 如同img Example mule open html file
请帮帮我。谢谢大家
答案 0 :(得分:1)
//请尝试以下代码 - //login.html保存在src / main / resources
<http:listener-config name="HTTP_Listener_Configuration" host="0.0.0.0" port="8089" basePath="/loginpage" doc:name="HTTP Listener Configuration"/>
<flow name="GetLoginPageFlow">
<http:listener config-ref="HTTP_Listener_Configuration" path="/" allowedMethods="GET" doc:name="HTTP"/>
<parse-template location="login.html" doc:name="Parse Template"/>
</flow>