APEX Client info

Hi there,
Is there anyway to get the machine name or ip address of a APEX user?
Thanks...

What is APEX_WORKSPACE_ACCESS_LOG?
My set up is as folllows, I have Oracle HTTP server running on my local machine connected to a remote database. I am connected to apex via the Oracle HTTP server running on my machine, i would expect
sys_context('USERENV','IP_ADDRESS')
owa_util.get_cgi_env('REMOTE_ADDR')
to return the same value, shoudn't they?

Similar Messages

  • Webutil - get client info

    I have a problem, I'd like to gather client info and present that info as my forms application loads but unfortunatley I can't seem to get it to works. I can create a button and place code behind it and gather information that way so I'm confident that my set-up of webutil is ok.
    any ideas?

    I think its going to be impossible to help you since you make no mention of any symptoms of how this is not working, no error messages, no sample code.
    Try the webutil demo and see if that works - that has code for calling the client info webutil code.
    Regards
    Grant Ronald
    Forms Product Management

  • User Exit in 10g - To get client info

    Hi all
    We have a user exit call in forms 4.5 which returns client info (OS version).
    As we are going for 10g, the user exits will reside in AS.
    Is there any way by which i can use the same user exit to get client info now ?
    Thnx and Regards
    Sriram

    in the old days of forms 6i we created tons of java-applets for host-commands and so on.
    with the first version of webutil all the applets we created ourself were gone, because all functions were in the webutil-toolset.
    You can use it beginning with forms 9i. It's very good and easy to use. Look in OTN where the developer-downloads are
    Gerd

  • How to Set Client Info in OBIEE

    Hi All,
    Im accessing Oracle Applications table from OBIEE through database. How can I set the client info so that I can see the data.
    Thanks

    Hi,
    You can execute a script at logon. Check the 'Connection Scripts'-tab on your connection pool. Her you can define a 'Execute on Connect'-script.
    This way you can set your client_info en view the Oracle eBS table data.
    Good Luck,
    Daan Bakboord

  • How to extract System/Client Info from R/3

    Hi All,
    Can somebody tell me how do we get the system/client information along with our transaction data coming from two R/3 systems during extraction? If it is possible or not?
    If yes in which R/3 table we can find that information?
    Regards,
    Pooja

    Hi Pooja,
    The Source System is very specific for each info package . So when you create a infoPackage you are aware about the source System. So add 0SOURSYSTEM in the infoSource and make it a constant value(hard code it).
    Hope you got it
    Regards
    Happy Tony
    <b>Points == Thanks</b>

  • Is it possible to export aaa client info using csutil utility?

    I am able to import client and group info but need to export to verify they are all there as i have migrated from unix to windows...
    thanks

    Hi
    Unfortunately its not possible, but prior to v4.0 the network config is held in the registry.
    HKLM/Software/Cisco/CiscoAAAv3.x/Hosts
    Darran

  • I need Client info...please help me

    Hi friends,
    I'm just starting with JSP... so i can't do less than nothing :o( .
    How can I have some user information like, Operating syste, IP, browser info, video resolution,...
    I can ha ve this trough javascript, 4 example:
    <SCRIPT>
    document.write(navigator.appName)
    </SCRIPT>
    or
    <SCRIPT>
    <!--
    var screenW = screen.width
    var screenH = screen.height
    document.write(screenW + "X" + screenH)
    //-->
    </SCRIPT>
    or
    <SCRIPT>
    <!--
    if(navigator.userAgent.indexOf('IRIX') != -1)
    {document.write("Irix")}
    else if((navigator.userAgent.indexOf('Win') != -1) &&
    (navigator.userAgent.indexOf('95') != -1))
    {document.write("Microsoft Windows 95")}
    else if(navigator.userAgent.indexOf('Win') != -1)
    {document.write("Microsoft Windows 3.1 or NT")}
    else if(navigator.userAgent.indexOf('Mac') != -1)
    {document.write("Macintosh")}
    else {document.write("Other")}
    //-->
    </SCRIPT>
    How to catch this information trough pure JSP ?
    thank's you a lot
    bye bye
    ric

    Hi,
    unfortunately u can't gather all information with jsp. for example the dimension of the browser window is only accessable by javascript, because jsp works on the server, not on the client. some infos, you can gather with jsp, i've listed here:
    useragent -> request.getHeader("User-Agent");
    ip -> request.getRemoteAddr();
    referer -> request.getHeader("Referer");
    cu
    /m

  • Need Step by Step FME to FMS to Web Client Info

    I am new to FMS and FME. I have streamed media for several
    years using Windows Media Encoder (WME) to a third party server and
    then to clients on the net. I am trying to do the same thing with
    FME and FMS while bypassing the third party server. I am having no
    luck and getting errors when I just try to stream to FMS from FME
    even after trying other forum threads. Here's my info:
    Wnidows 2003 server
    Server IP address 192.168.0.1
    Router Address 192.168.0.2: port 3601 open
    Dynamic IP address on ISP (I can get my current ip address
    from "whatismyip.com. I also use "No-IP.com to provide a static
    address).
    I am using a Viewcast 230 Video capture card which seems to
    be working perfectly with FME. So that's not a problem.
    I do not have Dreamweaver or Flash CS3 on this machine.
    However I do have them on another computer.
    I need the "type this for Dummies" approach. And, then, what
    do I tell clients to enter in their browser in order to view my
    stream?

    The error I get after I have setup FME from my capture card
    is "Failure to connect to primary server.Please verify that your
    Server URL, application name is vaild and your internet connection
    is working and retry."

  • How to get client info

    Hi guys,
    I am building a client server JSF web application.
    How to retrieve details of client machine (e.g Lan ID) on the server side when client send a request to open a web page.
    Thanks.

    Hi Raymond,
    Thanks for the reply.
    I've tried in a simple servlet as following.
    req.getRemoteUser() returns null
    req.getRemoteAddr() returns proxy ip address.
    I still can't get the LAN ID of the client who send the request.
    Please help.
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class Remote extends HttpServlet{
         public void doGet(HttpServletRequest req, HttpServletResponse res)
                             throws ServletException, IOException{
              res.setContentType("text/html");
              PrintWriter out = res.getWriter();
              String rmtName = req.getRemoteUser();
              String rmtAddr = req.getRemoteAddr();
              out.println("<html>");
              out.println("<head></head>");
              out.println("<body>"+ rmtName + " ," + rmtAddr + "</body>");
              out.println("</html>");
         public void doPost (HttpServletRequest req, HttpServletResponse res)
                             throws ServletException, IOException{
              doGet(req,res);
    }

  • Mobile Home Users old managed client info after server reinstall

    Hello,
    I have a 10.6.2 server with some 10.5 clients.
    I reinstalled the server and rebuilt the OD from scratch.
    I rebound the computers, most of the already had a mobile account. Everything works apart from the Mobile accounts have the old group for managed preferences, when I hold down alt on login you see the old group name, even though that group no longer exists.
    I have now recreated the group to see if I can use that but it will not.
    The only thing I have found to do is to delete the user account and then restore it.
    Anyone know I can get my mobile users to use the new group?
    Many thanks,
    David Lee

    I sort of hesitate to jump in with all of my ignorance, particularly with no Mountain Lion experience, but I have seen in other threads that apple's recommendation was for Mobility settings to NOT use profile manager but to use good old Workgroup Manager.  Now this rec was for Lion Server.  I had heard that WGM was a goner in Mountain Lion, but I have seen some posts that it still lives for 10.8.  If that is true, you might try getting and using that and see if it makes any difference for mobility.  For those other issues in this thread, well . . . .
    In any case, good luck, sounds very exasperating.

  • What JDBC client info is sent/available in the DBMS?

    Hi all.
    If 10 JDBC connections are made to the same DBMS,
    (scott/tiger), five from one JVM and 5 from another, is
    there a query that a third-party can run that will be able
    to identify which five connections are from JVM A and
    which are from JVM B? For instance, if JVM A is on a
    different box than JVM B? Ie: does the client login protocal
    send the client IP address/OS process ID?
    thanks
    Joe Weinstein at BEA Systems

    thanks all for trying to help!
    I tried setting v$program in a property
    but it had no effect. I checked
    http://download-west.oracle.com/docs/cd/B19306_01/java.102/b14355/urls.htm#g1028323
    and that doesn't list V$PROGRAM as a property. The tinyurl gives a 404.
    The driver is 10.2.0.1.0
    The DBMS is Oracle Database 10g Enterprise Edition Release 10.1.0.4.0 - Production With the Partitioning, OLAP and Data Mining options
    Driver dr = new oracle.jdbc.OracleDriver();
    Properties props = new Properties();
    props.put("user", "joe");
    props.put("password", "XXX");
    props.put("v$program", "MY_PROGRAM_NAME");
    c = dr.connect("jdbc:oracle:thin:@XXX:1521:XXX", props);
    System.out.println("The driver is " + c.getMetaData().getDriverVersion() );
    System.out.println("The DBMS is " + c.getMetaData().getDatabaseProductVersion() );
    Statement s = c.createStatement();
    ResultSet r = s.executeQuery("select * from V$SESSION where USERNAME = 'JOE'");
    int cnt = r.getMetaData().getColumnCount();
    while (r.next())
    for (int i = 1; i <= cnt; i++)
    System.out.println(" value for " + r.getMetaData().getColumnName(i) + " is " + r.getS
    tring(i) + "\t");
    System.out.println("-------------");
    The DBMS is Oracle Database 10g Enterprise Edition Release 10.1.0.4.0 - Production
    With the Partitioning, OLAP and Data Mining options
    value for USERNAME is JOE
    value for SCHEMANAME is JOE
    value for OSUSER is null
    value for PROCESS is 1234
    value for MACHINE is joes_box
    value for TERMINAL is null
    value for PROGRAM is null
    ...

  • Client Info in foms 10g

    Query :
    how to get the client detials like : Client IP, Machine Name
    where the 10g form is accessed throught browsers.
    clients are accessing *10gforms through browser (http://servername:8889/forms/frmservlet)*
    I've tried :
    sys_context( 'userenv', 'ip_address' ) and
    UTL_INADDR.GET_HOST_ADDRESSbut they all return server-ip not client ip... please help me to get client IP + name

    Hello Michael Ferrante,
    I get the following err on compiling webutil.pll (D:\DevSuiteHome_1\forms) :
    Compilation errors on WEBUTIL_DB_LOCAL:
    PL/SQL ERROR 201 at line 9, column 12
    identifier 'WEBUTIL_DB.OPENBLOB' must be declared
    PL/SQL ERROR 0 at line 9, column 5
    Statement ignored
    PL/SQL ERROR 201 at line 18, column 12
    identifier 'WEBUTIL_DB.CLOSEBLOB' must be declared
    PL/SQL ERROR 0 at line 18, column 5
    Statement ignored
    PL/SQL ERROR 201 at line 24, column 5
    identifier 'WEBUTIL_DB.WRITEDATA' must be declared
    PL/SQL ERROR 0 at line 24, column 5
    Statement ignored
    PL/SQL ERROR 201 at line 29, column 12
    identifier 'WEBUTIL_DB.READDATA' must be declared
    PL/SQL ERROR 0 at line 29, column 5
    Statement ignored
    PL/SQL ERROR 201 at line 35, column 12
    identifier 'WEBUTIL_DB.GETLASTERROR' must be declared
    PL/SQL ERROR 0 at line 35, column 5
    Statement ignored
    PL/SQL ERROR 201 at line 40, column 12
    identifier 'WEBUTIL_DB.GETSOURCELENGTH' must be declared
    PL/SQL ERROR 0 at line 40, column 5
    Statement ignored
    PL/SQL ERROR 201 at line 45, column 12
    identifier 'WEBUTIL_DB.GETSOURCECHUNKS' must be declared
    PL/SQL ERROR 0 at line 45, column 5
    Statement ignored
    Failed to generate library.
    What must have went wrong ?

  • SCCm2012 R2 CU3 version # not showing on the site settings or in the console on the client info.

    Hi, I'm installing SCCM2012 R3 and applying Cu3 on in a new environment which never had SCCM/SCCM on.  Once it was installed successfully, I realize the CU level is 3 in the registry but the "Full Version" still stayed at 1000 instead of 1401. 
    the client upgrade package was applied and so was the console upgrade package.  When I open the console then look at the site version, its still at 5.00.7958.1000 instead of 5.00.7958.1401.  Also when I look at the devices client versions  are
    also at 1000 instead of 1401.  Is there something wrong here?
    Ri

    The site version in the console will always stay at the latest major build version, which in your case is the R2 version. The client will show the right version in the console after applying the latest CU update and after that running a heartbeat discovery
    (or manually trigger a data discovery cycle).
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • Set client info

    Hi all
    when i run my query in APPs its not giving any result.
    but when i call this below command and run the query it shows the result.
    call DBMS_APPLICATION_INFO.set_client_info('100');
    why so?

    Hi,
    Dbms_application_info. set_client_info allows you to store some data in the v$session view, where later queries can reference it.
    Apparantly, your query is doing something like:
    WHERE   department_id IN ( SELECT  client_info
                            FROM        v$session
                    )If you never call set_client_info, the condition above will never be TRUE.
    Sometimes this is used to make sure steps are done in a certain order: one step in the process sets client_info, and a later step checks that an appropriate value was stored there, and does nothing if it is not.
    This can also be a way to pass parameters to a view.

  • Unable To Get to Apex Admin Page

    Using :
    EBS : 12.1.3
    Apex Lstnr : 1.1
    Glassfish : 3.1.2
    OS : Oracle Linux
    I have started glassfish and can get to the glassfish DAD. When I type in the url for "apex_admin". The web page is blank, there is no error on the web page, it is blank.
    How can I check what the issue is.
    The ip address of the machine was recently changed. All hosts file were updated.
    Thanks

    What is the URL you are attempting? (client info obfuscated, of course)
    The alternative is the enter INTERNAL for the workspace field.
    Scott
    blog: [url grassroots-oracle.com]grassroots-oracle.com
    twitter: [url twitter.com/swesley_perth]@swesley_perth
    -- please mark any useful posts as helpful or correct, in the end it helps us all

Maybe you are looking for

  • BPM: maintain process order in BPM

    Hi folks, If you have multiple messages coming in a BPM, how do you maintain the order of processing? Thanks, Aarhyn

  • Updating ipod .. itunes acting weird

    When I plug in my ipod it will automatically start yo update. But now, it refuses to update and it says "Songs on the ipod 'kiwi'(my ipod name) cannot be updated because all of th3e playlists selected for synching no longer exist." What is going on?

  • Which Graphics Card

    Hey all, I'm looking to upgrade my white iMac 24 inch with the 7600GT 256meg to a brand new iMac 3,06ghz version. I now have a real problem though deciding on what graphics card to get. The GT 130 or the ATi card. Usually I'd get the best one but the

  • Generate Report for each value of a certain column in a different pdf file

    Hi, I am generating a Group Above report in Oracle Reports Builder 10g. The scenario is that this report needs to be generated for several branches of a bank. The report needs to get generated in a different pdf file for each branch. The report, I ha

  • Content Integration Q.

    I am developing a site on Webcenter 11g using JDeveloper 11.1.1.3. This question related to content integration. My initial public facing site will have a single template that encompasses about 4-5 pages. An "about us", "careers", "contact us". I wis