Please Help - Secure Internet

On Sun's home page at http://java.sun.com they have an article
on "Secure Internet Programming with JavaTM 2, Standard Edition (J2SETM) 1.4" so I tried it out but I got "cannot resolve symbol" compiler
error when I tried to compile HttpsServer.java - so what do I change
to get it to compile?
Here's the actual error message:
HttpsServer.java:32: cannot resolve symbol
symbol : class ServerSocketFactory
location: class HttpsServer
ServerSocketFactory ssf = sslcontext.getServerSocketFactory();
^
1 error
I'm using JDK1.4.1 but I can't believe that is the problem. Here is the
soucre code from the article:
import java.io.*;
import java.net.*;
import javax.net.ssl.*;
import java.security.*;
import java.util.StringTokenizer;
* This class implements a multithreaded simple HTTP
* server that supports the GET request method.
* It listens on port 44, waits client requests, and
* serves documents.
public class HttpsServer
     String keystore = "serverkeys";
     char keystorepass[] = "hellothere".toCharArray();
     char keypassword[] = "hiagain".toCharArray();
     //The port number which the server will be listening on
     //*public static final int HTTP_PORT = 8080;
     public static final int HTTPS_PORT = 443;
     public ServerSocket getServer() throws Exception
          KeyStore ks = KeyStore.getInstance("JKS");
          ks.load(new FileInputStream(keystore), keystorepass);
          KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
          kmf.init(ks, keypassword);
          SSLContext sslcontext = SSLContext.getInstance("SSLv3");
          sslcontext.init(kmf.getKeyManagers(), null, null);
          ServerSocketFactory ssf = sslcontext.getServerSocketFactory();
          SSLServerSocket serversocket = (SSLServerSocket)ssf.createServerSocket(HTTPS_PORT);
          //*return new ServerSocket(HTTP_PORT);
          return serversocket;
     //multi-threading -- create a new connection for each request
     public void run()
          ServerSocket listen;
          try
               listen = getServer();
               while(true)
                    Socket client = listen.accept();
                    ProcessConnection cc = new ProcessConnection(client);
          catch(Exception e)
               System.out.println("Exception: "+e.getMessage());
     //main program
     public static void main(String argv[]) throws Exception
          HttpsServer httpserver = new HttpsServer();
          httpserver.run();
class ProcessConnection extends Thread
     Socket client;
     BufferedReader is;
     DataOutputStream os;
     public ProcessConnection(Socket s)
          //constructor
          client = s;
          try
               is = new BufferedReader(new InputStreamReader(client.getInputStream()));
               os = new DataOutputStream(client.getOutputStream());
          catch(IOException e)
               System.out.println("Exception: "+e.getMessage());
          this.start();                                                                            //Thread starts here...this start()     will call run()
     public void run()
          try
               //get a request and parse it.
               String request = is.readLine();
               System.out.println("Request: "+request);
               StringTokenizer st = new StringTokenizer(request);
               if((st.countTokens() >= 2) &&
               st.nextToken().equals("GET"))
                    if((request = st.nextToken()).startsWith("/"))
                         request = request.substring(1);
                    if(request.equals(""))
                         request = request + "index.html";
                    File f = new File(request);
                    shipDocument(os, f);
               else
                    os.writeBytes("400 Bad Request");
               client.close();
          catch(Exception e)
               System.out.println("Exception: " + e.getMessage());
     * Read the requested file and ships it
     * to the browser if found.
     public static void shipDocument(DataOutputStream out, File f) throws Exception
          try
               DataInputStream in = new
               DataInputStream(new FileInputStream(f));
               int len =(int) f.length();
               byte[] buf = new byte[len];
               in.readFully(buf);
               in.close();
               out.writeBytes("HTTP/1.0 200 OK\r\n");
               out.writeBytes("Content-Length: " + f.length() +"\r\n");
               out.writeBytes("Content-Type: text/html\r\n\r\n");
               out.write(buf);
               out.flush();
          catch(Exception e)
               out.writeBytes("<html><head><title>error</title></head><body>\r\n\r\n");
               out.writeBytes("HTTP/1.0 400 " + e.getMessage() + "\r\n");
               out.writeBytes("Content-Type: text/html\r\n\r\n");
               out.writeBytes("</body></html>");
               out.flush();
          finally
               out.close();
sou

