Wednesday 22 December 2010

SharePoint Authentication

Microsoft Kerberos (Negotiate)
Microsoft NTLM

Forms-based Authentication:

Claims-baed authentication:

Thursday 16 December 2010

How to: Configure a Port with an SSL Certificate

http://msdn.microsoft.com/en-us/library/ms733791.aspx

Prerequisites

  • You must have imported a certificate in your LocalMachine or CurrentUser certificate location and find out its thumbprint identifier
  • You must have an application with an ID as GUID e.g. a Windows Service
  • You must know to which Store your certificate is stored.


Add a certificate binding:
netsh http add sslcert ipport=0.0.0.0:6080 certhash=bcb0d7372d065fdb4047d6fdde64b1c84f6e12c2 appid={00000000-0000-0000-0000-000000000000} clientcertnegotiation=enable certstorename=Personal

Delete a certificate binding:
netsh http delete sslcert ipport=0.0.0.0:6080

Display current port binding
netsh http show sslcert ipport=0.0.0.0:6080

Show all current port configurations:

netsh http show sslcert

Thursday 2 December 2010

MMS Video Live Streaming

List of some live mms video streams: http://www.kensfi.com/watch-live-tv-channels-streams-with-vlc-media-player/

VLC Player can display mms video streams.

An Example for IE:

<object id="MediaPlayer" width="500" height="400"

classid="CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6" standby="Loading

Windows Media Player components..." type="application/x-oleobject">

<param name="url" value="mms://81.89.49.210/musicbox" />

<param Name="FileName" Value="mms://81.89.49.210/musicbox">

<param name="controller" value="true" />

<param name="autoplay" value="true" />

<param name="autoStart" value="true"/>

</object>

How to Modify the Url Programmatically


More info about properties, methods and events of this Activex object, please refer to this: http://msdn.microsoft.com/en-us/library/dd564034(v=VS.85).aspx