Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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.

...

  1. 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>
  2. 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?

...