I have a licensed JW player. I wish to insert a URL or IP address to JW Player code for rtmp. Could someone please give some direction or guidance where to insert a URL so that I could use only the file name in the java script on the HTML page. I checked in the web and spend many hours but couldn't work this out.
Any help direction is greatly appreciated and also that would be helpful to many since this information is not available elsewhere.
Thank you.

Found some info and tried few things without success (with Wowza 1.72 and JW Player 4.5).
Modified the player.fa code as follows (tried few combinations)
streamer:'rtmpe://myip/myapp1/',
type:'rtmpe',
streamer:'rtmpe://myip/myapp1',
type:'rtmpe',
JS in the HTML page:
so.addVariable('file','/mp4:myvideo.m4v');
This gives file not found error.
so.addVariable('file','mp4:myvideo.m4v');
This does not give an error but the video does not start and continuously the circle is going.
However, if I give both streamer and file in JS HTML page it works (as follows):
so.addVariable("streamer", "rtmpe://myip/myapp1&file=mp4:myvideo.m4v");
My requirement is to remove myip/myapp1 from the JS/HTML page and add that to the player.as code and compile. But this does not work.
Security token was enabled during all these tests. (This shows that my compilation process is correct.)
Please help. Thank you.