Hi,
Not sure how I missed this query.
It appears this can be replicated if the server has more than one IP
associated with it ( does not include 127.0.0.1 ).
If you can try all the IPs associated with the server you should find
the one it works with, in my testing the last one assigned to the
interface(s).
If this is not the case, the error is reporting the IP does not have a
server assigned to it. When you create the WMS service you should have
given it a name/IP. You could also try the name associated with the
Windows Media service.
Apologies for the very late reply but I did seem to get notified via CPAN.
S
On Mon Dec 08 15:51:51 2008, breese wrote:
Show quoted text> I also have a windows 2003 server.
>
> From a command prompt I run
> #!/usr/bin/perl
>
> use strict;
> use Win32::WindowsMedia;
>
> my $main =new Win32::WindowsMedia;
>
> # Build a Server Object Instance
> my $server_object = $main->Server_Create("127.0.0.1");
>
> # Build a new publishing point , push, called 'andrew'
> my $publishing_point = $main->
> Publishing_Point_Create(
> $server_object,
> "andrew",
> "push:*",
> "broadcast"
> );
> my $error = $main->get_error();
> print "Error is '$error'\n";
>
>
> I get Error is 'IP Address Specified Has No Server"
> I have tried 10.0.0.220 (local IP)
>
> From this same server I can open Windows Media player and
> mms://127.0.0.1/radio and it runs
>