IP Address of the client/browser

In my WDA application I need to find out the IP address of the client/browser.
Is this available somewhere (attribute / method of the component controller?)??
Thanks,
Brad

Hi Brad,
Go to webdynpro application, of the created webdynpro component, there u find the URL ,the  host name.
after that add that hostname in c:
windowssystem32\drivers\etc\hosts file.
for eg: 10.10.30.20   localhost
The ip adrress, will be either local host (if server installed in same system) or the ip adrress of the installed server system.
Cheers,
Mary

Similar Messages

  • How to capture the IP address of the client Machine.

    HI...
    I want to capture the ip address of the client machine and store it in a field.
    My client wants to capture the ip address so that he can easily trace out from
    which client system particular work is done.
    if there any pre defined function or syntax is there to get the IP address...
    with cheers
    sprity....

    Hi.....
    i have a attached the web_util.pll n web_util.olb and run the form...
    it is still staying web_util.clientinfo is not declared....
    i want to know where to attach the olb thru subclass...
    i tried in attaching the text item(ip_addr) property.After clicking the subclass it show the we_util.olb.
    but there is no value for in it for both object n property.
    i think if i get info on this then my work is done....
    anyone throw a light on my doubt...........
    with cheers
    sprity...

  • Can I get information regarding the client browser using JSP

    can I get information regarding the client browser using JSP. like.. name, screen resolutions, font type, screen width and height of the browser etc.,
    if possible then please give me the samples..
    thanks,

    can I get information regarding the client browser using JSP. like.. name, screen resolutions, font type, screen width and height of the browser etc.,
    if possible then please give me the samples..
    thanks,

  • How to get the IP address of the Client machine???

    Hi All,
    I am trying to get the IP address of the Client machine and using the code
    SELECT SYS_CONTEXT('USERENV','IP_ADDRESS') FROM DUAL;
    but this query only return server ip address but i want Client machine IP .
    How can I get that. Please help.

    SowmyRaj wrote:
    Hi All,
    I am trying to get the IP address of the Client machine and using the code
    SELECT SYS_CONTEXT('USERENV','IP_ADDRESS') FROM DUAL;
    but this query only return server ip address but i want Client machine IP .
    How can I get that. Please help.Which client's IP addess?
    SYS_CONTEXT('USERENV','IP_ADDRESS') should give you the IP address of the machine from which the client is connected. So you are running sqlplus from Server?
    To check other session's information, you can check V$SESSION view.

  • I am using Quickbooks Pro with my macbook pro. It does not allow me to use the @ symbol when I am inputting an email address into the client information section. What do I do?

    I am using Quickbooks Pro with my macbook pro. It does not allow me to use the @ symbol when I am inputting an email address into the client information section. What do I do?

    stefani88 wrote: It seems from other discussions my current OS on my laptop is the reason why it won't sync but people running older versions of windows aren't having a problem. So I don't get it.
    Oh. Gosh.  What's Windows got to do with anything? You're on Leopard, on a Mac.
    It seems from other discussions my current OS on my laptop is the reason why it won't sync

  • Returning a html status code to the client browser

    Hi,
    Can anyone help me with a problem that I am have with regard to returning a html status code of NO_CONTENT to the client browser?
    The Problem:
    Basically I have a html form with a SAVE button. When the user clicks the SAVE button the data in the form is sent to the web server which then saves it in a database and the same populated form is then sent back to the client. From the users point of view they click the SAVE button and the screen is refreshed with the same data. The problem with this is that the data only needs to be SENT to be saved but not necessarily resent back to the client browser from the server i.e. from a user's point of view I don't want the screen to refresh by disappearing and then coming back again. There is a lot of data in the form so this refresh can take a considerable amount of time as the html can take a while to download.
    The Potential Solution:
    What I want to do is send the data to the server where it will be saved in the database and then return a html status code of NO_CONTENT to the browser (always Internet Explorer) so that the page doen't get refreshed / downloaded unnecessarily. I've implemented this and the save can now take as little as 10% of the time it used to take because the data is only sent and not received again.
    The problem with the potential solution:
    It works fine most of the time but not all of the time. We tested this change and it worked great but when we released it live it didn't work for some people. For most people you can see the status bar at the bottom of IE zip along as the data is sent to the server so you can see when it has finished or received the status code back. For the people it didn't work for they would get an almost full status bar at the bottom but the blue would never quite disappear to indicate that it was finished. It was as if it was sending the data from the server but not getting a response at all when it should have been getting the NO_CONTENT status code.
    The Code:
    I'm using Struts so the line of code I had originally used after the data had been saved to the database was:
         return (mapping.findForward("timesheet"));
    I changed this line of code to:
         response.setStatus(response.SC_NO_CONTENT);
         response.flushBuffer();
         return null;
    Can anyone see what the problem is here? Are the new lines of code not guaranteeing that the response is being sent back to the client? Is there a better way to simply return a status code when you don't want return a JSP page?
    Any help would be greatly appreciated.
    rgds,
    Dave

    I see what you mean now. It's a very good idea but it wouldn't really work for this application. I've taken out the ability to use "back" functionality on this screen. It is launched through javascript so that the window itself has no toolbar and also the page is set to expire so that if you do go "back" to it, you are forced to refresh the page so that it is guaranteed to have the same data as is on the server. This is needed to stop problems with other functionality of the application.
    Thanks for the suggestion though.
    Does anyone know why this code only works most but not all of the time?:
    response.setStatus(response.SC_NO_CONTENT);
    response.flushBuffer();

  • IP address of the client machine ???

    I want to know how to get the IP address of the user who has logged in from a client machine through Oracle forms. Does anyone how to get it from Oracle forms.
    In fact i tried Sys_context (function) which returned the IP address of the client machine through SQL plus.
    Select SYS_CONTEXT('USERENV','IP_ADDRESS') From Dual;
    For testing sake, created a custom server side function using sys_context. From Oracle forms called the sever side custom function. During run time (from client machine), i got the IP address of the server (application server/DB server/forms server all in one NT box),not the IP address of the client machine.
    Any ideas, welcome.
    Thanks in advance
    Sai
    [email protected]
    null

    SowmyRaj wrote:
    Hi All,
    I am trying to get the IP address of the Client machine and using the code
    SELECT SYS_CONTEXT('USERENV','IP_ADDRESS') FROM DUAL;
    but this query only return server ip address but i want Client machine IP .
    How can I get that. Please help.Which client's IP addess?
    SYS_CONTEXT('USERENV','IP_ADDRESS') should give you the IP address of the machine from which the client is connected. So you are running sqlplus from Server?
    To check other session's information, you can check V$SESSION view.

  • Getting the IP address of the client

    How do I get the IP address of the client that makes a request in the Internet?
    getRemoteAddr() cannot be used since the client may be from a proxyserver or an ISP provider ...
    Can I get some help on this?
    Thanks in advance
    Jai

    I think you cannot get the IP address of the client if he uses a proxy server.
    Hope to hear good news from others.
    Regards.
    Jeffrey

  • My Client Admin wants to access the server by its IP address using the web Browser

    Dear All,
    I am new admin.
    I have created a Virtual Server and I have configured an IP address provided to me by the NW admin.
    So now I have to request the NW admin to allow this IP to be remotely connected through remote desktop connection.
    If this IP is allowed for the Remote Desktop connection then can I enter the same IP address in the Browser's address bar and access this virtual server on the
    Local Network.
    If Yes, then I am very happy to know this info.
    If no, then please provide me steps to make this IP accessible through the browser's address bar (on the Local Network).
    Please provide me necessary info as I have to make this task completed as Instructed by the client.
    Best Regards,
    Ahmed

    Dear Sir,
    Thanks for the reply and support.
    My Question: Rather than opening the "Remote Desktop Connection", Can we directly enter the IP address of the server in the browser's address bar and login to
    our server on the local network?
    If we cannot login to the server by entering  the IP address of the server in the browser address bar by this method, then what is the method to login to our server by entering the IP address in the browsers address bar.
    Note: I just need to do it on the local network only.
    Please show me how to do it.
    Regards,
    Ahmed
    By enabling RDP, you are enabling remote access to the desktop where you can login and have a Windows Desktop. I have seen in another thread you created that you would like your developer to be able to administer a Website remotely. In this case, that is
    something different. If you are using IIS then you need to check your Bindings and make sure that you do have an administration portal that you can access to make changes remotely.
    For IIS questions, you can ask them here: http://forums.iis.net/
    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

  • Open the web application in the client browser

    Please. I am newer to Oracle. I have MS 2000 Server installed, then Oracle 8i 8.17 standard edition release 3 installed and 9ias installed.
    The computer is using 192.168.1.2 as IP address.
    Follow the guide, I have created a database. I used Netscape 6.1 and go inside of http://mydomain.com/pls/portal30 to logon as single sign on to create some forms based on the tables created, where mydomain.com is something unqualified domain and never register at internic.
    However, except the computer I am using can see this web-page in a browser, all other users in the same local area network will result as "Page not found". But, strangely, if I type http://192.168.1.2 only at the other workstation's browser, I can the first page which is showing "Apacle..."
    Can anyone help me to solve how to make other workstations can see the page across the local area network. Some information is:-
    1. DNS server has installed in this computer but no server has been added.
    2. The primary and secondary DNS server is provided by local ISP
    3. I only have a single IP address of 192.168.1.2 and one default gateway ip address of 100.100.1.50
    Much thanks

    How does the client know the address of the web server.
    You said it's not in DNS, then you must put it in the hosts file on the client.
    When you go to the ip address the apache page shows. OK then when you enter /pls the portal will redirect to the FQDN which the host cannot resolve. Hence the page will not appear.
    Is this an intranet??? or do you need internet access to your portal??? ( if you do need internet access then is Win 2K secure)
    If it is an intranet then you must look at your internal host name resolution. If it is an intranet then why use a FQDN??? our portal intranet uses a hostname only and WINS (NT4) to supply clients with the address. using the Hosts file is even quicker.
    Once you have sortd out the hostname resolution problem then Netscape /ie on the client must be configured to bypass your proxy so that they can access the intranet portal server direct (otherwise they will look up the address on your ISP's DNS).
    Hope this helps.

  • Recomnded setting for the client browser with oas

    Hi all,
    I am using webforms10g(9.0.4) with OAS(first release).
    In some sites the client can not open the reports(in rtf format)-the screen shows up
    for a second,and then disappear.
    In others the client get alert that allow him only to save the file(not to open).
    I think that it relate to security setting in the browser of the client(internet explorer).
    Is there recommend list for parameter setting in the explorer of the client for using with OAS?
    Thank in advance
    Z

    Hi Chris,
    Thanks for your answer.
    I will search about jinitator in metalink.
    Z

  • Detect JRE version of the Client Browser fiom a JSP

    I have an Applet that is called from a JSP page that works only in certain JRE versions .
    I was wondering if there is a way of finding the Installed JRE version of the Client ...

    You could use some of the old traditional Javascript code that determines what browser it's running in, and have that code pass different parameters to the applet based on its determination.

  • Which web address is the web browser homepage in s...

    Is it nokia's default wap page?
    If not,which web address will be open when you first launch the web browser in S60 smartphone?
    If not, what is nokia's default wap page address in europe?
    I'm a chinese user, I can't browse nokia european wap page in china ,but I'm interesting in it.
    Thanks a lot

    http://ea.mobile.nokia.com/ea

  • IP address of the client

    Hi, I'm using Oracle Portal 3.0.9
    I trie to get the IP Adress of the client.
    There are some functions in portal30, which returns the ip adress
    of the client like :
    WWCTX_API.GET_IP_ADDRESS or
    owa_util.get_cgi_env('REMOTE_ADDR')
    and more.
    But all the functions return the ip adress of my server.
    What's wrong ?
    Can somebody help's me ?
    Thanks Carsten

    May be it's something between des servlet and the executed pl/sql-procedure or with session-management?
    I've got the same/following problems:
    Facts:
    I granted execution for portal30.wwctx_api and portal30_sso.wwctx_api to Public.
    A PL/SQL-Portlet checks with the following code if user is logged on
    if wwctx_api.is_logged_on then
         m_userip := portal30_sso.wwctx_api.get_ip_address;
    else
         m_userip := portal30.wwctx_api.get_ip_address;
    end if;
    Case 1:
    "User is logged on"
    symptoms:
    a) portal30.wwctx_api.get_ip_address gives back the server-ip.
    b) portal30_sso.wwctx_api.get_ip_address gives back the client-ip.
    Case 2:
    "User is logged on and afterwards logged off and stays in the same browser session (IE5)"
    symptoms:
    a) portal30.wwctx_api.get_ip_address gives back the server-ip.
    b) portal30_sso.wwctx_api.get_ip_address gives back the client-ip.
    Case 3:
    "User is not logged on / anonymous and in an new browser session."
    symptoms:
    a) portal30_sso.wwctx_api.get_ip_address gives back an error ("User defined Exception").
    b) portal30.wwctx_api.get_ip_address gives back the server-ip.
    I've also tried the following, but always get the server-ip:
    1) SELECT SYS_CONTEXT ('USERENV', 'IP_ADDRESS') into m_IPADDRESS FROM DUAL;
    2) m_IPADDRESS := sys.OWA_UTIL.GET_CGI_ENV('REMOTE_ADDR');
    3) m_IPADDRESS := wwv_util.getip;
    So, my conclusion is that may be the page-engine sees server as client?
    Or maybe there's something wrong with Session-Cookies? Sees there has to be cookie at the client.
    Can someone give me a hint if there is a workaround?
    Regards Joerg.

  • IP address of the CLIENT connected

    Hi,
    I have a question , How can we get the IP address of the machine connected to the database. Many of the users are connected through the application which is running on CITRIX.
    I tried getting from this SQL,
    SELECT SID , username , osuser,PROCESS, TERMINAL,MACHINE
    FROM v$session.
    Here the Machine returned is the IP of the CITRIX.
    thanks

    Unless the application that is connecting to the database is recording the original client's IP address, Oracle has no way of knowing where the actual client connection is coming from. As far as Oracle is concerned, it only knows about the Citrix box.
    It's the same problem in any 3-tier architecture. The database tier has no idea what client tier machine caused the middle tier to open a connection.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

