Cant make it work

I have a G5, dual 1.8.. I installed an airport extreme card the other night when I bought a new laptop, a macbook..
My macbook picks up networks from my neighbors, hotspots and other places.. BUT NOT from my G5..
On my G5 I went to sharing>internet and started sharing and said from ethernet, to airport. I created a network name, and WEP password.. And on my G5, I get grey lines with an arrow pointing up in dark grey..
On my Macbook, I see other peoples networks, not mine, so i go to 'other' and type in the network, (lets call it fancy name) name and password, but all I get is a spinning ball, then... There was an error joining network, "fancyName". No explanation, nothing.. It is making me crazy..
It is making me feel like a big dumb girl!!
can anyone help?
christen

Did you connect the external antenna to the back of the G5?

Similar Messages

  • Richfaces fileupload with myfaces 1.1.5. Cant make it work

    Hello ,
    I am a newbie to jsf technologies. I use myfaces 1.1.5 with tomcat 5.5 and richfaces 3.2.0 and trying to use richfaces fileupload component. I use netbeans IDE. When i try to run the project it fails building the project and the error in tomcat log is like below.
    16.Tem.2008 11:11:47 org.apache.catalina.core.StandardContext listenerStart
    SEVERE: Exception sending context initialized event to listener instance of class com.sun.faces.config.ConfigureListener
    java.lang.NoClassDefFoundError: javax/faces/component/ActionSource2
            at java.lang.ClassLoader.defineClass1(Native Method)
            at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
            at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
            at org.apache.catalina.loader.WebappClassLoader.findClassInternal(WebappClassLoader.java:1853)
            at org.apache.catalina.loader.WebappClassLoader.findClass(WebappClassLoader.java:875)
            at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1330)
            at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1209)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
            at java.lang.Class.getDeclaredConstructors0(Native Method)
            at java.lang.Class.privateGetDeclaredConstructors(Class.java:2389)
            at java.lang.Class.getConstructor0(Class.java:2699)
            at java.lang.Class.newInstance0(Class.java:326)
            at java.lang.Class.newInstance(Class.java:308)
            at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:896)
            at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:945)
            at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:426)
            at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:348)
            at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3764)
            at org.apache.catalina.core.StandardContext.start(StandardContext.java:4216)
            at org.apache.catalina.startup.HostConfig.checkResources(HostConfig.java:1116)
            at org.apache.catalina.startup.HostConfig.check(HostConfig.java:1214)
            at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:293)
            at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:120)
            at org.apache.catalina.core.ContainerBase.backgroundProcess(ContainerBase.java:1306)
            at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.processChildren(ContainerBase.java:1570)
            at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.processChildren(ContainerBase.java:1579)
            at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.run(ContainerBase.java:1559)
            at java.lang.Thread.run(Thread.java:619)I guess it is about the expression language i use in my jsp page. I made it work with jsf 1.2 and tomcat 6.0. But i need to do it with tomcat 5.5 now. Is the expression language different with servlet 2.4 version ? My jsp page is below :
    <%--
        Document   : main
        Created on : 15.Tem.2008, 17:38:00
        Author     : brhn
    --%>
    <%@page contentType="text/html" pageEncoding="UTF-8"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
    <%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <title>JSP Page</title>
        </head>
        <body>
            <f:view>
                <h:form id="fileUpload" enctype="multipart/form-data">
                    <rich:fileUpload                  
                        acceptedTypes="txt"
                        maxFilesQuantity="2"
                        uploadData="${upload_backing.data}"
                        fileUploadListener="${upload_backing.fileUploadListener}"
                    />
                </h:form>
            </f:view>
        </body>
    </html>and my web.xml is this
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
        <session-config>
            <session-timeout>
                30
            </session-timeout>
        </session-config>
        <welcome-file-list>
            <welcome-file>index.jsp</welcome-file>
            </welcome-file-list>
            <context-param>
            <param-name>org.richfaces.SKIN</param-name>
            <param-value>blueSky</param-value>
        </context-param>
        <filter>
            <display-name>RichFaces Filter</display-name>
            <filter-name>richfaces</filter-name>
            <filter-class>org.ajax4jsf.Filter</filter-class>
        </filter>
        <filter-mapping>
            <filter-name>richfaces</filter-name>
            <servlet-name>Faces Servlet</servlet-name>
            <dispatcher>REQUEST</dispatcher>
            <dispatcher>FORWARD</dispatcher>
            <dispatcher>INCLUDE</dispatcher>
        </filter-mapping>
        </web-app>I cant get what is the problem. Anyone has any idea ? I really need to make this work.

    Yea i solved the problem. I mean at least i know what is the problem :) As you said richfaces 3.2.0 is not working with jsf 1.1. Richfaces 3.1.6 works fine with it. But the funny thing is there is no file upload component in 3.1.6 version :) So, i am using myfaces.

  • Help now please Cant make links work imported from PhotoShop6

    I made slices in Photoshop6 which work when tested in Image ready but when I bring them into GoLive6 cant get to work? Saved as gif, psd, bmp?

    >Dont see where to "copy" inthe save to web window.
    Don't know what you mean by that. When it asks where you want to save the HTML and images, you can point it to a folder in your GoLive site. Otherwise, you could just save it wherever and copy whatever it exports into GoLive (or Dreamweaver) later.

  • Making type change color on rollover: Cant make it work

    Incredibly, I can not figure out how to make hyperlinked text change color on rollover.
    I thought it was a matter of assigning a new CSS rule, but I cant find the dialog box within which to specify a rollover color.
    I cant believe how difficult and obtuse such a super simple and basic function is in Dreamweaver.
    WHAT am I doing wrong?

    CSS Pseudo-classes work best if defined in the following order (LiVHA):
    a:link {color:#FF0000}      /* unvisited  link */
    a:visited {color:#00FF00}  /* visited link */
    a:hover  {color:#FF00FF}   /* mouse over link */
    a:active {color:#0000FF} /* selected  link */
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Cant make mic work

    Hi, can anybody help me with this:
    MB: 645E Max2 (SiS 645DX chipset)
    BIOS: AMI v1.2
    Sound driver: VIA 6.14.1.4030
    OS: XPH
    Speakers in speaker jack: yes
    S-braket: installed but nothing is plugged in there
    I cant get anything out of my mic. Its plugged to mb rear panel mic connection. I've made sure its not muted and the volume levels are up. Also the mic is checkboxed in the recording control -volume window. I also tried same things with the mic connected to line in -jack.
    The defauld recording device is Vinyl AC97 Audio (wave) and nothing else is selectable there.
    BTW. I dont have any MIS utilities installed to my machine, is there any essentials? The machine works perfectly - only the mic is giving me hard time.
    Any ideas?
    Thanks.
    ToniH

    Ok, problem solved. There was a Realtek-driver on MSI website which recognised my MB and with that the mic started to work ok! Version # 5.10.0.5620.

  • Capsule cant make it work with 100mbit

    Hi all
    Hope that some of you can help me out here?
    I have on of the first version of time capsule/500Gb and it have worked perfect since day one.
    but now when i´ve upgraded me speed to 100/100Mbit it wount work anymore, my firmware is 7.4.2 and i´m not able to upgrade to the next version 7.5.1 i suppose the issue is here.
    Can someone of you be kind to advise me what to do?
    Thanks in advance
    Greatlife

    Check this thread: http://discussions.apple.com/thread.jspa?threadID=2298320&tstart=15
    You aren't alone. I have the same problem.

  • My iphone is locked and I cant make it work at all.

    Hi, my iphone is locked and I can't get it to work at all. do you have any suggestions>?

    Hi irishdave75,
    I apologize, I'm a bit unclear on the exact nature of the issue you are describing. If you mean that it is locked with a passcode and you are unable to access it, you may find the troubleshooting steps outlined in the following article helpful:
    Forgot passcode for your iPhone, iPad, or iPod touch, or your device is disabled - Apple Support
    If, on the other hand, you mean that your iPhone is locked up or otherwise not responding, then this article may be of more use:
    iOS: Not responding or does not turn on - Apple Support
    Regards,
    - Brenden

  • Computer2comp. - cant make it work

    I have a G5, dual 1.8.. I installed an airport extreme card the other night when I bought a new laptop, a macbook..
    My macbook picks up networks from my neighbors, hotspots and other places.. BUT NOT from my G5..
    On my G5 I went to sharing>internet and started sharing and said from ethernet, to airport. I created a network name, and WEP password.. And on my G5, I get grey lines with an arrow pointing up in dark grey..
    On my Macbook, I see other peoples networks, not mine, so i go to 'other' and type in the network, (lets call it fancy name) name and password, but all I get is a spinning ball, then... There was an error joining network, "fancyName". No explanation, nothing.. It is making me crazy..
    It is making me feel like a big dumb girl!!
    can anyone help?

    I have a G5, dual 1.8.. I installed an airport extreme card the other night when I bought a new laptop, a macbook..
    My macbook picks up networks from my neighbors, hotspots and other places.. BUT NOT from my G5..
    Sounds like the AirPort Extreme card and/or antenna is not properly installed in the G5. If you check "About This Mac," from the Apple menu, does the newly installed card show up? I suggest you double-check both first. (ref: http://docs.info.apple.com/article.html?artnum=108039)

  • HT1491 I downloaded a song for a ringtone but I cant make it my ringtone? Not sure what I am missing?

    I want to use different songs for ringtones  so I can recognize who is calling me but I dont like the preloaded manufactery ringtones. So I found what I wanted but cant make it work for a ringtone?

    Songs need conversion before they can be used as ringtones.  Songs and ringtones use different formats.
    If you have a Mac, you can use GarageBand to do the conversion.  If you have a Windows computer, there are utilities but I can't name one.

  • A foreign sim Card in my iPhone 4s from Sweden , what do i have to do to make it work ?

    I just changed iPhone and gave my 4s to my son to use in great britain . As he bought a prepid Card to use in my old Phone , he cant make it work . Neither could  the english shop. What can we do to make it work ? . My old simcard is not in use or available which i used in the Phone before . What to do ... Reastart or any configurstions to do ? Please help us out since my son is jumping high in London to be able to Call. Thanks in advance . Mrs Lundin Sweden

    Your iPhone is probably locked to your former cell carrier. In such case only that carrier can unlock it, so you'll need to contact the carrier. Note that unless things have changed recently only 3 offers unlocking. If you used a different carrier, they do not appear to offer unlocking which means that your son will not be able to use your old iPhone. But call your carrier and ask.
    Regards.

  • HT5559 JAVA WITH CHROME!!! I am trying to login to my bank account at nordea.dk. This website uses somekind of java thing. Chrome cant't load it. Works perfect with Safari. How to make it work in Chrome?

    I am trying to login to my bank account at nordea.dk. This website uses somekind of java thing. Chrome cant't load it. Works perfect with Safari. How to make it work in Chrome?

    Do you speak of true blue Java or Javascript?  If the latter then it is a problem with the Browser.
    But if it is the real Java, do you have the offical version of Java from Oracle installed?
    Getting applications to see official Java is a nightmare.  If you install the Runtime Environment only (JavaRTE) most applications do not see it.
    To force offical Java system wide, I found you have to install the Java Developer Kit (JavaJDK).  It's a larger install as it also comes with documentation and compilers but it make offical Java system wide.

  • Cant make get method work

    package nim;
    import java.util.Random;
    public class Row {
        private static final int MAX = 21; //max number of stars in row
        private int howmany;
        /** Creates a new instance of Row with 1 to MAX stars*/
        public Row() {
            howmany = 1 + (new Random().nextInt(MAX));
        /**Creates a new instance of Row with n stars
         * @param n number of stars in the row
         *        if n is greater than MAX, n is set to MAX
         *        if n is less than n is set to 1
        public Row (int n) {
            if (n <=0 ) howmany = 1;
            else if (n > MAX) howmany = MAX;
            else howmany = n;
                System.out.println(howmany);
        /**Getter
         * @return number of stars currently in the row
        public int getHowmany() {
            return howmany;
        /**Setter
         * @param howmany number of stars in row
        public void setHowmany(int n) {
           if (n <0 ) howmany = 0;
            else if (n > MAX) howmany = MAX;
            else howmany = n;
    }i have this and im trying to just use the get method but i cant figure out for the life of me how to make this work, the code i came up with is
    package nim;
    public class testtt
    public static void main (String[]args)
         Row a = new Row(5);
         System.out.println(a.getHowmany);
    }and i keep getting the error testtt.java:11: cannot find symbol
    symbol  : variable getHowmany
    location: class nim.Row
         System.out.println(a.getHowmany);does anyone know how to make this work? im getting ready to pull my hair out

    you have missed the brackets of the function call
         System.out.println(a.getHowmany);
         System.out.println(a.getHowmany());

  • My new IPad 2 mini its dead. Cant be on. Its  working for two days and now I cant make it on. How and what I need to do?

    I got new I Pod 2. Two days was working perfect. At the one moment it was off. Now I cant make it on. Its dead. Can you help me?

    Make an appointment at your local apple store and have them look at it.
    Have you tried to charge it? Plugged into the wall with the supplied power brick. If the battery is dead it'll remain off until it gets enough power to turn on.
    So before you try the apple store you can try plugging it in, maybe over night, and see if that helps. If that doesn't, make the appointment and let the pros look at it.

  • HT1222 i found itunes for windows 8 64 bit but after downloading it iwas told it cant work in my system. what can i do to make it work?

    i found itunes for windows 8 64 bits after downloading it i got an error message saying it cant work on my system. what can i do to make it work?

    i found itunes for windows 8 64 bits after downloading it i got an error message saying it cant work on my system. what can i do to make it work?

  • My phone is totally froze up cant do anything to make it work cant power off at all

    my phone is totally froze up ..cant do anything to make it work.. cant power off at all

    HI,
    You can try a "soft reset" by holding down the volume down + power key at the same time until the phone vibrates and restarts (~10 seconds).
    Nokia/MSFT Customer Care

Maybe you are looking for