Werbung: SecurityConsole.de verwaltet Ihre Computer mit Security Essentails aus der Cloud!
30 Tage kostenfrei testen und 20% Rabatt für Ihre Bestellung mit Promocode: WBF2685582
(Promocode gültig bis 31.12.2011)

Group:  English: Entertainment » microsoft.public.windowsmedia.server
Thread: Custom Management Application for WMS 2008

HTVi
TV Discussion Newsgroups

Custom Management Application for WMS 2008
Giancarlo Albano 10/27/2008 2:50:22 PM
We have successfully installed WMS 2008 and I would like to say that it is an
excellent product for our organization, nevertheless, we would like to offer
the service for non ICT professionals of the organization, and so, we would
like to develop a very simple application (just a start/stop button) to
manage the webcasting. I already downloaded WMS SDK 4.1, but there is no info
on how to write an application for example in C#.

Thanks a lot,

Re: Custom Management Application for WMS 2008
"Neil Smith [MVP Digital Media]" <neil[ at ]nospam.com> 10/27/2008 9:27:22 PM
On Mon, 27 Oct 2008 07:50:22 -0700, Giancarlo Albano <Giancarlo
Albano[ at ]discussions.microsoft.com> wrote:

[Quoted Text]
>We have successfully installed WMS 2008 and I would like to say that it is an
>excellent product for our organization, nevertheless, we would like to offer
>the service for non ICT professionals of the organization, and so, we would
>like to develop a very simple application (just a start/stop button) to
>manage the webcasting. I already downloaded WMS SDK 4.1, but there is no info
>on how to write an application for example in C#.

WMS SDK 4.1 (aka 1999) predated both windows server 2003, and any
version of .NET so I'm not surprised !

The correct version for WS2003 would be the WMS9 SDK
http://msdn.microsoft.com/en-us/library/ms738748.aspx, I think that's
almost completely applicable to WMS on Win server 2008 as well.

The main download gets you code samples and .chm help files :
http://www.microsoft.com/downloads/details.aspx?FamilyId=A55B6B43-E24F-4EA3-A93E-40C0EC4F68E5&displaylang=en

Any SDK for windows server 2008 is likely to be under the [windows]
platform SDK, which is several GB download.

HTH
Cheers - Neil
------------------------------------------------
Digital Media MVP : 2004-2008
http://mvp.support.microsoft.com/mvpfaqs
Re: Custom Management Application for WMS 2008
Giancarlo Albano 10/30/2008 10:04:08 AM
I'm trying to develop a customized app for WMS management (remote
administration), I found the following example code for C#, but I'm getting
an authentication error, "Retrieving the COM class factory for remote
component with CLSID {845FB959-4279-11D2-BF23-00805FBE84A6} from machine
wms2008 failed due to the following error: 80070005

the question is how do I authenticate (username/password) to a remote
WMS2008 server, do you have any example code.

try
{
// Declare variables.
Type tServerType;
WMSServer RemoteServer;

// Retrieve the type information from the Windows
// Media server running on the remote machine.
tServerType = Type.GetTypeFromProgID("WMSServer.Server",
"wms2008");
// Create an instance of the remote server object locally.
RemoteServer =
(WMSServer)Activator.CreateInstance(tServerType);

}
catch (COMException comExc)
{
Console.Write(comExc.ToString());
}

catch (Exception ex)
{
Console.Write(ex.ToString());
}


"Neil Smith [MVP Digital Media]" wrote:

[Quoted Text]
> On Mon, 27 Oct 2008 07:50:22 -0700, Giancarlo Albano <Giancarlo
> Albano[ at ]discussions.microsoft.com> wrote:
>
> >We have successfully installed WMS 2008 and I would like to say that it is an
> >excellent product for our organization, nevertheless, we would like to offer
> >the service for non ICT professionals of the organization, and so, we would
> >like to develop a very simple application (just a start/stop button) to
> >manage the webcasting. I already downloaded WMS SDK 4.1, but there is no info
> >on how to write an application for example in C#.
>
> WMS SDK 4.1 (aka 1999) predated both windows server 2003, and any
> version of .NET so I'm not surprised !
>
> The correct version for WS2003 would be the WMS9 SDK
> http://msdn.microsoft.com/en-us/library/ms738748.aspx, I think that's
> almost completely applicable to WMS on Win server 2008 as well.
>
> The main download gets you code samples and .chm help files :
> http://www.microsoft.com/downloads/details.aspx?FamilyId=A55B6B43-E24F-4EA3-A93E-40C0EC4F68E5&displaylang=en
>
> Any SDK for windows server 2008 is likely to be under the [windows]
> platform SDK, which is several GB download.
>
> HTH
> Cheers - Neil
> ------------------------------------------------
> Digital Media MVP : 2004-2008
> http://mvp.support.microsoft.com/mvpfaqs
>
Re: Custom Management Application for WMS 2008
"Neil Smith [MVP Digital Media]" <neil[ at ]nospam.com> 10/30/2008 9:17:55 PM
I'm not sure how you missed this in your google search :
http://msdn.microsoft.com/en-us/library/ms741994.aspx

"you must use the DCOMCnfg utility to set the access, launch, and
configuration permissions, and identify the users who can administer
the server. For more information, see Using DCOM to Customize Security
Settings" -> http://msdn.microsoft.com/en-us/library/ms743879.aspx

HTH
Cheers - Neil

On Thu, 30 Oct 2008 03:04:08 -0700, Giancarlo Albano
<GiancarloAlbano[ at ]discussions.microsoft.com> wrote:

[Quoted Text]
>I'm trying to develop a customized app for WMS management (remote
>administration), I found the following example code for C#, but I'm getting
>an authentication error, "Retrieving the COM class factory for remote
>component with CLSID {845FB959-4279-11D2-BF23-00805FBE84A6} from machine
>wms2008 failed due to the following error: 80070005
>
>the question is how do I authenticate (username/password) to a remote
>WMS2008 server, do you have any example code.
>
>try
> {
> // Declare variables.
> Type tServerType;
> WMSServer RemoteServer;
>
> // Retrieve the type information from the Windows
> // Media server running on the remote machine.
> tServerType = Type.GetTypeFromProgID("WMSServer.Server",
>"wms2008");
> // Create an instance of the remote server object locally.
> RemoteServer =
>(WMSServer)Activator.CreateInstance(tServerType);
>
> }
> catch (COMException comExc)
> {
> Console.Write(comExc.ToString());
> }
>
> catch (Exception ex)
> {
> Console.Write(ex.ToString());
> }
>
>
>"Neil Smith [MVP Digital Media]" wrote:
>
>> On Mon, 27 Oct 2008 07:50:22 -0700, Giancarlo Albano <Giancarlo
>> Albano[ at ]discussions.microsoft.com> wrote:
>>
>> >We have successfully installed WMS 2008 and I would like to say that it is an
>> >excellent product for our organization, nevertheless, we would like to offer
>> >the service for non ICT professionals of the organization, and so, we would
>> >like to develop a very simple application (just a start/stop button) to
>> >manage the webcasting. I already downloaded WMS SDK 4.1, but there is no info
>> >on how to write an application for example in C#.
>>
>> WMS SDK 4.1 (aka 1999) predated both windows server 2003, and any
>> version of .NET so I'm not surprised !
>>
>> The correct version for WS2003 would be the WMS9 SDK
>> http://msdn.microsoft.com/en-us/library/ms738748.aspx, I think that's
>> almost completely applicable to WMS on Win server 2008 as well.
>>
>> The main download gets you code samples and .chm help files :
>> http://www.microsoft.com/downloads/details.aspx?FamilyId=A55B6B43-E24F-4EA3-A93E-40C0EC4F68E5&displaylang=en
>>
>> Any SDK for windows server 2008 is likely to be under the [windows]
>> platform SDK, which is several GB download.
>>
>> HTH
>> Cheers - Neil
>> ------------------------------------------------
>> Digital Media MVP : 2004-2008
>> http://mvp.support.microsoft.com/mvpfaqs
>>
------------------------------------------------
Digital Media MVP : 2004-2008
http://mvp.support.microsoft.com/mvpfaqs
Re: Custom Management Application for WMS 2008
Giancarlo Albano 10/31/2008 1:08:03 PM
Dear Neil,