Maybe you are looking for

  • IPhone and iPad receive email but not iMac

    This is an intermittent problem – sometimes the iMac receives mail and sometimes not, but they always show up on the iPhone and iPad.  And this problem has occurred without any changesbeing made in Settings. I'm using Hotmail/Outlook, but I have a fr

  • Issue in displaying entire text in Notification body

    Hello Experts, I have a requirement to send notification mail from Workflow. In the body of the mail, a variable of 255 characters needs to be included. The problem here isI am not able to display the entire text stored in the variable. last 15-20 ch

  • I cant open itunes on Windows 7, it says its on a "locked disk" or I do not have write privaliges HELP!!!

    I downloaded itunes this morning and when I try to open it, the user agreement pops up and when I hit "agree" I get an error message saying it's on a locked disk or I dont have write privaliges. I have tried 1. running as an administartor 2 changing

  • Printing only first page of multiple PDF's

    I need to be able to process a stack of PDF documents. What I need: to always print-out only the first page of all documens. These are invoices with sometimes 5 pages, sometimes 2....but I only need to archive the frontpage. So: opening each of these

  • How to propagate changes in RFC to XI....?

    Hi Guys, I changed parameter in one of the RFC..the RFC is already being used in XI. I know there is someway to refresh XI with the changes done in RFC, but I am unable to recall.. Can somebody please help in activating my sleeping neurons? Thanking