Skip Menu |

This queue is for tickets about the Win32-WindowsMedia CPAN distribution.

Report information
The Basics
Id: 35650
Status: resolved
Priority: 0/
Queue: Win32-WindowsMedia

People
Owner: Nobody in particular
Requestors: rajkiran.singh [...] yahoo.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Bug Found Win32-WindowsMedia-0.21
Date: Mon, 5 May 2008 18:45:00 -0700 (PDT)
To: bug-win32-windowsmedia [...] rt.cpan.org
From: Rajkiran Singh <rajkiran.singh [...] yahoo.com>
Plz help me regarding this Issue Software error: Can't locate object method "set_error" via package "Win32::WindowsMedia" at C:/xampp/perl/site/lib//Win32/WindowsMedia.pm line reply me if you can installed system windows 2003 STD, xamp with perl mod --------------------------------- Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now.
From: shamrock [...] cpan.org
This has been patched, version 0.22, due to a removal of some functions on a tidy. Please retest with 0.22. Shamrock On Mon May 05 21:45:23 2008, rajkiran.singh@yahoo.com wrote: Show quoted text
> Plz help me regarding this Issue > > Software error: > Can't locate object method "set_error" via package > "Win32::WindowsMedia" at C:/xampp/perl/site/lib//Win32/WindowsMedia.pm > line > > reply me if you can > installed system windows 2003 STD, > xamp with perl mod > > > > > > > --------------------------------- > Be a better friend, newshound, and know-it-all with Yahoo! Mobile. > Try it now.
fixed in 0.22
Subject: Re: [rt.cpan.org #35650] Bug Found Win32-WindowsMedia-0.21
Date: Thu, 15 May 2008 15:18:33 -0700 (PDT)
To: bug-Win32-WindowsMedia [...] rt.cpan.org
From: Rajkiran Singh <rajkiran.singh [...] yahoo.com>
Still Bug exist 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" ); above code runs but nothing comes out no output. have a look please "Andrew S. Kennedy via RT" <bug-Win32-WindowsMedia@rt.cpan.org> wrote: fixed in 0.22
Subject: Re: [rt.cpan.org #35650] Resolved: Bug Found Win32-WindowsMedia-0.21
Date: Thu, 15 May 2008 15:30:06 -0700 (PDT)
To: bug-Win32-WindowsMedia [...] rt.cpan.org
From: Rajkiran Singh <rajkiran.singh [...] yahoo.com>
sorry for last mail bit wrong coding i have done its work but i can create remove ,but cannot start point my $result = $main->Publishing_Point_Start("127.0.0.1","andrew"); so this command is not working please check "Andrew S. Kennedy via RT" <bug-Win32-WindowsMedia@rt.cpan.org> wrote: According to our records, your request has been resolved. If you have any further questions or concerns, please respond to this message.
this is not a bug, but 'push:*' publishing points are started automatically when the encoder connects, such as Windows Media Encoder. Please see the section in the documentation mentioning this. Shamrock
Subject: Re: [rt.cpan.org #35650] Bug Found Win32-WindowsMedia-0.21
Date: Fri, 16 May 2008 17:14:53 -0700 (PDT)
To: bug-Win32-WindowsMedia [...] rt.cpan.org
From: Rajkiran Singh <rajkiran.singh [...] yahoo.com>
hi thanks for answering ,but its ok for push point but for broadcast it doesn't work so it it working for broadcast for starting or not. please reply asap. thanks "Andrew S. Kennedy via RT" <bug-Win32-WindowsMedia@rt.cpan.org> wrote: this is not a bug, but 'push:*' publishing points are started automatically when the encoder connects, such as Windows Media Encoder. Please see the section in the documentation mentioning this. Shamrock
the start works as specified. Broadcast must have the correct path, of which push:* is one for the encoder. If you are using a playlist or remote server they must have the correct path. An example is included below #!\Perl\bin\wperl.exe use strict; use Win32::WindowsMedia; my $main =new Win32::WindowsMedia; my $create_server = $main->Server_Create("127.0.0.1"); my $result = $main->Publishing_Point_Create( "127.0.0.1", "shamrock", "C:\\WMPub\\WMRoot\\Serverside_Playlist.wsx", "broadcast"); $result = $main->Publishing_Point_Start("127.0.0.1","shamrock"); For this to work the playlist must be available and the content it points to also available. Shamrock
Subject: Re: [rt.cpan.org #35650] Bug Found Win32-WindowsMedia-0.21
Date: Sat, 17 May 2008 02:24:12 -0700 (PDT)
To: bug-Win32-WindowsMedia [...] rt.cpan.org
From: Rajkiran Singh <rajkiran.singh [...] yahoo.com>
Hi still same problem dude it create point as you send me example path is ok it load server play list but doesn't play,did you check you side. please check thanks for replying me. "Andrew S. Kennedy via RT" <bug-Win32-WindowsMedia@rt.cpan.org> wrote: the start works as specified. Broadcast must have the correct path, of which push:* is one for the encoder. If you are using a playlist or remote server they must have the correct path. An example is included below #!\Perl\bin\wperl.exe use strict; use Win32::WindowsMedia; my $main =new Win32::WindowsMedia; my $create_server = $main->Server_Create("127.0.0.1"); my $result = $main->Publishing_Point_Create( "127.0.0.1", "shamrock", "C:\\WMPub\\WMRoot\\Serverside_Playlist.wsx", "broadcast"); $result = $main->Publishing_Point_Start("127.0.0.1","shamrock"); For this to work the playlist must be available and the content it points to also available. Shamrock
Subject: Re: [rt.cpan.org #35650] Resolved: Bug Found Win32-WindowsMedia-0.21
Date: Sat, 17 May 2008 02:25:27 -0700 (PDT)
To: bug-Win32-WindowsMedia [...] rt.cpan.org
From: Rajkiran Singh <rajkiran.singh [...] yahoo.com>
Does not work to play any broadcast publishing point $result = $main->Publishing_Point_Start("127.0.0.1","shamrock"); so here is problem . Plz have a look "Andrew S. Kennedy via RT" <bug-Win32-WindowsMedia@rt.cpan.org> wrote: According to our records, your request has been resolved. If you have any further questions or concerns, please respond to this message.
the broadcast publishing point must have a valid playlist or remote server string otherwise it will not start. This has been checked with the previous code as working and can only suggest the playlist, remote server string or you are using push:* which can not be started. Shamrock
Subject: Re: [rt.cpan.org #35650] Bug Found Win32-WindowsMedia-0.21
Date: Sat, 17 May 2008 19:34:29 -0700 (PDT)
To: bug-Win32-WindowsMedia [...] rt.cpan.org
From: Rajkiran Singh <rajkiran.singh [...] yahoo.com>
Hi Its proper playlist and its working if i play manually,but doesnt with code if you have time then i yo can come online on msn or yahoo i will show you,and provide you server password so you can check yourself. "Andrew S. Kennedy via RT" <bug-Win32-WindowsMedia@rt.cpan.org> wrote: the broadcast publishing point must have a valid playlist or remote server string otherwise it will not start. This has been checked with the previous code as working and can only suggest the playlist, remote server string or you are using push:* which can not be started. Shamrock
please provide the playlist, the code you are using the build the publishing point and where the content is stored on the server. This has been tested both playlist, remote server, so can only assume a configuration issue, playlist or combination of the two. Shamrock
Subject: Re: [rt.cpan.org #35650] Bug Found Win32-WindowsMedia-0.21
Date: Sun, 18 May 2008 16:16:26 -0700 (PDT)
To: bug-Win32-WindowsMedia [...] rt.cpan.org
From: Rajkiran Singh <rajkiran.singh [...] yahoo.com>
"Andrew S. Kennedy via RT" <bug-Win32-WindowsMedia@rt.cpan.org> wrote: Hi the path of playlisy is C:\WMPub\WMRoot\Serverside_Playlist.wsx and code of playlist <?wsx version="1.0"?> <smil> <media src="racecar_300.wmv"/> <media role="Advertisement" noSkip="TRUE" src="encoder_ad.wmv"/> <media src="snowboard_300.wmv"/> <media src="industrial.wmv" /> </smil> so thats all if playlist code is wrong then its should not be load in publishing point and and it will not start as when i play start button, so you code make pub pint with playlist load playlist but unable to play. please provide the playlist, the code you are using the build the publishing point and where the content is stored on the server. This has been tested both playlist, remote server, so can only assume a configuration issue, playlist or combination of the two. Shamrock
please provide the code you are using to build the publishing point from your script as previously mentioned I need all elements to look at your problem. Please also provide the version of Windows Server you are using along with the version of perl. Shamrock
Subject: Re: [rt.cpan.org #35650] Bug Found Win32-WindowsMedia-0.21
Date: Mon, 19 May 2008 01:50:45 -0700 (PDT)
To: bug-Win32-WindowsMedia [...] rt.cpan.org
From: Rajkiran Singh <rajkiran.singh [...] yahoo.com>
Hi As i am using windows 2003 Standard version and using xamp with perl module with per version is 5.8.8 here is you can check http://66.186.33.74/perl/perlinfo.pl and the code i am using its same that you provide me below is code #!\Perl\bin\wperl.exe use strict; use Win32::WindowsMedia; my $main =new Win32::WindowsMedia; my $create_server = $main->Server_Create("127.0.0.1"); my $result = $main->Publishing_Point_Create("127.0.0.1","shamrock","C:\\WMPub\\WMRoot\\Serverside_Playlist.wsx","broadcast"); $result = $main->Publishing_Point_Start("127.0.0.1","shamrock"); --------------------------- above code create pub point load wsx but not able to play anything else you need please let me know,p thanks "Andrew S. Kennedy via RT" <bug-Win32-WindowsMedia@rt.cpan.org> wrote: please provide the code you are using to build the publishing point from your script as previously mentioned I need all elements to look at your problem. Please also provide the version of Windows Server you are using along with the version of perl. Shamrock
ok, so we need to be clear here, as there is some doubt on the problem. With the code provided the publishing point is built, but it does not start, correct ? can you then manually push start on the publishing point and it starts ? or does that fail too ? Please add these two lines to the script previously provided. my $error = $main->get_error(); print "Error is '$error'\n"; Are you running this from commands line ? cmd prompt type perl <filename of perl script> or is your webserver running the script ? via a link ? Shamrock
Subject: Re: [rt.cpan.org #35650] Bug Found Win32-WindowsMedia-0.21
Date: Mon, 19 May 2008 08:13:43 -0700 (PDT)
To: bug-Win32-WindowsMedia [...] rt.cpan.org
From: Rajkiran Singh <rajkiran.singh [...] yahoo.com>
Hi as i when i manualy start pub point start so there is no problem but scripot canot i add you lines below script dont get any error msg, i run your script through web. "Andrew S. Kennedy via RT" <bug-Win32-WindowsMedia@rt.cpan.org> wrote: ok, so we need to be clear here, as there is some doubt on the problem. With the code provided the publishing point is built, but it does not start, correct ? can you then manually push start on the publishing point and it starts ? or does that fail too ? Please add these two lines to the script previously provided. my $error = $main->get_error(); print "Error is '$error'\n"; Are you running this from commands line ? cmd prompt type perl or is your webserver running the script ? via a link ? Shamrock
please run the script at the command prompt of the windows media server not using a web link. Ie. open a command prompt and type perl <filename of script> Shamrock
Subject: Re: [rt.cpan.org #35650] Bug Found Win32-WindowsMedia-0.22
Date: Mon, 19 May 2008 09:27:53 -0700 (PDT)
To: bug-Win32-WindowsMedia [...] rt.cpan.org
From: Rajkiran Singh <rajkiran.singh [...] yahoo.com>
Hi as when i run same result pub point is not run but got message on command prompt Error is 'OK' thats what it shows Plz have a look "Andrew S. Kennedy via RT" <bug-Win32-WindowsMedia@rt.cpan.org> wrote: please run the script at the command prompt of the windows media server not using a web link. Ie. open a command prompt and type perl Shamrock
I have tested this against Windows Server 2003 SP1 and SP2 Windows Server Enterprise 2003 - SP1, SP2 I can only conclude either the perl installation or some security or other interaction is incorrect. I use ActiveState perl for all testing so this may be the cause. The only suggestion is to uninstall the version of perl you are using, and install ActiveState perl. Shamrock
From: breese [...] ameritech.net
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
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 >
I am setting this to resolved. Any further issues open a new ticket. S On Tue Aug 18 15:36:11 2009, SHAMROCK wrote: Show quoted text
> 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:
> > 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 > >
> >