是否可以在 WSO2SP 中生成和使用动态 URL?
Is it possible to generate and use a dynamic URL in WSO2SP?
是否可以在 http 接收器请求中生成和使用动态 URL 作为 publisher.url?
我有一个接受参数的输入流。根据我在此流中传递的值,这应该作为基础 URL 的一部分包含在内,它将从另一个流接收参数。
@App:name("TestApp")
@source(type='http', receiver.url='http://0.0.0.0:8008/xyz', @map(type = 'json', @attributes(a='$.b', b='$.b', c='$.c', var='$.var')))
@sink(type='log')
define stream InputStream(a string, b string, c string, var string);
@source(type='http-response' ,sink.id='1234', @map(type='json', @attributes(a1='a1', a2='a2', a3='a3')))
@sink(type='log')
define stream ResponseStream (a1 string, a2 string, a3 string);
@sink(type='http-request', sink.id='1234', publisher.url='http://<host>:<port>/<var>/parse?a={{a}}&b={{b}}&c={{c}}', method='GET', headers="'Content-Type:text/plain'", @map(type='keyvalue', @payload(a='{{b}}', b='{{b}}', c='{{c}}')))
define stream InterStream (a string, b string, c string, var string);
from InputStream
select a, b, c, var
insert into InterStream;
我希望附加 var
作为我的基础 URL 的一部分,它是 http-sink 请求的发布者 url。
siddhi有这样的规定吗?
是的,它和查询参数一样工作,
publisher.url='http://<host>:<port>/{{var}}/parse?a={{a}}&b={{b}}&c={{c}}'
是否可以在 http 接收器请求中生成和使用动态 URL 作为 publisher.url?
我有一个接受参数的输入流。根据我在此流中传递的值,这应该作为基础 URL 的一部分包含在内,它将从另一个流接收参数。
@App:name("TestApp")
@source(type='http', receiver.url='http://0.0.0.0:8008/xyz', @map(type = 'json', @attributes(a='$.b', b='$.b', c='$.c', var='$.var')))
@sink(type='log')
define stream InputStream(a string, b string, c string, var string);
@source(type='http-response' ,sink.id='1234', @map(type='json', @attributes(a1='a1', a2='a2', a3='a3')))
@sink(type='log')
define stream ResponseStream (a1 string, a2 string, a3 string);
@sink(type='http-request', sink.id='1234', publisher.url='http://<host>:<port>/<var>/parse?a={{a}}&b={{b}}&c={{c}}', method='GET', headers="'Content-Type:text/plain'", @map(type='keyvalue', @payload(a='{{b}}', b='{{b}}', c='{{c}}')))
define stream InterStream (a string, b string, c string, var string);
from InputStream
select a, b, c, var
insert into InterStream;
我希望附加 var
作为我的基础 URL 的一部分,它是 http-sink 请求的发布者 url。
siddhi有这样的规定吗?
是的,它和查询参数一样工作,
publisher.url='http://<host>:<port>/{{var}}/parse?a={{a}}&b={{b}}&c={{c}}'