Address Lookup from Postcode

Can anybody recommend or show me an example of a Address lookup using Apex? (Thats also Free?)
Cheers Stars!

Spam wrote:
Can anybody recommend or show me an example of a Address lookup using Apex?In what territories? Assuming UK from "postcode" and the location in your profile.
From the purely technical point of view I can't, other than provide a general pointer in the direction of web services...
(Thats also Free?)...however whatever technical solutions exist, they are doomed on this critieria. UK postcode data is owned by the Royal Mail and must be properly licensed: the last project I worked on with this feature [non-APEX] had a feature to count the number of postcode searches performed so that the appropriate royalties could be calculated and paid. Given the state of Royal Mail's finances I doubt that this has changed since then, or is likely to in the foreseeable future.

Similar Messages

  • Address Lookup in External LDAP

    I did changes in my $OH/j2ee/OC4J_UM/config/oc4j.properties file in order to Lookup in a external LDAP:
    toolkit.ldap.dir.1.label=Contacts
    toolkit.ldap.dir.1.url=ldap://OtherLinuxHost.mydomain.com:389
    toolkit.ldap.dir.1.searchbase=ou=Contacts,dc=mydomain,dc=com
    toolkit.ldap.dir.1.filter=objectClass=inetOrgPerson
    toolkit.ldap.dir.1.attribute.mail=mail
    toolkit.ldap.dir.1.attribute.lname=sn
    toolkit.ldap.dir.1.attribute.fname=givenName
    toolkit.ldap.dir.1.attribute.alias=uid
    In my Collaboration Suite - Messages when I am creating
    New Message, click in Blue Torch,
    Select from list the "Contactss" directory
    Select "Email Address" "contains" * => Go
    UM shows the contacts from the External Ldap, but when I try to bcc, or cc or to, it is not updating my destination fileds (bcc/ cc/ to). But if instead of select the List "Contacts" I select the Internal Directory (OID) it works fine?
    Which argument I miss ? or how I configure UM for export the email address from the AddrLookup Window to the Message_compose Window in the destination fields (bcc or cc or to) ?
    Thanks alot for any help.

    It is happening to us as well, we have OCS release 2 9.0.4.2 on Linux trying to access an external OpenLDAP linux server for shared contacts.
    After we get the results of the search on the external LDAP, no button works on the Address Lookup window except "Close". It doesn't matter is we select the "Corporate Book" or other Oracle internal address books; we have to close the window and open it again to do a new search.
    Are you seeing the same behavior?
    I will have a phone conference today (5/11/05) with Oracle support to talk about this issue, we have had a TAR open for about 20 days now.
    I'll keep you posted with the results.

  • Address Lookup option has disappeared

    hi all,
    my company recently moved to google mail and i am using a BB with curve 9300. all seems to be working fine except for 2 things.
    firstly when i go to compose an email on my BB and look for a company name in the address book i no long have the address lookup function. i am sure it was there when i first set up my BB with our company gmail domain.
    secondly 2 way sync seems to be working fine except for when i delete a message on the BB i get the option to delete on handheld and on mailbox and select that. except it never does. i have recived the message over and over from the server. i have changed the settings so on conflicts handheld wins and still the message wont delete on the server. the sync works fine for sent items on BB calender and for read items. just wont delete.
    any help would be much appreciated. have been trawling the internet for help but not found anything yet.
    thanks in advance
    g

    Hi gjrc,
    The address lookup feature is only available when using a BlackBerry Enterprise Server. If your company has switched to GMail for their mail service, they would not be using BlackBerry Enterprise Server anymore.
    -CptS
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Carrying over address info from new account created on checkout page

    Mario has written a great document on "Creating login functionality on eCommerce registration form for return customers"
    http://forums.adobe.com/docs/DOC-2529
    I used this to put a username/password at the bottom of the form for new customers to create an account. I have a question, though, is there any way to push the address info entered by the new customer into the checkout page into this new account?
    Thanks!
    Anne

    I wanted to update this since I figured out the fix:
    The fields located within the checkout page - e.g. BillingAddress, BillingCity, etc. -- do not correspond to the fields within the user's account details -- e.g. HomeAddress, HomeState, etc.
    What you need to do is create hidden fields within your checkout page which will be used to capture the billing address details from the checkout form and then copy them over to the user's newly created account.
    Here is your Username/Pass fields:
                    <label for="Username">Email Address or Create Unique Username</label>
                    <input type="text" name="Username" id="Username" class="cat_textbox" maxlength="255" />
                    <label for="Password">Password</label>
                    <input type="password" name="Password" id="Password" class="cat_textbox" maxlength="255" autocomplete="off" />
                     <label for="PasswordConfirm">Confirm Password</label>
                    <input type="password" name="PasswordConfirm" id="PasswordConfirm" class="cat_textbox" maxlength="255" autocomplete="off" />
    Here are your hidden fields:
                    <div style="display: none;">
                    <label for="HomeAddress">Home Address</label>
                    <input type="text" name="HomeAddress" id="HomeAddress" class="cat_textbox" maxlength="500" />
                    <label for="HomeCity">City</label>
                    <input type="text" name="HomeCity" id="HomeCity" class="cat_textbox" maxlength="255" />
                    <label for="HomeState">State</label>
                    <input type="text" name="HomeState" id="HomeState"  class="cat_textbox" maxlength="255" />
                    <label for="HomeZip">Zipcode/Postcode</label>
                    <input type="text" name="HomeZip" id="HomeZip" class="cat_textbox" maxlength="255" /></div>
    You'll need to implement some scripting to do the copying for you. But first you need an action to start the process. I put a checkbox under the password and username fields "Create an account for me" - The user checks it, the fields get copied and then the info is pushed to the user's account.
    Since I'm no js coder: I used Mario's extremely helpful post on "Setting the billing address to be the same as the shipping address" as a guide to creating the code. Shout out, Mario! http://forums.adobe.com/docs/DOC-2814
    Put this underneath your username/password fields:
    <input type="checkbox" onclick="CopyAddress(this.checked);" /> Create an account for me, please
    Then add your script at the bottom of the form.
    <script type="text/javascript">
    function CopyAddress(checked) {
              if (checked) {
                        document.getElementById('HomeAddress').value = document.getElementById('BillingAddress').value;
                        document.getElementById('HomeCity').value = document.getElementById('BillingCity').value;
                        document.getElementById('HomeState').value = document.getElementById('BillingState').value;
                        document.getElementById('HomeZip').value = document.getElementById('BillingZip').value;
    </script>
    Be sure to add these fields into your webform -- Site Manager-->Webforms -- before you start to customize. Just copying and pasting code into existing webforms does not work. And don't make the username and password fields manadatory. It might result in an abandoned cart for those that just want to check out as a guest.
    I hope this is useful to someone out there. It has worked great for me!

  • SSL VPN IP Address Assignment from IAS radius server

    Can I use SSL VPN IP Address Assignment from IAS radius server?it can be done with acs server.are there some differ from the acs and IAS?

    Hi,
    I will suggest to setup a sniffer capture with ACS and look for the attribute that ACS sends for IP Address Assignment, once you know the attribute apply it on the IAS.
    If you have any question do not hesitate to contact me.

  • I am having trouble trying to get my address book from my mac (just downloaded Lion for this purpose) to my 3G ipad. Set up an icloud account but still confused! Please help !

    I updated my mac with  os x Lion so that I could accomplish moving my address book from the mac to my new IPad 3G. I also set up an icloud account for this purpose, but I *still* cannot figure out how to move my address book from one computer to the other. When I'm on my mac and try to use bluetooth to export the address book, I'm able to find my ipad but I soon get a message that it does not support the necessary services. I have no idea what's going on and would appreciate any advice. tks in advance, Sarah

    blacksheepfibers wrote:
    I updated my mac with  os x Lion so that I could accomplish moving my address book from the mac to my new IPad 3G. I also set up an icloud account for this purpose, but I *still* cannot figure out how to move my address book from one computer to the other. When I'm on my mac and try to use bluetooth to export the address book, I'm able to find my ipad but I soon get a message that it does not support the necessary services. I have no idea what's going on and would appreciate any advice. tks in advance, Sarah
    The address book syncs via iCloud, not Bluetooth or iTunes.
    You upgraded to Lion so you could use iCoud.
    On the computer. go to Apple menu > System prefs > iCloud.
    Sign into your iCloud account.
    Tick everything.
    This enalbes the se items syncing to iCloud.
    On the iPad, Settings > Mail, Contacts, Calendars.
    Create a new iCloud account.
    Sign in with the same AppleID as your computer.
    Settings > iCloud and turn everything on.
    BAM!
    That is all you need to do.
    Your contacts (and all other checked items checked) will sync between computer and iPad.
    No need to use iTunes

  • How can I print address labels from numbers spread sheet

    How can I print address labels from numbers spread sheet

    CAB,
    The 5163 template has the following dimensional specs:
    Dimensions & Info
    Length: 4.00000"          Height: 2.00000"
    Top Margin: 0.50000"          Bottom Margin: 0.50000"
    Left Margin: 0.18000"          Right Margin: 0.18000"
    Hor. Spacing (gutter): 0.14000"          Vert. Spacing (gutter): 0.00000"
    Intended Use: Mailing Labels, Shipping Labels, Address Labels
    There's a great vendor site with this data readily available, better than the Avery site in my opinion. But, you can get the same info in the Contacts Print dialog pane.
    You can grab a template matching these dimensions from that vendor site, Copy the table after opening the Word Template in Pages and drop the into a blank Numbers Sheet.
    I found that Sheet side margins of 0.15" worked better than 0.18. For some reason the table wanted to flow to the next page to the right with 0.18". Turning off the Headers and Footers and setting Top and Bottom Margins to 0.5" worked well. These adjustments are made in the Sheets Inspector.
    So, that will put the template you specified into a Numbers document and you can print labels properly aligned from there. Since your problem statement is a bit lacking in detail, that's all I can offer you at this point.
    Jerry

  • Importing Address Book From An Older Version To Leopard

    I'm trying to import my address book from my old, G3 iMac running 10.1.5 to my new machine. All my address cards show the .vcf file extension, yet I can't import them. I get an error message that says, "No importable cards found". I tried switching from .vcf version 3.0 to 2.1 with no luck. I tried importing them as a text file, still doesn't work.
    Any ideas on how I can import my addresses?

    I was able to solve my problem with the help of a friend.
    I found the Old Address Book database file under OS 10.1.5:
    Users->myusername->Library->Addresses->Address Book.addressbook
    I pasted Address Book.addressbook to the new Address Book running under OS 10.5 in:
    Users->myusername->Application Support->AddressBook
    The computer did a little conversion dance and everything appeared just fine.
    Hope this helps others.

  • Importing Addresses in Address book from text file

    Hello all,
    I am attempting to import my address books from Microsoft Outlook into the Address book on the Macintosh.
    More specifically, I have several distribution lists under Outlook that I use to send out various newsletters from where I work. These distribution lists have addresses that are specifically NOT within my Contacts under Outlook.
    So far, I HAVE been able to get the 400 email addresses exported into a plain text file. This text file has only the email addresses, one per line within the text document.
    The problem I have been having is finding some way to make this information "useful" for the address book program. Attempting to import the text file doesn't work (understandably, since I assume the program will only see the text document as "one" card.)
    So my question is, how can I import these 400 addresses into the address book under a specific grouping or distribution list? Is there some way I can create individual vcards for EACH of these addresses, THEN import them?
    Or am I doing things all wrong from the get-go, and need to attempt something else?
    Here' hoping you can help!!
    Thanks

    Here's instructions. I find it hard to believe that this much work is required, but I'm not at home and so I can't experiment with my Mac.
    <http://www.macosxhints.com/article.php?story=20050828200319417&lsrc=osxh>
    I was thinking that you might just want to drag contacts from Outlook to a folder in Windows -- all the contacts get exported to individual "cards" which I'm pretty sure you can import directly into Address Book.
    As for your distribution lists -- I wouldn't be surprised if Mac OS requires everyone on the list to appear in Address Book. If you try creating a list manually, can you include recipients that don't go in Address Book?

  • How do i transfer my address book from one computer to another

    Old computer is XP new compiuter is 7. Mozilla Thunderbird is the email program. Both are installed on separate computers.

    On your old computer (XP), go to Thunderbird (TB)
    select Address Book
    highlight which address book you want (such as Personal Address Book)
    from menu bar select Tools then Export
    enter a name such as addresses.ldif Use LDIF rather than CSV format!
    select a destination folder such as Documents
    click Save
    copy the file (addresses.ldif) to your new computer via disk, memory card, or even email!
    put the file in your Documents folder on the new computer (Win7)
    On your new computer, go to TB
    select Address Book
    from menu bar select Tools then Import
    click Address Books then Next
    highlight Text File (LDIF, ...)
    click Next
    select the folder (Documents) and file (addresses.ldif) and click Open
    the addresses will be imported
    success! click Finish
    Notes:
    The address book you import will take on the name of the file without the .ldif extension (e.g. addresses). You can rename the file before you import it. Just keep the .ldif extension.
    If you want more than one word in the name, use an underscore instead of a space (e.g. Personal_Contacts). Don't use spaces! They really complicate things.

  • How to use different mail address in "from" and "user" property?

    I'd like to use the user enter mail address as the "from" property and use my mail account to send it, but I got error: com.sun.mail.smtp.SMTPSendFailedException: 553 You are not authorized to send mail, authentication is required when set different mail address in "from" and "user" property, how to resolve this problem?

    Basically that's a bad idea. Suppose you used your server to send messages that claimed to come from "[email protected]"? Naturally enough people have tried that, either as a joke or as an attempt at fraud, so that servers will check to see if the message is coming from the server it claims to be coming from. And if it isn't -- as in that example -- it will consider it a forgery. Best case (for you) is that the server will flag it as spam or junk. Worst case is that your server will be blacklisted and other servers will ignore it.

  • How do I copy an address book from one user account to another?

    How do I copy an address book from one user account to another?

    You haven't understood me. Follow these steps:
    1. Log in the user where are the files you want to transfer, and open a Finder window.
    2. In Finder, select Go menu (on the menu bar) > Go to Folder, and type /Users/Shared. Now you're on Shared folder, so leave that window.
    3. Open a new Finder window without closing the old one, go to the folder with the files you want to transfer, and copy them to Shared folder.
    4. After copying the files to Shared folder, go to  > Log Out, and log in the other user.
    5. Repeat the step 2, and you will get access to the transferred files. Now, you can open them directly from this folder, or you can copy them to a folder on your user folder

  • How can i change my e-mail address color from blue to black when i send a new message

    How can i change my e-mail address color from blue to black when i send a new message

    Hi Steven, if you send to yourself does it come through blue?
    Is this in the Header or a Signature?

  • How do I transfer an address book from one computer to another?

    I'm trying to transfer an address book from my G4 to my Imac G5 and can't seem to figure out how to do it. I've tried exporting out of one, but the other doesn't read it. These computers are not connected so I'm transferring via cd.
    Thanks,
    Dick Skover

    Hi Dick
    If they are both running Tiger
    Use "Backup Address Book" in Address Book > File to make a copy then
    "Revert to Address Book Backup" on the iMac
    I use this for backing up both Address Book and iCal as a matter of course (it is the Apple recommended way in the Help files) I put them into a folder in my "Documents" and clear old copies once a month. If you use .Mac I would certainly recommend it seeing the problems with data loss some folks have had.
    chris

  • 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.

Maybe you are looking for