wso2

WSO2 APIM Custom sequences for non published APIs / Setting variable

旧时模样 提交于 2019-12-24 23:26:49
问题 We have defined a default custom sequence for managing different gateways, as described here We have installed the sequence as explained in the doc Creating Global Conection The sequence only read 2 variables from environment, and uses to build the endpoint URL. This is the code: <sequence xmlns="http://ws.apache.org/ns/synapse" name="WSO2AM--Ext--In"> <property name="uri.var.host" expression="get-property('system','host')" /> <property name="uri.var.port" expression="get-property('system',

Unable to create fixed remote mounts in WSO2 API Manager 2.5.0

℡╲_俬逩灬. 提交于 2019-12-24 22:14:50
问题 I am following this link while configure wso2IS-5.6.0 with wso2AM-2.5.0. While registry share am getting this error. ERROR - RegistryCoreServiceComponent Unable to create fixed remote mounts. org.wso2.carbon.registry.core.exceptions.RegistryException: An exception occurred while executing handler chain. null at org.wso2.carbon.registry.core.jdbc.handlers.HandlerManager.delete(HandlerManager.java:2649) at org.wso2.carbon.registry.core.jdbc.handlers.UserDefinedHandlerManager.delete

Wso2-emm and SAML SSO configuration

拥有回忆 提交于 2019-12-24 22:05:23
问题 I am new in WSO2 and I have some problem with emm and sso login. I cloned the w so2 emm project from github. I used maven clean install to generate wso2emm-1.1.0 zip (under product-emm-master\modules\distribution\target) When I start wso2server.bat , I can only acces to carbon and store , but when I access to emm I had a redirection to https://localhost:9443/sso/ with this error 500: Something has gone wrong (Problem in (/emm/modules/sso.js#23)). Even when I login within the store app I had a

Invoking DataService from wso2 ESB with secure port

别来无恙 提交于 2019-12-24 20:26:08
问题 I just want to invoke a secure DataService endpoint from wso2 ESB and I couldn't find the right and straight forward solution. I have seen this and this but no success! I define my endpoint in ESB as folows: WSDL Endpoint: WSDL URI: http://[myIP]:7763/services/PostPaidProviders?wsdl Service: PostPaidProviders Port: SecureSOAP11Endpoint FYI, if I change my Port to 'SOAP11Endpoint' my proxy service on ESB works properly. Thanks 回答1: I've imported my WSO2-DSS's certificate to my ESB keystore

WAITING threads issue in wso2esb

 ̄綄美尐妖づ 提交于 2019-12-24 19:23:49
问题 Hi am working on wso2esb and using Active MQ for message queues. After around 3 weeks of usage ESB server was hanging and with the help of JMX monitoring of ESB i found that they are a huge number of java threads are in WAITING state. [EsbMonitoring] ***************** java Threads Attributes ********************* [EsbMonitoring] ThreadCount :8873 [EsbMonitoring] DaemonThreadCount :104 [EsbMonitoring] PeakThreadCount :8992 [EsbMonitoring] TotalStartedThreadCount :16086123 Initially when we

JMS: Server closed connection and reconnection not permitted

余生颓废 提交于 2019-12-24 19:16:58
问题 I want to count the messages in the queue. InitialContext ctx = initQueue(); connFactory = (QueueConnectionFactory) ctx.lookup(CF_NAME); queueConnection = connFactory.createQueueConnection(); queueConnection.start(); queueSession = queueConnection.createQueueSession(false, QueueSession.AUTO_ACKNOWLEDGE); queue = (Queue) ctx.lookup(queueName); QueueBrowser queueBrowser = queueSession.createBrowser(queue); But here it stops ------->QueueBrowser queueBrowser = queueSession.createBrowser(queue)

Non authenticated API in WSO API Manager 1.9?

ε祈祈猫儿з 提交于 2019-12-24 17:19:10
问题 I am using WSO2 API Manager 1.9 version .I created many APIs and all working fine.As per the requirement now i need a non authenticated API.How to create in API manger ,any suggestion ? 回答1: When you create an API, in the Manage tap, you can select No Authentication for an API resource, as shown below. 来源: https://stackoverflow.com/questions/31283499/non-authenticated-api-in-wso-api-manager-1-9

Non authenticated API in WSO API Manager 1.9?

一个人想着一个人 提交于 2019-12-24 17:18:12
问题 I am using WSO2 API Manager 1.9 version .I created many APIs and all working fine.As per the requirement now i need a non authenticated API.How to create in API manger ,any suggestion ? 回答1: When you create an API, in the Manage tap, you can select No Authentication for an API resource, as shown below. 来源: https://stackoverflow.com/questions/31283499/non-authenticated-api-in-wso-api-manager-1-9

wso2 identity server axisfualt message when connecting to entitlement service

天大地大妈咪最大 提交于 2019-12-24 16:42:54
问题 I have been following the blog at http://hasini-gunasinghe.blogspot.com/2011/12/entitlement-service-xacml-pdp-as-web.html but I cannot connect to identity server, every time I try I get the following error: org.apache.axis2.AxisFault: Connection has been shutdown: javax.net.ssl.SSLException: java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty at org.apache.axis2.AxisFault.makeFault(AxisFault.java:430) at

Accessing WSO2 ESB proxy in java program

左心房为你撑大大i 提交于 2019-12-24 16:33:16
问题 I have configured one wsdl proxy for external wsdl in WSO2 esb. Its successfully created proxy. While creating proxy, I have not selected Publish Same Service Contract check box. If we are consuming external web services, is it mandatory to check? When I click on try it, it is not showing operations which are available in wsdl. If at all the above issues gets solved, we need to access the proxy from our java project. How can we access WSO2 ESB proxy in our java program? Thanks in advance.