wso2dss

WSO2 ESB 4.0.3 - Error installing Data Services feature from 4.0.* repositories

情到浓时终转凉″ 提交于 2019-12-12 22:19:04
问题 I downloaded WSO2 ESB 4.0.3 and unzipped it on my MAC book PRO with MAC OSX 10.7.5. I added following repository via admin UI. http://dist.wso2.org/p2/carbon/releases/4.0.3/ I searched Data Services feature and try to install it. I am not able to install the Data Services feature 4.0.2. It gives me following error on the WSO2 console. [2013-01-15 16:01:13,157] INFO - HTTPSender Unable to sendViaPost to url[https://17.209.23.156:9443/services/ProvisioningAdminService] java.net

issue in installing DSS feature on wso2 ESB 5.0

荒凉一梦 提交于 2019-12-12 05:19:14
问题 For a new project I'd like to setup the new ESB 5.0 adding the dss feature as well. I was about to do it from the wilkes repository (http://product-dist.wso2.com/p2/carbon/releases/wilkes/), but during installation it shows following error: Cannot complete the install because of a conflicting dependency. Software being installed: Data Service Hosting Feature 4.3.4 (org.wso2.carbon.dataservices.feature.group 4.3.4) Software currently installed: WSO2 Carbon - Transaction Manager Feature 4.5.4

Can we append the data in single text file using WSO2ESB?

泪湿孤枕 提交于 2019-12-12 02:58:37
问题 I am getting error message from mobile app or somewhere any of front end. I need keep that message in one single text file. That file could be stored in my local system. How can I do this using WSO2ESB? <proxy xmlns="http://ws.apache.org/ns/synapse" name="AppendFile" transports="https,http" statistics="disable" trace="disable" startOnLoad="true"> <target> <inSequence onError="fault"> <property name="error_TYPE" expression="//error/text()" scope="axis2" type="STRING"/> <property name="HTTP

External DataSources not working with secured WSO2 DSS 3.2.2

扶醉桌前 提交于 2019-12-12 02:15:34
问题 Following is a sample dbs file which is deployed as dataservice in WSO2_DSS_3.2.2 <data name="login" serviceNamespace="www.abc.com/services/security" transports="http https"> <description>security service</description> <config id="a_security"> <property name="carbon_datasource_name">sample-ds</property> </config> <query id="login" useConfig="a_security"> ... </query> <operation name="login"> <call-query href="login"> ... </call-query> </operation> <resource method="POST" path="login"> ... <

How can i handle this in Wso2ESB which is not passing Respone to Client

半世苍凉 提交于 2019-12-11 16:29:40
问题 i am inserting in multiple table some of those is directly insertion and some more is we need split it means use iterate mediator i have done using two proxy and add fault sequence also insertion is ok if my DSS is down it is passing proper fault to client .the problem is when error occuers in dss like ..primarykey voilation like this i added this property <property name="FORCE_ERROR_ON_SOAP_FAULT" value="true"/> in every sequence even though its throwing like this error ERROR -

How Can I handle Error sequence in WSO2ESB

匆匆过客 提交于 2019-12-11 15:08:58
问题 i want handle error using fault sequence but i wish to customize it with delete operation my scenario is while i am inserting in 2 tables if error occurred in 2nd table insertion i need to delete 1 st row insertion also my config is below <proxy xmlns="http://ws.apache.org/ns/synapse" name="ErrorHandling" transports="https,http" statistics="disable" trace="disable" startOnLoad="true"> <target > <inSequence onError="fault"> <property name="eno" expression="//eno/text()" scope="default" type=

How to do database transaction rollback in wso2 esb or wso2 dss

我的梦境 提交于 2019-12-11 10:53:35
问题 I am inserting into three tables using Box_caring feature, insertion happening properly but if some error comes in between while inserting into tables its not roll backing the data. I'm looking for a solution to the following challenge:Have a set of related tables. They are related by primary/foreign key relations and need to update/insert objects in the related tables. Insert/update happening inside iterator mediator. what happens when one of the updates/insert fails? Will all the inserted

Can we send Multiple Mail in wso2esb in same sequence or dynamically set a mail

自作多情 提交于 2019-12-11 10:22:14
问题 i am getting data from front end i need to verify the data across database. present value is between the min value and max if it is min or max i need to send a mail to concern person which has been defined in database,in that case i don,t know what is the mail id of client i need cross check against database in future it might be change if define static.so how can i do this my proxy is <?xml version="1.0" encoding="UTF-8"?> <proxy xmlns="http://ws.apache.org/ns/synapse" name="tReadingMobile_5

WSO2 DSS support for mongodb 3.x.x

青春壹個敷衍的年華 提交于 2019-12-11 10:18:51
问题 I was trying to incorporate WSO2 DSS 3.5.0 with Mongodb 3.2.1; I found out that the functions exposed by the .dbs file are very limited compared to the mongo shell for example: the famous db.collection.FindAndModify() is not supported; nested usage of mongodb shell command as following db.collection.remove({_id: $BinData(3, #)} can not be parsed I googled around and found a ds-connector-mongodb(with mongo-java-driver-2.9.0, and jongo 0.3) on Github I checkd the DSS 3.5.0 bundles under "

WSO2 Data Services JSON issue

江枫思渺然 提交于 2019-12-11 03:35:44
问题 I hope you can help me getting JSON REST WSO2 Data Service work. I use v 3.0.1 and sample data service. I suspect that I do smth wrong... I created a resource 'products' that is bound to productsSQL query. XML REST request work perfectly, but not JSON: curl --request GET http://myserver.com:9763/services/samples/RDBMSSample.HTTPEndpoint/products -H Content-Type:"application/json" returns > "Fault":{"faultcode":"","faultstring":"No JSON message received > through HTTP GET or POST","detail":""}