wso2

wso2 identity server Multifactor Authentication error

≯℡__Kan透↙ 提交于 2019-12-11 11:48:50
问题 I am unable to implement Multifactor Authentication . The error i am getting is TID: [0] [WSO2 Identity Server] [2012-10-30 10:31:38,620] ERROR {org.wso2.carbon.identity.provider.xmpp.MPAuthenticationProvider} - login failed. Trying again.. {org.wso2.carbon.identity.provider.xmpp.MPAuthenticationProvider} SASL authentication failed: at org.jivesoftware.smack.SASLAuthentication.authenticate (SASLAuthentication.java:209) at org.jivesoftware.smack.XMPPConnection.login(XMPPConnection.java:341) at

WSo2 Esb filtering messages to an output file Part 2

僤鯓⒐⒋嵵緔 提交于 2019-12-11 11:13:53
问题 Ok, this is a continuation to my original question. (WSo2 Esb filtering messages to an output file) After a couple more days of research into the iterate and aggregate mediator I have reached a progress wall and would be very grateful for any advice how to resolve my blocking issue. The task at hand is simple, read and xml file, filter on certain records, and only produce an output xml file with just those records that meet the criteria. After previous discussion and research this tasks

WSO2 API Manager - Upgrade 1.6.0 to 1.7.0 [closed]

做~自己de王妃 提交于 2019-12-11 11:06:11
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I have configured API Manager 1.6.0 with MySQL. I have tried to run the version 1.7.0 with same conections and I have several errors like this Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'wso2_apiManagerdb.IDN_OAUTH2_SCOPE' doesn't exist Exists any documentation for migrate?

How to reserve property value between every task call

孤者浪人 提交于 2019-12-11 10:55:04
问题 I used WSO2 ESB schedule task to fetch data from external system, the task call my proxy service every 5 seconds. In my proxy service, I used a property name "startTime" and "endTime", it means I want to fetch data from "startTime" to "endTime". "startTime" and "endTime" should be increase 5 seconds every task call. But it seems ESB cannot store these properties(startTime and endTime) between every task call. I try to use the script to write the "startTime" : importPackage(Packages.org.apache

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

WSO2 Identity Server. Error when processing request

半世苍凉 提交于 2019-12-11 10:42:38
问题 getting the following error accessing a tomcat app that is linked to a WSO2 Identity Server TID[-1234] [IS] [2014-02-12 11:43:34,386] ERROR {org.wso2.carbon.identity.sso.saml.servlet.SAMLSSOProviderServlet} - Error when processing the authentication request! org.wso2.carbon.identity.sso.saml.util.SAMLSSOUtil.unmarshall(SAMLSSOUtil.java:193) org.wso2.carbon.identity.sso.saml.SAMLSSOService.validateSPInitSSORequest(SAMLSSOService.java:67) org.wso2.carbon.identity.sso.saml.servlet

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

developer studio 3.8.0 not working on eclipse 4.5.1

帅比萌擦擦* 提交于 2019-12-11 10:21:28
问题 I am having problems using developer studio 3.8.0 on the eclipse 4.5.1 (mars) the installation of the developer studio on eclipses 4.5.1. went well(see the attached screenshot install history ; yet after the installation, the "developer studio" tool button disappeared from the top tool bar of the eclipse; (see the attached screenshot); also the "wso2" selection disappeared from the selection items under the "new" button (see attached screenshot) does anyone have idea? thanks 回答1: WSO2

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 CEP Multiple rows in resultset

ぃ、小莉子 提交于 2019-12-11 10:09:17
问题 I wanted to know if the WSO2 CEP/Siddhi query supports returning multiple rows if yes how data from those rows can be mapped to the output XML ? e.g. my event stream has a field statusCode which can have values A/B/C I wanted to write a query which gives me the count by status type for past 5 mins e.g A-10,B-5,C-2.. in the current query i used group by statusCode to get the count of status MyQuery- ...insert into TestStream statusCode, count(statusCode) as count group by statusCode and my