Access a class later?

I have my own class BBM I create hand:

BbmConnection *bbmConnection = new BbmConnection(uuid, &app);
    bbmConnection->RegisterApplication();

How can I use this class later in my application, in another class?

I can't reintialise it because I don't know what uuid and app are later in the application.

I'm using C++

Thank you

One of the solutions is to use a singleton.

Remove uuid & app from the constructor arguments.

In BbmConnection.h, add:

static BbmConnection *sharedInstance();

In BbmConnection.cpp:

BbmConnection *BbmConnection::sharedInstance()
{
  static BbmConnection instance;
  return &instance;
}

Add an initialization method, for example init(). Call once in main.cpp:

BbmConnection::sharedInstance()-> init (uuid, & app)

In other classes:

BbmConnection::sharedInstance()-> otherMethods();

p.s. If the app is an instance of the application, then it is accessible from any method by calling Application::instance ().

Tags: BlackBerry Developers

Similar Questions

  • To access the classes of CPP in qml.

    I have set up to access the classes of PCB in qml in two ways: -.

    1. create an attached object and the id of the class of CPP special and then access via the id.

    2. fix the CPP on the qml class before pushing the page using the setContextProperty.

    I wanted to know exactly when to use these two methods. There a difference in terms of scope and memory. Please explain.

    Great Question!

    Local objects:

    Attached to objects, or who inherit from classes of cascades, is the simplest way to expose c ++ objects that relate to user interface elements. This is what you use if you want this object to BELONG to this context qml. It is created by the qml context when createObject is called (your qml file is loaded) and destroyed with the user interface objects. You can create many of these objects, anywhere you need. However, if you want to expose global properties, it is probably not a good approach.

    The only time you would use objects attached to global stuff is if you expose a singleton class to allow qml set locations to manage signals (OrientationHandler is an example of that, without an OrientationHandler object, that you have nothing to connect).

    Global objects:

    Context properties can be considered global variables for a particular context, but with inheritance: context properties are passed to the contexts of the child. These objects are the PROPERTY of c ++, must be created before the creation of the object (createObject is called) and must remain valid for the lifetime of any context, they are placed in, but then destroyed is no longer necessary.

    The disadvantage of context properties changing them can be expensive. If you set a context property after the createObject call (that is to say an object exists that was created from this context), then all links in javascript in this context will be re-evaluated. However, you can mitigate this issue by exposing an object that contains the value as a property, so that links to branch on change of signals well if necessary.

    Inheritance is where shine context properties. There is a context root, which is in this context of default parent for new contexts. If you set a context property of the root context, it is available everywhere in any document qml. Here is an example of how do:

    QmlDocument::defaultDeclarativeEngine()->rootContext()->setContextProperty("app", myApp);
    

    Note: when I speak of createObject, I'm talking about QDeclarativeContext::createObject. It is called internally by QmlDocument::createRootObject.

    For more information on the Qml contexts, see http://qt-project.org/doc/qt-4.8/qdeclarativecontext.html

    For more information about the inner workings of qtdeclarative, see http://qt-project.org/doc/qt-4.8/qdeclarativeengine.html and http://qt-project.org/doc/qt-4.8/qdeclarativecomponent.html

    http://Qt-project.org/doc/Qt-4.8/qtbinding.html is still relevant as well

  • How to access the class of an Actionscript object

    Hello

    I'm trying to access the class of an Actionscript object as the Java method getClass().

    example:

    I have this class with a method "myMethod(clazz:Class)".

    public class Class2
    {
         ... 
         public function myMethod(clazz:Class):void
         {
           ...
         }
    }
    

    This other class:

    public class Class1
    {
        var class2:Class2 = new Class2()
    
        public function otherMethod(obj:Object):void
        {
              class2.myMethod(obj.????);
        }
     }
    

    Perhaps is it not possible?

    Thank you

    vdelbart

    There is no native to retrieve method class of an object, but this utility function should work for you:

    import flash.utils. *.
    import flash.system.ApplicationDomain;

    function getClass(o:*, appDomain:ApplicationDomain=null): Class
    {
    If (o == null | is a class o) {return o ;}

    result: var class = null;

    Try
    {
    var cName:String = flash.utils.getQualifiedClassName (o);
     
    If (appDomain! = null)
    {
    try {}
    result = appDomain.getDefinition (cName) class;
    }
    catch (err2) {result = null ;}
    }
    If (result is nothing)
    {
    Result = flash.utils.getDefinitionByName (cName) class;
    }
     
    }
    catch (Err) {result = null ;}
    Finally {}
    return the result;
    }

  • Better way to access a class in reading/writing of several other classes?

    I need run to be retained on a class that gets read and written by the other classes. They share no common ancestor. The reads/writes will be synchronous, so there is no race condition to worry. My idea is to have just the class of all classes that need to access private data and make a 'transfer' between classes, e.g. bundling and unbundling in the classes that need it. This seems very messy. Any ideas?

    I use a data value reference in this situation.  You do just a digital recorder that contains your shared class, and then pass this DVR in all your other items to their initialization.  Given that everyone who needs to change the data has a reference to the data, anyone can modify it within their private methods through a Structure of elements in Place.

  • To access the class fields in another package (reflection)

    Hello

    Given that I have not found a section named "Reflection" in the forums, I guessed that this would be the place to post my question.

    I'm trying to implement a function called setField (field, value) in my classes using reflection. I have included this function in a base class so that its child classes could also use this feature.

    The base class looks like:
    public class Base {
    
        private Integer x;
    
        public void setField( String fieldName, Object value) {
            Class cls = this.getClass();
            
            while (cls.getSuperclass() != null) {
                System.out.println(cls.getName());
                
                try {
                    Field field = cls.getDeclaredField(fieldName);
                    field.set(this, value);
                    break;
                } catch (IllegalArgumentException ex) {
                    Logger.getLogger(JPT.class.getName()).log(Level.SEVERE, null, ex);
                } catch (IllegalAccessException ex) {
                    Logger.getLogger(JPT.class.getName()).log(Level.SEVERE, null, ex);
                } catch (NoSuchFieldException ex) {
                    Logger.getLogger(JPT.class.getName()).log(Level.SEVERE, null, ex);
                } catch (SecurityException ex) {
                    Logger.getLogger(JPT.class.getName()).log(Level.SEVERE, null, ex);
                }
                
                // if field not found in this class, check the superclass
                cls = cls.getSuperclass();
            }
        }
        
        public Integer getX() {
            return x;
        }
    
        public void setX(Integer x) {
            this.x = x;
        }
    }
    And then I have a class of the child:
    public class Child extends Base {
    
        protected Integer y;
    
        public Integer getY() {
            return y;
        }
    
        public void setY(Integer y) {
            this.y = y;
        }
    }
    So, basically, I need to get the type of features to work, i.e. to change a field in the child's class using the function available from the following base class:
    Child child = new Child();
    
    child.setField("y", new Integer(20));
    
    System.out.println(child.getY());
    This works when the base so the child classes are in the same package, but when they are on different packages, I get an error that looks like:
    java.lang.IllegalAccessException: Class teletutor.core.test1.Base can not access a member of class teletutor.core.test2.Child with modifiers "protected"
         at sun.reflect.Reflection.ensureMemberAccess(Reflection.java:95)
         at java.lang.reflect.AccessibleObject.slowCheckMemberAccess(AccessibleObject.java:261)
         at java.lang.reflect.AccessibleObject.checkAccess(AccessibleObject.java:253)
         at java.lang.reflect.Field.doSecurityCheck(Field.java:983)
         at java.lang.reflect.Field.getFieldAccessor(Field.java:927)
         at java.lang.reflect.Field.set(Field.java:680)
         at teletutor.core.test1.Base.setField(JPT.java:27)
    I hope that I have identified my problem. Please suggest how I can get the desired effect.

    Thanks in advance.
    field.setAccessible(true);
    
  • Access the class from the loaded module

    I have this in the main application and I the public variable test in the module. The problem is that I don't know how to access it properly.

    public

    var fontsModule:IModuleInfo;

    public var FontsClass: Class;

    public

    function initApp(evt:FlexEvent):Sub

    {

    fontsModule = ModuleManager.getModule ("modules/fontsBG.swf");

    fontsModule.addEventListener (ModuleEvent.READY, fontsLoaded);

    () fontsModule.load

    new ApplicationDomain (ApplicationDomain.currentDomain), null , null , moduleFactory);

    }

    public function fontsLoaded(evt:ModuleEvent):Sub

    {

    FontsClass = fontsModule.factory.create)

    as Class;

              trace ()' HERE: "(+ FontsClass.test);". "

    }

    If I replace the class with the name of the 'FontsBG' class actions script in this example, everything would work, but the main swf file size goes from 100 to nearly 400 kbs when the fontsBG.swf file is 67 kbs. So I'm certainly not doing it right.

    So the question is: what is the correct way of loading the modules and using their properties and functions - through the class or interface and how it's done? Please set up a small code example so I can get the concept of base as well as the readers of this thread.

    Thank you!!!

    (3) again, you will need to use a shared interface or a common base class.

    Most people put the UI widgets in a module and they all extends UIComponent

    You can reference them as UIComponents.  If they need to access other

    Properties and methods, they define an interface.

    (1) my guess is that the button does not know what a module with embedded

    fonts loaded and don't refresh to use.  Normally, you would

    wrap styles in the module with the fonts, and then set styleonce

    the module is loaded.  In this case, you specify MyriadPro as the

    CSS font family and he would set via setStyle once the module is loaded.

  • "Best practice" to access a class for a custom component?

    My application uses a simple class to contain global properties such as the user name, session data, and similar data. The class is initialized at the start of the application through code similar to: appGlobals:myGlobals = new myGlobals.

    Many custom MXML components and as classes need access to these data. I was able to work with it using Application.application.appGlobals.propertyname.

    This method, the best way to connect classes and components to a class initiated on demand isn't level, or should I learn something new until I build a lot of code on this method?

    Thank you.

    Paul

    The best practice in this case is to use custom events to pass around data, for a loosely coupled application.

    Here is my Flex cookbook post on custom events:

    http://www.Adobe.com/cfusion/CommunityEngine/index.cfm?event=ShowDetails&ProductID=2&postI d = 11246

    If this post answers your question or assistance, please mark it as such.

  • Access a class with actionscript

    Hi people.

    Given that I have not found a forum of action script, I hope you guys can help me:

    I have a simple class defined in Token.as:

    package
    {
    [Bindable]
    [RemoteClass(alias="amazonas.token")]
    public class token
    {
    public var id: int;
    public var title: String;
    public var: string text;
    public var a1:String;
    }
    }

    And I want to access it in my mxml:

    [Bindable] public var token: token;
    private void save (): void
    {
    Log2.label = "CLICK1;
    Token.Headline = "CLICK2."
    Log2.label = "CLICK2."
    }

    Unfortunately, the call is never finished! The label remains to CLICK1. So I think that somehow, the write procedure gets stuck

    Any ideas on that?

    ADOS

    You must instantiate the class before use

    [Bindable] public var token: Token = new Token();

  • VCP exam, first class later

    Hello

    I am preparing to secure Channel (VCP5-VTC) review and wanted to ask if there are restrictions to take the authorized class after the test is successful. With the rumor update for version 5.5, I wanted to make sure that I don't have to re - take the exam when the 5.5 classes and exams will be available. I'm planning to take the exam this month and attending the class some time in 2014.

    Kind regards

    You can go ahead and follow the course of 5.1 and certification. That review is has not been updated but AFAIK.

    If you find this answer useful, review the allocation of points by choosing the correct or helpful answer

  • access flex classes

    Hello

    I want to open or convert a class in Flash that has been built for Flex. Now there are includes as StringUtil which are easy to rewrite and others as bitmapasset that are not found.

    Is it possible to add the main classes of flex to my classpath? Where could I find it?

    TIA

    You cannot change the Flex SDK classes directly, but you can extend the majority of them.

    If you use Flash IDE - you can download the Flex SDK kit and card (tell flash where it is) - then the only thing you need to do, it's any other AS3 class to import them.

  • (Question LVOOP) How one access the data of another class in another class?

    Hello-

    Ass title suggests, how do I access another class (or is it class?) data from another (different) class?  I will attach a picture showing where my problem is...

    I was told this:

    http://zone.NI.com/reference/en-XX/help/371361H-01/lvhowto/setting_scope_classes/

    May contain some helful info, but I can still understand how to unbundle Renault of classes inside the component class data (as seen in the attached photo).

    I think there could be something simple I'm missing here when it comes LVOOP or OBJECT-oriented programming in general... If any of you are willing to help me, it would be much appreciated!

    Thank you!

    -pat

    Personal data are always private, you can never set public. Unbundle cluster function can be used only on the thread of class when he is in the class. If you need to access private data, you must create accessors.

    It of simple, just the class right click and select new, VI for access data members. He invites you to a dialog box to fill you with what you want to create, elements of data and if you want them available through property nodes (recommended). Once completed, this will generate the Afterward screw., you can use in any other VI. The nice thing about making them nodes of property is that you can plop down a property node and it thread class, and all the created accessor functions will appear in the list.

  • Access to a Java servlet class

    Can make a servlet running on the access of the server has a class defined on server B?
    More information:
    I am new to Java servlet programming and want to make sure that my web application is secure. I've implemented a Java class that returns information from the user (name, address, e-mail etc.) and I put in place of the jsp and servlet pages that access the class through a 'import my.class...» "for servlets and a ' @page import ="my.class... ". ' 'for the jsp. Pages jsp and servlets do session verification and authentication, but the class has nothing of all this - it's methods simply return the requested data. I don't want to put all the identifications in the class, but I want to make sure that there no way to other web servers out there on the internet could access this class in my web application. I don't think it is possible, but my fear is that some hacker out there could do it somehow remotely a @page import "my.class...". "on my Web server and then access my methods of the class? These web applications are run within a Glassfish 3.0 application server.

    Thank you!

    No.. Servlet running on a server can not access anything on server B that are not accessible via HTTP.
    Your class/jar files (and in fact anything under the WEB - INF directory) are not public.

    In fact, if you have WebApplicationA running on the server has WebApplicationB on the same server cannot access the WebApplicationA classes.

    You should not have problems of security in this regard.

    see you soon,
    evnafets

  • text field for class stage access

    Hey,.

    A simple access of class issue:



    I have a dynamic text field on my stage, name the instance: "lives_txt."

    I want to fill this field in my Document class 'Ball.as '.



    Then in my Ball.as class I tried: parent.lives_txt.text = String (life);

    where: var public life: int = 3;



    I get an error: access of possibly undefined property lives_mc through a reference with static type flash.display:DisplayObjectContainer.



    What I am doing wrong?



    Thank you

    Yes, I made a typo in the original post (now edited)

    lives_txt. Text = String (life); Could not access it.

    MovieClip (root).lives_txt.text = String (lives); Is what I was looking for!

  • CANNOT ACCESS THE LAN WITH THE EASY VPN CONFIGURATION

    Hello

    I configured easy vpn server in cisco 1905 SRI using ccp. The router is already configured with zone based firewall. With the help of vpn client I can reach only up to the internal interface of the router, but cannot access the LAN from my company. I need to change any configuration of ZBF since it is configured as "deny everything" from outside to inside? If so that all protocols should I match?   Also is there any exemption of NAT for VPN clients? Please help me! Thanks in advance.

    Please see my full configuration:

    Router #sh run
    Building configuration...

    Current configuration: 8150 bytes
    !
    ! Last modification of the configuration at 05:40:32 UTC Wednesday, July 4, 2012 by
    ! NVRAM config updated 06:04 UTC Tuesday, July 3, 2012 by
    ! NVRAM config updated 06:04 UTC Tuesday, July 3, 2012 by
    version 15.1
    horodateurs service debug datetime msec
    Log service timestamps datetime msec
    no password encryption service
    !
    router host name
    !
    boot-start-marker
    boot-end-marker
    !
    !
    Passwords security min-length 6
    no set record in buffered memory
    enable secret 5 xxxxxxxxxxx
    !
    AAA new-model
    !
    !
    AAA authentication login default local
    AAA authentication login ciscocp_vpn_xauth_ml_1 local
    AAA authorization exec default local
    AAA authorization ciscocp_vpn_group_ml_1 LAN
    !
    !
    !
    !
    !
    AAA - the id of the joint session
    !
    !
    No ipv6 cef
    IP source-route
    no ip free-arps
    IP cef
    !
    Xxxxxxxxx name server IP
    IP server name yyyyyyyyy
    !
    Authenticated MultiLink bundle-name Panel
    !

    parameter-map local urlfpolicy TSQ-URL-FILTER type
    offshore alert
    block-page message "Blocked according to policy"
    parameter-card type urlf-glob FACEBOOK
    model facebook.com
    model *. Facebook.com

    parameter-card type urlf-glob YOUTUBE
    mires of youtube.com
    model *. YouTube.com

    parameter-card type urlf-glob CRICKET
    model espncricinfo.com
    model *. espncricinfo.com

    parameter-card type urlf-glob CRICKET1
    webcric.com model
    model *. webcric.com

    parameter-card type urlf-glob YAHOO
    model *. Yahoo.com
    model yapo

    parameter-card type urlf-glob PERMITTEDSITES
    model *.

    parameter-card type urlf-glob HOTMAIL
    model hotmail.com
    model *. Hotmail.com

    Crypto pki token removal timeout default 0
    !
    Crypto pki trustpoint TP-self-signed-2049533683
    enrollment selfsigned
    name of the object cn = IOS - Self - signed - certificate - 2049533683
    revocation checking no
    rsakeypair TP-self-signed-2049533683
    !
    Crypto pki trustpoint tti
    crl revocation checking
    !
    Crypto pki trustpoint test_trustpoint_config_created_for_sdm
    name of the object [email protected] / * /
    crl revocation checking
    !
    !
    TP-self-signed-4966226213 crypto pki certificate chain
    certificate self-signed 01
    3082022B 30820194 02111101 300 D 0609 2A 864886 F70D0101 05050030 A0030201
    2 060355 04031326 494F532D 53656 C 66 2 AND 536967 6E65642D 43647274 31312F30
    69666963 32303439 35323236 6174652D 3833301E 170 3132 30363232 30363332

    quit smoking
    encryption pki certificate chain tti
    for the crypto pki certificate chain test_trustpoint_config_created_for_sdm
    license udi pid CISCO1905/K9 sn xxxxxx
    licence start-up module c1900 technology-package datak9
    username privilege 15 password 0 xxxxx xxxxxxx
    !
    redundancy
    !
    !
    !
    !
    !
    type of class-card inspect entire tsq-inspection-traffic game
    dns protocol game
    ftp protocol game
    https protocol game
    match icmp Protocol
    match the imap Protocol
    pop3 Protocol game
    netshow Protocol game
    Protocol shell game
    match Protocol realmedia
    match rtsp Protocol
    smtp Protocol game
    sql-net Protocol game
    streamworks Protocol game
    tftp Protocol game
    vdolive Protocol game
    tcp protocol match
    udp Protocol game
    match Protocol l2tp
    class-card type match - all BLOCKEDSITES urlfilter
    Server-domain urlf-glob FACEBOOK game
    Server-domain urlf-glob YOUTUBE game
    CRICKET urlf-glob-domain of the server match
    game server-domain urlf-glob CRICKET1
    game server-domain urlf-glob HOTMAIL
    class-map type urlfilter match - all PERMITTEDSITES
    Server-domain urlf-glob PERMITTEDSITES match
    inspect the class-map match tsq-insp-traffic type
    corresponds to the class-map tsq-inspection-traffic
    type of class-card inspect correspondence tsq-http
    http protocol game
    type of class-card inspect all match tsq-icmp
    match icmp Protocol
    tcp protocol match
    udp Protocol game
    type of class-card inspect correspondence tsq-invalid-src
    game group-access 100
    type of class-card inspect correspondence tsq-icmp-access
    corresponds to the class-map tsq-icmp
    !
    !
    type of policy-card inspect urlfilter TSQBLOCKEDSITES
    class type urlfilter BLOCKEDSITES
    Journal
    reset
    class type urlfilter PERMITTEDSITES
    allow
    Journal
    type of policy-card inspect SELF - AUX-OUT-policy
    class type inspect tsq-icmp-access
    inspect
    class class by default
    Pass
    policy-card type check IN and OUT - POLICIES
    class type inspect tsq-invalid-src
    Drop newspaper
    class type inspect tsq-http
    inspect
    service-policy urlfilter TSQBLOCKEDSITES
    class type inspect tsq-insp-traffic
    inspect
    class class by default
    drop
    policy-card type check OUT IN-POLICY
    class class by default
    drop
    !
    area inside security
    security of the OUTSIDE area
    source of security OUT-OF-IN zone-pair outside the destination inside
    type of service-strategy check OUT IN-POLICY
    zone-pair IN-to-OUT DOMESTIC destination outside source security
    type of service-strategy inspect IN and OUT - POLICIES
    security of the FREE-to-OUT source destination free outdoors pair box
    type of service-strategy inspect SELF - AUX-OUT-policy
    !
    Crypto ctcp port 10000
    !
    crypto ISAKMP policy 1
    BA 3des
    preshared authentication
    Group 2
    !
    crypto ISAKMP policy 2
    Group 2
    !
    ISAKMP crypto client configuration group vpntunnel
    XXXXXXX key
    pool SDM_POOL_1
    include-local-lan
    10 Max-users
    ISAKMP crypto ciscocp-ike-profile-1 profile
    vpntunnel group identity match
    client authentication list ciscocp_vpn_xauth_ml_1
    ISAKMP authorization list ciscocp_vpn_group_ml_1
    client configuration address respond
    virtual-model 1
    !
    !
    Crypto ipsec transform-set TSQ-TRANSFORMATION des-esp esp-md5-hmac
    !
    Profile of crypto ipsec CiscoCP_Profile1
    game of transformation-TRANSFORMATION TSQ
    set of isakmp - profile ciscocp-ike-profile-1
    !
    !
    !
    !
    !
    !
    the Embedded-Service-Engine0/0 interface
    no ip address
    response to IP mask
    IP directed broadcast to the
    Shutdown
    !
    interface GigabitEthernet0/0
    Description LAN INTERFACE-FW-INSIDE
    IP 172.17.0.71 255.255.0.0
    IP nat inside
    IP virtual-reassembly in
    security of the inside members area
    automatic duplex
    automatic speed
    !
    interface GigabitEthernet0/1
    Description WAN-INTERNET-INTERNET-FW-OUTSIDE
    IP address xxxxxx yyyyyyy
    NAT outside IP
    IP virtual-reassembly in
    security of the OUTSIDE member area
    automatic duplex
    automatic speed
    !
    interface Serial0/0/0
    no ip address
    response to IP mask
    IP directed broadcast to the
    Shutdown
    no fair queue
    2000000 clock frequency
    !
    type of interface virtual-Template1 tunnel
    IP unnumbered GigabitEthernet0/0
    ipv4 ipsec tunnel mode
    Tunnel CiscoCP_Profile1 ipsec protection profile
    !
    local IP SDM_POOL_1 172.17.0.11 pool 172.17.0.20
    IP forward-Protocol ND
    !
    no ip address of the http server
    local IP http authentication
    IP http secure server
    !
    IP nat inside source list 1 interface GigabitEthernet0/1 overload
    IP route 0.0.0.0 0.0.0.0 yyyyyyyyy
    IP route 192.168.1.0 255.255.255.0 172.17.0.6
    IP route 192.168.4.0 255.255.255.0 172.17.0.6
    !
    access-list 1 permit 172.17.0.0 0.0.255.255
    access-list 100 permit ip 255.255.255.255 host everything
    access-list 100 permit ip 127.0.0.0 0.255.255.255 everything
    access-list 100 permit ip yyyyyy yyyyyy everything
    !
    !
    !
    !
    !
    !
    !
    !
    control plan
    !
    !
    !
    Line con 0
    line to 0
    line 2
    no activation-character
    No exec
    preferred no transport
    transport of entry all
    output transport lat pad rlogin lapb - your MOP v120 udptn ssh telnet
    StopBits 1
    line vty 0 4
    transport input ssh rlogin
    !
    Scheduler allocate 20000 1000
    end

    A few things to change:

    (1) pool of IP must be a single subnet, it is not the same subnet as your subnet internal.

    (2) your NAT ACL 1 must be changed to ACL extended for you can configure NAT exemption, so if your pool is reconfigured to be 10.10.10.0/24:

    access-list 120 deny ip 172.17.0.0 0.0.255.255 10.10.10.0 0.0.0.255

    access-list 120 allow ip 172.17.0.0 0.0.255.255 everything

    overload of IP nat inside source list 120 interface GigabitEthernet0/1

    No inside source list 1 interface GigabitEthernet0/1 ip nat overload

    (3) OUT POLICY need to include VPN traffic:

    access-list 121 allow ip 10.10.10.0 0.0.0.255 172.17.0.0 0.0.255.255

    type of class-card inspect correspondence vpn-access

    game group-access 121

    policy-card type check OUT IN-POLICY

    vpn-access class

    inspect

  • I forgot my password of Access Manager how to reset it?

    I have to warn my kids to open some sites for example. gambling sites

    Hi Lapinou53,

    Try the step to remove the password below you have set for the Access Manager and later to reset it.

    Important This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, see the link below.

    Back up the registry

    http://support.Microsoft.com/kb/322756

    (a) click Start and choose run.

    (b) type regedit and click OK.

    (c) now, click on the little + sign to the left of the H_KEY_LOCAL_MACHINE.

    (d) continue to come down, always clicking on the plus sign to the left of the key named, through software, Microsoft, Windows, current Version , and political.

    (e) now click the scoring record.

    (f) in the right pane of the Regedit window, you will see an icon called key. Click on it and press delete.

    (g) close the registry editor.

    (h) to restart the computer, and restart Internet Explorer.

    (i) choose display and Internet, click on tools, Internet Options.

    (j) click on the content tab and click on disable. When asked a password, do not enter anything; Just click on OK. This will disable access Manager because he is no longer a password.

Maybe you are looking for