to my understanding the DCOMCnfg utility can be used to grant access to
manage the WMS 2008 service. In fact, we created an user for remote desktop
access.

My question is, I am developing a customized app in C# that will be used
from a Windows XP workstation to manage the WMS remotely.

I tested the code (below) and it is not working, because I receive an error
regarding insufficient rights, the thing is, do you have a C# example of how
to authenticate to the WMS 2008 server by username and password ? ( How I
sent my credentials to the server in order to have the right to manage it)

Cheers,

Giancarlo

"Neil Smith [MVP Digital Media]" wrote:

[Quoted Text]
> I'm not sure how you missed this in your google search :
> http://msdn.microsoft.com/en-us/library/ms741994.aspx
>
> "you must use the DCOMCnfg utility to set the access, launch, and
> configuration permissions, and identify the users who can administer
> the server. For more information, see Using DCOM to Customize Security
> Settings" -> http://msdn.microsoft.com/en-us/library/ms743879.aspx
>
> HTH
> Cheers - Neil
>
> On Thu, 30 Oct 2008 03:04:08 -0700, Giancarlo Albano
> <GiancarloAlbano[ at ]discussions.microsoft.com> wrote:
>
> >I'm trying to develop a customized app for WMS management (remote
> >administration), I found the following example code for C#, but I'm getting
> >an authentication error, "Retrieving the COM class factory for remote
> >component with CLSID {845FB959-4279-11D2-BF23-00805FBE84A6} from machine
> >wms2008 failed due to the following error: 80070005
> >
> >the question is how do I authenticate (username/password) to a remote
> >WMS2008 server, do you have any example code.
> >
> >try
> > {
> > // Declare variables.
> > Type tServerType;
> > WMSServer RemoteServer;
> >
> > // Retrieve the type information from the Windows
> > // Media server running on the remote machine.
> > tServerType = Type.GetTypeFromProgID("WMSServer.Server",
> >"wms2008");
> > // Create an instance of the remote server object locally.
> > RemoteServer =
> >(WMSServer)Activator.CreateInstance(tServerType);
> >
> > }
> > catch (COMException comExc)
> > {
> > Console.Write(comExc.ToString());
> > }
> >
> > catch (Exception ex)
> > {
> > Console.Write(ex.ToString());
> > }
> >
> >
> >"Neil Smith [MVP Digital Media]" wrote:
> >
> >> On Mon, 27 Oct 2008 07:50:22 -0700, Giancarlo Albano <Giancarlo
> >> Albano[ at ]discussions.microsoft.com> wrote:
> >>
> >> >We have successfully installed WMS 2008 and I would like to say that it is an
> >> >excellent product for our organization, nevertheless, we would like to offer
> >> >the service for non ICT professionals of the organization, and so, we would
> >> >like to develop a very simple application (just a start/stop button) to
> >> >manage the webcasting. I already downloaded WMS SDK 4.1, but there is no info
> >> >on how to write an application for example in C#.
> >>
> >> WMS SDK 4.1 (aka 1999) predated both windows server 2003, and any
> >> version of .NET so I'm not surprised !
> >>
> >> The correct version for WS2003 would be the WMS9 SDK
> >> http://msdn.microsoft.com/en-us/library/ms738748.aspx, I think that's
> >> almost completely applicable to WMS on Win server 2008 as well.
> >>
> >> The main download gets you code samples and .chm help files :
> >> http://www.microsoft.com/downloads/details.aspx?FamilyId=A55B6B43-E24F-4EA3-A93E-40C0EC4F68E5&displaylang=en
> >>
> >> Any SDK for windows server 2008 is likely to be under the [windows]
> >> platform SDK, which is several GB download.
> >>
> >> HTH
> >> Cheers - Neil
> >> ------------------------------------------------
> >> Digital Media MVP : 2004-2008
> >> http://mvp.support.microsoft.com/mvpfaqs
> >>
> ------------------------------------------------
> Digital Media MVP : 2004-2008
> http://mvp.support.microsoft.com/mvpfaqs
>
Re: Custom Management Application for WMS 2008
Giancarlo Albano 11/4/2008 9:49:01 AM

