Concept of association and authentication?

Hello, hope someone can enlighten me on this.  We have a 5508 WLC with a few WAP's (1131's and 1242's).  Our wireless clients use certificate base authentication against our AD (i.e. both computer cert and user cert are required).  However, from time to time I see clients being associated but not authenticated as reported by the WLC.  Could it be possible, as some literatures indicate that a client can only be "associated" after it's successfully authenticated?  Perhaps I'm not quite clear about the concept.  Thanks in advance.
Eric

Hey Eric,
Clear as mud isn't it
I like to think of it this way, in the Library at our campus
there are hundreds of students most are using laptops. If we look at the AP's
in this area we might see 120 Associations for example but we may only see 65
Authentications. In this case 55 users laptops have Associated but not gone
through the Authentication process.
Here is Cisco's explanation;
Wireless Client Association
In the client association process, access points send out beacons announcing one or more SSIDs, data rates, and other information. The client sends out a probe and scans all the channels and listens for beacons and responses to the probes from the access points. The client associates to the access point that has the strongest signal. If the signal becomes low, the client repeats the scan to associate with another access point (this process is called roaming). During association, the SSID, MAC address, and security settings are sent from the client to the access point and checked by the access point. Figure 3-6 illustrates the client association process.
Figure 3-6 Client Association
A wireless client's association to a selected access point is actually the second step in a two-step process. First, authentication and then association must occur before an 802.11 client can pass traffic through the access point to another host on the network. Client authentication in this initial process is not the same as network authentication (entering username and password to get access to the network). Client authentication is simply the first step (followed by association) between the wireless client and access point, and it establishes communication. The 802.11 standard specifies only two different methods of authentication: open authentication and shared key authentication. Open authentication is simply the exchange of four "hello" type packets with no client or access point verification, to allow ease of connectivity. Shared key authentication uses a statically defined WEP key, known between the client and access point, for verification. This same key might or might not be used to encrypt the actual data passing between a wireless client and an access point based on user configuration.
http://www.ciscopress.com/articles/article.asp?p=1156068&seqNum=3
Cheers!
Rob

