最近我们开始研究WSO2 Api Manager并希望创建一个故障流序列,它将有关fauilure的一些信息写入位于文件系统中的文件。 WSO2 API Manager安装适用于 Windows 。
我按照this dock page的文档步骤启用了VFS传输。然后我按照这个例子from the docks来创建文件代理和文件写入序列(我跳过了数据库和文件阅读器,因为我不需要它们):
<sequence xmlns="http://ws.apache.org/ns/synapse" name="fileWriteSequence">
<log level="custom">
<property name="sequence" value="fileWriteSequence"/>
</log>
<property xmlns:ns2="http://org.apache.synapse/xsd" name="transport.vfs.ReplyFileName" expression="fn:concat(fn:substring-after(get-property('MessageID'), 'urn:uuid:'), '.txt')" scope="transport"/>
<property xmlns:ns2="http://org.apache.synapse/xsd" name="transport.vfs.Locking" value="disable" scope="transport"/>
<property name="OUT_ONLY" value="true"/>
<send>
<endpoint name="FileEpr">
<address uri="vfs:file:///C:/home/username/test/out"/>
</endpoint>
</send>
我已经创建了API并上传了序列,看起来像是按预期触发了,但是文件没有被创建 - 这是来自进程的日志:
[2017-03-10 08:27:02,525] INFO - LogMediator sequence = fileWriteSequence
[2017-03-10 08:27:03,384] ERROR - VFSUtils Cannot get the lock for the file : file:///C:/home/username/test/out/* before processing
[2017-03-10 08:27:03,385] WARN - VFSTransportSender Couldn't get the lock for the file : file:///C:/home/username/test/out/*, retry : 1 scheduled after : 30000
首先我认为这是权限问题,但我为此位置授予匿名用户完全控制权并以管理员身份运行WSO2 AM流程 - 仍然没有运气。
更新
我通过在全局配置(axis2)中禁用文件锁定来解决方法
<transportSender name="vfs" class="org.apache.synapse.transport.vfs.VFSTransportSender">
<parameter name="transport.vfs.Locking">disable</parameter>
</transportSender>
它仍然无法正常工作,但错误略有不同(仍抱怨路径)。
Caused by: java.io.FileNotFoundException: C:\home\username\test\out\* (The filename, directory name, or volume label syntax is incorrect)
at java.io.FileOutputStream.open(Native Method)
at java.io.FileOutputStream.<init>(FileOutputStream.java:221)
at java.io.FileOutputStream.<init>(FileOutputStream.java:142)
at org.apache.commons.vfs2.provider.local.LocalFile.doGetOutputStream(LocalFile.java:251)
at org.apache.commons.vfs2.provider.AbstractFileObject.getOutputStream(AbstractFileObject.java:1399)
正如您可能已经注意到的那样,最后有"*"
并且我并不感到惊讶,因为无法找到整个文件路径,但它是由lib添加的,所以它可能是预期的。
有没有人对WSO2 ESB / AM有任何经验并知道如何解决这个问题?这可能是微不足道的,但经过多次尝试后我无法找到解决方案。
答案 0 :(得分:0)
您的配置对我有用,请看一下:
<?xml version="1.0" encoding="UTF-8"?>
<proxy xmlns="http://ws.apache.org/ns/synapse"
name="writeFile"
transports="http https"
startOnLoad="true">
<target>
<inSequence>
<payloadFactory media-type="xml">
<format>
<moc:QRY_SELECT_SRH_PERSONA xmlns:moc="http://www.example.org/mockWS/">
<INT_ID xmlns="">1</INT_ID>
</moc:QRY_SELECT_SRH_PERSONA>
</format>
<args/>
</payloadFactory>
<log level="custom">
<property name="sequence" value="fileWriteSequence"/>
</log>
<property xmlns:ns2="http://org.apache.synapse/xsd"
name="transport.vfs.ReplyFileName"
expression="fn:concat(fn:substring-after(get-property('MessageID'), 'urn:uuid:'), '.txt')"
scope="transport"/>
<property name="transport.vfs.Locking" value="disable" scope="transport"/>
<property name="OUT_ONLY" value="true"/>
<send>
<endpoint name="FileEpr">
<address uri="vfs:file:///C:/home/username/test/out"/>
</endpoint>
</send>
</inSequence>
<outSequence/>
<faultSequence>
<log level="custom">
<property name="text" value="Error Sequence FAIL"/>
<property name="message" expression="get-property('ERROR_MESSAGE')"/>
<property name="code" expression="get-property('ERROR_CODE')"/>
<property name="detail" expression="get-property('ERROR_DETAIL')"/>
<property name="exception" expression="get-property('ERROR_EXCEPTION')"/>
</log>
</faultSequence>
</target>
</proxy>
我在C:\ home \ username \ test \ out \ 8a11314c-4c22-4ad3-bbfc-4fb56ba415a0.txt中的文件 有了这个内容:
<?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope"><soapenv:Body><moc:QRY_SELECT_SRH_PERSONA xmlns:moc="http://www.example.org/mockWS/"><INT_ID>1</INT_ID></moc:QRY_SELECT_SRH_PERSONA></soapenv:Body></soapenv:Envelope>
更新1:
代理配置外的序列:
<sequence name="faultSEQ" trace="disable" xmlns="http://ws.apache.org/ns/synapse">
<payloadFactory media-type="xml">
<format>
<moc:QRY_SELECT_SRH_PERSONA xmlns:moc="http://www.example.org/mockWS/">
<INT_ID xmlns="">1</INT_ID>
</moc:QRY_SELECT_SRH_PERSONA>
</format>
<args/>
</payloadFactory>
<log level="custom">
<property name="sequence" value="fileWriteSequence"/>
</log>
<property xmlns:ns2="http://org.apache.synapse/xsd"
name="transport.vfs.ReplyFileName"
expression="fn:concat(fn:substring-after(get-property('MessageID'), 'urn:uuid:'), '.txt')"
scope="transport"/>
<property name="transport.vfs.Locking" value="disable" scope="transport"/>
<property name="OUT_ONLY" value="true"/>
<send>
<endpoint name="FileEpr">
<address uri="vfs:file:///C:/home/username/test/out"/>
</endpoint>
</send>
</sequence>
答案 1 :(得分:0)
所以最后我能够修复&#34;这个,但不完全。
"*"
来自我为我在WSO2 API Manager中访问的API创建的端点。所以,一旦我添加了新的端点(资源),例如"/test"
,序列就会创建一个文件&#34; test&#34;在具有所需内容的路径下。
它仍然远非理想,因为看起来像API管理器只是忽略ReplyFileName参数。尽管如此,让我们说解决了我所面临的主要问题,所以我将从那时开始进一步的研究。