I want to read and fetch the contents of a cookie generated by web browser from activex control. I dont want to read the cookie from javascript and pass it to activex control. I want read the cookie directly from activex control. If it is possible then suggest me the APIs for that and also same thing I have to achieve using NPAPI also (so please suggest APIs in here also). So looking forward for some positive answers.
how can i read cookie generated by web browser from activex control
1.4k Views Asked by user2416334 At
1
There are 1 best solutions below
Related Questions in VISUAL-C++
- I want to be able to use 4 different variables in a select statement in c ++
- llvm headers do not compile under msvc 2013
- VC++ .net: Functionality from managed DLL is not exported
- Add a picture to Picture Control in a dialog box (error RC2108: expected numerical dialog constant)
- Within a .vcxproj file what are the possible values for the <ConfigurationType> and what do those values mean?
- converting string to a double in visual c++ by parsing
- How to integrate opencv C++ codings with windows application?
- Create string with ESC characters
- What does the thing between "class" and the class name in VC++ mean?
- How to assign (Root)Folder ID in C++? Wherein, those files and folder under it would have the same ID as the RootFolder
- How to convert CString to long? VC++
- How to initialize a String^ *
- How to correctly implement methods of a class returning "this" in Managed C++?
- Non-managed referenced code strangely, "magically" changes its state for no reason when wrapped in managed
- Windows application using libusb: runtime error due to mutex lock
Related Questions in COM
- Possible consequences of duplicate ProgId for different classes
- Open array declaration lost when regenerating interop.dll with tlbimp.exe from type-lib
- How does a server that expose COM functions via IDispatch can distinct between different clients that Invoke functions without passing any ID param?
- Call IConnectionPoint::Advise cause a crash
- Is it safe to cast a IDispatch* into an IUnknown*, without using QueryInterface, for interprocess COM objects?
- Custom HRESULT from COM component
- Return multiple variables to JavaScript from COM
- How to read from exchange server asynchronously using IMoniker and IStream Interface
- How can a dialog become responsive while waiting for a call to DoModal() to return?
- ICallFactory with 32-bit and 64-bit type libraries side by side
- Report generation in server
- What is required in Delphi 2007 to use Variant arrays?
- How to convert string array to SAFEARRAY or VARIANT or COleVariant?
- ArcObjects ExcelWorkspaceFactory Won't Release Excel File
- Calling a method of a WMI Class
Related Questions in ACTIVEXOBJECT
- I am using ActiveX control and installing it by msi. The method written in ActiveX user control class are firing but UI is not visible
- Change ActiveX email font
- VBA ActiveX dynamic ComboBox reduces ListRows to 1
- How to pass unhandled exception to application catch block in thread
- Return statement in if statement
- IServiceProvider::QueryService returned E_INVALIDARG in mfc
- I want to know the url of an image I triggered a context menu on(Internet Explorer)
- Lync CWE Automation server can't create object
- How to Read a File (DOCX or XLSX OR PNG) as Binary stream in Internet Explorer using JavaScript
- Getting Already Active Instance of Excel in MS JScript
- RSS feed ActiveXObject("Microsoft.XMLDOM") Chrome compatibility
- Create ActiveXObject from GUID
- Run ActiveXObject COM component that creates dialogs under IIS in Asp.NET
- Run executable (exe) program on client machine instead of on the server using ActiveXObject
- How do I make "ActiveXObject('SAPI.SpVoice')" work in firefox
Related Questions in ACTIVEX-DOCUMENTS
- how to render html file in window/dialog box using activex control
- Prerequisite for Win 10 using vb6 activex documents or webbrowser control
- Have .jpg files within excel when using ActiveX Image Control
- VBA, Active X and Legacy Tools alternatives in word
- Are there any good resources for dealing with "User Document" (.dob) files
- Who to read XML file of below content into Xdocument
- In Qt 4.8 MS Excel ActiveX control in QWidget has no Ribbon for data formatting
- Open a java desktop application while saving a Microsoft word document using ActiveX control in java
- HTML Object Tag Loading ActiveX Object
- how can i read cookie generated by web browser from activex control
- Microsoft word 2010 64bit VBA code when connecting to access database 2010 64bit activex error
- Javascript - Is there a way to export HTML along with formatting to a word document using ActiveX?
- Click a button in a Out-of-process COM(Active Document Server) component hangs IE, why?
- How to replace active x control form javascript project
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
What you can do is
1) hook up Web Browser events, using for example this sample How to sink HTML document events for WebBrowser host
2) once you get a hold on the loaded IHTMLDocument2 document interface, just read the value of the cookie property:
More on this here: Handling HTML Element Events
Note: for NSAPI I suggest you write another question with other tags as this is a totally different world.