Merge pull request #264 from madhawap/master

fixes for synapse configs
application-manager-new
Ayyoob Hamza 8 years ago committed by GitHub
commit bb9740ccb0

@ -1,8 +1,8 @@
<api xmlns="http://ws.apache.org/ns/synapse" name="_WSO2AMAuthorizeAPI_" context="/authorize"> <api xmlns="http://ws.apache.org/ns/synapse" name="_WSO2AMAuthorizeAPI_" context="/authorize">
<resource methods="GET" url-mapping="/*" faultSequence="_token_fault_"> <resource methods="GET" url-mapping="/*" faultSequence="_token_fault_">
<inSequence> <inSequence>
<property name="uri.var.portnum" expression="get-property('keyManager.port')"/> <property name="uri.var.portnum" expression="get-property('system','iot.keymanager.https.port')"/>
<property name="uri.var.hostname" expression="get-property('keyManager.hostname')"/> <property name="uri.var.hostname" expression="get-property('system','iot.keymanager.host')"/>/>
<send> <send>
<endpoint> <endpoint>
<http uri-template="https://{uri.var.hostname}:{uri.var.portnum}/oauth2/authorize"> <http uri-template="https://{uri.var.hostname}:{uri.var.portnum}/oauth2/authorize">

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?><api xmlns="http://ws.apache.org/ns/synapse" name="_WSO2AMRevokeAPI_" context="/revoke"> <?xml version="1.0" encoding="UTF-8"?><api xmlns="http://ws.apache.org/ns/synapse" name="_WSO2AMRevokeAPI_" context="/revoke">
<resource methods="POST" url-mapping="/*" faultSequence="_token_fault_"> <resource methods="POST" url-mapping="/*" faultSequence="_token_fault_">
<inSequence> <inSequence>
<property name="uri.var.portnum" expression="get-property('keyManager.port')"/> <property name="uri.var.portnum" expression="get-property('system','iot.keymanager.https.port')"/>
<property name="uri.var.hostname" expression="get-property('keyManager.hostname')"/> <property name="uri.var.hostname" expression="get-property('system','iot.keymanager.host')"/>
<send> <send>
<endpoint> <endpoint>
<http uri-template="https://{uri.var.hostname}:{uri.var.portnum}/oauth2/revoke"> <http uri-template="https://{uri.var.hostname}:{uri.var.portnum}/oauth2/revoke">

@ -1,8 +1,8 @@
<api xmlns="http://ws.apache.org/ns/synapse" name="_WSO2AMTokenAPI_" context="/token"> <api xmlns="http://ws.apache.org/ns/synapse" name="_WSO2AMTokenAPI_" context="/token">
<resource methods="POST" url-mapping="/*" faultSequence="_token_fault_"> <resource methods="POST" url-mapping="/*" faultSequence="_token_fault_">
<inSequence> <inSequence>
<property name="uri.var.portnum" expression="get-property('keyManager.port')"/> <property name="uri.var.portnum" expression="get-property('system','iot.keymanager.https.port')"/>
<property name="uri.var.hostname" expression="get-property('keyManager.hostname')"/> <property name="uri.var.hostname" expression="get-property('system','iot.keymanager.host')"/>
<send> <send>
<endpoint> <endpoint>
<http uri-template="https://{uri.var.hostname}:{uri.var.portnum}/oauth2/token"> <http uri-template="https://{uri.var.hostname}:{uri.var.portnum}/oauth2/token">

@ -1,8 +1,8 @@
<api xmlns="http://ws.apache.org/ns/synapse" name="_WSO2AMUserInfoAPI_" context="/userinfo"> <api xmlns="http://ws.apache.org/ns/synapse" name="_WSO2AMUserInfoAPI_" context="/userinfo">
<resource methods="GET" url-mapping="/*" faultSequence="_token_fault_"> <resource methods="GET" url-mapping="/*" faultSequence="_token_fault_">
<inSequence> <inSequence>
<property name="uri.var.portnum" expression="get-property('keyManager.port')"/> <property name="uri.var.portnum" expression="get-property('system','iot.keymanager.https.port')"/>
<property name="uri.var.hostname" expression="get-property('keyManager.hostname')"/> <property name="uri.var.hostname" expression="get-property('system','iot.keymanager.host')"/>
<send> <send>
<endpoint> <endpoint>
<http uri-template="https://{uri.var.hostname}:{uri.var.portnum}/oauth2/userinfo"> <http uri-template="https://{uri.var.hostname}:{uri.var.portnum}/oauth2/userinfo">