Dear Neil,

to my understanding the DCOMCnfg utility can be used to grant access to
manage the WMS 2008 service on a local server. In fact, we created an user
for remote desktop
access of WMS 2008

My question is, I am developing a customized app in C# that will be used
from a Windows XP workstation to manage the WMS 2008 remotely.

I tested the code (below) and it is not working, because I receive an error
regarding insufficient rights, the thing is, do you have a C# example of how
to authenticate to the WMS 2008 server by username and password ? ( How I
sent my credentials to the server in order to have the right to manage it)

Cheers,

Giancarlo

"Neil Smith [MVP Digital Media]" wrote:

[Quoted Text]
> I'm not sure how you missed this in your google search :
> http://msdn.microsoft.com/en-us/library/ms741994.aspx
>
> "you must use the DCOMCnfg utility to set the access, launch, and
> configuration permissions, and identify the users who can administer
> the server. For more information, see Using DCOM to Customize Security
> Settings" -> http://msdn.microsoft.com/en-us/library/ms743879.aspx
>
> HTH
> Cheers - Neil
>
> On Thu, 30 Oct 2008 03:04:08 -0700, Giancarlo Albano
> <GiancarloAlbano[ at ]discussions.microsoft.com> wrote:
>
> >I'm trying to develop a customized app for WMS management (remote
> >administration), I found the following example code for C#, but I'm getting
> >an authentication error, "Retrieving the COM class factory for remote
> >component with CLSID {845FB959-4279-11D2-BF23-00805FBE84A6} from machine
> >wms2008 failed due to the following error: 80070005
> >
> >the question is how do I authenticate (username/password) to a remote
> >WMS2008 server, do you have any example code.
> >
> >try
> > {
> > // Declare variables.
> > Type tServerType;
> > WMSServer RemoteServer;
> >
> > // Retrieve the type information from the Windows
> > // Media server running on the remote machine.
> > tServerType = Type.GetTypeFromProgID("WMSServer.Server",
> >"wms2008");
> > // Create an instance of the remote server object locally.
> > RemoteServer =
> >(WMSServer)Activator.CreateInstance(tServerType);
> >
> > }
> > catch (COMException comExc)
> > {
> > Console.Write(comExc.ToString());
> > }
> >
> > catch (Exception ex)
> > {
> > Console.Write(ex.ToString());
> > }
> >
> >
> >"Neil Smith [MVP Digital Media]" wrote:
> >
> >> On Mon, 27 Oct 2008 07:50:22 -0700, Giancarlo Albano <Giancarlo
> >> Albano[ at ]discussions.microsoft.com> wrote:
> >>
> >> >We have successfully installed WMS 2008 and I would like to say that it is an
> >> >excellent product for our organization, nevertheless, we would like to offer
> >> >the service for non ICT professionals of the organization, and so, we would
> >> >like to develop a very simple application (just a start/stop button) to
> >> >manage the webcasting. I already downloaded WMS SDK 4.1, but there is no info
> >> >on how to write an application for example in C#.
> >>
> >> WMS SDK 4.1 (aka 1999) predated both windows server 2003, and any
> >> version of .NET so I'm not surprised !
> >>
> >> The correct version for WS2003 would be the WMS9 SDK
> >> http://msdn.microsoft.com/en-us/library/ms738748.aspx, I think that's
> >> almost completely applicable to WMS on Win server 2008 as well.
> >>
> >> The main download gets you code samples and .chm help files :
> >> http://www.microsoft.com/downloads/details.aspx?FamilyId=A55B6B43-E24F-4EA3-A93E-40C0EC4F68E5&displaylang=en
> >>
> >> Any SDK for windows server 2008 is likely to be under the [windows]
> >> platform SDK, which is several GB download.
> >>
> >> HTH
> >> Cheers - Neil
> >> ------------------------------------------------
> >> Digital Media MVP : 2004-2008
> >> http://mvp.support.microsoft.com/mvpfaqs
> >>
> ------------------------------------------------
> Digital Media MVP : 2004-2008
> http://mvp.support.microsoft.com/mvpfaqs
>
Re: Custom Management Application for WMS 2008
"Vladimir Polischuk" <vlad_at_voynex.com> 11/4/2008 1:21:58 PM
Hello Giancarlo,

