Show TOC

Sample HTTP Configuration FileLocate this document in the navigation structure

Sample configuration file (adapter.xml) for the HTTP adapter.

This file is in the example folder.

<adapter>
- <!--  Adapter Controller --> 
  - <controller>
      <controllerPort>13579</controllerPort> 
    </controller>
  - <!--  Streaming platform settings--> 

  - <esp>
    - <espConnection>
        <espHost>localhost</espHost> 
        <espPort>22000</espPort> 
        - <!-- <espProjectUri>esp[s]://localhost:19011/ws1/p1</espProjectUri> --> 
       
      </espConnection>

     - <espSecurity>
        <espUser>espuser</espUser> 
        <espPassword encrypted="false">espuser</espPassword> 
        <espAuthType>none</espAuthType> 
          <!-- 
           <espRSAKeyFile>/keyfilepath/espuser.private.der</espRSAKeyFile>
	      <espRSAKeyStore>/keystore/keystore.jks</espRSAKeyStore>
	      <espRSAKeyStorePassword>Sample123</espRSAKeyStorePassword> 
         --> 
        <espEncryptionAlgorithm>RSA</espEncryptionAlgorithm> 
      </espSecurity>

      <maxPubPoolSize>1</maxPubPoolSize> 

  </esp>

  - <!--  HTTP specific  --> 
  - <http>
      <httpPort>23456</httpPort> 
      <contentType>text/html</contentType>
      <keepAlive>true</keepAlive>     
    </http>

 </adapter>