-
Gregory Rusak
- PowerBuilder
- Thursday, 3 April 2025 04:29 PM UTC
Hello,
We've been using AntView's MS Edge Webview2 ActiveX control (.ocx) for a while now with PowerBuilder 2022 R3 and with version 1.1.460.0 they have introduced a method to list all of the cookies for a User's Profile.
The CookieManager is a "property" of the type OleObject on the .ocx control as follows:
So in order to get a handle to that OleObject, we'd do something along the lines of:
oleobject lole_cookies
String ls_cookies, ls_uri
lole_cookies = ole_webview2.Object.CookieManager
IF IsValid(lole_cookies) THEN
lole_cookies.GetCookies(ls_uri)
END IF
Now according to their documentation (https://doc.antview.dev/hs558.htm), the CookieManager has the Method called "GetCookies" that "Retrieve all cookies matching the uri asynchronously as an AntViewCookieList object via the OnGetCookieList event".
So it would appear that calling the GetCookies() Method fires an OleObject Event called OnGetCookieList in the CookieManager Object. What we don't understand is what we do from there?
How do we access the OnGetCookieList Event as we would for any other Event in a PowerBuilder nvo?
Once we understand how to write code for that Event, I suppose we'd then instantiate an OleObject of type AntViewCookieList and access the cookie properties from there. But again, where do we do this this since there isn't an object Event to do this in?
I'm sure we're just missing a simple step, but any help or insight is greatly appreciated.
Kind Regards,
Greg
Find Questions by Tag
Helpful?
If a reply or comment is helpful for you, please don’t hesitate to click the Helpful button. This action is further confirmation of their invaluable contribution to the Appeon Community.