wso2

WSO2 Identity Server AuthenticationAdmin API Authentication Failed

限于喜欢 提交于 2019-12-08 04:34:21
问题 I am following tutorial mentioned here: https://docs.wso2.com/display/IS500/Managing+Users+and+Roles+with+APIs And using the sample code provided on the page: http://cache.facilelogin.com/org.wso2.identity.um.sample.zip I have added the required JARs to the eclipse project. The project builds successfully without any issues. However, when i run the project, i get following errors: log4j:WARN No appenders could be found for logger (org.apache.axiom.om.util.StAXUtils). log4j:WARN Please

WSO2 How to set VFS to a scheduled task

余生长醉 提交于 2019-12-08 04:16:26
问题 In wso2, VFS running default 5 minutes. I think this is bad for performance. I want VFS running when server is not busy. For example, maybe at 02:00 no body request, then VFS can work. I tried add scheduled task, but it no use. Anyone can tell me how to do this? Thank you very much. 回答1: I think your question is related to WSO2 How to set scheduled task? and https://stackoverflow.com/questions/10537190/how-to-vfs-service-exposed-as-a-web-service questions. Seems you want to do the VFS polling

WSO2 esb get attach files from email

混江龙づ霸主 提交于 2019-12-08 04:13:16
问题 I am trying with WSO2 ESB to get an email (pop mail) with attach files and put all theses attach files in a folder with vfs. So I create a proxy service with MailTransportListener. I manage to get the email message but I don't know how to extract all attach files from the email and save them to a local folder. Here is my Proxy service. Thank for your help. Nicolas `<proxy xmlns="http://ws.apache.org/ns/synapse" name="MailProxy" transports="mailto" statistics="enable" trace="enable"

WSO2 APIM clustering - how to improve the response time?

时光毁灭记忆、已成空白 提交于 2019-12-08 03:33:18
问题 I clustered APIM with 1 manger gateway node and 2 or more work node to test APIM response time. it did not give me good data. without APIM,my api response time is 20 ms.though APIM 400ms-1s. how to confige this question? 回答1: There are several handlers in APIM, through which all API calls are going. Eg. Authentication, Throttling, CORS etc. You can enable analytics in APIM and see a latency breakdown graph among stages. See Figure 9 of this article. Then you can identify if there are any

mysql throws Unknown column 'mac' in 'field list'

岁酱吖の 提交于 2019-12-08 03:17:09
问题 org.mozilla.javascript.WrappedException: Wrapped org.jaggeryjs.scriptengine.exceptions.ScriptException: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'mac' in 'field list' ([driver]/driver.js#32) I encounter this error in Wso2 EMM 1.1.0 after upgrading from 1.0.0 did anyone face this issue while migrating mysql db for wso2emm_db? 回答1: There is an issue with the mysql.sql script for devices table and it has been reported in the public JIRA . In <PRODUCT_HOME>

AXIS2Server packed with ESB 4.9.0 doesn't start while it works fine 4.8.0

半世苍凉 提交于 2019-12-08 02:20:09
问题 AXIS2Server packed with ESB 4.9.0 doesn't start while it works fine 4.8.0.. .any help Hi, I'm running ESB 4.9.0 on Win 7 OS 64-it. Let's say my esb is available at following location D:\wso2esb\samples\axis2Server As per instructions to run samples, I'm able to successfully build sample apps using ant but axis2 server doesn't start at all. It prints following on CMD when i execute axis2server.bat. Am i missing something? ========================================================= Microsoft

Invoking HTTPS end point from wso2 esb

你离开我真会死。 提交于 2019-12-08 02:01:41
问题 How do I invoke a HTTPS endpoint from WSO2 ESB. My web service deployed on weblogic server is secured with policy Wssp1.2-2007-Https-UsernameToken-Plain.xml and the SOAP address specified in WSDL is https://172.16.91.21:7102/WLSAMLPack_62_64/CustomAsTAPIOnBuildingSAMLService When I try to create an endpoint from WSO2 esb and access it, it throws following error: [2012-08-29 11:43:49,769] ERROR - ClientHandler I/O error : General SSLEngine problem For : 172.16.91.21:7102 For Request :

How to set ThreadPool (Dsnd_t_max) in WSO2 ESB

…衆ロ難τιáo~ 提交于 2019-12-08 00:25:17
问题 WSO2 ESB is not loading all proxies (more than 20). Then we increased following two values in the startup script and it worked: -Dsnd_t_core=120 -Dsnd_t_max=600 But then we encountered several fatal issues of the WSO2 ESB. Several JMS proxies were blocked and did not consume anymore messages. The worst thing of all: NO ERROR in the carbon.log! In addition the CPU load on the server went up to 100%. A restart did not solve the problem, only deactivating scheduled tasks or proxies solved the

WSO2 Identity Server external LDAP throws OBJECT_CLASS for OID identityperson does not exist

帅比萌擦擦* 提交于 2019-12-07 23:52:54
问题 I am using the Identity Server 4.1.0 and also I am running an ApacheDS within the Apache Directory Studio. So what I want now is connect my IS to the external LDAP. IS is connecting fine to the ldap, only it throws errors because there are attribute-definitions missing. At least that is my interpretation of the stacktrace. I saw that other people tried it too: WSO2 external ldap not working But my error is different. Also I see how in this blog it is explained well how to use the Directory

validating a JWT generated by WSO2 APIM 1.9.0: what's the public key?

爷,独闯天下 提交于 2019-12-07 22:54:55
问题 I'm trying to do something that seemed simple but ends up being difficult because I lack the expertise. I have an APIM deployed with no customisation security-wise (don't worry, it's not production!). So it's only got carbon.jks . I authenticate users in an application with SAML2 against an IDS, then use the APIM with an app secret for a user token generated from the SAML2 token. I get from the APIM an OAuth token which I use to call APIs in the APIM. (note that I managed to resolve this