Client attributes/information

Hello,
I am developing a video conference application using flex/FMS. I am done with the basic coding and things are working fine.
But I am not able to figure how I can make additional information about each client available to the other clients. Say, I want all the clients to know each others location (lat and lng).
Do I need to pass the same as parameters in nc.connect() ??
nc.connect(rmtp://location, userID, userName, lat, lng)
How do I handle these parameters on the server side, in the application.onconnect() method??? And how will this information be available to the other clients??
Your quick reply will be highly appreciated.
Regards,
Shiv.

Hi,
You can do this directly in OAM, with option "a" (using auxiliary object class). You configure OAM to use the main person object class (inetorgperson) and then you can associate extra auxiliary object classes to it - and header variables can be set from any of the attributes that are in the user's profile, both main and auxiliary.
Regards,
Colin

Similar Messages

  • Client certificate information

    Hello,
    Does anyone have a definitive answer for how to retrieve
    client certificate information in coldfusionMX7 using Apache 2.0.x
    (just http server, not tomcat)? I can get it out of the environment
    in a perl script...I just don't know how to pass it to
    coldfusion..the client cert CGI variables are null. I've also tried
    using jsp's to retrieve the info. The information is obviously not
    getting to jrun. I've searched high and low, nobody seems to know
    what to do.
    Thanks
    Apache 2.0.x (has been configured with SSLOptions +StdEnvVars
    +ExportCertData)
    Coldfusion MX7

    IVootmon,
    I am trying to do the same on ColdFusionMX7 and ColdFusion8.
    The ColdFusion CGI variables for CERT_ are all empty. Did you find
    a solution to pass CERT_ info to ColdFusion? Thanks.

  • Client Attributes are not coming in Inline Popup

    Hi All,
                          I have created an Inline popup which will show when user hovers the full name of an employee. The code which i have designed is
                                                    <af:outputText value="#{row.FullName}" id="ot2" clientComponent="true">
                                                        <af:clientAttribute name="DOB" value="#{row.DateOfBirth}"/>
                                                        <af:clientAttribute name="FullName" value="#{row.FullName}"/>
                                                        <af:clientAttribute name="Email" value="#{row.EmailAddress}"/>
                                                        <af:showPopupBehavior popupId="p2" triggerType="mouseHover"
                                                                              align="endAfter" alignId="ot2"/>
                                                    </af:outputText>
                                                    <af:popup autoCancel="disabled" id="p2" contentDelivery="lazyUncached"
                                                              launcherVar="source" eventContext="launcher">
                                                        <af:noteWindow id="nw1">
                                                            <af:panelFormLayout id="pfl1">
                                                                <af:panelLabelAndMessage label="FullName" id="plam1">
                                                                    <af:outputText value="#{viewScope.FullName}" id="ot4"/>
                                                                </af:panelLabelAndMessage>
                                                                <af:panelLabelAndMessage label="DateOfBirth" id="plam2">
                                                                    <af:outputText value="#{viewScope.DateOfBirth}"
                                                                                   id="ot5"/>
                                                                </af:panelLabelAndMessage>
                                                                <af:panelLabelAndMessage label="Email" id="plam3">
                                                                    <af:outputText value="#{viewScope.EmailAddress}"
                                                                                   id="ot6"/>
                                                                </af:panelLabelAndMessage>
                                                                <f:facet name="footer"/>
                                                            </af:panelFormLayout>
                                                        </af:noteWindow>
                                                        <af:setPropertyListener from="#{source.attributes.EmailAddress}"
                                                                                to="#{viewScope.EmailAddress}"
                                                                                type="popupFetch"/>
                                                        <af:setPropertyListener from="#{source.attributes.FullName}"
                                                                                to="#{viewScope.FullName}"
                                                                                type="popupFetch"/>
                                                        <af:setPropertyListener to="#{viewScope.DateOfBirth}"
                                                                                from="#{source.attributes.DateOfBirth}"
                                                                                type="popupFetch"/>
                                                    </af:popup>
                                                </af:panelGroupLayout>
                                            </af:iterator>
                                        </af:panelGroupLayout>
    but i get only FullName in my popup.DOB and Email never comes up. I have made sure that DOB or Email data is present for the employee i'm hovering.
    Any idea why am i not getting other values?

    Thanks FrankNimphius. But it worked with client attribute !!!
    <af:clientAttribute name="Email" value="#{row.EmailAddress}"/>
    and
    listener 
    <af:setPropertyListener from="#{source.attributes.EmailAddress}"
                                                                                to="#{viewScope.EmailAddress}"
                                                                                type="popupFetch"/>
    names were not matching. so i changed to
    <af:setPropertyListener from="{source.attributes.email}"
                                                                                to="#{viewScope.EmailAddress}"
                                                                                type="popupFetch"/>
    it worked

  • User Attribute information in OIM

    Hi All,
    Can any one tell me, which table contains User Attribute (Default and Custom (UDF fields)) information?
    Thanks.

    dewan.rajiv wrote:
    Related to User then Check USR;
    Also check SDC for Labelshttp://idmclub.wikidot.com/usr
    http://idmclub.wikidot.com/sdk
    http://idmclub.wikidot.com/sdc
    Also, attribute information is stored in MDS (http://idmclub.wikidot.com/metadata-store) in the following documents:
    /file/User.xml - for users
    /db/identity/entity-definition/Organization.xml - for organizations

  • Client attribute returning null value in adf

    hi i am using jdev version = 11.1.1.5.0
    I have 2inputs and 2buttons in my adf form.One of my input boxes calls a javascript function using client listener,I need ids of remaining 1input and 2buttons and I am using client attribute.
    All the controls have their respective client attribute which gets their id from managebean like following:
    <af:clientAttribute name="inpAttr1"  value="#{manageBean.inp1Binding.id}"/>
    <af:clientAttribute name="inpAttr2"  value="#{manageBean.inp2Binding.id}"/>
    <af:clientAttribute name="btnAttr1"  value="#{manageBean.btn1Binding.id}"/>
    <af:clientAttribute name="btnAttr2"  value="#{manageBean.btn2Binding.id}"/>
    This javascript function is called on key press event in input box 1.:
    function clientEnterKeyPressEvent(evt) {
          try {
              var evtSource = evt.getSource();
              var _inp1 = evt.getSource().getProperty('inpAttr1');
              var _inp2 = evt.getSource().getProperty('inpAttr2');
              var _btn1 = evt.getSource().getProperty('btnAttr1');
              var _btn2 = evt.getSource().getProperty('btnAttr2');
              evt.cancel();
          catch (e) {
            alert("Error caught:" + e.message)
    But here i get _inp2,_btn1,_btn2 values null.
    Using client attribute i am getting the id of only one control, on which the event is invoked at the time of event.
    WHat could be the issue?
    Thanks

    Frank ramandeep singh - oracle
    Yes i am getting all values on hardcoding it.
    But here the scenario is ,I am getting id of control which invokes the javascript function i.e when i enter something in input1 javascript function is called and i get id of input1 only,similarly when i enter something in input 2 respective javascript function is called and i get id for input 2 only.
    Hope you got the scenario

  • Error: "Mobile java client attributes not maintained" while activating DO

    Hi All,
    i got error while activating the Data Object: "Mobile java client attributes not maintained".
    how to resolve this error, and why this error is coming?
    I am migrating the MI 2.5 application into the MI 7.1 application.In new MI 7.1 application some synbo's are imported using the text file and some new data objects are created. Imported synbo's are activated successfully, but newly created objects are not activated because of the above error.
    Can we solve above error or is there any restriction that in Migration project ( project with backward compatibility ) we can't create new Data objects?
    Thanks & Regards
    Siva Sankar Nulaka.

    Hi Siva,
    Please refer to following document for the solution.
    [http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/e0036580-ab90-2c10-b7a4-f71ba4f43096&overridelayout=true|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/e0036580-ab90-2c10-b7a4-f71ba4f43096&overridelayout=true]
    It should solve your problem.
    Thanks & Regards,
    Abhijit

  • Accessing client session information in ejb

    Hi!
    My prblem is the following. We want to access ejb from a servlet. We need some client session information in ejb (e.g. client username, client terminal name, client ip address) for several reason. Could anybody suggest a solution other than passing all the data through the parameter list of every method?
    Thanks for any help.
    Zoltan

    If you use stateful session bean, you can pass this information, when you create it.

  • SO attribute information copied onto AR

    Hi,
    Sales Order header attributes(DFF) information is passed on to AR invoice header attributes(DFF) which is causing issues in 11i.
    1) Is this standard functionality ?
    2) Is it possible to prevent some of the SO attributes information flowing into AR?
    Thanks

    Hello,
    Seems this is an intended functionality and we cannot aviod interfacing to AR!
    check this link for more info
    *Is There A Way Restrict Mandatory Order Header DFF Attributes 1-15 From The Sales Order From Being Autoinvoiced To AR? [ID 1311225.1]*
    Thanks
    -Arif.

  • Client side Information via Web

    Anyone have any experience in accessing client side information
    via Web Forms. I need to pull user info from their machine vice
    the server, which is actually running the form.
    null

    Jeffrey Porter (guest) wrote:
    : I'm looking for information on how to construct the link
    between
    : the web server and the database such that the client is not
    : required to establish the database link. Everything is server
    : side with the client passing in values via web submits and
    : information returned via constructed HTML. I think the reason
    : this is all constructed this way is to fit into the JAVA
    security
    : model for web based application processes. I have constructed
    : the JDBCODBC bridging with the client making the dattabase
    : connection but now I want the connection shifted from the
    client
    : to the server.
    (1) In your system there are 3 nodes. The first one is the web
    client running a browser posting HTTP request to your web server.
    Your web server is a server to the web client but also a client
    to your Oracle database server. From the web client browser you
    cannot communicate directly with the Oracle server directly
    through JDBC. Your CGI scripts (you have not specified what web
    scripting tool you are using) written in Java may communicate
    with your Oracle database using the JDBC drivers available in
    your $ORACLE_HOME/jdbc/lib/classes111.zip file.
    (2) You do not need any JDBC-ODBC bridge to access Oracle
    databases. You should use the Oracle JDBC drivers.
    NM
    null

  • How can I prevent client certificate information from being written to kjs log?

    I have an application running on iPlanet Application server 6.0 that makes an SSL connection to an external site using client certificate. Problem : Every time the connection is wrapped in a client certificate, the entire SSL handshake including the key-exchange information is automatically being logged in the kjs log. How do I prevent the kjs from writing this inormation to the log ?

    How are you making this SSL connection? Whatever library you are using must be writing to System.out().
    You could avoid logging these messages by using file logs rather than console logs. But you could probably disable these messages by working with your SSL libraries as well.

  • How to retrieve client certificate information from sender mail adapter

    Hi, expert:
    I have a requirement to verify the validation of coming email with digital certification. The mail is with digital certification. If the coming email is valid, I 'll get the attachemt of the mail for further processing. I have a sender mail adapter and receiver file adapter configued.
    I have already my own developed adapter module, which is configued in mail adapter. My question is how to retrieve the detailed certificate information in the adapter module developed by myself. Is it feasible?
    Thanks a lot.

    The WL-Client-Proxy cert should be the cert used on the proxy side if SSL is configured between Apache and WebLogic, so I believe that is the reason why that does not work. Basically, the problem here is that SSL is end-to-end, and the two ends of this transaction are the client and apache.
    That said, when you add the +ExportCertData option, this should record the client's SSL certificate in the vairable SSL_CLIENT_CERT.  So you should be able to use request.getAttribute("SSL_CLIENT_CERT").
    See:
    http://www.modssl.org/docs/2.8/ssl_reference.html
    If this doesn't work for you (which is possible if the WL_Proxy is doing something funny to the request), it is probably best just to dump out the entire contents of the session, and see what you have:
    for (Enumeration e = request.getAttributeNames() ; e.hasMoreElements() ; ) {
    String attr = (String)e.nextElement();
    System.out.println("ATTR = " + attr);
    System.out.println("VAL = " + request.getAttribute(attr));
    If you can't see any SSL certificate there, you will have to work out some way to pass this on manually.
    cheers,
    Trevor

  • Need example of client requesting information from server

    I have a thick-client application that also acts as a server for remote clients.
    I have it set up so that they send messages to each other. The server can initiate action on the client and the client can initiate action on the server. All of my communication is essentially asynchronous.
    Now I want to start adding more transactional synchronous interactions, for instance:
    - User initiates action on client
    - Client gets data from server
    - Client uses that information to perform further action
    Is there a good example or tutorial for someone who hasn't done that before?

    If you want to keep it a J2SE app im not sure you can use JMS to do it, but would have to use RMI or just plain network programming, with lots of thread control.
    Anyhow if you would like to do it the easy way run a J2EE server, find a small one, but one that supports JMS (think one of the minimal installs of jboss might be good). Make a topic called messageExchange or somethign. Connect server/client to the topic. Can use MVC or something as a messagelistener. You can even persist the topic (DurableTopic) to log events to a database.
    This is a little job that requires little planning compared to setting up a thread hieracy with sockets flying all around. And easier than rmi.
    I have really never tought of using JMS in outside of an J2EE container, but there might be some plugins or api's that support this for J2SE.
    Thomas

  • [SCCM 2012 R2] How to speed up refreshing of Client Activity Information

    Hi All,
    How to force update from real HW inventory information in Database to Client Activity Status (Hardware Inventory)?
    Thank you in advance.
    Regards,

    I created a [semi-automated] script that reads All System Collection and I want to find out what computers never done HW inventory and what computers did not report HW inventory for more than 60 days.
    I have a workaround creating separate collections for this script but I want to solve this in easiest way.
    Additionally missing of proper/real HW Inventory information in SCCM console is misleading new SCCM admins.
    Regards,

  • Client OS Information Missing In ADUC

    I helping someone with an issue where when they add a Windows 7 client to the domain the OS information is not in AD. I've looked at ADSIEDIT and it is not there. I've also searched TechNet, google and Bing but do not see anything relating to this issue.
    I'm hoping someone here has an idea.
    This is started happening recently but not around the time of any patches to the DC's. I've asked them to remove and read to the domain but it does not fix the issue. They are running fully patched 2003 DC's.
    Any ideas?
    Thanks

    I would agree with Elaine where you need to wait for AD replication to take place. You can check if something is wrong in AD replication using repadmin
    command.
    In case, you still do not see the information in ADUC, please try executing this command line and see if it displays the OS: 
    dsquery * -filter "(&(objectCategory=computer)(name=ComputerName))" -attr operatingsystem
    Just replace ComputerName with your computer name.
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

  • Redaction, removal from video of client personal information.

    Hi All...
    My searches on redaction - all reference Adobe Acrobat and PDFs....
    What if I'm filming an interview with cuts to computer monitor/software - where some fields may have private information....
    Name, SocialInsurance Number, CreditCard Numbers etc. etc.
    Is there a purpose built tool - or best practice for redaction of this information....
    I've thought of just using a text-box (the titler tool) with an opaque color/fill... BUT my fear is that even after
    I burn/encode the source AdobePremiere content to MP4/etc. someone might still be able to reverse engineer or extract
    the video that is beneath these text-box/titles...
    Sorry - if this has been answered already...
    Seems to me - to be a very common use-case...
    Also - any links/thoughts on dealing with the strobe/synch-lines on video taped computer monitors...
    Can this be done in post-edit..... or is this something that is mitigated by choosing the right frame-rates - while recording ?
    Really hope someone here - has more thoughts on this.
    Thanks
    Frank

    Hi Jim...
    I'm marking this correct - because it seems you have experience with this - and I trust your information.
    I just need clarification...
    >>is really of little consequence
    I disagree !
    Excuse my inexperience with this...
    * Is the "Burn in" approach of flattening the timecode/subtitle information - in a way - that prevents seperating out this information again an option that is selected when one "encodes" the source to a video format.
    * Or is it - an innate characteristic - of the video format that one chooses ? For example - if you choose one type of video format to export to - you have no security (titles can be turned off) but if you select some
    other video format - then you get better security ?
    I need to assure/guarantee our security auditors that this information will be lost once the source is encoded and distributed...
    Do we have some best practice on this ? articles discussing what approach/format etc. is best...
    Hope I'm not complicating...
    Thanks
    Frank

Maybe you are looking for

  • Screen display looks fuzzy using xf86-video-intel on a HP Pavilion 23

    Hello, First off I want to say, thank you for Arch! Been using some distros on and off and I think I found my /home! I made a full plunge into Linux a bit ago after some Windows 8.1 issues, switched to Arch and not looking back. Anyways, So far all m

  • FONTS NOT SHOWING UP IN ILLUSTRATOR

    Help! I have over 200 fonts that would originally show up in the font list on Illustrator...but now it's only showing around 10.  I can access them in other programs.  What do I do?

  • Asset transaction cancel.

    Auc transaction wrongly settle with other asset  transaction done  through MIGO & MIRO Done & payment made to vendor  can we cancel that migo transition and repost again with write class or is there any other way to correct this.

  • Disk Utility frozen?

    Hey all Got a WD My Book and plugged it into my iMac 3.06. Not realizing that it was FAT formatted, I started moving stuff onto it... then realizing the 4GB file size limit that the Windows format has, I backed up my data and ran disk utility to refo

  • Formcheck in JSP - something out there?

    hi, I want to implement a mechanism in JSP that checks form inputs and displays some kind of message when certain requirements are not fulfilled. somewhat similar to the ASP.net webforms. does anyone know where I could get the code to accomplish that