borntwice80, many thanks for your response - good idea
but it turns out that all I needed was the following statement:
import javax.net.*;                                                       
...and that fixed the problem
...Actually, it was mutmansky in the java programming forum
that found it.

Similar Messages

  • Please Help - Secure Internet Programming

    On Sun's home page at http://java.sun.com they have an article
    on "Secure Internet Programming with JavaTM 2, Standard Edition (J2SETM) 1.4" so I tried it out but I got "cannot resolve symbol" compiler
    error when I tried to compile HttpsServer.java - so what do I change
    to get it to compile?
    Here's the actual error message:
    HttpsServer.java:32: cannot resolve symbol
    symbol : class ServerSocketFactory
    location: class HttpsServer
    ServerSocketFactory ssf = sslcontext.getServerSocketFactory();
    ^
    1 error
    I'm using JDK1.4.1 but I can't believe that is the problem. Here is the
    soucre code from the article:
    import java.io.*;
    import java.net.*;
    import javax.net.ssl.*;
    import java.security.*;
    import java.util.StringTokenizer;
    * This class implements a multithreaded simple HTTP
    * server that supports the GET request method.
    * It listens on port 44, waits client requests, and
    * serves documents.
    public class HttpsServer
    String keystore = "serverkeys";
    char keystorepass[] = "hellothere".toCharArray();
    char keypassword[] = "hiagain".toCharArray();
    //The port number which the server will be listening on
    //*public static final int HTTP_PORT = 8080;
    public static final int HTTPS_PORT = 443;
    public ServerSocket getServer() throws Exception
    KeyStore ks = KeyStore.getInstance("JKS");
    ks.load(new FileInputStream(keystore), keystorepass);
    KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
    kmf.init(ks, keypassword);
    SSLContext sslcontext = SSLContext.getInstance("SSLv3");
    sslcontext.init(kmf.getKeyManagers(), null, null);
    ServerSocketFactory ssf = sslcontext.getServerSocketFactory();
    SSLServerSocket serversocket = (SSLServerSocket)ssf.createServerSocket(HTTPS_PORT);
    //*return new ServerSocket(HTTP_PORT);
    return serversocket;
    //multi-threading -- create a new connection for each request
    public void run()
    ServerSocket listen;
    try
    listen = getServer();
    while(true)
    Socket client = listen.accept();
    ProcessConnection cc = new ProcessConnection(client);
    catch(Exception e)
    System.out.println("Exception: "+e.getMessage());
    //main program
    public static void main(String argv[]) throws Exception
    HttpsServer httpserver = new HttpsServer();
    httpserver.run();
    class ProcessConnection extends Thread
    Socket client;
    BufferedReader is;
    DataOutputStream os;
    public ProcessConnection(Socket s)
    //constructor
    client = s;
    try
    is = new BufferedReader(new InputStreamReader(client.getInputStream()));
    os = new DataOutputStream(client.getOutputStream());
    catch(IOException e)
    System.out.println("Exception: "+e.getMessage());
    this.start(); //Thread starts here...this start() will call run()
    public void run()
    try
    //get a request and parse it.
    String request = is.readLine();
    System.out.println("Request: "+request);
    StringTokenizer st = new StringTokenizer(request);
    if((st.countTokens() >= 2) &&
    st.nextToken().equals("GET"))
    if((request = st.nextToken()).startsWith("/"))
    request = request.substring(1);
    if(request.equals(""))
    request = request + "index.html";
    File f = new File(request);
    shipDocument(os, f);
    else
    os.writeBytes("400 Bad Request");
    client.close();
    catch(Exception e)
    System.out.println("Exception: " + e.getMessage());
    * Read the requested file and ships it
    * to the browser if found.
    public static void shipDocument(DataOutputStream out, File f) throws Exception
    try
    DataInputStream in = new
    DataInputStream(new FileInputStream(f));
    int len =(int) f.length();
    byte[] buf = new byte[len];
    in.readFully(buf);
    in.close();
    out.writeBytes("HTTP/1.0 200 OK\r\n");
    out.writeBytes("Content-Length: " + f.length() +"\r\n");
    out.writeBytes("Content-Type: text/html\r\n\r\n");
    out.write(buf);
    out.flush();
    catch(Exception e)
    out.writeBytes("<html><head><title>error</title></head><body>\r\n\r\n");
    out.writeBytes("HTTP/1.0 400 " + e.getMessage() + "\r\n");
    out.writeBytes("Content-Type: text/html\r\n\r\n");
    out.writeBytes("</body></html>");
    out.flush();
    finally
    out.close();

    No problem, glad to help.
    Sun, like anyone else, doesn't always catch typos and copy/paste errors. Hopefully next time something like this happens, you'll be able to understand the information that's available to you in the error message, and look in the documentation for help. That's the bigger lesson here.
    Steve

  • Hi i am not able to retrieve web/internet history please help. my Internet service provider advise me to contact you.

    for some reason i am not able to retrieve or view my web/internet history please help

    Is the history enabled?
    To see all History and Cookie settings, choose:
    *Tools > Options > Privacy > Firefox will: "Use custom settings for history"
    *https://support.mozilla.org/kb/Options+window+-+Privacy+panel
    Do you see any history in the History Manager (Library; Show All history)?
    *Tap the Alt key or press F10 to show the Menu Bar
    There is also a History button in the "3-bar" Firefox menu button drop-down list.

  • Please help with internet problems

    Hi
    I have just started having problems with my blackberry curve. When i go to internet and click on my bookmarks it opens up front page fine but when i try to click on pages to connect to from front page it kicks me out straight to bookmarks page. Please help ????????????> this has only started in last few days i.e i go to sky sports which it opens then trying to click on an item to read it kicks me straight to bookmarks page????????

    Hi cp70uk
    Welcome to BlackBerry Support Forums
    Have you try Clearing your device Browser data ,you can try this and see if that helps ,For that Open your Browser > Press  the Menu key > Scroll down to Clear Browser Data ( Mark all fiels ) then Clear Now .
    Then perform a Battery Pull Restart like this device POWERED ON remove the battery wait for a min. then reinsert it back ,after reboot see if problem resolves.
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.

  • Please Help: no internet on MBP (10.8.3) via iPhone 5 (6.1.4) personal hotspot, usb or bluetooth

    Hello all,
    I used to be able to get Internet on my MBP (mid 2009 13, OSX 10.8.3) through iPhone 5 (ios 6.1.4) using either USB or bluetooth. Now, the personal hotspot LINK between my MBP and Iphone via bluetooth is ACTIVE (the blue bar says there's a connection), but there's NO INTERNET CONNECTION. USB tethering doesn't work at all (no blue bar).
    Because the personal hotpot still works between my iPhone 5 and iPad 2, I suspect that the problem is with my mac. I've tried re-pairing my Mac and the phone a couple of times. I've reset iPhone network settings. Nothing I tried helped. Can someone help please?
    Thanks, Shiang

    I was asking whether you could tether via Wi-Fi. I take it that you can't.
    Run the Network Diagnostics assistant. How far do you get?

  • PLEASE HELP! INTERNET CONNECTION PROBLEMS....

    Hey guys!
    I just got myself a brand new itouch last week (I'm SO excited), the problem is this, i cannot get it to connect to the internet! I've got a wired connection, and i need to know how to either change everything over to wireless (which would be an expensive pain as I've got a HD tivo, a Wii, an xbox 360, plus my computed that are using up everything on my router) or somehow get a wireless router connected to all of this somehow...my cable modem has only one output, too. So, I feel TOTALLY helpless! Maybe there is something I'm missing or not thinking of or something, but I'm so frustrated! I love my itouch and want to definitely keep it but...how do i get it to connect to the internet? Sorry about the rambling message...Thanks for listening...
    ~joey~

    While an Apple Airport is a very nice router (and is clearly very Mac friendly in terms of setup and such), it is expensive.
    You could achieve the same results - a wireless connection for your Touch - with a low-end wireless router from Belkin, Netgear, Linksys, etc. You only need 802.1 g/b (i.e., some of the newer, "faster" access protocol won't work on the Touch anyway), so you could go with some of the lowest-end offerings from these other manufacturers. Generally, such things are available from office supply (e.g., Staples) or big box (e.g., Best Buy) stores for under $50. You could also search somewhere like Craigslist and find and older one (that someone is upgrading from) for for next to free. If nesc, go to the maker's website to download a manual once you have a used piece of equip. Since you seem to be a PC (windows) user, you should be able to run the setup programs on the manuf-supplied CDs for most anything that you find.
    In most cases, you can bridge your "new" wireless router to the wired router, thereby keeping your wired router fully in place. Or, you may be able to swap everything over to the wireless router (using its wired ports...most wireless routers have a least 4 wired ports...for those devices you have that aren't wireless). Depending on what you get for a wireless router, you have a variety of options.
    Hope this helps.

  • Please help! Internet on parallels and through airport, but not in OSX??

    I have snow leopard on MBP. At one of my places at work, when I connect to the network - I cannot get internet to work inside OS X - i.e. mail, safari, firefox - all do not work. However, if I start up parallels - the firefox and other programs within XP parallels work perfectly. What's more, if I enable internet sharing through airport, I can also use my ipod touch to connect to the internet through my MBP!! Inside OSX - most things do not work most of the time, and on occasion, microsoft entourage works for a bit...
    Looking at little snitch, looks like a lot of active "local" network activity by natd and MDNSResponder - nonstop.
    The console is full of messages... one today in a non-stop loop was:
    10-10-26 2:47:28 PM mDNSResponder[30] GenerateUnicastResponse: ERROR! Why no questions?

    Thanks for replying. I don't think I'm running other low level programs... hotspot shield in the background, but not up and running.... Also, this problem occurs at one of my offices, but not in my other office or at home. It seems so very strange, and I'm tearing my hair out. Resorting to either running parallels or checking my email on my ipod.

  • Hi, I tried to change my security questions on the internet. But, for some reason, the button to change them is not there! This is annoying as I have recently bought an iTunes voucher and now I cannot buy any new apps. Can anybody please help me!!

    Hi, I tried to change my security questions on the internet. But, for some reason, the button to change them is not there! This is annoying as I have recently bought an iTunes voucher and now I cannot buy any new apps. Can anybody please help me!!

    Security questions:
    https://discussions.apple.com/docs/DOC-4551

  • I'm in Afghanistan with limited internet options. I have a wifi service plan I am signed up for however, a log in and password are required via browser log in, not a security key attached to the wifi. Please help...

    I'm in Afghanistan with limited internet options. I have a wifi service plan I am signed up for however, a log in and password are required via browser log in, not a security key attached to the wifi (like a hotel). Please help...

    the appletv will not be able to work on it's own
    you can use a computer or iphone acting the role of hotspot login using it's browser and getting internet access and then sharing it with the appletv
    so the appletv sees it as a wifi router it connects to

  • I can't connect my iphone 4s with my internet. I have read all conversations I could find on this topic and nothing has worked. Please help!!

    I have tried seemingly everything and my phone will not connect. I have reset network settings, rebooted my modem, tried the series of steps listed starting with turing on airplane mode...nothing has worked. I have time warner internet service and it connects just fine with my mac and my husband's ipad and LG phone. I have tried typing in my network name but it always says "could not find the network", which is frustrating when I'm using "the network" to google search this issue. Please help!!! Thank you!!

        D13, thanks for these details. This an awesome clue. Are you able to connect to this Wi-Fi connection with other devices? Let's try a few steps to resolve this issue.
    First, reset the network in Settings>General>Reset>Reset Network and power your device off/on.
    Secondly, delete the Wi-Fi connection in Settings>Select your Wi-Fi>Forget this Network and the try to connect to that Wi-Fi again.
    Lastly, try creating your Wi-Fi connection. Tap Settings>Enable Wi-Fi ON. From Choose a Network, select Other. Enter the Wi-Fi network name. Select Security. Select the Wi-Fi network type then select Other Network. Enter the Wi-Fi network password then select Join
    Keep us posted.
    LasinaH_VZW
    Follow us on Twitter @VZWSupport

  • No internet access of MacBookPro and D-Link DI-624, please help.

    Hello there,
    My week 13 build MBP cannot connect to internet, please advice me what I can do (in both MBP settings and router settings) to make internet connection stays ON.
    I have been struggling with this problem for weeks. I am a new Mac user, and I thought I messed up my system settings in the beginning, therefore I even go to extreme to redo the recovery back to factory condition. Before the recovery, internet works, but not so often. Right after the recovery process, the internet still don't work.
    I have tried like some other threads says to add a $ sign before the WEP P/W, no help. AS A MATTER OF FACT, I have purposely enter an invalid p/w for the WEP, and Airport still accepts it, or adding the $ sign before a valid p/w. Both situations the Airport shows I am connected to my home network........that really beats me.
    After a few more trys with a valid p/w, last night it finally works. I can swear nothing out of ordinary did I do this time, just happens. But after a restart of computer, the internet access is gone aagain.
    Before the recovery, the system is 10.4.6, with the CD that comes with my computer, the recovery system is 10.4.5. I have seen from other threads that some users after upgrading to 10.4.6, their internet drops, IS THAT TRUE? But the thing is, after my recovery with 10.4.5, my internet doesn't work right off the bet.
    Any DI-624 and MBP users out there who have made theirs units work, please help and respond.......thanks in advance.

    Thanks for replying and the advice you offer.
    The connection still won't work.
    What I did is first connect a cable from my MBP to the router, then using a PC to web configure the router settings. (BTW, my firmware is the latest one 2.70)
    Disable : Super G Mode, Extended Range Mode, 802.11g Only Mode and all Security.
    Enable: SSID Broadcast
    Then turn on the MBP, go to System Preferences – Network:
    Location: Automatic
    Show: Built-in Ethernet
    Under tab TCP/IP:
    Configure IPv4: Using DHCP
    IP Address: 192.168.0.xxx
    Subnet Mask: 255.255.255.x
    Router: 192.168.0.x
    DHCP Client ID: blank (don’t know what that is?)
    DNS Servers: blank (don’t know what that is?)
    Search Domains: blank
    IPv6 Address: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx
    Click Renew DHCP Lease, same values shown.
    Turn web browser on, not connected.
    Did I do or enter anything wrong? I have not re-enter the wireless security yet since the wired connection is not working.
    But I did notice something in the router setup for security:
    Security options are Disable, WEP, WPA, WPA2 (my choice), and WPA2-Auto
    Then anytime you select either WPA, WPA2, or WPA2-Auto, they will show the following choices:
    Cipher Type [(TKIP, by default, and my choice), or (AES)]
    PSK/EAP [ (PSK, by default and my choice), or (EAP)]
    Then enter and reconfirming “passphrase”.
    Please indicate if this is something you have. Thanks for the help again.

  • All of a sudden some of my sites have stopped working properly on Firefox and I have had to (reluctantly) go back to Internet Explorer to get them to work properly. Why??? Please help because I always prefer Firefox in all internet stuff

    The problem sites have always worked properly on Mozilla Firefox until 2 of them stopped giving full access. I reverted to (yuk) Internet Explorer to see if the problem was still there, but, surprisingly I had full access with both programes. I repeated the attempts a couple of times in Firefox but now have to use IE when I require proper access.
    Is the problem in a setting somewhere??
    Please help because I HATE IE
    Thanks & Regards

    [https://support.mozilla.org/en-US/kb/How%20to%20clear%20the%20cache#w_clear-the-cache Clear your browser cache].
    If needed, delete the site's cookies. <br />
    Right-click the page, choose View Page Info > Security > "View Cookies"

  • TS1398 My Ipad was working but I now can't access the internet. I have tried resetting and turning Wifi on and off.  It is just showing as buffering all the time?  Please help

    My Ipad was working on the internet but it now won't connect.  I have tried resetting the network and turning Wifi on and off.  When trying to connect it is continuously buffering.  Can anyone please help??  Thanks in advance

    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router (Auto is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Fully Connected to AirPort Extreme, But With No Internet (PLEASE HELP!)

    I have spent my Labor Day trying to figure out what is wrong with my wireless connection to no avail. I am entirely frustrated and would appreciate any helpful advice that can be offered.
    Here's the deal:
    Yesterday afternoon, the two computers on my wireless network (an iMac PowerPC G4 and a Dell Inspiron E1705 laptop) lost connection to the Internet. We had lost power earlier in the day, but didn't have any issues immediately after it was restored. A few hours later, it just stopped.
    Today, I started troubleshooting to figure out how to fix it. The Dell had no trouble finding the network and connecting, but it was only connecting "locally." Same with mine. We've also got a Nintendo Wii connected wirelessly, but it was also not working. Lastly, we have an HP Photosmart C4280 printer plugged into the AirPort's USB. Despite not being able to get on the Internet or restore Wi-Fi to the Wii, we are still able to print without issue (from both computers).
    At one point, I got Internet back on my iMac, but I kept messing around with the network settings in the hopes of getting everything back to normal and lost it again. I've been mainly playing around three different settings: the AirPort Admin Utility (changing Channels in the AirPort tab, checking boxes in the Network tab, etc.), the AirPort Setup Assistant (messing around with the Wireless Security), and the Network Control Panel (clicking things I don't understand in the TCP/IP tab, etc.).
    At first, I thought the issue was with my security settings, so I tried setting up the AirPort without a password, and still could not connect with the iMac, Dell, or Wii. In a last-ditch effort, I went out and bought a Linksys Simultaneous Dual-N Band Wireless Router, which restored the Internet to the iMac, Dell, and Wii. Problem is, I love the AirPort (and do not want to sacrifice wirelessly printing through its USB).
    I am completely frustrated! If anyone has any suggestions whatsoever, please help me out. It would be greatly appreciated!!
    Have a great night!
    TK

    Ok, I'm going to assume that you are using the newer AirPort Utility and not the older AirPort Admin Utility that originally came on the CD with your AEBS.
    If this is correct, the following would be the basic settings:
    Either connect to the AEBS's wireless network or temporarily connect your computer directly (using an Ethernet cable) to the LAN port of the AEBS, and then, using the AirPort Utility in Manual Setup, check these settings:
    AirPort - Base Station tab
    o Base Station Name: <whatever you wish or use the default>
    o Base Station Password: <enter the desired administrator's password, the default is "public">
    o Verify Password: <re-enter the desired password>
    o Set time automatically: (optional)
    o Allow configuration over Ethernet WAN port: (optional)
    AirPort - Base Station - Base Station Options
    o Contact: (optional)
    o Location: (optional)
    AirPort - Wireless tab
    o Wireless Mode: Create a wireless network
    o AirPort Network Name: <whatever you wish or use the default>
    o Radio Mode: 802.11b/g compatible
    o Channel: Automatic
    o Wireless Security: None
    AirPort - Wireless - Wireless Options
    o Multicast Rate: 2 Mbps
    o Transmit Power: 100%
    o Create a closed network (unchecked)
    o Use Interference Robustness: Not enabled
    Internet - Internet Connection tab
    o Connect Using: Ethernet
    o Configure: Using DHCP
    o DNS Server(s): (optional)
    o Domain Name: (optional)
    o DHCP Client ID: (optional)
    o Ethernet WAN Port: Automatic (Default)
    o Connection Sharing: Share a public IP address
    Internet - DHCP tab
    o DHCP Range: <leave default or enter desired range>
    o DHCP Beginning Address: <leave default or enter desired beginning address>
    o DHCP Ending Address: <leave default or enter desired ending address>
    o DHCP Lease: <leave default or enter desired lease duration>
    o DHCP Message: (optional)
    o LDAP Server: (optional)
    Internet - NAT tab
    o Enable default host at: (unchecked)
    o Enable NAT Port Mapping Protocol: (unchecked)
    Once you verified that you can get Internet access for all of your computers, you should secure your wireless network. To do so, I suggest that you make these changes:
    AirPort - Wireless tab
    o Wireless Security: WPA/WPA2 Personal or WPA2 Personal
    o Wireless Password: <enter desired wireless encryption password>
    o Verify Password: <re-enter desired wireless encryption password>

  • Please adjust your InterneWhat do I do with this message: Please adjust your Internet Security software to allow referring URLs.

    I am trying to access Morningstar through my Hennepin County Library Account. When I do so, I get this message:
    Sorry, we were not able to authenticate you for access to this resource. Please adjust your Internet Security software to allow referring URLs.
    How do I do this?

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

Maybe you are looking for

  • Select option in Struts - problem

    Hi, I have a following problem. I have a collection of objects (TDOs) which I am displaying using <logic:iterate> tag. TDO contains property whose value is for example number 1 but instead I need to display some text value - for example "Some text fo

  • Mapping error: VLD-1111

    New user. I am trying to create mapping with a simple transformation. The mapping goes from 1) flat file --> 2) staging table --> 3) final table - The transformation expression is between #2 & #3 and is only for one field added to '100'... - Error re

  • Hi this is related to the Implementation

    Hi there I have around 4 years of experience in purchasing , inventory , quality , material costing in real industry as well 2 years experience in SAP MM & QM module on support level Now my company want to me to go for one of the implementation proje

  • Cannot open/stat device

    Good day to all. I'm trying to install Solaris 10 (11/06) on my pentium D box. I have 1 SATA hdd (primary master) and 1 DVD-RW drive. The hdd have 2 primary partitions - 1st - win-xp, ntfs, 2nd - for Solaris OS and 1 logical partition. During install

  • A simple Applet that doesn't work...

    1. The class file is compiled without any problems 2. The html-file works. It's in the same directory. But when I open the html-file I've this output (Java Console InternetExplorer 5.5): Error loading class: test java.lang.NoClassDefFoundError java.l