In the near past I have participated in the development of the WMS manager
software designed to manage Windows Media Services remotely. The features
list of the software includes management of the publishing points, their
properties and status, archiving, etc

So, if you need a ready made solution, feel free to contact me directly.
Regards,

Vladimir V. Polischuk
Technical Manager
www.voynex.com - custom software development, solutions for Windows Media
(pay-per-minute billing, streaming content protection, access control)


"Giancarlo Albano" <GiancarloAlbano[ at ]discussions.microsoft.com> wrote in
message news:0D272A22-798C-4350-BEEE-ADB746275B64[ at ]microsoft.com...
[Quoted Text]
>
> Dear Neil,
>
> to my understanding the DCOMCnfg utility can be used to grant access to
> manage the WMS 2008 service on a local server. In fact, we created an user
> for remote desktop
> access of WMS 2008
>
> My question is, I am developing a customized app in C# that will be used
> from a Windows XP workstation to manage the WMS 2008 remotely.
>
> I tested the code (below) and it is not working, because I receive an
> error
> regarding insufficient rights, the thing is, do you have a C# example of
> how
> to authenticate to the WMS 2008 server by username and password ? ( How I
> sent my credentials to the server in order to have the right to manage it)
>
> Cheers,
>
> Giancarlo
>
> "Neil Smith [MVP Digital Media]" wrote:
>
>> I'm not sure how you missed this in your google search :
>> http://msdn.microsoft.com/en-us/library/ms741994.aspx
>>
>> "you must use the DCOMCnfg utility to set the access, launch, and
>> configuration permissions, and identify the users who can administer
>> the server. For more information, see Using DCOM to Customize Security
>> Settings" -> http://msdn.microsoft.com/en-us/library/ms743879.aspx
>>
>> HTH
>> Cheers - Neil
>>
>> On Thu, 30 Oct 2008 03:04:08 -0700, Giancarlo Albano
>> <GiancarloAlbano[ at ]discussions.microsoft.com> wrote:
>>
>> >I'm trying to develop a customized app for WMS management (remote
>> >administration), I found the following example code for C#, but I'm
>> >getting
>> >an authentication error, "Retrieving the COM class factory for remote
>> >component with CLSID {845FB959-4279-11D2-BF23-00805FBE84A6} from machine
>> >wms2008 failed due to the following error: 80070005
>> >
>> >the question is how do I authenticate (username/password) to a remote
>> >WMS2008 server, do you have any example code.
>> >
>> >try
>> > {
>> > // Declare variables.
>> > Type tServerType;
>> > WMSServer RemoteServer;
>> >
>> > // Retrieve the type information from the Windows
>> > // Media server running on the remote machine.
>> > tServerType = Type.GetTypeFromProgID("WMSServer.Server",
>> >"wms2008");
>> > // Create an instance of the remote server object
>> > locally.
>> > RemoteServer =
>> >(WMSServer)Activator.CreateInstance(tServerType);
>> >
>> > }
>> > catch (COMException comExc)
>> > {
>> > Console.Write(comExc.ToString());
>> > }
>> >
>> > catch (Exception ex)
>> > {
>> > Console.Write(ex.ToString());
>> > }
>> >
>> >
>> >"Neil Smith [MVP Digital Media]" wrote:
>> >
>> >> On Mon, 27 Oct 2008 07:50:22 -0700, Giancarlo Albano <Giancarlo
>> >> Albano[ at ]discussions.microsoft.com> wrote:
>> >>
>> >> >We have successfully installed WMS 2008 and I would like to say that
>> >> >it is an
>> >> >excellent product for our organization, nevertheless, we would like
>> >> >to offer
>> >> >the service for non ICT professionals of the organization, and so, we
>> >> >would
>> >> >like to develop a very simple application (just a start/stop button)
>> >> >to
>> >> >manage the webcasting. I already downloaded WMS SDK 4.1, but there is
>> >> >no info
>> >> >on how to write an application for example in C#.
>> >>
>> >> WMS SDK 4.1 (aka 1999) predated both windows server 2003, and any
>> >> version of .NET so I'm not surprised !
>> >>
>> >> The correct version for WS2003 would be the WMS9 SDK
>> >> http://msdn.microsoft.com/en-us/library/ms738748.aspx, I think that's
>> >> almost completely applicable to WMS on Win server 2008 as well.
>> >>
>> >> The main download gets you code samples and .chm help files :
>> >> http://www.microsoft.com/downloads/details.aspx?FamilyId=A55B6B43-E24F-4EA3-A93E-40C0EC4F68E5&displaylang=en
>> >>
>> >> Any SDK for windows server 2008 is likely to be under the [windows]
>> >> platform SDK, which is several GB download.
>> >>
>> >> HTH
>> >> Cheers - Neil
>> >> ------------------------------------------------
>> >> Digital Media MVP : 2004-2008
>> >> http://mvp.support.microsoft.com/mvpfaqs
>> >>
>> ------------------------------------------------
>> Digital Media MVP : 2004-2008
>> http://mvp.support.microsoft.com/mvpfaqs
>>


