Machine IP Address

Hello,
Does anybody on this list know how to get the IP address of the
current machine using Forte?
I was originally going to use the registry entry but it seems
that the IP address in Win 95 is not stored in the same place on each
machine. Besides I would prefer something less platform specific.
The machine name may also be usefull.
Thanxs in advance
David McPaul

Hi Paul,
You can get the ip address by using external connection
myconn : externalconnection = new;
ipaddr : textdata;
ipaddr = myconn.getdotaddress ();
you have the ip address.
This is platform independent
hope this helps
ashok segu
McPaul David wrote:
Hello,
Does anybody on this list know how to get the IP address of the
current machine using Forte?
I was originally going to use the registry entry but it seems
that the IP address in Win 95 is not stored in the same place on each
machine. Besides I would prefer something less platform specific.
The machine name may also be usefull.
Thanxs in advance
David McPaul

Similar Messages

  • "Your Machine MAC Address is Invalid"?

    Hi,
    I need to use a software that is based on Adobe Air but got trouble with my MAC address. So, every time I try to login to the software, it's always failed and "your machine MAC address is invalid".
    There's a question that kept popping up after the installation and it hasn't appeared anymore after I click "Always Allow". Any idea what should I do to get this fixed? Because all other MAC users can use this software well.
    Thanks!

    - The MAC address you wrote is of the right format. Since it is unique to each device I can't tell if it is the one for your iPod. Are you sure that the password you entered is correct? Unless you turned it off, the first letter you entered is automatically capitalized. Carefully check each letter as you enter it. Also, some users have turned of Auto-Fill in Settings>Safari to get the password to work.
    - Have you powered off and then back on your router
    - Have you reset network settings:
    Settings>General>Reset Network Settings
    - Reset your iPod
    Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - The troubleshooting here:
    http://support.apple.com/kb/TS1398
    Entering the iPod's MAC address only helps if the router is set up to filter connections via the Mac address.

  • Is it possible get machine ip address from oracle

    Hai
    Is it possible get machine ip address from oracle (pl/sql or sql).Please clarify this
    Any idea should be appreciated
    Regards
    mohan

    hi rao !
    you can also use v$session dynamic performance view to get ip of any connected user.
    this view can give almost all information about any connected session, but you must
    have administrative privileges to query this view.
    regards,
    aamir.

  • Getting Machine IP Address

    Hi,
    We have a standalone Flash application (i.e. we run the swf
    directly, not in browser) which displays information about an
    application running remotely.
    When the app is run on on
    one and only one machine we want to display all data, on all
    others we want to display limited information. So I'd like to
    detect the IP addresses of the machine on which the app is running.
    Server side scripting is obviously not an option here, can
    anyone point me in the direction of a solution?
    Cheers

    Hi,
    Try the following links
    http://www.codeproject.com/KB/cs/network.aspx
    http://social.msdn.microsoft.com/forums/en-us/winforms/thread/E5FE11C4-7F0C-4AC6-80D1-7B8DFB374416
    Regards,
    A.Murugan
    If it solved your problem,Please click "Mark As Answer" on that post and "Mark as Helpful". Happy Programming!

  • Help.. I i time machined my address book and it was the older version..

    And now I have no address book.. Apple doesn't have it available to download
    and i replaced the newer version with the older one.. (stupid stupid stupid)
    what can I do. ?

    If you have been time machining all this while, then simply go back in time to the date where you had the correct version and restore from there. Hope that helps, but am sure you already tried this. Please advise if there is more to know

  • My Machines IP Address? (not my routers)

    I have an application listening to port 8080 on my machine. This machine has ip address 192.168.1.5 (say) on my LAN. This LAN is then connected to the Internet via a modem and router. This modem and router has ip address 12.34.567.890 (say) on the internet.
    How do I connect to my application, i.e. what is the address of my machine on the Internet?
    Or does my machine have to be the one directly connected to the Internet?
    Any Help with this would be great.
    Tom

    import java.io.*;
    import java.net.*;
    public class Server {
         // removed 'int portNo' because it is not needed as the port number can be passed and accessed with the serverSocket object.
         ServerSocket serverSocket;
         Socket clientSocket;
         PrintWriter out;
         BufferedReader in;
         public static void main(String args[]) {
              try {
                   new Server();
              } catch(IOException e) {
                   e.printStackTrace();
         public Server() throws IOException {
              serverSocket = new ServerSocket(8080);
              clientSocket = serverSocket.accept();
              out = new PrintWriter(clientSocket.getOutputStream());
              in = new BufferedReader(new InputStreamReader(clientSocket.getInputStream()));
              String currStr = null;
              if (in.ready()) {
                   for(currStr = in.readLine(); !currStr.equals("finish"); currStr = in.readLine()) {
                        out.println(currStr);
                        System.out.println("echo: " + currStr);
              } else {
                   System.out.println("Could not read from client. Client input not ready.");
              out.flush(); // added this to ensure that all of the data in the buffer is sent before closing the stream.
              out.close();
              in.close();
              clientSocket.close();
              serverSocket.close();
    }

  • Time Machine server Address?

    My new Mac Book Pro 15" late 2013 model (the newest) can't seem to see my time machine backup that's on my external Hard drive (backed up from my late 2008 Macbook 13"). I'm trying to find the 'server address' (if that's the right term?) of my HD Backup so I can manually tell Migrant Assistant where the backup is to transfere all my data from. Does anyone know how I find this?

    Since TM network backups are placed in a sparsebundle I can't use the often-referred-to solution from macosxhints.com.
    Hi, I've already read this hint (see quote above), but figured it isn't appropriate for my situation. Seems, I was wrong! Well, I found out that all I needed to do, was to adapt it for my setup.
    In case somebody is in the same boat (and for me to better remember it), here's what needs to be done:
    • Turn off TM on the client
    • Reselect the TM network destination drive
    • Turn TM back on
    • Backup will fail, but hidden MAC address file will be created on the network drive
    • On the server look at the TM drive via Terminal (ls -la)
    • Rename the sparsebundle to reflect the new MAC address
    • Make sure that the hidden MAC address file got created, otherwise just rename the old one
    • Still on the server issue the hint's commands, which are
    sudo fsaclctl -p /Volumes/Backup\ of\ macbook/ -d
    sudo xattr -w com.apple.backupd.BackupMachineAddress NEWMACADDRESS /Volumes/Backup\ of\ macbook/Backups.backupdb/macbook/
    sudo fsaclctl -p /Volumes/Backup\ of\ macbook/ -e
    So essentially what I missed, was to fix the extended attribute of my backup destination right on the server!
    Thanks, the client is backing up (to the correct destination) right now...
    Björn
    PS: Reading this (in addition to the above link), helps a lot in understanding everything: http://seankelly.tv/blog/blogentry.2008-08-25.8041499927

  • Return the UNIX machines IP Address

    Can I grab the IP Address of the UNIX machine that my form is running on? I'd like to grab this in a When-New-Form-Instance trigger. Any help would be greatly appreciated.

    You can use sys_context('userenv','ip_address') function.

  • How to check client machine IP address or Machine name

    I'm trying to check the client machine's IP address to restrict the unauthorised login in unassigned workstation. Any body know how to get the IP address of client machine? Is there any built in function to get it. I'll appreciate if you could send me email. Thanks.

    Hi,
    with the following statement you can get your pc's machine name:
    SELECT UPPER(USERENV('TERMINAL'))
    FROM DUAL;
    Be careful that, if you are dealing with a web envinronment, the outcome will be the Forms Server machine name.
    Regards,
    Marco

  • Tracing Machine IP Address for transaction done.

    Dear Expert,
    Can anyone guide me as to how to trace the Machine Address for any transaction either on date or on earlier date.
    Ex. Suppose one has created PR during last month . I want to know from which machine the PR was created.
    Regards.

    Hi,
    I hope u want to know from which Machine particular transaction is created ?
    then only by log file on that machine u can know which user has done that transaction. Manually u hav to check one by on each log file of each user....
    else
    in that table if u find usersign then particuler login person has generated that records but from which machine that u will get from log file
    Thanks
    Kevin

  • I upgraded to Snow Leopard, made a change to Address Book that I need to correct, tried to use Time Machine to find the prior version and it keeps pulling up the later ones info. How do I use Time Machine to restore Address Book from a few hours ago?

    This morning, I upgraded to Snow Leopard from v10.5.8. Then, I exported 11 contacts from our old Now Contact database, intending to import that info into Address Book. It was an experiment, as we have 1199 contacts in 20+ categories and want to eventually get them into Bento from Address Book. The export automatically created a file called Export.vcf on the desktop, after I highlighted the 11 contacts. I tried to look at the info, but when clicked it opens Address Book, which then simply asked if I wanted to import the 11 contacts to it. I clicked yes. Then in checking Address Book 7, not 11 contacts appeared. I clicked on "All Contacts" and there were 1630. We only have 1199, so where did the extra 400+ come from? Since I had already clicked twice on the Address Book window, I couldn't undo the import. So I thought 'Ok, I'll trash Address Book and go to Time Machine, find Address Book, go to right after the upgrade to SL, hit Restore and bingo. Nope. I keep getting the post-import info, not pre. Con someone direct me to a solution? I want to get rid of the import contacts plus the extra 300 or so ( I already had a hundred or so in several categories)? Then, I need to figure out (1) why ALL the old records were exported from Now Contact, (2) where they were hiding in that .vcf file when Address Book recognized that I only wanted to export 11, (3) why Address Book showed only 7 imports in the "Last Import" group, but showed ALL my contacts in the "All Contact" group, even though they should nearly all have been safely untouched in the Now Contact DBase file. PS, I am not especially computer savvy. Thanks for any enlightenment.

    Booting From Snow Leopard Installer Disc
    1. Insert Snow Leopard Installer Disc into the optical drive.
    2. Restart the computer.
    3. Immediately after the chime press and hold down the "C" key.
    4. Release the key when the spinning gear below the dark gray Apple logo appears.
    5. Wait for installer to finish loading.
    Drive Preparation and Installation
    1. After the installer loads select your language and click on the Continue button.  When the menu bar appears select Disk Utility from the Utilities menu.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed.
    4. Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    5. Set the format type to Mac OS Extended (Journaled.) Click on the Security button, check the button for Zero Data and click on OK to return to the Erase window.
    6. Click on the Erase button. The format process can take up to several hours depending upon the drive size.
    7. After formatting is complete quit DU and return to the installer. Install Snow Leopard.

  • How on earth do I restore my old Address Book from Time Machine?

    Problem: I really, really need to retrieve someone's number. I know it'll be in an old version of my Address Book. I can see when I open time Machine that my address book is backed up, but no matter the date I go to, it says the Address Book was last modified in 2012! I know for a fact I've updated (and backed up) the Address Book many times since then.
    Whenever I try to restore the Address Book, I do Time Machine > Applications > Address Book > 'restore'. But whenever I do this, the mac refuses to open the restored Address Book because it's 'required by mac OS X'.
    I don't understand.
    Please, how on earth do I dredge my Address Book from the depths of Time Machine?
    Please help!
    M

    Look at Q15 here. http://pondini.org/TM/FAQ.html
    There are separate sections for iphoto and itunes.
    It has to be so complicated because Apple made TM to do too much and be too many things to too many people.. a horse designed by a committee. It has become flakey in later editions.
    If you still have the iMac you can move the files directly from the source.. you don't need to use TM backups at all.

  • How do I restore addresses from archive file or time machine without iCloud overriding?

    I recently had an issue with my address book contacts.  About 90% of the contacts disappeared, then synched through iCloud to my iphone and ipad.....so nearly all my contacts were lost on all devices.  I have both time machine and an address book archive file.
    When I tried restoring from time machine, the iCloud synching saw it as an older version of the file and went to the deleted contacts version....i.e. I was right back where I started.
    When I tried importing from the address book archive, the same thing happened.....iCloud saw the imported version as an older copy of the contacts file and deleted out everything I had just imported.
    The only way I was able to get the contacts back was to go to time machine (with address book application open), select all the contacts, copy them, cancel out of time machine, and then paste the contacts into the current version of address book.....I guess the system sees that as a "new" version of the contact and doesn't overrite it.  Problem is that it doesn't carry over all the different groups that way, and I have to move addresses into the groups all over again....kinda time consuming.
    Any ideas on how to import from archive or restore from time machine (the normal way) without iCloud synching overriding the "older" and desired version of the file?  Address book doesn't have any option to "override current contacts with imported ones".....
    Thanks.

    Try this:
    Turn off your internet connection completely: check it's really off.
    Import your backup into Address Book.
    Select all your contacts.
    From the File menu choose Export>vCard and save the file somewhere convenient.
    Now turn the internet connection back on. Your contacts will disappear from Address Book again.
    From the File menu choose 'Import' and select the file you exported to.
    Hopefully this contacts list will stay in place: wait until it's synced to iCloud and check that it's on the website and syncs to your Phone.

  • Time Machine backup automatically deletes address book

    I accidentally deleted all contacts in address book.  When i attempt to restore the address book from time machine, the address book is restored then automatically deletes all contacts again.

    In case it will help anyone else, this is the rather complicated procedure worked out with Apple Support to restore Address Book to an earlier state.  Hopefully Apple will consider a switch of some sort to restart or re-initialize the contacts which would greatly simplify the procedure.
    If using iCloud, uncheck Contacts box in System Preferences>iCloud
    Quit Address Book
    Restore Address Book folder in User/LIbrary/Application Support to previous version with Time Machine
    Trash all Address Book preferences in User Library/Preferences
    Log Out/In or Restart
    Start Address Book and verify desired address book version is now available
    If not using iCloud you are done, otherwise you need to create new Address Book Folder with current file dates that contains desired previous data
    First Go to Web version of iCloud Contacts and erase all contacts
    From Address Book Export vCard with All Contacts
    Export vCard for each manually defined group
    Quit Address Book
    Trash Address Book folder in User/Library/Application Support
    Trash all Address Book preferences in User Library/Preferences
    Log Out/In or Restart
    Start Address Book and Import vCard with All Contacts
    Import vCard for each defined group one at a time and:
    Check review duplicates and keep new
    Select Last Import for each group and manually assign to Group Name
    Re-Check Contacts box in System Preferences>iCloud
    New address book should populate to iCloud and other devices

  • Recover Address Book in Time Machine

    I am using an iMac running Lion (not mountain Lion)
    I accidentally deleted my address book which quickly synced to my iOS devices and iCloud so I have no contacts. This should not be a problem as I have been using Time Machine regularly and have been backing up using Time Machine to my Drobo FS. As luck would have it, when I open Address Book (with no contacts in it) and then click on Time Machine to get to my backups, Time Machine cannot find the backup drive.
    If I go into Finder, I can 'see' the Drobo FS drive and even get to the partition that Time Machine is supposed to backup to. I can even 'mount' it so I can get to all the data that Time Machine is backing up. 
    I clicked on the 'Latest' folder and again, no go. Something is wrong. No worries, there are plenty of backdated folders and I can just get my Address Book data from that. I thought it would be as simple as finding the data in Finder and drag it over. When I click on one of those backdated folders, it works but I'm having trouble finding where the Address Book data is backed up.
    I go to 'library/application data' and Address Book is not in there.
    Does anyone know how I can restore the lost address book using Time Machine and Finder? Or is there another thing to try?

    address book is integrated with Time machine so you can start Time machine when address book is active and restore the contacts you need one by one. alternatively, quit Address Book and restore the directory homedirectory/Library/Application Support/Address Book to a prior state (delete the current directory first). when you start address book it will be exactly as it was at the time of the backup you restored it from.

Maybe you are looking for

  • Error on page Access is denied

    Hi I created a URL iView to an application that runs on a computer in my internal network and attached the iView to a page. When I enter that page I get the application user&password to fill out. After filling the user&password I get an error on page

  • Lost Photos in Photoshop Album Starter Edition 3.2

    My email stated that my photos were transfered to Revel. Only one photo switched. The rest are stuck at Adobe Photoshop Album starter edition 3.2. I can see my photos are sitting there but are stuck behind the product registeration looking for a prod

  • Printing a report via URL

    Hey, is there any chance to get a report printout via an url call? We can get our reports via url as pdf, html, rtf and so on. In my mind there is no chance for a printout or perhaps email via url? I tested the delivery API as second way without some

  • Is it possible in Web Analysis?

    The Hyperion version is 9.2.1. Met some issues when using Web Analysis, not sure is it a limitation or some mis-usage. Could anyone provide some clues or link to find out these issues? Thanks in advance. 1.Is it support JRE version greater than 1.4?

  • How to implement PHP code in Edge

    All- I have a site where I need to implement php on a button for a redirect How do i do this in edge? `Z