Contradiction in Developer Guide about what is instance?
Hi!
On page 16 of developer guide it is said that the structure of URL is follows
protocol:[//host][:port]/appname/[instanceName]
But earlier on this page it was said that
The NetConnection class connects a client to an application instance on the server.
and an example was given
var nc:NetConnection = new NetConnection();
nc.connect("rtmp://localhost/HelloServer");
where the connect directive does not contain instance name.
So, how these relates? Does instance name is just omited in example meaning _definst_?
Is it possible to write
nc.connect("rtmp://localhost/HelloServer/room1");
?
Thanks.
