vcard

Address book DB schema

I need to store contact information for users. I want to present this data on the page as an hCard and downloadable as a vCard. I'd also like to be able to search the database by phone number, email, etc. What do you think is the best way to store this data? Since users could have multiple addresses, etc complete normalization would be...

Export all contacts as vcards from Outlook

So, I want to export all my contacts from Outlook as vcards. If I google that, I get a bunch of shareware programs, but I want something free that just works. If I'm to code it myself, I guess I should use the Microsoft.Office.Interop.Outlook assembly. Has anyone already code to convert ContactItems to vcards? Edit: I solved it in a c...

Is there a framewok / API I could use to export iPhone-SDK's ABRecordRef instances to vCard?

I'm looking at source code from Funambol, but the dependencies are so huge, I'm rethinking of using them, not to mention the code is based on OC++. Can anyone help me out on this? Thanks. ...

Where to find a java library to read vcard files?

I need a java library to read vcard files (vcf). ...

What's the issue with vcard duplicates?

No software I've seen is able to synchronize contacts between Outlook and my cell without creating duplicates. One would think that someone had synchronization in mind when they thought up the format. Is it impossible for programmers to work around this problem? ...

export local outlook contacts to vcard

All, I'm trying to write a program that will export all the contacts stored in the local pst file of outlook to vcards I have seen several shareware programs that will do it but they seem pretty expensive (50 bucks+) I have seen an example here but it seems more geared to an exchange server rather than to the local install of outlook ...

Any VCARD generator class for Zend framework?

Hi guys I need a class to generate vcards - something that I can use with the Zend Framework - nothing too flashy. Thanks again... ...

Trying to outpt vcard for download using zend framework - something wrong

Hi guys, I've added a download vcard option in my social networking system - however when I try to get it to download the vcard for some reason the vcard is downloaded as a raw file i.e. I need to rename it to be a vcf file in order to open as a vcard. I'm using the following code to send headers but for some reason its not working as it...

How can I make a VCARD for a recurring event work properly in Outlook?

I am trying to get a .vcs file to work in Outlook 2007 using a recurrence. I have written the following code which to me appears to be correct, however once opened in Outlook, all the data is correct with the exception of the recurrence. If I open the recurrence button then all my information is correct, however when I look in the calen...

How do you display an XMPP (Jabber) vcard photo in Delphi?

How can I read a photo from an XMPP vcard (an avatar picture, which I think is in JPEG format) and display it in a Delphi TImage control? The XMPP server sends this XML: <presence id="e3T50-75" to="cvg@esx10-2022/spark" from="semra@esx10-2022" type="unavailable"> <x xmlns="vcard-temp:x:update"> <photo>897ce4538a4568f2e3c4838c69...

Convert vCard Bulk Contact File to Single .vcf files

Hello Guys... I recently had an issue... I wanted to transfer my contacts fro my LG U990 Viewty to my iPhone 3GS I exported the contacts from my LG to a vCard File containing all the addresses all in one as BEGIN:VCARD VERSION:2.1 N;CHARSET=UTF-8:A; TEL;CELL;CHARSET=UTF-8:*121# REV:20120720T081000Z END:VCARD Now the above format repe...

Parsing vCards on web pages into a MySQL DB

I have a client who is using a separate vCard on a separate page. These are being pasted into a wordpress text field. (Not the most efficient way to maintain a list of people, but I won't editorialize after the fact.) My mission is to write something to parse through all the addresses in the vCards and to dump the information into a c...

How to add a contact to the iPhone's Address Book from a Web Page?

In the desktop Mac world, if I were to click on a link in a web page which linked to a VCF file, this file would be opened in the Address Book application. In the iPhone world, however, doing that results in the message "Download failed. Safari cannot download this file" being displayed. So, my question is, is it actually possible to a...

Exporting contacts from an application.

I am maintaining an in-house ASP.NET web app, part of which includes a Customer Relationship Management module for our sales team. One of the things they want is to be able to export all their contacts out of our database into their wide variety of email clients (Outlook on Windows, allsorts on Mac) and phones (IPhones, Blackberries - pr...

iPhone: how to get safari to recognize a vcard?

I'm trying to create a QR code so that iPhone users can import my address book information. I'm doing this by: putting a VCF (vcard) file on my web server creating a QR image that contains this URL. This is working on my desktop browser (it opens the vcard with the address book app). On the iPhone, the QR reader successfully te...

ABPersonCopyVCardRepresentation

can anyone guide me to make use of this function , because i need to create avcard for the contact added in address book sample code or example would be very usefull ...

How do I add vcardfile in the composer sheet of an iPhone application

in the mail sheet im able to add images but where as im not able to attach vcard file MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init]; picker.mailComposeDelegate = self; [picker addAttachmentData:ExportVCF mimeType:@"text/x-vcard" fileName:@ "JOHNSMITH.vcf"]; but when i send...

Formatting Microformat Umlauts broken in Firefox Operator Plugin

Did anybody successfully manage to correctly export a vcard from a Website containing Microformats (hcard) with this Firefox Plugin? When doing so, I end up with weird characters instead of (german/spanish) Umlauts. While it's really easy to provide vcards as well, I would like to know if someone managed to correct the charset/character ...

ABRecordRef vCard

Hi! I would like to convert a ABRecordRef into an vCard or NSData to transmit it via Bluetooth. I've run into your question and I wonder if you were able to figure out how to do it. Thank you ...

Adding Contacts to Address Book(IPhone) from VCard

Hi, I need to add a contact in AddressBook of IPhone from the VCard i am getting from the server. Is there a way to do it in IPhone or i need to parse the Vcard file and create the IPhone contact from it. and i also need to send the contact in form of Vcard to the server. Is there a Framework or Api that do it. ...