Add ssL in my Web site

Hi all,
I built a samall web site , using tomcat + MS sql 2000, I want to add ssL into my Web. How to begin. My Jdk is dk1.4.2_08is that means I don't need to download any software ?
please off some link or suggestion!
thank you

By "ssL" do you mean "SSL", i.e. Secure Sockets Layer, aka HTTPS? I'm just not sure about the funky capitalization.
If you do mean SSL: when I google for "tomcat ssl" the first hit I get looks promising: "The Tomcat 4 Servlet/JSP Container - SSL Configuration HOW-TO".

Similar Messages

  • How do I add advertising to my web site?

    I have looked through Help but can't find any assistance in placing ads on my web site. Any suggestions?
    Message was edited by: govan

    Insert > Google Adsense ad
    To learn everything about it search for "google adsense" in the Help.

  • Add Controls on the web site

    I would like to add controls on the web form and want to know should I use HTM code to add controls or can drag and drop from any tool box?
    Your information and help is great appreciated,
    Regards,
    Iccsi,

    Thanks for the message and helping,
    I want to place a button, a label and a text box  on my web page form.
    Are there any tool box to select and drap and drop on the form or I need add HTML code like
    <input type="button" name="cmdSubmit" />  to add a control?
    Thanks again for helping and information,
    Regards,
    Iccsi,

  • I'm running V-6.0 And am trying to fix my add-ons and your web site keeps telling me I'm running Ver.- 3.0.16 Whats the problem?

    Trying to download the compatibility reporter and it says I'm running Ver. 3.0.16 and that I need Ver. 9.0a1. What???? I just upgraded to Ver. 6.0 also when I tried to submit feedback It said I needed to upgrade to Ver. 6.0 but I already did!!! I think it might be time to try Google Chrome! All the people I recommended firefox to are no longer using it because their add-ons no longer work. Running Windows XP

    Make sure iTunes is up to date and try again.

  • What event handling code do I need to access a web site ?

    Hello
    I am doing a GUI program that would go to a program or a web site when a button is clicked. What event handling code do I need to add to access a web site ?
    for instance:     if (e.getSource() == myJButtonBible)
              // go to www.nccbuscc.org/nab/index.htm ? ? ? ? ? ? ?
            } below is the drive class.
    Thank you in advance
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    import java.awt.event.*;
    import javax.swing.JEditorPane.*;
    public class TryGridLayout
      public TryGridLayout() {
        JFrame myJFrame = new JFrame("Choose your program");
        Toolkit myToolkit = myJFrame.getToolkit();
        Dimension myScreenSize = myToolkit.getDefaultToolkit().getScreenSize();
        //Center of screen and set size to half the screen size
        myJFrame.setBounds(myScreenSize.width / 4, myScreenSize.height / 4,
                           myScreenSize.width / 2, myScreenSize.height / 2);
        //change the background color
        myJFrame.getContentPane().setBackground(Color.yellow);
        //create the layout manager
        GridLayout myGridLayout = new GridLayout(2, 2);
        //get the content pane
        Container myContentPane = myJFrame.getContentPane();
        //set the container layout manager
        myContentPane.setLayout(myGridLayout);
        //create an object to hold the button's style
        Border myEdge = BorderFactory.createRaisedBevelBorder();
        //create the button size
        Dimension buttonSize = new Dimension(190, 100);
        //create the button's font object
        Font myFont = new Font("Arial", Font.BOLD, 18);
        //create the 1st button's object
        JButton myJButtonCalculator = new JButton("Calculator");
        myJButtonCalculator.setBackground(Color.red);
        myJButtonCalculator.setForeground(Color.black);
        // set the button's border, size, and font
        myJButtonCalculator.setBorder(myEdge);
        myJButtonCalculator.setPreferredSize(buttonSize);
        myJButtonCalculator.setFont(myFont);
        //create the 2nd button's object
        JButton myJButtonSketcher = new JButton("Sketcher");
        myJButtonSketcher.setBackground(Color.pink);
        myJButtonSketcher.setForeground(Color.black);
    // set the button's border, size, and font
        myJButtonSketcher.setBorder(myEdge);
        myJButtonSketcher.setPreferredSize(buttonSize);
        myJButtonSketcher.setFont(myFont);
        //create the 3rd button's object
        JButton myJButtonVideo = new JButton("Airplane-Blimp Video");
        myJButtonVideo.setBackground(Color.pink);
        myJButtonVideo.setForeground(Color.black);
    // set the button's border, size, and font
        myJButtonVideo.setBorder(myEdge);
        myJButtonVideo.setPreferredSize(buttonSize);
        myJButtonVideo.setFont(myFont);
        //create the 4th button's object
        JButton myJButtonBible = new JButton("The HolyBible");
        myJButtonBible.setBackground(Color.white);
        myJButtonBible.setForeground(Color.white);
    // set the button's border, size, and font
        myJButtonBible.setBorder(myEdge);
        myJButtonBible.setPreferredSize(buttonSize);
        myJButtonBible.setFont(myFont);
        //add the buttons to the content pane
        myContentPane.add(myJButtonCalculator);
        myContentPane.add(myJButtonSketcher);
        myContentPane.add(myJButtonVideo);
        myContentPane.add(myJButtonBible);
        JEditorPane myJEditorPane = new JEditorPane();
        //add behaviors
        ActionListener myActionListener = new ActionListener() {
          public void actionPerformed(ActionEvent e) throws Exception
            /*if (e.getSource() == myJButtonCalculator)
              new Calculator();
            else
            if (e.getSource() == myJButtonSketcher)
              new Sketcher();
            else
            if (e.getSource() == myJButtonVideo)
              new Grass();
            else*/
            if (e.getSource() == myJButtonBible)
               // Go to http://www.nccbuscc.org/nab/index.htm
        }; // end of actionPerformed method
        //add the object listener to listen for the click event on the buttons
        myJButtonCalculator.addActionListener(myActionListener);
        myJButtonSketcher.addActionListener(myActionListener);
        myJButtonVideo.addActionListener(myActionListener);
        myJButtonBible.addActionListener(myActionListener);
        myJFrame.setVisible(true);
      } // end of TryGridLayout constructor
      public static void main (String[] args)
        new TryGridLayout();
    } // end of TryGridLayout class

    Hello
    I am doing a GUI program that would go to a program or a web site when a button is clicked. What event handling code do I need to add to access a web site ?
    for instance:     if (e.getSource() == myJButtonBible)
              // go to www.nccbuscc.org/nab/index.htm ? ? ? ? ? ? ?
            } below is the drive class.
    Thank you in advance
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    import java.awt.event.*;
    import javax.swing.JEditorPane.*;
    public class TryGridLayout
      public TryGridLayout() {
        JFrame myJFrame = new JFrame("Choose your program");
        Toolkit myToolkit = myJFrame.getToolkit();
        Dimension myScreenSize = myToolkit.getDefaultToolkit().getScreenSize();
        //Center of screen and set size to half the screen size
        myJFrame.setBounds(myScreenSize.width / 4, myScreenSize.height / 4,
                           myScreenSize.width / 2, myScreenSize.height / 2);
        //change the background color
        myJFrame.getContentPane().setBackground(Color.yellow);
        //create the layout manager
        GridLayout myGridLayout = new GridLayout(2, 2);
        //get the content pane
        Container myContentPane = myJFrame.getContentPane();
        //set the container layout manager
        myContentPane.setLayout(myGridLayout);
        //create an object to hold the button's style
        Border myEdge = BorderFactory.createRaisedBevelBorder();
        //create the button size
        Dimension buttonSize = new Dimension(190, 100);
        //create the button's font object
        Font myFont = new Font("Arial", Font.BOLD, 18);
        //create the 1st button's object
        JButton myJButtonCalculator = new JButton("Calculator");
        myJButtonCalculator.setBackground(Color.red);
        myJButtonCalculator.setForeground(Color.black);
        // set the button's border, size, and font
        myJButtonCalculator.setBorder(myEdge);
        myJButtonCalculator.setPreferredSize(buttonSize);
        myJButtonCalculator.setFont(myFont);
        //create the 2nd button's object
        JButton myJButtonSketcher = new JButton("Sketcher");
        myJButtonSketcher.setBackground(Color.pink);
        myJButtonSketcher.setForeground(Color.black);
    // set the button's border, size, and font
        myJButtonSketcher.setBorder(myEdge);
        myJButtonSketcher.setPreferredSize(buttonSize);
        myJButtonSketcher.setFont(myFont);
        //create the 3rd button's object
        JButton myJButtonVideo = new JButton("Airplane-Blimp Video");
        myJButtonVideo.setBackground(Color.pink);
        myJButtonVideo.setForeground(Color.black);
    // set the button's border, size, and font
        myJButtonVideo.setBorder(myEdge);
        myJButtonVideo.setPreferredSize(buttonSize);
        myJButtonVideo.setFont(myFont);
        //create the 4th button's object
        JButton myJButtonBible = new JButton("The HolyBible");
        myJButtonBible.setBackground(Color.white);
        myJButtonBible.setForeground(Color.white);
    // set the button's border, size, and font
        myJButtonBible.setBorder(myEdge);
        myJButtonBible.setPreferredSize(buttonSize);
        myJButtonBible.setFont(myFont);
        //add the buttons to the content pane
        myContentPane.add(myJButtonCalculator);
        myContentPane.add(myJButtonSketcher);
        myContentPane.add(myJButtonVideo);
        myContentPane.add(myJButtonBible);
        JEditorPane myJEditorPane = new JEditorPane();
        //add behaviors
        ActionListener myActionListener = new ActionListener() {
          public void actionPerformed(ActionEvent e) throws Exception
            /*if (e.getSource() == myJButtonCalculator)
              new Calculator();
            else
            if (e.getSource() == myJButtonSketcher)
              new Sketcher();
            else
            if (e.getSource() == myJButtonVideo)
              new Grass();
            else*/
            if (e.getSource() == myJButtonBible)
               // Go to http://www.nccbuscc.org/nab/index.htm
        }; // end of actionPerformed method
        //add the object listener to listen for the click event on the buttons
        myJButtonCalculator.addActionListener(myActionListener);
        myJButtonSketcher.addActionListener(myActionListener);
        myJButtonVideo.addActionListener(myActionListener);
        myJButtonBible.addActionListener(myActionListener);
        myJFrame.setVisible(true);
      } // end of TryGridLayout constructor
      public static void main (String[] args)
        new TryGridLayout();
    } // end of TryGridLayout class

  • Control from a web site

    I have creative live motion and i would like to move from another application or make a link to the original movement application but i want all this form internet, i have a web site and i'm streaming video but also i would like to add movement to the web site if there will be a way to manage or if any of you have an idea to do it, i will appreciate www.sismoweb.com
    Message Edited by juanmrobles3 on 04-30-2007 12:47 PM

    I have creative live motion and i would like to move from another application or make a link to the original movement application but i want all this form internet, i have a web site and i'm streaming video but also i would like to add movement to the web site if there will be a way to manage or if any of you have an idea to do it, i will appreciate www.sismoweb.com
    Message Edited by juanmrobles3 on 04-30-2007 12:47 PM

  • I am running 10.6.8 and using iweb for my web site. After several SEO analysis they all indicate I need H1-6 header tags. After looking at the source code I see there are none in iweb. Is it necessary to add? If so, how do I add H Tags to iweb.

    I am running 10.6.8 and using iweb for my web site. After several SEO analysis they all indicate I need H1-6 header tags. After looking at the source code I see there are none in iweb. Are they necessary to add?  Why would one add these tags and how do I add H Tags to iweb? And are there examples to look at? I am slowly learning about simple web design and assumed that iweb was stand alone without having to write code. Is this one of the reasons iweb is no longer supported? Thanks for looking at this!

    A simple text page like this:
    Heading
        sub heading
              text paragraph ....
    Is traditionally represented by html tags like:
    <h1>Heading</h1>
         <h2>sub heading</h2>
              <p>text paragraph ... </p>
    I would guess that the use of h1-h6 tags helps search engines to understand the structure of a page as the tags imply a certain structure.
    This can be compared to more generic tags like <div> that could represent any kind of content - and may be what iWeb uses (you'll have to check yourself).
    I would generally recommend that you use some kind of up to date blog/site building tool, perhaps Wordpress or Squarespace (I haven't used either one myself) that support current web technologies - this should reduce your SEO issues and make it easier to properly support mobile/tablet users.

  • How do I add a web site to my favorites

    I Can't seem to find a way to enable a favorites bar on safari.  What am I doing wrong

    Settings>Safari>Show Favorites Bar>On. To save a web site to Favorites, tap the action icon in the upper right corner of the Safari toolbar and select Add Bookmark>Location>Favorites.

  • How do I add a web site to Apple Tv?

    How do I add a web site to Apple Tv?  Does the site need something special like for adding radio stations?

    You can't add content to Apple TV. You will have to use airplay (from a compatible site) or mirror (using a compatible device)
    http://support.apple.com/kb/HT4437?viewlocale=en_US&locale=en_US
    http://support.apple.com/kb/ht5209
    http://support.apple.com/kb/ht5404

  • How do you add a google calendar to muse web site, that updates are synced

    how do you add a google calendar to muse web site, that updates are synced?

    You can add Google Calender using iframe which Google provides if you go to calender settings.
    Once you insert this code in Muse page through Object > Insert HTML , the calender will be displayed on page.
    https://support.google.com/calendar/answer/41207?hl=en
    Thanks,
    Sanjit

  • How do I add downloadable PDF files to my web site?

    Help!
    I'm creating a web site, and I need to add two buttons that, when clicked, will download two different PDF files. I have absolutely NO IDEA how to do this!!! Not a clue!
    I'm using actionscript 3 and Flash CS4.
    Any help would be greatly appreciated!!!! Thank you!
    Kelly

    Thank you everyone for your response!!!
    I found this code on a tutorial :
    var getFile:URLRequest=new URLRequest("http://www.my_website_name.com/my_pdf_file_name.pdf");
    pdf_btn.addEventListener(MouseEvent.CLICK, getMyFile);
    function getMyFile(event:MouseEvent):void {
    navigateToURL(getFile,"_blank");
    This code downloads a zipped file perfectly! However, it won't download or even bring up the pdf file. (I thought something might be wrong with the pdf file. I renamed it, used a completely different pdf file; nothing! I still get a blank page.)
    Tiago, I tried implementing your code too... I know this should work!
    I really appreciate all of your help!!! Thank you! Thank you!

  • How do you add a web site to a folder in the iMac Bookmarks Bar?

    Safari 6.0.5 does not have a "+" left of the URL. According to the Apple Safari video, that is how you add a web site to a folder in the Bookmarks bar.

    Drag the website "icon" from the URL bar into the folder in the Bookmarks Bar.
    When you start draging, a green + will appear.
    Best.

  • How can I add a column to show the website (web site) of an rss feed?

    I've got a lot of rss feeds coming into thunderbird. I organized some into folders, but also have a folder for several rss feeds as they adress the same topics and I prefer not to browse through 25 separate folders. However, the sender doesn't always make it clear which blog it's from, so I'd like to add a column which shows the website of the rss feed. (sender is often: [email protected], and there are different writers for a single blog who themselve have their own blog as well, so can't sort on sender name either).
    When opening an rss feed, it displays in the header: web site (with the space) and then the web adress. This is what I'd like to be able to see in my columns.
    I didn't see an option yet to customize columns, nor did I find an addon that does this.
    Does anyone know a solution?

    Thanks, that seems to work. I'm struggling to place the lightbox at the top of the page however - when I click the trigger I want the menu image to display anchored to the top of the page, but there's always a gap as it centers the image. Help is appreciated!

  • Is there anyway to print an ibook - was told I could add a link to the ibook that would send the customer to my web site where they could print it?

    Is there anyway to print an ibook -
    was told I could add a link to the ibook that would send the customer to my web site where they could print it?
    I was told a customer could not print an ibook that they purchased?
    Trying to figure out a way for them to purchase a book that they need to fill in information.
    or download to their computers and print.
    Any suggestions.... I have called and emailed - but can't get an answer
    I have 5 books I would like to do this with.
    <E-mail Edited by Host>

    BlueEyesinLA wrote:
    Is there anyway to print an ibook -
    Not as such.  You would have to put a pdf version on your web site for download, which the reader would then have to print for himself.  A pdf version might look rather different than the epub or .ibooks version, you would have to try that yourself to see how much.

  • How does one add a photo gallery to my web site in Dreamweaver CS5 and have the link recognized as a destination file?

    How does on add a photo gallery to a web site in Dreamweaver CS5 and have the file folder which contains the photos, recognized as the "go to location" for the link up?

    Ok.  So Photos1.htm is the main gallery page.
    And it looks like you have sub-folders with images in them like these from 2011 and 2010
    LLA Picnic 2011/
    photos 2010/
    Have you defined a site in DW yet?   That's a critical first step in getting DW to recognize your site's links and other assets.  See video below:
    GS-01: Defining a new site | Learn Dreamweaver CS5 & CS5.5 | Adobe TV
    Nancy O.

Maybe you are looking for