Outlook code in html please harry up

looking for code in html to run the outlook client but it have to include the navigation bar and the public folder.
and yes i have seen the sample in sap.help.com and in the sdn but it is not enough.
Message was edited by: Yoav Toussia Cohen

A simple search at Google will lead you to this KB article: http://support.microsoft.com/?kbid=281618
As you can see, my page can be improved a lot! After all, it was written 4 years ago and a quick hack to see how it worked.
In version 4.5 of the portal, this was how Outlook was integrated. smile I hope you are not going for this type of integration today.
Regards,
Mikael

Similar Messages

  • Mystery Problem in Code...Please Help...

    Ok, here's the situation. I am a photographer, and have been writing code for some time now. I decided to write a java application that would write individual web pages for each jpeg present in two directories, bnw and color, making the job of writing as many as 300 virtually identical pages a lot less annoying. Unfortunately, this is even more so.
    The code is clean in nice, and it compiles without a hitch. When I run the application (w/ jdk 1.4.0) on Windows 98, it comes up with an invalid path error when it tries to create the first of these web pages, but after it writes the list of all the images it sees. (This list is created successfully.) I went back and double checked that there weren't any filenames that Windows would gripe about, and an error was found. I corrected the error, and now everything is kosher, but yet the same error still occurs. I've several different methods of doing the same thing, and every time, the same error occurs at the same spot. I have included the source code below. Please, any help would be appreciated!
    import java.io.*;
    import java.util.*;
    public class listDir {
         public static final String DEBUG = true;
         static {
              if (DEBUG)
                   System.err.println("----------- < DEBUGGING IS ON > -------------");
            public static void main(String[] args) {
              // DEBUG STATEMENT
              System.err.print("DEBUG: Declaring final Strings... ");
                    final String path1 = "E:\\Liam Conrad - Photographer\\800x600\\images\\html\\bnw";
                    final String path2 = "E:\\Liam Conrad - Photographer\\800x600\\images\\html\\color";
              final String line1 = "<html>\r\n<head>\r\n<title></title>\r\n<link href=\"../../master.css\" rel=\"stylesheet\">\r\n</head>\r\n";
              final String line2 = "<body>\r\n<table width=\"100%\" height=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n<tr>\r\n";
              final String line3 = "<td align=\"center\" valign=\"top\" colspan=\"1\" width=\"100%\">\r\n<p><img src=\"";
              final String line4 = "\" border=\"1\" width=\"432\" height=\"288\" alt=\"\"></p></td></tr></table></body></html>\r\n\r\n\r\n";
              // DEBUG STATEMENT (2)
              System.err.println("[ DONE ]");
              System.err.print("DEBUG: Declaring variables... ");
              String temps1;
              String temps2;
                    RandomAccessFile raf;
                    RandomAccessFile mfo;
                    File d1;
                    File d2;
                    String[] list1;
                    String[] list2;
                    String[] list3;
                    Vector svect = new Vector();
              // DEBUG STATEMENT (2)
              System.err.println("[ DONE ]");
              System.err.println("DEBUG: Beginning try statement.");
                    try {
                            d1 = new File(path1);
                            d2 = new File(path2);
                            raf = new RandomAccessFile("dirlist.txt", "rw");
                            list1 = d1.list();
                            list2 = d2.list();
                            for (int i = 0; i < list1.length; i++) {
                                    if (list1.endsWith(".jpg")) {
    svect.add("bnw_" + list1[i]);
    } else {
    for (int i = 0; i < list2.length; i++) {
    if (list2[i].endsWith(".jpg")) {
    svect.add("color_" + list2[i]);
    } else {
    for (int i = 0; i < svect.size(); i++) {
    raf.writeBytes((i+1) + ":\t" + svect.get(i) + "\r\n");
    raf.close();
                   for (int i = 0; i < svect.size(); i++) {
                        temps1 = svect.get(i) + "\b\b\bhtml";
                        temps2 = temps1;
                        System.out.println(temps2);
                        mfo = new RandomAccessFile(temps2, "rw"); // <--- Here is where the error is occuring every time.
                        mfo.writeBytes(line1);
                        mfo.writeBytes(line2);
                        mfo.writeBytes(line3);
                        mfo.writeBytes((String)svect.get(i));
                        mfo.writeBytes(line4);
                        mfo.close();
    } catch (Exception e) {
    e.printStackTrace();
                   System.err.println((char)7 + "\n");

    Hi buddy
    First of all, there is no mystery in this program. Everything is pretty clear...
    OK, Instead of pointing out the mistakes you have done, I thought why not may be I cam modify the program and then give u the code. Go thru the code and you will understand the mistakes you have done. You have to make a few changes to make this applicable to you. Firstly, change the directory names, secondly, change the GIFs to JPGs, thirdly, add the table formatting that you were looking for(i removed the formatting for simplicity)... and things like that.
    Lot of things to say about : Since you are creating a html file in the current directory and in that html file, you are refering to the images in two other directories, you wont be able to see the images unless you move the files to the current working directory. And you cannot move a file from one directory to another using Java IO(Only way is you can create exact replicas of the files in other directories). Or, One way to get around with this problem is : Use full path of the file instead of just the name of the GIF(or jpeg or whatever) file. That is what I have done in the following program.
    Cheers
    -Uday
    import java.io.*;
    import java.util.*;
    public class Picture {
         public static final boolean DEBUG = true;
         static {
              if (DEBUG)
                   System.err.println("----------- < DEBUGGING IS ON > -------------");
    public static void main(String[] args) {
              // DEBUG STATEMENT
              System.err.print("DEBUG: Declaring final Strings... ");
    final String path1 = "C:\\uday\\PIC\\one";
    final String path2 = "C:\\uday\\PIC\\two";
              final String line1 = "<html>\r\n<head>\r\n<title></title>\r\n</head>\r\n";
              final String line2 = "<body>\r\n<table>\r\n<tr>\r\n";
              final String line3 = "<td align=\"center\" valign=\"top\">\r\n<p><img src=\"";
              final String line4 = "\" alt=\"\"></p></td></tr></table></body></html>\r\n\r\n\r\n";
              // DEBUG STATEMENT (2)
              System.err.println("[ DONE ]");
              System.err.print("DEBUG: Declaring variables... ");
              String temps1;
              String temps2;
    RandomAccessFile raf;
    RandomAccessFile mfo;
    File d1;
    File d2;
    String[] list1;
    String[] list2;
    String[] list3;
    Vector svect = new Vector();
              Vector nvect = new Vector();
              // DEBUG STATEMENT (2)
              System.err.println("[ DONE ]");
              System.err.println("DEBUG: Beginning try statement.");
    try {
    d1 = new File(path1);
    d2 = new File(path2);
    raf = new RandomAccessFile("dirlist.txt", "rw");
    list1 = d1.list();
    list2 = d2.list();
    for (int i = 0; i < list1.length; i++) {
    if (list1.endsWith(".gif")) {
                             nvect.add(path1+"\\"+list1[i]);
                             String temp1 = "one_"+list1[i].substring(0,list1[i].lastIndexOf(".gif"));
    svect.add(temp1);
    } else {
    for (int i = 0; i < list2.length; i++) {
    if (list2[i].endsWith(".gif")) {
                             nvect.add(path2+"\\"+list2[i]);
                             String temp2 = "two_"+list2[i].substring(0,list2[i].lastIndexOf(".gif"));
    svect.add(temp2);
    } else {
    for (int i = 0; i < svect.size(); i++) {
    raf.writeBytes((i+1) + ":\t" + svect.get(i) + "\r\n");
    raf.close();
                   for (int i = 0; i < svect.size(); i++) {
                        temps1 = svect.get(i) + ".html";
                        temps2 = temps1;
                        System.out.println(temps2);
                        mfo = new RandomAccessFile(temps2, "rw"); // <--- Here is where the error is
    occuring every time.
                        mfo.writeBytes(line1);
                        mfo.writeBytes(line2);
                        mfo.writeBytes(line3);
                        mfo.writeBytes((String)nvect.get(i));
                        mfo.writeBytes(line4);
                        mfo.close();
    } catch (Exception e) {
    e.printStackTrace();
                   System.err.println((char)7 + "\n");

  • Error in template for code outside html

    Hi everyone
    I have a problem with a template.
    I use a simple tamplate master with this tag: <!--
    TemplateInfo codeOutsideHTMLIsLocked="false" --> in order to
    unlock the code outside the html.
    Well, I have also some pages with this templated applied to.
    Those ones are ok because when i try to apply any changes
    outside the html tag dreamweaver let me do this.
    But I have a problem. When I UpDate the template it replaces
    the code outside html with the code in it.
    Fore example this is what appears inside the master:
    <%@ Page Language="VB" AutoEventWireup="false"
    ContentType="text/html" ResponseEncoding="utf-8" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <!-- TemplateInfo codeOutsideHTMLIsLocked="false" -->
    When I have a page based on this template, like this:
    <%@ Page Language="VB" FileCode="aaa" Inherits="aaa"
    AutoEventWireup="false" ContentType="text/html"
    ResponseEncoding="utf-8" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml"><!--
    InstanceBegin template="/Templates/page.dwt.aspx"
    codeOutsideHTMLIsLocked="false" -->
    If i try to update the template it replaces the text outside
    the html tags in the based page, and it becomes so (in the page
    based on template after the template master update):
    <%@ Page Language="VB" AutoEventWireup="false"
    ContentType="text/html" ResponseEncoding="utf-8" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <!-- TemplateInfo codeOutsideHTMLIsLocked="false" -->
    THIS IS BAD!!!!!!!!!!!!!!!
    I need to chenge the page directive in asp net but the
    template doesnt work well!!!!!!!
    Please help

    Hi,
       Check below link, it may be useful.
    Re: QM_LSMW BY RECORDING METHOD FOR QP01
    Thanks,
    Asit Purbey.

  • How to read the code of html page

    Hi,
    I want to know how to read the code of html page through Java? And if anyone know the link of full implementation of Page Rank Algorithm in Java.
    Please let me know. I have to do the project on that topic.
    Regard
    Vivek

    Vivek_NITT wrote:
    I want to know how to read the code of html page through Java? Get the input stream from an HttpUrlConnection. Read from it like from any other stream.
    And if anyone know the link of full implementation of Page Rank Algorithm in Java.Which one?

  • My compouter (PC) no longer recognizes my ipod (4th gen), it "sees" an unknowndevice and gives me error code 43.  Please help.

    My compouter (PC) no longer recognizes my ipod (4th gen), it "sees" an unknowndevice and gives me error code 43.  Please help.

    Check for hardware issues
    Try to restore your iOS device two more times while connected with a cable, computer, and network you know are good. Also, confirm your security software and settings are allowing communication between your device and update servers. If you still see the alert when you update or restore, contact Apple support.
    Common errors: 1, 10-47, 1002, 1011, 1012, 1014, 1000-1020.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar                                      

  • The document could not be saved. The server said: "The operation failed because an unexpected error occurred. (Result code 0×80020005)" Please ensure you have completed all required properties with the correct information and try again.

    I am having problems  saving documents back to SharePoint when any of the document properties (metadata columns) are set to be "managed metadata". The check-in/save fails with error:
    The document could not be saved. The server said:
    “The operation failed because an unexpected error occurred. (Result code 0×80020005)”
    Please ensure you have completed all required properties with the correct information and try again.
    I have seen similar threads that suggest this is a known issue with this version of Acrobat but I would like conformation from Adobe that this is a known issue and whether it is fixed in a newer version?
    Adobe Acrobat version 10.1.13
    SharePoint 2010

    Hi quodd,,
    We are sorry for the issue being faced by you. I need some information from you so that I take further steps:
    1. Which Adobe product are you using Acrobat or Adobe reader- what is the complete version?
    2. How are you opening and saving the PDF, the exact workflow?
         Are you doing it from within Adobe Reader/Acrobat application or opening it from browser, doing changes and saving it using browser itself.
    3. Can you try to save a PDF to library with Custom template and managed metadata columns using browser directly.
    4. Please verify that columns name do not contain spaces or some other special characters.
       Can you try to save PDF to library with Custom template and just a single managed metadata column  with a simple name
    Thanks,
    Nikhil Gupta

  • Hello, i have a problem with this number code  213:19,  please help me!

    Hello, i have a problem with this number code  213:19,  please help me!

    dan
    What version of Premiere Elements and on what computer operating system is it running?
    If you are using Premiere Elements 13, have you updated it to 13.1 yet? If not, please do so using an opened project's Help Menu/Updates.
    What type of user account are you using....local administrator or domain type?
    Please review the following Adobe document on the 213.19 issue. Have you read that already?
    Error 213:19 | Problem has occurred with the licensing of this product
    ATR

  • When I download the digital copy of the Hunger Games, it stops at 4.0GB and first returns an error code -1309 and then the code -50. Please help me complete the download.

    When I download the digital copy of the Hunger Games, it stops at 4.0GB and first returns an error code -1309 and then the code -50. Please help me complete the download. I have tried removing the .tmp folder and downloading it again, but each time it stops the download in the same place.

    I discovered the solution. The external drive I was saving it to was formatted as FAT32. In that format, the largest files can only be 4GB, which explains why it kept stopping at 4GB. I backed up all the files then reformatted it as Mac OS Extended (Journaled), this is possible since I am on an iMac.

  • I need to unlock compaq mini cq10 bios password code is CNU027599F, please help

    i need to unlock compaq mini cq10 bios password code is CNU027599F, please help

    Ash.
    Check your other post.
    REO
    HP Expert Tester "Now testing HP Pavilion 15t i3-4030U Win8.1, 6GB RAM and 750GB HDD"
    Loaner Program”HP Split 13 x2 13r010dx i3-4012Y Win8.1, 4GB RAM and 500GB Hybrid HDD”
    Microsoft Registered Refurbisher
    Registered Microsoft Partner
    Apple Certified Macintosh Technician Certification in progress.

  • When trying to Burn a DVD I get the following error: 'The drive reported an error:Sense Key=MEDIUM ERROR Sense Code=0x73,0x03'   Please advise

    when trying to Burn a DVD I get the following error:
    'The drive reported an error:Sense Key=MEDIUM ERROR Sense Code=0x73,0x03' 
    Please advise

    this reccommendation is to OS 10.5.8 only
    Go to the hard drive find the following folders and look for the following file, com.apple.finder.Plist, delete it and restart the computer. Its found under the following folder Users-account name-library-prefrences. This helped resolve my issue for now.

  • TS1814 I can't seem to get the drivers downloaded on my windows laptop for my iphone 5s, the info is coming up generic and im getting a code 1.  Please help

    I can't seem to get the drivers downloaded on my windows laptop for my iphone 5s, the info is coming up generic and im getting a code 1.  Please help

    All necessary drivers are included in the iTunes install package.
    Please clarify exactly what the problem is.
    the info is coming up generic and im getting a code 1
    That's not very informative.

  • I am having trouble printing I have a connection to my printer wirelessly but does not print out the correct page I want.When I do print I get a bunch of pages more than is needed and also get a code and symbols please help I am jammed at work

    I am having trouble printing I have a connection to my printer wirelessly but does not print out the correct page I want.When I do print I get a bunch of pages more than is needed and also get a code and symbols please help I am jammed at work

    This can be the result of selecting the wrong driver. An older, unsupported laser printer will sometimes work with the generic Postscript driver.

  • HT1296 My Outlook 2010 is not picking up calendar entries from my 4S, and the phone is not picking up calendar entries from Outlook 2010. Help, please!

    My Outlook 2010 is not picking up calendar entries from my 4S, and the phone is not picking up calendar entries from Outlook 2010. Help, please!

    Only the carrier it is locked to can authorize unlocking it. Contact them.

  • I need to unlock compaq mini code is CNU027599F, please help

    i need to unlock compaq mini code is CNU027599F, please help
    This question was solved.
    View Solution.

    Ash try.
    e9l17xqoo8
    3rd letter lowercase L.
    4th is number 1.
    7th letter lowercase Q.
    8th and 9th letter lowercase O.
    Use that code to go into the BIOS.
    Disable all passwords that are enabled.
    IF asked for the CURRENT password use that code.
    IF asked for NEW password just hit enter.
    If asked to VERIFY password just hit enter.
    Save and exit.
    REO
    I must inform you that these services are not endorsed by HP, and that HP is not responsible for any damage that may arise to your system by using these services. Please be aware that you do this at your own risk.
    HP Expert Tester "Now testing HP Pavilion 15t i3-4030U Win8.1, 6GB RAM and 750GB HDD"
    Loaner Program”HP Split 13 x2 13r010dx i3-4012Y Win8.1, 4GB RAM and 500GB Hybrid HDD”
    Microsoft Registered Refurbisher
    Registered Microsoft Partner
    Apple Certified Macintosh Technician Certification in progress.

  • Pasting code for HTML Widget, not working!

    Hello,
    I recently watched the support video for widgets and Adobe Muse, and the video stated you simply copy the code for HTML Widget, and once you paste it into Adobe Muse, Muse would be able to automatically recognize that it is a widget and it would paste correctly. However, when pasting my HTML code into Muse I literally get the code. Nothing appears!
    Any help would be greatly appreciated! Thanks!
    Brandon

    Brandon,
    If the code you're pasting appears  to Muse to be valid HTML to embed, it should automatically paste as an HTML page item. If it's pasting as text, it may not be valid HTML, or Muse might not recognize it.
    You can also choose 'Insert HTML...' from the Object menu, and then paste your HTML into the dialog box.

Maybe you are looking for