Similar Messages

  • How do I bind to directory server with SSL and authentication?

    I'm running Lion Server 10.7.3, Open Directory master. In Open Directory/Settings/LDAP, I've checked the box to Enable SSL and selected a (self-signed) certificate. In Policies/Binding, I've checked the box to Enable Authenticated Directory Binding.
    Testing with a client computer on which Snow Leopard has been freshly installed and fully updated, I went to System Prefs/Accounts to bind to the new directory server. The good news is, the binding was successful, and when the client initiates an AFP connection with the server, it uses Kerberos, creating a ticket as expected. (Which doesn't work with Lion clients, alas, but that's a seperate matter.)
    Here are the problems:
    1) It looks like the binding did not use SSL. By which I mean that when I opened Directory Utility and examined the LDAPv3 entry, the SSL checkbox was not checked. (If I then check the box, everything looks fine until I restart the client, after which I have a red dot. So I'm guessing that checking the box does nothing until after restart, and that it breaks the binding.)
    2) I was never prompted to authenticate for the directory binding.
    So I get that literally I'm *enabling* SSL and Authenticated Directory Binding, but it seems like the defaults are to bind without SSL or authentication, and there's no obvious-to-me way to force the binding to use those things. How do I do that?
    What I'd really like to do is *require* SSL and Authenticated Directory Binding. I want this because my belief (correct me if I'm wrong) is that if authentication is required to bind to the server, no one will be able to bind to my server without my permission, and that SSL offers a more secure connection to my server than not-SSL. How do I require these things, or do I not really want to?
    Thank you.

    You cannot connect to databases via Muse at the moment. Please refer: http://forums.adobe.com/message/5090145#5090145
    Cheers,
    Vikas

  • Associations and Links does not load when creating Business Components

    Hi guys,
    I am having a problem when I create my business components from table. Let's say that I start a new fusion web application. I then create my business components, enter the proper database connection settings. After everything is done, I am only getting my entities and my views, without any associations and links.
    The thing is that it worked the first time. Everything loaded as it should. I then asked a collegue of mine to try on his computer. Surprise, everything loads perfectly just like it did the first time I did it.
    I then tried on one of my linux virtual machine, via the same PC that I am having the problem. Again, the same problem, even if this is another JDeveloper instance (vm).
    I have read the thread 2187263 that mentions to re-create the DB connection. Again, it is not working.
    Associations and View Links missing in JDeveloper 11.1.1.3 and 11.1.1.4
    I saw this under the "Messages - Log" tab in JDeveloper :
    Aug 7, 2012 11:09:06 AM oracle.jdbc.driver
    SEVERE: 3F794B56 Throwing SQLException: 3
    Aug 7, 2012 11:09:06 AM oracle.jdbc.driver
    SEVERE: 6C9DD8BE Throwing SQLException: ORA-00936: missing expression
    I am using JDeveloper 11.1.1.6.
    Any help would do, since I do not want to uninstall JDeveloper and reinstall it again and again...

    Yes. In SQL Developer, when I click "Modify" on one of my tables, and then on "Foreign Keys", I can see them all.
    Like I said, it worked on a different workstation, and it worked before on my computer.

  • Problem in file association and main-class in JWS

    Hello , all
    I have a problem in JWS with file association and main-class. I have a java application that has two entry classes, one is appmain.class that is required to launch from web, and the other is player.class that is required to launch when user double-click the .abc extension file.
    In JWS 5.0+, there is a association element in JNLP syntax that can be used to make the file association with .abc extension. But how can I declare the main-class in JNLP file?
    If I declare the application-desc element as <application-desc main-class="player">, the player.class will be launched from web. But if I declare it as <application-desc main-class="appmain">, the .abc extension wil be associated to the appmain.class.
    Does anyone know how to solve this problem? Thank you for your kindly help.

    One way is to define a third main that refers
    to the other two, as appropriate. E.G. if the
    web based main does not include -open as
    its arguments, it is easy.class WebStartSpringboard {
      /** Call web based main unless args include -open. */
      public static void main(String[] args) {
        if (args[0].equals("-open") ) {
          OpenFileBasedClass.main(args);
        } else {
          WebBasedClass.main(args);
    }Other measures might be taken for a situation
    where the web based version does include a
    -open argument.

  • [ADF-11.1.2] Non Sense Associations and View Links while using Mysql as DB

    Hello,
    I recently started using Oracle ADF with MySQL at design time.
    I am following instruction from http://www.oracle.com/technetwork/developer-tools/jdev/mysql-and-bc-howto-082060.html
    With Jdeveloper, I created following tables with Mysql Database connection:
    1. Company : (CompanyID, Name)
    2. People : (PeopleID, FirstName, LastName, CompanyID [referencing CompanyID from Company Table])
    Problem 1 : Everytime when I click OK button to create a "new Table" in mysql database, Jdeveloper throws error "Table Doesn't not exists". and when I refresh database connection, it shows me the new table. I don't understand why Jdeveloper is throwing error !
    Once the table and linking between them is done, I can see 1-to-many relation between COmpany and People table on Database diagram ...
    In Model Layer, I go for "Business Components from Tables" from 'New Gallery' where in I select both tables from mysql database to create EO & VOs of respective Table.
    At the end, along of EOs and VOs, it also create following two associations and VL:
    1. PeopleCompanyFkAssoc and PeopleCompanyFkLink >> 0..1 to * Cardinality Between People.PeopleID and People.CompanyID
    2. PeopleCompanyFkAssoc1 and PeopleCompanyFkAsoc1Link >> 0..1 to * Cardinality Between Company.CompanyID and People.CompanyID
    Problem 2 : 1st Association and VL doesn't make any sense at all !!! If Jdeveloper recongnize relationship correctly between tables on Database diagram and why can't it recongnize correct relationship while creating associations ? This problem is occuring for every table I create in Mysql database.
    Also, http://www.oracle.com/technetwork/developer-tools/jdev/mysql-and-bc-howto-082060.html indicates following:
    "+ADF BC does not automatically find the primary keys on your MySQL tables. That has two side effects. You'll see some errors when creating and modifying BC objects, and you'll have to define your BC primary keys manually. However, these errors should not affect your project.+"
    But when my EO was created, it was already having Primary Key selected for correct attributes.
    Anyways, please help in resolving Problem 2 ...

    Timo,
    Thanks for your reply but there is lot of headache, human errors in removing such VO and associations.
    Jobinesh,
    I am doing exactly what is described in here http://www.oracle.com/technetwork/developer-tools/jdev/mysql-and-bc-howto-082060.html
    Expected Behaviour:
    1. Create Following Association and VL, which is working fine.
    PeopleCompanyFkAssoc1 and PeopleCompanyFkAsoc1Link >> 0..1 to * Cardinality Between Company.CompanyID and People.CompanyID
    2. Do NOT Create any other non sense Association and VL, but it is creating
    PeopleCompanyFkAssoc and PeopleCompanyFkLink >> 0..1 to * Cardinality Between People.PeopleID and People.CompanyID
    What's the relationship between PeopleID and CompanyID ?
    Screenshot: http://imageshack.us/g/64/assock.jpg/
    Problem 1: I was trying to create table "Table222" I got error as shown in screen shot.
    Problem 2: Screen shot of Associations

  • Concept of hide and clear

    Problem understanding hide and clear concept...
    for example, in the code below, it works fine with the write statement and have no problem with the output value when use the back button.
    however, when i use it to call a transaction (eg. mm03) and pass the value over, it seems to be a value behind (eg. when i click on row1, it gives a previously stored value. Press back button and when i click on row2, it gives me value of 1. Press back button and when i click on row5, it gives me value of 2. so the clear doesn't seem to "clear")
    what could be the problem? hope to understand this concept of hide and clear better (eg. when to clear?)...
    Cheers,
    Charles
    ABAP newbie
    DATA number(18) TYPE c.
    START-OF-SELECTION.
      CLEAR number.
      DO 9 TIMES.
        WRITE: / 'Row', (2) sy-index.
        number = sy-index.
        HIDE number.
      ENDDO.
    AT PF8.
      CHECK NOT number IS INITIAL.
      CALL TRANSACTION 'MM03'.
      SET PARAMETER ID 'MAT' FIELD number.
      CLEAR number.
    *  WRITE: / 'Cursor was in row', (2) NUMBER.

    hi,
    chk this.
    HIDE
    Basic form
    HIDE f.
    In an ABAP Objects context, a more severe syntax check is performed that in other ABAP areas.
    See Constants not allowed in HIDE area.
    Effect
    Retains the contents of f related to the current output line.
    When the user selects the line from the list f is automatically filled with the retained value.
    The selection can occur in:
    AT LINE-SELECTION
    AT PFx
    AT USER-COMMAND
    READ LINE
    The contents of the field do not have to have been displayed using WRITE in order for you to retain them.
    The HIDE statement does not support deep structures (structures that contain internal tables).
    Useful system fields for interactive reporting are listed in the System Fields for Lists documentation.
    Note
    Lines or components of lines of an internal table that you address using a field symbol (see ASSIGNING addition to the READ and LOOP statements), cannot be retained using HIDE. You can store them using a global variable instead.
    Note
    Runtime errors:
    HIDE_FIELD_TOO_LARGE: The field is too long for HIDE.
    HIDE_ON_EMPTY_PAGE: HIDE not possible on an empty page.
    HIDE_NO_LOCAL: HIDE not possible for a local field.
    HIDE_ILLEGAL_ITAB_SYMBOL: HIDE not possible for a table line or component of a table line.
    and also a sample program.
    report zxy_0003.
    data: begin of itab occurs 0,
    field type c,
    end of itab.
    itab-field = 'A'. append itab.
    itab-field = 'B'. append itab.
    itab-field = 'C'. append itab.
    itab-field = 'D'. append itab.
    itab-field = 'E'. append itab.
    loop at itab.
    format hotspot on.
    write:/ itab-field.
    hide itab-field.
    format hotspot off.
    endloop.
    at line-selection.
    write:/ 'You clicked', itab-field.
    It kind of "remembers" what is written, so that when you click on it, it knows what the value is.
    Regards,
    anver

  • Concept of util and helper classes

    whats the concept behind helper and util classes, how to divide code according to both perspective would any one state clear separation line b/w them.

    They're just names, dude

  • Re : Remove System and Authentication from QaaWS login dialog

    Hello there,
    Hope all is well. I am trying to get rid of OR pre-populate with default values for System ( CMS) and Authentication boxes from QaaWS login dialog. I know you can do it in Desktoplauch and Adminlaunch ( Yes I am using BOXI R2 SP5) ...by modifying/editing web.xml deployment descriptor ....where would you do this for QaaWS login boxes ....DSWS application ?
    BTW, my .SWF O/P doesn't reside in Infoview ans is out of BO environment. Also, I want users to login with there AD login....hence didn't want to embed credetials in XC.
    Thanks in advance,
    Sam
    Edited by: samshaw on Jul 28, 2010 4:10 AM

    Hi David,
    Sorry I appreciate this is an old post, but I seem to be going around in circles.
    I understand how to generate and pass the sessionID into a SWF, and I can see the QaaWSHeader.sessionID element in the QaaWS WISDL, but do you or anyone else know how to pass the session ID back using this element?
    There are no obvious options when in Dashboard Design (Xcelsius) - I tried appending QaaWSHeader.sessionID to the URL call also with no succes (just seems to ignore it).
    Does anyone know how this can be achieved.
    My ultimate objective is a SWF hosted outside of Infoview that can consume and share the one session for multiple QaawS and OpenDoc calls.
    Thanks in advance
    Wilf

  • Associations and extended objects

    Hi,
    I'm just beginning to look at bc4j so bear with me if I ask a stupid question :-)
    The thing is that I'm experimenting with simple inheritance and I cant seem to get the associations to work like I would expect. I have 3 classes (business components). Customer, Account (which in my model is an abstract superclass) and SavingsAccount. And there is an association between Account and Customer in my model implying of cause that there is an assosiation between all subclasses of Account (SavingsAccount) and Customer.
    Account and SavingsAccount are in seperate tables - mabye thats where my problems lie ?
    But no such associations are created automatically by the 'create database objects' command.
    Is this also the experience of others here ? What it means is that my model gets 'abused' when I create the associations and I'm not too happy about that.

    Well, then I'm stumped as to why that won't work for me. If I have the following code:
    import java.util.*;
    public class Test1
        private ArrayList<E extends Integer> aList;
        public Test1()
            aList = new ArrayList<Integer>();
        public void run()
            for (byte i = 0; i < 10; i++)
                Integer o = new Integer(i);
                aList.add(o);
        public ArrayList<E extends Integer> getResults()
            return aList;
    }I get "> expected".
    Your last piece of code shows what I will probably end up doing, as this just can't seem to work, i.e. getting each Object1 and casting it to an Object2.
    What I need, is to initially build an ArrayList containing Object1s. Then my Object2 class is an extension of Object1, and therefore I else want to have that ArrayList returned, but the info I need now are Object2s. So basically build an ArrayList of Object1s, needed in that particular class, make a method that returns it, invoke that method in another class, but have that ArrayList contain Object2s instead.
    While I could iterate through the elements, I will also need to return the ArrayList with Object2 elements in it from the other class, so I prefer being able to do it in one swoop, using generics, if at all possible. Which it seems not to be.
    Edited by: ThemePark on May 21, 2008 2:14 PM

  • APs showing 'not associated' and 'not registered' in PI 2.1

    I have got a weird issue in PI 2.1.0.0.87.
    WiSM2, running on version 7.4.121.21, shows reachable and managed/synchronized in PI. However, the APs managed by it show 'controller IP->not associated' and 'not registered'. It is been confirmed that the SNMP/TELNET/HTTP creds are correct and all the APs in question are showing fully operational in WLC. When the user trying to delete the entry in PI, it always failed without any messages.
    Any ideas why it happens?
    Thanks!

    Remove the controller and add again, see if the APs are reflected then
    Troubleshoot using:
    http://www.cisco.com/c/en/us/td/docs/net_mgmt/prime/infrastructure/1-2/user/guide/prime_infra_ug/troubleshootaps.html

  • Association and ViewLink Object naming

    Hi,
    Jdev: 11.1.1.6
    I have recently upgraded to jdev 11.1.1.6. While creating BC objects, the associations and view links are created with weird names like 'SysC0012692Assoc' -{which actually is a fk between Calendar and CalendarPeriodicities entities} and 'SysC0012692VL' -{Which is a view link over the previously created association) and this is the case with all the associations and view links created.
    I never faced this earlier on 11.1.1.5 or 11.1.1.4 versions. Is there any setting under preferences that needs to be turned off to get the regular naming with understandable names. Or am i missing something.
    Thanks,
    Srikanth.
    Edited by: 905147 on May 6, 2012 11:10 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Srikanth,
    JDeveloper derives default association names by converting the foreign key constraint names to a Java-friendly name and adding the Assoc suffix.
    so if the foreign key name in the database is SysC0012692, then the association name will be SysC0012692Assoc.
    >
    I never faced this earlier on 11.1.1.5 or 11.1.1.4 versions.
    >
    please re-check the FK name in the database?
    are you sure that you did not rename the association after Jdeveloper created it?

  • Concept of sparse and densely populated cubes

    Hi BW Experts,
    Does SAP have a concept of sparse and densely populated cubes?
    Basically, are there any performance differences in a cube with little transactional data loaded and a cube with a lot of transactional data loaded?
    Thanks,
    Rohan

    Hi dear,
    about compression, refer to the following link:
    http://help.sap.com/saphelp_bw33/helpdata/en/ca/aa6437e7a4080ee10000009b38f842/frameset.htm
    When you compress an infocube you bring data from different requests (ID)together into one single request (even if in this case you cannot do anymore any selective deletion...)
    About density and sparsity, look at Wikipedia (!!!):
    http://en.wikipedia.org/wiki/Essbase
    Hope it helps!
    Bye,
    Roberto

  • When trying to print I get error code 30892 and authentication required how do I fix this?

    I am new to my Mac and am having trouble printing.  I keep getting error code -30892 and authentication required and it can't print.  I have sharing features open on both my PC and my Mac.  Any suggestions?

    Doesn't sound like any error number I'm familiar with. What's your set-up? Are you using a print server?

  • [HELP] connection and authentication drivers

    Hello,i'am an italian student
    i'd want to use an authentication driver to force the user to authenticate (insert Username and password) for Olap access and BIcatalog access when launching my java client.At the moment the authentication is done through the configuration.xml and DAD files,but i'd want that is the user that specify his credentials.
    I studied the guide "managing security" but i did not understand how to register and use this driver.
    I tried to add the line
    <PluggableDriver DriverType="a" InvocationLevel="session" Required="true"
    DriverClass="oracle.dss.appmodule.server.DSSApplicationModuleAuthenticationDriver"/>
    in the configuration.xml file,but it does not work.
    Someone knows how to use the connection and authentication drivers?
    Thanks very mutch for help

    Is there really no one who can help me with this? 

  • Separate LDAPs for Users information and Authentication

    Does anyone know how to point the Directory Provider and Authentication provider to different LDAPs? This is very easy to do with Policy Server by configuring the login-config.xml file to use the com.adobe.edc.server.provider.authentication.login.LDAPLoginModule class and specifying the LDAP connection properties. However, I have yet to find a way to do it with Workflow. I tried doing it exactly the same way as policy server, but that does not work.
    Has anyone done this before, or know how to do it without writing code? I don't want to have to write my own LDAP authentication provider if one already exists (which it does for Policy Server).

    Hello Linda,
    This is possible. You can have project online and Project Pro for office 365 on two different tenant. Once you install Project Professional, you need to configure the account in project professional to connect to your project online tenant. Below article
    contains the steps connect to project server from Project Professional. In step 4 user have to enter the URL of Project online tenant and when they try to connect they need enter their Project Online credentials. Everything should work as expected.
    http://office.microsoft.com/en-in/project-help/connect-log-on-to-project-server-HA010373238.aspx
    In fact once you install the Project professional for office 365, you can connect to any PWA instance to which you have access to (on-premise and online).
    Hope this helps!
    Kiran K.

Maybe you are looking for