Click here to Skip to main content
15,892,537 members
Articles / Programming Languages / XML

Generate PDF Using C#

Rate me:
Please Sign up or sign in to vote.
4.75/5 (41 votes)
1 Feb 2009CPOL9 min read 546.4K   11K   262  
Using OpenOffice to convert different document types to PDF.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.Remoting.Channels.Tcp;
using System.Runtime.Remoting.Channels;

namespace OpenOfficeService.Objects
{
    /// <summary>
    /// Generic Sender class that can be used when communicating with OpenOffice Wrapper Service
    /// </summary>
    public class GenericSender
    {
        private static object _initLock = new object();
        private static bool _initialied = false;
        public static void Init(string address)
        {
            lock (_initLock)
            {
                if (!_initialied)
                {
                    TcpClientChannel channel = new TcpClientChannel("tcpOpenOfficeServiceClientChannel",
                        new BinaryClientFormatterSinkProvider());
                    ChannelServices.RegisterChannel(channel, false);

                    _receiver = (IReceiver)Activator.GetObject(typeof(IReceiver), address);

                    _initialied = true;
                }
            }
        }


        private static IReceiver _receiver;
        public static IReceiver Receiver
        {
            get { return GenericSender._receiver; }
            set { GenericSender._receiver = value; }
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer
United States United States
If you liked this article, consider reading other articles by me. For republishing article on other websites, please contact me by leaving a comment.

Comments and Discussions