View Single Post
  #7 (permalink)  
Old 03-27-2007, 03:19 PM
Karpagarajan Karpagarajan is offline
D-Web Analyst
 
Join Date: Mar 2007
Posts: 297
Karpagarajan is on a distinguished road
Thumbs up Re: VC++ Tips & Tricks

How to get the URL from ActiveX Control

This is a simple technique to determine the URL of the web page in which the ActiveX control is hosted.

I had to develop ActiveX controls for web based applications. Some of these controls were manipulating the local resources. To disable malicious use of these control by others through scripting, I had to implement security check. I decided to implement a simple security scheme where I determine the url in which the control is hosted. If the url comes from our domain, I enabled its functionality.
I used GetMoniker method of IOleClientSite Interface.The IMoniker interface has GetDisplayName() method, which returns a user-readable representation of the moniker.

Sample Code

HRESULT hrResult = S_FALSE;
IOleClientSite *pClientSite = NULL;
IMoniker* pMoniker = NULL;
LPOLESTR sDisplayName;

// If using ATL to develop, use the m_spClientSite data
// member of CComControl class.

// If using MFC, use the following code:
// (member function of COleControl class
// - don't forget to call release)
// pClientSite = GetClientSite();

hrResult = m_spClientSite->GetMoniker(OLEGETMONIKER_TEMPFORUSER,
OLEWHICHMK_CONTAINER,
&pMoniker);
if(SUCCEEDED(hrResult))
{
hrResult = pMoniker->GetDisplayName(NULL,
NULL,
&sDisplayName);
pMoniker->Release();
}

//TODO : relevant processing with sDisplayName and
//free sDisplayName using SysFreeString()


thanks
__________________
Karpagarajan. R
Necessity is the mother of invention
Reply With Quote