How to integrate esb for multiplt REST applications - wso2-esb

I am very new to wso2esb, i need to design the esb service which iteract with the multiple REST application e.g Ruby on Rails application. Please help me how i can achieve that. Please give me step by step information i am very new to it

Here you can find information
https://docs.wso2.com/display/ESB480/Getting+Started+with+REST+APIs
https://docs.wso2.com/display/ESB500/Using+REST+with+a+Proxy+Service

Related

Mulesoft integration with api and database

How to extract data from api and push the output to database by using mulesoft anypoint studio 7.9 version??
This is a pretty common and broad question, refer this to get an idea on how to access REST api in mulesoft and this for Database connectivity. There are tons of free self paced tutorials you can take.
If you have made some progress, post your progress so someone can help with errors you are getting.

How to get list of all API's and its meta data from Anypoint Cloud

we have a need to pull the details of all the API's deployed in anypoint cloud, along with their meta data. Is there a way to pull this info dynamically so that we can schedule it like a job for a daily/weekly basis and load into some kind of DB
Thanks !
Mulesoft has an Anypoint Runtime Manager (ARM) API that you could make use of. There is some documentation available here: https://docs.mulesoft.com/runtime-manager/runtime-manager-api#applications-runtime-manager-api. In addition, you can take a look at the API Portal which has more in-depth information about all of the endpoints available in the API. Right of the bat, the /applications:GET method seems like something you might be able to leverage for your need.
https://anypoint.mulesoft.com/apiplatform/anypoint-platform/#/portals/organizations/ae639f94-da46-42bc-9d51-180ec25cf994/apis/38784/versions/5567732/pages/182845.
Hope that helps!

How to Call API in WSO2 Business Process Server( BPMN) to get list of Claimable Task

In order to integrate the WSO2 BPMN with an external application, I want to make an API call to get all the Package Name or Claimable Task from the WSO2 BPMN. Currently there is no documented ways to make such calls.
When I used the fiddler, to capture the actions from the WSO2 web pages, I see the call made as
https://XX.XX.XX.XX:9443/bpmn-explorer/claimableTask?pagination=1
where the response is entire HTML page but not just the data.
Can some one please explain to me if it's possible to achieve this and where can I find further information regarding this.
If you are creating your own external web application or any other client application, you can use BPMN REST API provided with WSO2 BPS you can get information and do any updates for BPMN processes using it. Please follow [1] for more details.
[1] https://docs.wso2.com/display/BPS350/BPMN+REST+API
Thanks,
Mili

Hosting a Multitiered Application On Arvixe

Pls I have a multi tiered application which includes the service layer, presentation layer, data access layer. Please does anyone have a guideline on how to host this. ordinary web publishing does not seem to work.
thanks
Do you have a ticket number for your issue? If not, please create one, Arvixe's Support team would be able to assist you with the deployment of your Multitiered Application by trying to come up with a solution. If you e-mail QA[#]Arvixe.com they will be sure to get you some assistance

WCF rest security question

I have a WCF REST service. Now the question is how can I secure my REST service so no one can use/call it? and what would be the best way to call it (e.g. using jquery, or from code behind)? the client application is on MVC 3.
please help and advise
Many Thanks
Not sure if you're still looking for a solution. But I used WCFRESTContrib as a basis for my project for the security features, among other things. It's very easy to setup Basic Authentication on the entire service, or on an individual basis for each service method. They have a full description on it here. If you don't decide to use the project, it should at least give you a good understanding on how it works with WCF REST api's.