RTMPT is a HTTP wrapper around the RTMP protocol that is sent using POST requests from the client to the server.
When the client uses RTMPT it polls for updates periodically in order to get notified about events that are generated by the server or other clients.
The player will open URLs in the following form:
http://server/<comand>/[<client>/]<seqnumber>
Note that requests are sent to the root of the website and a single ASP.NET web application will handle RTMPT requests
Configuring RTMPT for RTM applications
You can configure a RTMP channel to use the RTMPT protocol, in which case the same socket server is used as for RTMP but requests are wrapped in HTTP requests.
FluorineFx will detect which protocol is used and will handle the requests accordingly. In this case you are not limited to a single ASP.NET web application as each one can run it's own socket server.