forked from community/product-iots
parent
b2d20b93e1
commit
2b31921bd5
@ -1,72 +1,72 @@
|
||||
<api xmlns="http://ws.apache.org/ns/synapse" name="$!apiName" context="$!apiContext" transports="$!transport">
|
||||
<resource methods="POST PATCH GET DELETE HEAD PUT"
|
||||
uri-template="/*"
|
||||
faultSequence="fault">
|
||||
<inSequence>
|
||||
<property name="isDefault" expression="$trp:WSO2_AM_API_DEFAULT_VERSION"/>
|
||||
<filter source="$ctx:isDefault" regex="true">
|
||||
<then>
|
||||
<log level="custom">
|
||||
<property name="STATUS" value="Faulty invoking through default API.Dropping message to avoid recursion.."/>
|
||||
</log>
|
||||
<payloadFactory media-type="xml">
|
||||
<format>
|
||||
<am:fault xmlns:am="http://wso2.org/apimanager">
|
||||
<am:code>500</am:code>
|
||||
<am:type>Status report</am:type>
|
||||
<am:message>Internal Server Error</am:message>
|
||||
<am:description>Faulty invoking through default API</am:description>
|
||||
</am:fault>
|
||||
</format>
|
||||
<args/>
|
||||
</payloadFactory>
|
||||
<property name="HTTP_SC" value="500" scope="axis2"/>
|
||||
<property name="RESPONSE" value="true"/>
|
||||
<header name="To" action="remove"/>
|
||||
<property name="NO_ENTITY_BODY" scope="axis2" action="remove"/>
|
||||
<property name="ContentType" scope="axis2" action="remove"/>
|
||||
<property name="Authorization" scope="transport" action="remove"/>
|
||||
<property name="Host" scope="transport" action="remove"/>
|
||||
<property name="Accept" scope="transport" action="remove"/>
|
||||
<send/>
|
||||
</then>
|
||||
<else>
|
||||
<header name="WSO2_AM_API_DEFAULT_VERSION" scope="transport" value="true"/>
|
||||
#if( $transport == "https" )
|
||||
<property name="uri.var.portnum" expression="get-property('https.nio.port')"/>
|
||||
#else
|
||||
<property name="uri.var.portnum" expression="get-property('http.nio.port')"/>
|
||||
#end
|
||||
<resource methods="POST PATCH GET DELETE HEAD PUT"
|
||||
uri-template="/*"
|
||||
faultSequence="fault">
|
||||
<inSequence>
|
||||
<property name="isDefault" expression="$trp:WSO2_AM_API_DEFAULT_VERSION"/>
|
||||
<filter source="$ctx:isDefault" regex="true">
|
||||
<then>
|
||||
<log level="custom">
|
||||
<property name="STATUS" value="Faulty invoking through default API.Dropping message to avoid recursion.."/>
|
||||
</log>
|
||||
<payloadFactory media-type="xml">
|
||||
<format>
|
||||
<am:fault xmlns:am="http://wso2.org/apimanager">
|
||||
<am:code>500</am:code>
|
||||
<am:type>Status report</am:type>
|
||||
<am:message>Internal Server Error</am:message>
|
||||
<am:description>Faulty invoking through default API</am:description>
|
||||
</am:fault>
|
||||
</format>
|
||||
<args/>
|
||||
</payloadFactory>
|
||||
<property name="HTTP_SC" value="500" scope="axis2"/>
|
||||
<property name="RESPONSE" value="true"/>
|
||||
<header name="To" action="remove"/>
|
||||
<property name="NO_ENTITY_BODY" scope="axis2" action="remove"/>
|
||||
<property name="ContentType" scope="axis2" action="remove"/>
|
||||
<property name="Authorization" scope="transport" action="remove"/>
|
||||
<property name="Host" scope="transport" action="remove"/>
|
||||
<property name="Accept" scope="transport" action="remove"/>
|
||||
<send/>
|
||||
</then>
|
||||
<else>
|
||||
<header name="WSO2_AM_API_DEFAULT_VERSION" scope="transport" value="true"/>
|
||||
#if( $transport == "https" )
|
||||
<property name="uri.var.portnum" expression="get-property('https.nio.port')"/>
|
||||
#else
|
||||
<property name="uri.var.portnum" expression="get-property('http.nio.port')"/>
|
||||
#end
|
||||
|
||||
<send>
|
||||
<endpoint>
|
||||
#if( $transport == "https" )
|
||||
<http uri-template="https://localhost:{uri.var.portnum}/$!{fwdApiContext}">
|
||||
#else
|
||||
<http uri-template="http://localhost:{uri.var.portnum}/$!{fwdApiContext}">
|
||||
#end
|
||||
<timeout>
|
||||
<duration>60000</duration>
|
||||
<responseAction>fault</responseAction>
|
||||
</timeout>
|
||||
<suspendOnFailure>
|
||||
<progressionFactor>1.0</progressionFactor>
|
||||
</suspendOnFailure>
|
||||
<markForSuspension>
|
||||
<retriesBeforeSuspension>0</retriesBeforeSuspension>
|
||||
<retryDelay>0</retryDelay>
|
||||
</markForSuspension>
|
||||
</http>
|
||||
</endpoint>
|
||||
</send>
|
||||
</else>
|
||||
</filter>
|
||||
</inSequence>
|
||||
<outSequence>
|
||||
<send/>
|
||||
</outSequence>
|
||||
<send>
|
||||
<endpoint>
|
||||
#if( $transport == "https" )
|
||||
<http uri-template="https://localhost:{uri.var.portnum}/$!{fwdApiContext}">
|
||||
#else
|
||||
<http uri-template="http://localhost:{uri.var.portnum}/$!{fwdApiContext}">
|
||||
#end
|
||||
<timeout>
|
||||
<duration>60000</duration>
|
||||
<responseAction>fault</responseAction>
|
||||
</timeout>
|
||||
<suspendOnFailure>
|
||||
<progressionFactor>1.0</progressionFactor>
|
||||
</suspendOnFailure>
|
||||
<markForSuspension>
|
||||
<retriesBeforeSuspension>0</retriesBeforeSuspension>
|
||||
<retryDelay>0</retryDelay>
|
||||
</markForSuspension>
|
||||
</http>
|
||||
</endpoint>
|
||||
</send>
|
||||
</else>
|
||||
</filter>
|
||||
</inSequence>
|
||||
<outSequence>
|
||||
<send/>
|
||||
</outSequence>
|
||||
</resource>
|
||||
<handlers>
|
||||
<handler class="org.wso2.carbon.apimgt.gateway.handlers.common.SynapsePropertiesHandler"/>
|
||||
</handlers>
|
||||
<handlers>
|
||||
<handler class="org.wso2.carbon.apimgt.gateway.handlers.common.SynapsePropertiesHandler"/>
|
||||
</handlers>
|
||||
</api>
|
||||
|
@ -0,0 +1,46 @@
|
||||
#
|
||||
# Copyright (c) 2005-2010, WSO2 Inc. (http://wso2.com) All Rights Reserved.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
# This file contains the configuration parameters used by the Non-blocking HTTP transport
|
||||
|
||||
#http.socket.timeout=60000
|
||||
#http.socket.buffer-size=8192
|
||||
#http.tcp.nodelay=1
|
||||
#http.connection.stalecheck=0
|
||||
|
||||
# Uncomment the following property for an AIX based deployment
|
||||
#http.nio.interest-ops-queueing=true
|
||||
|
||||
# HTTP Sender thread pool parameters
|
||||
#snd_t_core=20
|
||||
#snd_t_max=100
|
||||
#snd_alive_sec=5
|
||||
#snd_qlen=-1
|
||||
#snd_io_threads=2
|
||||
|
||||
# HTTP Listener thread pool parameters
|
||||
#lst_t_core=20
|
||||
#lst_t_max=100
|
||||
#lst_alive_sec=5
|
||||
#lst_qlen=-1
|
||||
#lst_io_threads=2
|
||||
nhttp.rest.dispatcher.service=__MultitenantDispatcherService
|
||||
|
||||
rest_uri_api_regex=\\w+://.+:\\d+/t/.*|\\w+://.+\\w+/t/.*|^(/t/).*
|
||||
rest_uri_proxy_regex=\\w+://.+:\\d+/services/t/.*|\\w+://.+\\w+/services/t/.*|^(/services/t/)
|
||||
|
||||
# This property is crucial for automated tests
|
||||
http.socket.reuseaddr=true
|
@ -0,0 +1,51 @@
|
||||
#
|
||||
# Copyright (c) 2005-2010, WSO2 Inc. (http://wso2.com) All Rights Reserved.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
## This file contains the configuration parameters used by the Pass-through HTTP transport
|
||||
|
||||
## Nhttp tuning parameters
|
||||
#http.socket.timeout=60000
|
||||
#http.connection.timeout=0
|
||||
#http.socket.buffer-size=8192
|
||||
#http.socket.linger=-1
|
||||
#http.nio.select-interval=1000
|
||||
#http.tcp.nodelay=true
|
||||
#http.connection.stalecheck=false
|
||||
#http.socket.reuseaddr=false
|
||||
|
||||
## Uncomment the following for AIX based deployments
|
||||
#http.nio.interest-ops-queueing=true
|
||||
|
||||
## Pass-through HTTP transport specific tuning parameters
|
||||
worker_pool_size_core=400
|
||||
worker_pool_size_max=500
|
||||
#worker_thread_keepalive_sec=60
|
||||
#worker_pool_queue_length=-1
|
||||
#io_threads_per_reactor=2
|
||||
io_buffer_size=16384
|
||||
#http.max.connection.per.host.port=32767
|
||||
|
||||
## Other parameters
|
||||
#http.user.agent.preserve=false
|
||||
#http.server.preserve=true
|
||||
#http.connection.disable.keepalive=false
|
||||
|
||||
# URI configurations that determine if it requires custom rest dispatcher
|
||||
rest_uri_api_regex=\\w+://.+:\\d+/t/.*|\\w+://.+\\w+/t/.*|^(/t/).*
|
||||
rest_uri_proxy_regex=\\w+://.+:\\d+/services/t/.*|\\w+://.+\\w+/services/t/.*|^(/services/t/)
|
||||
|
||||
# This property is crucial for automated tests
|
||||
http.socket.reuseaddr=true
|
Loading…
Reference in new issue