wso2ei

Sequential back-end calls in WSO2 EI/ESB

你离开我真会死。 提交于 2020-05-15 21:48:07
问题 In my case, the response from the first back-end call is in Array of Objects format as below: Response: "Entity": { "related-List": [ { "fname": "abc", "lname": "xyz", "bdate": "2013-01-25", "accType": "Cur", "accNum": "54736", "bal": 901, "address": "USA" }, { "fname": "def", "lname": "pqr", "bdate": "2013-01-25", "accType": "Sav", "accNum": "12345", "bal": 901, "address": "USA" }, { "fname": "ghi", "lname": "stu", "bdate": "2013-01-25", "accType": "Dep", "accNum": "87654", "bal": 901,

Clustering WSO2 EI ESB profile: some doubts about DBs creation and tables creation inside these DBs?

↘锁芯ラ 提交于 2020-01-24 20:48:47
问题 I am following this official documentation to create a 2 nodes cluster of WSO2 EI ESB profile: https://docs.wso2.com/display/EI650/Clustering+the+ESB+Profile#ClusteringtheESBProfile-Creatingthedatabases and I have the following doubt related the DBs needed to share information between the 2 nodes: First it specify to create the four DBs ( WSO2_USER_DB , REGISTRY_DB , REGISTRY_LOCAL1 and REGISTRY_LOCAL2 ) in this way: mysql> create database WSO2_USER_DB; mysql> use WSO2_USER_DB; mysql> source

Clustering WSO2 EI ESB profile: some doubts about DBs creation and tables creation inside these DBs?

给你一囗甜甜゛ 提交于 2020-01-24 20:48:09
问题 I am following this official documentation to create a 2 nodes cluster of WSO2 EI ESB profile: https://docs.wso2.com/display/EI650/Clustering+the+ESB+Profile#ClusteringtheESBProfile-Creatingthedatabases and I have the following doubt related the DBs needed to share information between the 2 nodes: First it specify to create the four DBs ( WSO2_USER_DB , REGISTRY_DB , REGISTRY_LOCAL1 and REGISTRY_LOCAL2 ) in this way: mysql> create database WSO2_USER_DB; mysql> use WSO2_USER_DB; mysql> source

WSO2 APIM Application Registration urn:approve action not found

半腔热情 提交于 2020-01-06 05:45:05
问题 UPDATE: We have reproduced the same problem connecting to EI 6.1.1 business process module We are trying to implement a application registration (generation of key) for API manager (version 2.1.0), using BPS (version 3.6.0). For this, we are following the instructions in https://docs.wso2.com/display/AM210/Adding+an+Application+Registration+Workflow We have also corrected a typo in the content of the package, as provide by the https://github.com/wso2/product-apim/pull/2730/files#diff

How switching from HTTP(RESTful) to TCP socket with WSO2 ESB/EI

。_饼干妹妹 提交于 2019-12-24 10:59:09
问题 I've got a service A which is a RESTful client and can send requests periodically, and another service B which is a TCP socket server and can receive tcp socket message. So, my question is whether there's solution to transfer the message from A to B, viz, switching message from http to tcp socket with WSO2 ESB/EI. Actually, I found a guide about how switching from TCP to HTTP/S but not from http to tcp. 回答1: The following proxy will work, provided the tcp sender is configured in axis

WSO2 EI and WSO2 Developer - Setup an ESB Proxy with http basic authentication

安稳与你 提交于 2019-12-24 07:16:57
问题 I'm using WSO2 EI 6.3.0 and WSO2 Developer Studio 3.8.0. I'm working with an ESB Project and a Proxy Service inside it. The Proxy service is a simple pass through service; it receives a request from a webapp and forward it to a Soap Web Service, gets the response from the WS and gives it back to the web app. I realized this configuration following this tutorial: https://youtu.be/3OsuGhEMQgc The setup is very simple, everything worked fine until I found a web service whose endpoint has http

Unable to launch WSO2EI with log4j slf4j appender Kafka

我只是一个虾纸丫 提交于 2019-12-13 03:05:30
问题 I've updated my WSO2 EI from 6.2.0 to 6.3.0 and now i can't launch my WSO2 with a log4j appender for Kafka. Before, i've put this in my log4j.properties log4j.rootLogger=ERROR, CARBON_CONSOLE, CARBON_LOGFILE, CARBON_MEMORY,CARBON_SYS_LOG, ERROR_LOGFILE, KAFKA log4j.logger.AUDIT_LOG=INFO, AUDIT_LOGFILE log4j.logger.KAFKA=INFO log4j.logger.org.apache.KAFKA=INFO log4j.logger.KAFKA=DEBUG log4j.logger.org.apache.KAFKA=DEBUG log4j.logger.KAFKA=FATAL log4j.logger.org.apache.KAFKA=FATAL log4j.logger

timeout in retrieving the WSO2EI service wsdl from php on pass through transport

自闭症网瘾萝莉.ら 提交于 2019-12-11 17:53:30
问题 After installing WSO2EI-6.1.1 to migrate from my old WSO2DSS to EI, I was trying to setup a simple php wsdl soup client to call the "Version" service from php with a direct link to service wsdl and I'm getting the following error: php code: try { $client = new SoapClient("http://server-ip:8280/services/Version?wsdl"); $response = $client->getVersion(); var_dump($response); } catch (SoapFault $fault) { echo $fault->getMessage(); } error: Fatal error: Maximum execution time of 120 seconds

WSO2 ESB / WSO2 EI JSON Request to backend service

只愿长相守 提交于 2019-12-11 14:57:41
问题 I have sent JSON Message to backend server using WSO2 EI. But it sending wrong json format. I have used wso2ei-6.4.0 for this task. I have added sample XML request which I have used. <jsonObject> <checkInDate>2019-03-25</checkInDate> <checkOutDate>2019-03-26</checkOutDate> <cityCode>3086</cityCode> <hotelCode /> <roomOccupancyList> <jsonArray> <?xml-multiple jsonElement?> <jsonElement> <childAges>0</childAges> <numberOfAdults>1</numberOfAdults> <numberOfChildren>0</numberOfChildren> <roomNo>1

Setup a custom mediator to the WSO2 Developer Studio palette

会有一股神秘感。 提交于 2019-12-11 05:39:43
问题 Is possible to add a built custom mediator to the WSO2 Developer Studio palette? The idea is avoid the error: Unkown synapse configuration tag, At line X. when i trying to edit an API or Proxy that has the reference in its sequence. I am using WSO2 EI Tooling version 6.3.0. Thanks in advance. 回答1: It is possible to add a custom mediator into WSO2 Developer Studio. However, this requires quite a lot of implementation for both wso2-synapse and devstudio-tooling-esb, as WSO2 Developer Studio has