Table of Contents |
---|
About WSO2 API Manager
...
The memory allocation settings are in <APIM_HOME>/bin/wso2server.sh
file.
I don't want all the components of the API Manager up when I start the server. How do I start up only selected ones?
...
When editing an API's resource's parameters, how can I add multiple options to the parameter Response Content Type?
You cannot do this using the UI. Instead, edit the Swagger definition of the API as content_type: ["text/xml","text/plain"]
for example.
Why are the changes I did to the resource parameter
Response Content Type
of a published API not reflected in the API Store after saving?
If you edited the Response Content Type using the UI, please open the API's Swagger definition, do your changes and save. Then the changes should be reflected back in the API Store. This will be fixed in a future release.
...
If you are using JDK 1.6, add the parameter given below:
Code Block <transportReceiver name="passthru-https" class="org.wso2.carbon.transport.passthru.PassThroughHttpSSLListener"> <parameter name="HttpsProtocols">TLSv1</parameter> ...... </transportReceiver>
If you are using JDK 1.7, add the parameter given below:
Code Block <transportReceiver name="passthru-https" class="org.wso2.carbon.transport.passthru.PassThroughHttpSSLListener"> <parameter name="HttpsProtocols">TLSv1,TLSv1.1,TLSv1.2</parameter> ...... </transportReceiver>
If I want to extend the default API Manager server by installing new features, how can I do it?
See Feature Management in the WSO2 Carbon documentation.
How can I preserve the CDATA element tag in API responses?
...
Use <APIM_HOME>/bin/chpasswd.sh
script.
How can I manage session timeouts for the management console?
To configure session timeouts, see Configuring the session time-out.
How can I
...
add the authentication headers
...
to the message going out of the API Gateway to the backend?
Uncomment the <RemoveOAuthHeadersFromOutMessage>
element in the <APIM_HOME>/repository/conf/api-manager.xml
file and set its value to true
false
.
Can I give special characters in the passwords that appear in the configuration files?
...