The following will need to be updated in our connection manager conf/manager.xml file for the new improved http binding support:
...
<!-- Configure http binding. -->
<httpbind>
<enabled>false</enabled>
<port>
& nbsp; <plain>7070</plain>
& nbsp; <secure>7443</secure>
</port>
<!-- Script syntax allows BOSH to be used in environments where clients may be restricted to using a particular server -->
<scriptSyntax>
& nbsp; <enabled>false</enabled>
</scriptSyntax>
<client>
& nbsp; <requests>
& nbsp; <!-- Longest time (in seconds) to wait before responding to any request during the session -->
& nbsp; <!-- <wait></wait> -->
& nbsp; <!-- Maximum allowable seconds over which a client can send empty requests to the server -->
& nbsp; <polling>5</polling>
& nbsp; <!-- Limit number of simultaneous requests the client makes with the 'requests' attribute -->
& nbsp; <max>2</max>
& nbsp; </requests>
& nbsp; <!-- Seconds a session has to be idle to be closed -->
& nbsp; <idle>30</idle>
</client>
</httpbind>
...
There are no comments on this document