Re: Custom Management Application for WMS 2008
Giancarlo Albano 11/6/2008 2:19:02 PM

Thanks Vladimir for your reply, we may consider a third-party application,
but if it is possible send us more information about your product, and
actually I was expecting an answer from Microsoft, for example a sample code
or workaround.
Thanks

"Vladimir Polischuk" wrote:

[Quoted Text]
> Hello Giancarlo,
>
> In the near past I have participated in the development of the WMS manager
> software designed to manage Windows Media Services remotely. The features
> list of the software includes management of the publishing points, their
> properties and status, archiving, etc
>
> So, if you need a ready made solution, feel free to contact me directly.
> Regards,
>
> Vladimir V. Polischuk
> Technical Manager
> www.voynex.com - custom software development, solutions for Windows Media
> (pay-per-minute billing, streaming content protection, access control)
>
>
> "Giancarlo Albano" <GiancarloAlbano[ at ]discussions.microsoft.com> wrote in
> message news:0D272A22-798C-4350-BEEE-ADB746275B64[ at ]microsoft.com...
> >
> > Dear Neil,
> >
> > to my understanding the DCOMCnfg utility can be used to grant access to
> > manage the WMS 2008 service on a local server. In fact, we created an user
> > for remote desktop
> > access of WMS 2008
> >
> > My question is, I am developing a customized app in C# that will be used
> > from a Windows XP workstation to manage the WMS 2008 remotely.
> >
> > I tested the code (below) and it is not working, because I receive an
> > error
> > regarding insufficient rights, the thing is, do you have a C# example of
> > how
> > to authenticate to the WMS 2008 server by username and password ? ( How I
> > sent my credentials to the server in order to have the right to manage it)
> >
> > Cheers,
> >
> > Giancarlo
> >
> > "Neil Smith [MVP Digital Media]" wrote:
> >
> >> I'm not sure how you missed this in your google search :
> >> http://msdn.microsoft.com/en-us/library/ms741994.aspx
> >>
> >> "you must use the DCOMCnfg utility to set the access, launch, and
> >> configuration permissions, and identify the users who can administer
> >> the server. For more information, see Using DCOM to Customize Security
> >> Settings" -> http://msdn.microsoft.com/en-us/library/ms743879.aspx
> >>
> >> HTH
> >> Cheers - Neil
> >>
> >> On Thu, 30 Oct 2008 03:04:08 -0700, Giancarlo Albano
> >> <GiancarloAlbano[ at ]discussions.microsoft.com> wrote:
> >>
> >> >I'm trying to develop a customized app for WMS management (remote
> >> >administration), I found the following example code for C#, but I'm
> >> >getting
> >> >an authentication error, "Retrieving the COM class factory for remote
> >> >component with CLSID {845FB959-4279-11D2-BF23-00805FBE84A6} from machine
> >> >wms2008 failed due to the following error: 80070005
> >> >
> >> >the question is how do I authenticate (username/password) to a remote
> >> >WMS2008 server, do you have any example code.
> >> >
> >> >try
> >> > {
> >> > // Declare variables.
> >> > Type tServerType;
> >> > WMSServer RemoteServer;
> >> >
> >> > // Retrieve the type information from the Windows
> >> > // Media server running on the remote machine.
> >> > tServerType = Type.GetTypeFromProgID("WMSServer.Server",
> >> >"wms2008");
> >> > // Create an instance of the remote server object
> >> > locally.
> >> > RemoteServer =
> >> >(WMSServer)Activator.CreateInstance(tServerType);
> >> >
> >> > }
> >> > catch (COMException comExc)
> >> > {
> >> > Console.Write(comExc.ToString());
> >> > }
> >> >
> >> > catch (Exception ex)
> >> > {
> >> > Console.Write(ex.ToString());
> >> > }
> >> >
> >> >
> >> >"Neil Smith [MVP Digital Media]" wrote:
> >> >
> >> >> On Mon, 27 Oct 2008 07:50:22 -0700, Giancarlo Albano <Giancarlo
> >> >> Albano[ at ]discussions.microsoft.com> wrote:
> >> >>
> >> >> >We have successfully installed WMS 2008 and I would like to say that
> >> >> >it is an
> >> >> >excellent product for our organization, nevertheless, we would like
> >> >> >to offer
> >> >> >the service for non ICT professionals of the organization, and so, we
> >> >> >would
> >> >> >like to develop a very simple application (just a start/stop button)
> >> >> >to
> >> >> >manage the webcasting. I already downloaded WMS SDK 4.1, but there is
> >> >> >no info
> >> >> >on how to write an application for example in C#.
> >> >>
> >> >> WMS SDK 4.1 (aka 1999) predated both windows server 2003, and any
> >> >> version of .NET so I'm not surprised !
> >> >>
> >> >> The correct version for WS2003 would be the WMS9 SDK
> >> >> http://msdn.microsoft.com/en-us/library/ms738748.aspx, I think that's
> >> >> almost completely applicable to WMS on Win server 2008 as well.
> >> >>
> >> >> The main download gets you code samples and .chm help files :
> >> >> http://www.microsoft.com/downloads/details.aspx?FamilyId=A55B6B43-E24F-4EA3-A93E-40C0EC4F68E5&displaylang=en
> >> >>
> >> >> Any SDK for windows server 2008 is likely to be under the [windows]
> >> >> platform SDK, which is several GB download.
> >> >>
> >> >> HTH
> >> >> Cheers - Neil
> >> >> ------------------------------------------------
> >> >> Digital Media MVP : 2004-2008
> >> >> http://mvp.support.microsoft.com/mvpfaqs
> >> >>
> >> ------------------------------------------------
> >> Digital Media MVP : 2004-2008
> >> http://mvp.support.microsoft.com/mvpfaqs
> >>
>
>
>
Re: Custom Management Application for WMS 2008
"Vladimir Polischuk" <vlad_at_voynex.com> 11/10/2008 3:18:57 PM
Ok, you can drop me a mail and I will send you the detailed description.
Using DCOM on the internet is not a good solution because it is not
firewall and router friendly .

