Hello, Does anyone know how to get the publishingpointid or a handle on the publishingpoint within a custom windows media server plugin? I've written a couple plugins (logging and authorization) and I need to know the publishingpointid of the publishingpoint the plugin is executing against. I tried using the command context but the value is never there. Any help is greatly appreciated. Thanks, Sean
I use the presentation context instead like this (in C#): string paramValue = ""; pPresentationCtx.GetStringValue("WMS_PRESENT_REQUEST_NAME", 5, out paramValue, 0); Now paramValue has the complete requested URL, in my case something like this -> rtsp://www.domain.com/publishingpoint/media.play?item=444&sid=02932EBA... and I just parse out the publishing point name. "Seang" wrote: > Hello, > Does anyone know how to get the publishingpointid or a handle on the > publishingpoint within a custom windows media server plugin? I've written a > couple plugins (logging and authorization) and I need to know the > publishingpointid of the publishingpoint the plugin is executing against. I > tried using the command context but the value is never there. Any help is > greatly appreciated. > > Thanks, > Sean