The diference between MediaLocator and DataSource to create Processor

When I want to delevery stream of media, I use the Media

String port ="22000";

String ip ="192.168.1.3".;

// this is the ip of the Target machine not of server machine

MediaLocator ml =new MediaLocator ("rtp://"+ip+":"+port);

Processor processor = Manager.createProcessor (ml);

In this case I need to know (ip) my clients.

But if I use this:MediaLocator ml =new MediaLocator (_URL_);

DataSource ds = Manager.createDataSource (ml);

Processor processor = Manager.createProcessor (ds);

Changes ?

If my clients knows my IP (of server), how Can I do to server "serves" all request?

Is possible that my server delivery to more than one client?

[917 byte] By [dreampeppers99a] at [2007-11-27 5:01:37]
# 1

> But if I use this:> MediaLocator ml = new MediaLocator (_URL_);

> DataSource ds = Manager.createDataSource (ml);

> Processor processor = Manager.createProcessor

> (ds);

In this case the _URL_ is the IP of :

server

or

client?

In the first case the ip was of client.

dreampeppers99a at 2007-7-12 10:19:10 > top of Java-index,Security,Cryptography...