NAME

Win32::WindowsMedia - Base Module for Provisiong and control for Windows Media Services

VERSION

Version 0.16

SYNOPSIS

This is a module to control Windows Media services for a Windows 2003/2008 server. This is the second pre-alpha release and primarily contains more documentation. At present this is 4 modules that contain seperation of functions.

    use Win32::WindowsMedia;
    use strict;

    my $main =new Win32::WindowsMedia;
    my $provisioner =new Win32::WindowsMedia::Provision;
    my $information =new Win32::WindowsMedia::Information; 
    my $controller =new Win32::WindowsMedia::Control;

    my $server_object = $main->Server_Create("127.0.0.1");

    my $publishing_point = $provisioner->
		Publishing_Point_Create( $server_object, "andrew", "push:*", "broadcast" );

FUNCTIONS

Server_Create

This function create an instance to communicate with the Windows Media Server running. You can specify an IP address, however 99% of the time it should be one of the local interface IPs or localhost(127.0.0.1). It does not matter which IP is used as Windows Media services is not bound to a specific IP.

Server_Create( "<IP>" );

Example of Use

my $server_object = $main->Server_Create("127.0.0.1");

AUTHOR

Andrew S. Kennedy, <shamrock at cpan.org>

BUGS

Please report any bugs or feature requests to bug-win32-windowsmedia at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Win32-WindowsMedia. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Win32-WindowsMedia

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2008 Andrew S. Kennedy, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

4 POD Errors

The following errors were encountered while parsing the POD:

Around line 45:

'=item' outside of any '=over'

Around line 113:

You forgot a '=back' before '=head1'

Around line 129:

'=item' outside of any '=over'

Around line 133:

You forgot a '=back' before '=head1'