| Author |
Message |
Chris
Guest
|
Posted:
Tue Jun 01, 2004 12:10 pm Post subject:
How do i handling Challenge Object. |
|
|
I have a Question about WMRM Challenge Object.
If i clicked encrypted wma contents, Windows media player
(WMP) try to challenge to get a license using Challenge
Object.
License Server programmed in asp. this page have a
following source code.
example
---------------------------------------
Set ChallengeObj = Server.CreateObject
("Wmrmobjs.WMRMChallenge")
sLicRequest = request.Form("challenge")
---------------------------------------
I think request.Form("challenge") is returned Challenge
Strig as XML Format. This xml foramt is fixed.
I want to add some inforamtion like client mac address or
ip address to Challenge Object when end user click
encrypted contents.
Anybody know this one ?
|
|
| Back to top |
|
 |
Michiel
Guest
|
Posted:
Wed Jun 02, 2004 12:24 pm Post subject:
Re: How do i handling Challenge Object. |
|
|
"Chris" <anonymous@discussions.microsoft.com> wrote in message
news:1621701c447af$f8a4b810$a301280a@phx.gbl...
| Quote: | I have a Question about WMRM Challenge Object.
If i clicked encrypted wma contents, Windows media player
(WMP) try to challenge to get a license using Challenge
Object.
License Server programmed in asp. this page have a
following source code.
example
---------------------------------------
Set ChallengeObj = Server.CreateObject
("Wmrmobjs.WMRMChallenge")
sLicRequest = request.Form("challenge")
---------------------------------------
I think request.Form("challenge") is returned Challenge
Strig as XML Format. This xml foramt is fixed.
I want to add some inforamtion like client mac address or
ip address to Challenge Object when end user click
encrypted contents.
Anybody know this one ?
|
You can get the client ip address with
Context.Request.UserHostAddress
If that's what you mean. |
|
| Back to top |
|
 |
Chris
Guest
|
Posted:
Wed Jun 02, 2004 12:53 pm Post subject:
Re: How do i handling Challenge Object. |
|
|
| Quote: | -----Original Message-----
"Chris" <anonymous@discussions.microsoft.com> wrote in
message
news:1621701c447af$f8a4b810$a301280a@phx.gbl...
I have a Question about WMRM Challenge Object.
If i clicked encrypted wma contents, Windows media
player
(WMP) try to challenge to get a license using Challenge
Object.
License Server programmed in asp. this page have a
following source code.
example
---------------------------------------
Set ChallengeObj = Server.CreateObject
("Wmrmobjs.WMRMChallenge")
sLicRequest = request.Form("challenge")
---------------------------------------
I think request.Form("challenge") is returned Challenge
Strig as XML Format. This xml foramt is fixed.
I want to add some inforamtion like client mac address
or
ip address to Challenge Object when end user click
encrypted contents.
Anybody know this one ?
You can get the client ip address with
Context.Request.UserHostAddress
If that's what you mean.
.
|
No.
I can get a Ip address using
Context.Request.UserHostAddress.
But,
How do i get a Client Mac Address.
To get a Mac address, when end user click encrypted wma
file, some module add client mac address to challenge.
i wanna know this.
|
|
| Back to top |
|
 |
Dave Roth [MS]
Guest
|
Posted:
Mon Jun 07, 2004 10:33 am Post subject:
Re: How do i handling Challenge Object. |
|
|
Unless you are on the same subnet as the client machine you won't be able to
discover its MAC address. If you are on the same subnet your ASP code will
have to rely on the ARP protocol (maybe calling ARP.EXE).
--
Dave Roth [MS]
Program Manager
Digital Media Division
=============
This posting is provided "AS IS" with no warranties, and confers no rights.
The use of any included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm
"Chris" <anonymous@discussions.microsoft.com> wrote in message
news:170b701c4487f$1d587780$a001280a@phx.gbl...
| Quote: |
-----Original Message-----
"Chris" <anonymous@discussions.microsoft.com> wrote in
message
news:1621701c447af$f8a4b810$a301280a@phx.gbl...
I have a Question about WMRM Challenge Object.
If i clicked encrypted wma contents, Windows media
player
(WMP) try to challenge to get a license using Challenge
Object.
License Server programmed in asp. this page have a
following source code.
example
---------------------------------------
Set ChallengeObj = Server.CreateObject
("Wmrmobjs.WMRMChallenge")
sLicRequest = request.Form("challenge")
---------------------------------------
I think request.Form("challenge") is returned Challenge
Strig as XML Format. This xml foramt is fixed.
I want to add some inforamtion like client mac address
or
ip address to Challenge Object when end user click
encrypted contents.
Anybody know this one ?
You can get the client ip address with
Context.Request.UserHostAddress
If that's what you mean.
.
No.
I can get a Ip address using
Context.Request.UserHostAddress.
But,
How do i get a Client Mac Address.
To get a Mac address, when end user click encrypted wma
file, some module add client mac address to challenge.
i wanna know this.
|
|
|
| Back to top |
|
 |
|
|
|
|