Vladimir V. Polischuk
Technical Manager
www.voynex.com - custom software development, solutions for Windows Media
(pay-per-minute billing, streaming content protection, access control)

"Giancarlo Albano" <GiancarloAlbano[ at ]discussions.microsoft.com> wrote in
message news:96ADB8BE-CC5F-4FBE-87CD-89F91CA25182[ at ]microsoft.com...
[Quoted Text]
>
> Thanks Vladimir for your reply, we may consider a third-party application,
> but if it is possible send us more information about your product, and
> actually I was expecting an answer from Microsoft, for example a sample
> code
> or workaround.
> Thanks
>
> "Vladimir Polischuk" wrote:
>
>> Hello Giancarlo,
>>
>> In the near past I have participated in the development of the WMS
>> manager
>> software designed to manage Windows Media Services remotely. The features
>> list of the software includes management of the publishing points, their
>> properties and status, archiving, etc
>>
>> So, if you need a ready made solution, feel free to contact me directly.
>> Regards,
>>
>> Vladimir V. Polischuk
>> Technical Manager
>> www.voynex.com - custom software development, solutions for Windows Media
>> (pay-per-minute billing, streaming content protection, access control)


Re: Custom Management Application for WMS 2008
Giancarlo Albano 11/12/2008 4:18:10 PM
could you send my a quotation to the following email:

giancarlo.albano[ at ]wfp.org

Thanks,

"Vladimir Polischuk" wrote:

[Quoted Text]
> Ok, you can drop me a mail and I will send you the detailed description.
> Using DCOM on the internet is not a good solution because it is not
> firewall and router friendly .
>
> Vladimir V. Polischuk
> Technical Manager
> www.voynex.com - custom software development, solutions for Windows Media
> (pay-per-minute billing, streaming content protection, access control)
>
> "Giancarlo Albano" <GiancarloAlbano[ at ]discussions.microsoft.com> wrote in
> message news:96ADB8BE-CC5F-4FBE-87CD-89F91CA25182[ at ]microsoft.com...
> >
> > Thanks Vladimir for your reply, we may consider a third-party application,
> > but if it is possible send us more information about your product, and
> > actually I was expecting an answer from Microsoft, for example a sample
> > code
> > or workaround.
> > Thanks
> >
> > "Vladimir Polischuk" wrote:
> >
> >> Hello Giancarlo,
> >>
> >> In the near past I have participated in the development of the WMS
> >> manager
> >> software designed to manage Windows Media Services remotely. The features
> >> list of the software includes management of the publishing points, their
> >> properties and status, archiving, etc
> >>
> >> So, if you need a ready made solution, feel free to contact me directly.
> >> Regards,
> >>
> >> Vladimir V. Polischuk
> >> Technical Manager
> >> www.voynex.com - custom software development, solutions for Windows Media
> >> (pay-per-minute billing, streaming content protection, access control)
>
>
>

Home | Search | Terms | Imprint Contact
Newsgroups Reader - provided by WiredBox.Net
Suche nach Orten, Städten, Postleitzahlen, Vorwahlen, Kfz-Kennzeichen