@ -1,8 +1,8 @@
<api xmlns="http://ws.apache.org/ns/synapse" name="_WSO2AMAuthorizeAPI_" context="/authorize"> <api xmlns="http://ws.apache.org/ns/synapse" name="_WSO2AMAuthorizeAPI_" context="/authorize">
<resource methods="GET" url-mapping="/*" faultSequence="_token_fault_"> <resource methods="GET" url-mapping="/*" faultSequence="_token_fault_">
<inSequence> <inSequence>
<property name="uri.var.portnum" expression="get-property('keyManager.port')"/> <property name="uri.var.portnum" expression="get-property('system','iot.keymanager.https.port')"/>
<property name="uri.var.hostname" expression="get-property('keyManager.hostname')"/> <property name="uri.var.hostname" expression="get-property('system','iot.keymanager.host')"/>
<send> <send>
<endpoint> <endpoint>
<http uri-template="https://{uri.var.hostname}:{uri.var.portnum}/oauth2/authorize"> <http uri-template="https://{uri.var.hostname}:{uri.var.portnum}/oauth2/authorize">

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?><api xmlns="http://ws.apache.org/ns/synapse" name="_WSO2AMRevokeAPI_" context="/revoke"> <?xml version="1.0" encoding="UTF-8"?><api xmlns="http://ws.apache.org/ns/synapse" name="_WSO2AMRevokeAPI_" context="/revoke">
<resource methods="POST" url-mapping="/*" faultSequence="_token_fault_"> <resource methods="POST" url-mapping="/*" faultSequence="_token_fault_">
<inSequence> <inSequence>
<property name="uri.var.portnum" expression="get-property('keyManager.port')"/> <property name="uri.var.portnum" expression="get-property('system','iot.keymanager.https.port')"/>
<property name="uri.var.hostname" expression="get-property('keyManager.hostname')"/> <property name="uri.var.hostname" expression="get-property('system','iot.keymanager.host')"/>
<send> <send>
<endpoint> <endpoint>
<http uri-template="https://{uri.var.hostname}:{uri.var.portnum}/oauth2/revoke"> <http uri-template="https://{uri.var.hostname}:{uri.var.portnum}/oauth2/revoke">

@ -1,8 +1,8 @@
<api xmlns="http://ws.apache.org/ns/synapse" name="_WSO2AMTokenAPI_" context="/token"> <api xmlns="http://ws.apache.org/ns/synapse" name="_WSO2AMTokenAPI_" context="/token">
<resource methods="POST" url-mapping="/*" faultSequence="_token_fault_"> <resource methods="POST" url-mapping="/*" faultSequence="_token_fault_">
<inSequence> <inSequence>
<property name="uri.var.portnum" expression="get-property('keyManager.port')"/> <property name="uri.var.portnum" expression="get-property('system','iot.keymanager.https.port')"/>
<property name="uri.var.hostname" expression="get-property('keyManager.hostname')"/> <property name="uri.var.hostname" expression="get-property('system','iot.keymanager.host')"/>
<send> <send>
<endpoint> <endpoint>
<http uri-template="https://{uri.var.hostname}:{uri.var.portnum}/oauth2/token"> <http uri-template="https://{uri.var.hostname}:{uri.var.portnum}/oauth2/token">

@ -1,8 +1,8 @@
<api xmlns="http://ws.apache.org/ns/synapse" name="_WSO2AMUserInfoAPI_" context="/userinfo"> <api xmlns="http://ws.apache.org/ns/synapse" name="_WSO2AMUserInfoAPI_" context="/userinfo">
<resource methods="GET" url-mapping="/*" faultSequence="_token_fault_"> <resource methods="GET" url-mapping="/*" faultSequence="_token_fault_">
<inSequence> <inSequence>
<property name="uri.var.portnum" expression="get-property('keyManager.port')"/> <property name="uri.var.portnum" expression="get-property('system','iot.keymanager.https.port')"/>
<property name="uri.var.hostname" expression="get-property('keyManager.hostname')"/> <property name="uri.var.hostname" expression="get-property('system','iot.keymanager.host')"/>
<send> <send>
<endpoint> <endpoint>
<http uri-template="https://{uri.var.hostname}:{uri.var.portnum}/oauth2/userinfo"> <http uri-template="https://{uri.var.hostname}:{uri.var.portnum}/oauth2/userinfo">

Loading…
Cancel
Save