My simple bean will not work! Help!

I created a java bean based on a tutorial. After a little bit of trouble with the classpath, getting files in the right place, etc, I finally got it working. Whoo hoo!
Now, I'm working on a second java bean and I cannot get it to work. I'm at the point where I've stripped it down so it's basically identical to the tuturial with just a few changes. When it runs I get a NoSuchMethodError. I've checked, rechecked and re-rechecked my case and my names many many many times. I've rebooted. I've restarted Tomcat and my browser multiple times. What am I missing?
This is my Test.html:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>EME</title>
</head>
<body>
<form method=post action="Test.jsp">
What's your name? <input type=text name=username size=20><br>
<table>
<tr><td>
     <select name=LookupType>
     <option>Last Name
     <option>Phone</select></td>
<td>
     <input type=text></td>
<td><input type=submit value=Search></td></tr></table>
     HHNum: <input type=text name=hhnum size=20><br>
</table>
</form>
</body>
</html>This is my Test.jsp:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<jsp:useBean id="user" class="user.UserData" scope="session"/>
<jsp:setProperty name="user" property="*"/>
<jsp:useBean id="webPageData" class="com.penntraffic.emeApp.WebPageData" scope="session"/>
<jsp:setProperty name="webPageData" property="*"/>
<html>
<head>
<title>EME</title>
</head>
<body>
<%= user.getUsername() %>
<%= webPageData.getHhnum() %>
<table>
<tr><td>
     <select name=LookupType>
     <option>Last Name
     <option>Phone</select></td>
<td>
     <input name=hhnum type=text></td>
<td><input type=submit value=Search></td></tr></table>
     <br>
</table>
</body>
</html>This is my java bean code:
package com.penntraffic.emeApp;
public class WebPageData {
     String hhnum;
     public void setHhnum(String value){
          hhnum = value;
     public String getHhnum() {
          return hhnum;
package user;
public class UserData {
     String username;
     String email;
     int age;
     public void setUsername(String value)
          username = value;
     public void setEmail(String value)
          email = value;
     public void setAge(int value)
          age = value;
     public String getUsername()
          return username;
     public String getEmail()
          return email;
     public int getAge()
          return age;
}The UserData.class file is in C:\apache-tomcat-6.0.10\webapps\EME\WEB-INF\classes\user
The WebPageData.class file is in C:\apache-tomcat-6.0.10\webapps\EME\WEB-INF\classes\com\penntraffic\emeApp
Both paths are included in my CLASSPATH environment variable.
This is the error text that I get when I click on the 'Search' button in Test.html (submit button):
type Exception report
message The server encountered an internal error () that prevented it from fulfilling this request.
org.apache.jasper.JasperException: An exception occurred processing JSP page /Test.jsp at line 12
9: </head>
10: <body>
11: <%= user.getUsername() %>
12: <%= webPageData.getHhnum() %>
13: <table>
14: <tr><td>
15:           <select name=LookupType>
Stacktrace:
          org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:515)
          org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:408)
          org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
          org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
          javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
root cause
javax.servlet.ServletException: java.lang.NoSuchMethodError: com.penntraffic.emeApp.WebPageData.getHhnum()Ljava/lang/String;
          org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:855)
          org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:784)
          org.apache.jsp.Test_jsp._jspService(Test_jsp.java:111)
          org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
          javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
          org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:384)
          org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
          org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
          javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
root cause
java.lang.NoSuchMethodError: com.penntraffic.emeApp.WebPageData.getHhnum()Ljava/lang/String;
          org.apache.jsp.Test_jsp._jspService(Test_jsp.java:87)
          org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
          javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
          org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:384)
          org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
          org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
          javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
If I remove the line that attempts to get the value of hhnum from the bean, everything works fine and I get the username value from the first bean. So the user bean is working, but there's obviously something wrong with my second bean (webPageData).
I've also tried using <jsp:getProperty name="webPageData" property="hhnum"/> rather than <%= webPageData.getHhnum() %>. I thought they would return identical results, but instead I get the below errors:
type Exception report
description The server encountered an internal error () that prevented it from fulfilling this request.
exception
org.apache.jasper.JasperException: Cannot find any information on property 'hhnum' in a bean of type 'com.penntraffic.emeApp.WebPageData'
          org.apache.jasper.runtime.JspRuntimeLibrary.getReadMethod(JspRuntimeLibrary.java:839)
          org.apache.jasper.compiler.Generator$GenerateVisitor.visit(Generator.java:1045)
          org.apache.jasper.compiler.Node$GetProperty.accept(Node.java:1101)
          org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2336)
          org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2386)
          org.apache.jasper.compiler.Node$Visitor.visit(Node.java:2392)
          org.apache.jasper.compiler.Node$Root.accept(Node.java:489)
          org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2336)
          org.apache.jasper.compiler.Generator.generate(Generator.java:3394)
          org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:210)
          org.apache.jasper.compiler.Compiler.compile(Compiler.java:306)
          org.apache.jasper.compiler.Compiler.compile(Compiler.java:286)
          org.apache.jasper.compiler.Compiler.compile(Compiler.java:273)
          org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:566)
          org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:308)
          org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
          org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
          javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
This shouldn't be this hard!! Any help would be greatly appreciated!

Do you mean the trackpad?

Similar Messages

  • I cant copy/paste from an article to my web site, get a Mozilla Rich Text Editing demo page will not work.HELP

    Tried to copy/paste from an article to my web site and got a "cannot copy /paste " warning and was directed to a security perferences site that said that Mozilla Rich Text Editing demo page will not work.
    Tried to find my Firefox profile directory using the start menu and was directed to hit enter to go to web. Feel like i am getting run around.

    Let's start with something very basic, and that is, you do not need to use the paste button on most websites. The button just reads what is on your clipboard and sticks it into the form. You can do that yourself using Ctrl+v or right-click>Paste.
    For your security, I suggest using those standard Windows keyboard shortcuts (Ctrl+x cut, Ctrl+c copy, Ctrl+v paste) or the context menu.
    Occasionally you will find a paste button that runs a clean-up script or otherwise does something useful. That is where the (admittedly a bit complicated) instructions come in handy.
    To open your active profile folder, you can use:
    Help > Troubleshooting Information > "Show Folder" button
    Which help article are you using for the modifications?
    Finally, please be cautious in opening up your clipboard to sites. You may have stuff you copied from other pages or other programs that you do not want to share with most sites.

  • IPod not properly ejected- now iTunes will not work - Help!

    My friend had his ipod connected to my computer to charge. Conneceted through USB on a Dell/ Windows 2000 / system. He disconnected the ipod without properly ejecting it - Now, when i connect my ipod, iTunes will not recognize it- iTunes does not open- screen just reads do not disconnect. When i manually open itunes with the ipod attached, it freezes. I have re-installed iTunes, rebooted the ipod, nothing works. Recommendations? Have scowered this site for answers, tried just about everything, nothing has worked. Your help is greatly appreciated!
    PC   Windows 2000  

    See if anything in this Knowledge Base article helps: iPod shows up in Windows but not in iTunes

  • OMG, after last AIR update before current ALL my AIR apps will not work, HELP!

    I have 5 or 6 AIR based apps after I did an update last month, none of them will work. I just re-installed and updated AIR again today and re-installed all the apps multiple times and when I go to one it trys to open the last I installed for every app it only opens the last installed. App installions always end with "faled to open app" and in the log I see this "Error: Missing necessary file META-INF/AIR/application.xml" not sure?
    Windows 7 (all lastest updates)
    Latest Air (13.057 I believe?)
    How do I fix this, why did it break?
    Full log:
    http://ge.tt/2IDeU4b1/v/0?c

    Hello,
    I could install and run the AIR application successfully with AIR 4.0, 12.0 and 13.0.
    Looking into the log, it seems that "missing application.xml" and "Application Installer end with exit code 7" issues have been there from 2014-02-09, below is the detailed log seen from http://ge.tt/2IDeU4b1/v/0?c. This issue maybe caused by the application.
    Is there an application.xml under C:\Program Files (x86)\YourApplicationXXX\META-INF\AIR\ ?
    If possible, could a bug against this issue be logged in https://bugbase.adobe.com/, and upload the AIR application which does not work. That would be very helpful to triage and find the root cause for this issue.
    Thanks your support!
    ===================================================
    [2014-01-04:01:26:19] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2014-01-04:01:26:20] Runtime Installer begin with version 3.9.0.1380 on Windows 7 x86
    [2014-01-04:01:26:20] Commandline is: -updatecheck
    [2014-01-04:01:26:20] Installed runtime (3.9.0.1380) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2014-01-04:01:26:20] Performing pingback request
    [2014-01-04:01:26:21] Pingback request completed with HTTP status 200
    [2014-01-04:01:26:21] Starting runtime background update check
    [2014-01-04:01:26:21] Clearing unused background update directory
    [2014-01-04:01:26:21] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.9.0.1380/update
    [2014-01-04:01:26:21] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.9.0.1380/update to C:\Users\Owner\AppData\Roaming\Adobe\AIR\Updater\Background
    [2014-01-04:01:26:21] Runtime update not available
    [2014-01-04:01:26:21] Unpackaging cancelled
    [2014-01-04:01:26:21] Runtime Installer end with exit code 0
    [2014-02-09:13:58:50] Application Installer begin with version 3.9.0.1380 on Windows 7 x86
    [2014-02-09:13:58:50] Commandline is: C:\Users\Owner\Downloads\SPPro\SocialPostingPro-4.air
    [2014-02-09:13:58:50] Installed runtime (3.9.0.1380) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2014-02-09:13:58:53] Unpackaging file:///C:/Users/Owner/Downloads/SPPro/SocialPostingPro-4.air to C:\Users\Owner\AppData\Local\Temp\fla3EA0.tmp
    [2014-02-09:13:58:53] Application signature verified
    [2014-02-09:13:58:53] Unpackaging/validation complete
    [2014-02-09:13:58:53] No app located for appID 'com.igs.socialpostingpro' and pubID ''
    [2014-02-09:13:59:06] Converting unpackaged application to a native installation package in C:\Users\Owner\AppData\Local\Temp\fla729C.tmp
    [2014-02-09:13:59:06] Native installation package creation succeeded
    [2014-02-09:13:59:06] Starting app installation to C:\Program Files (x86). Installing app com.igs.socialpostingpro version 1.0.8 using the source file at file:///C:/Users/Owner/Downloads/SPPro/SocialPostingPro-4.air
    [2014-02-09:13:59:06] Installing msi at C:\Users\Owner\AppData\Local\Temp\fla729C.tmp\setup.msi with guid {050F1169-D97B-B822-C803-D727DB278A96}
    [2014-02-09:13:59:17] Got an unexpected fatal error while accessing app for launch: Error: Missing necessary file META-INF/AIR/application.xml
    [2014-02-09:13:59:41] Application Installer end with exit code 7

  • IPod not being read, iPod Updater will not work HELP!!

    needing help on a problem i've been trying to solve on my own for a day or so. My iPod will not be read by iTunes anymore, and iPod Updater will not Restore it to factory settings.. need some help here, need to know anything else? just ask. thanks for any replies.

    this happened to me yesterday. i spent 30 mins on the phone to a very helpful guy at apple, and we found out that i needed to disable USB 2.0 in Device Manager to run the restore then the updator. I disable the "Standard Enhanced PCI to USB Host Controller", rebooted then did the restore. Try it

  • Can not install windows 7 pro using boot camp as mouse and keyboard will not work Help please

    I have a new iMac and trying to install Windows 7 Pro using boot camp. I have reached the stage of starting to load windows from the DVD then discovered the mouse and the keyboards not working so I could not interact with windows installation.

    Open, if not so already, the Windows formatter. Identify the BC Windows partition. It will be the one listed with the proper size you created and/or will be labeled as a C: drive. Be careful you select the right one or you may be corrupting the entire drive.
    Format the partition as NTFS.

  • FORM AUTH:  JDBCRealms  WILL NOT WORK     HELP ! ! !

    hello,
    i have followed the tomcat JDBCRealms setup.....but it never allows me through to secure page it always redirects to loginerror....when using valid user/pass pair !!!!!!!!!!!!!!!!
    i am a student and this is part of a reasearch project to compare .NET with J2EE.........
    HELP
    my project details are below
    . loginForm.html <<<<<<<<<<<<<<<<<<<<<<<<?xml version="1.0"?>
    <!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>
    <title>Login Test: Login Form</title>
    </head>
    <h1>Login Form</h1>
         Welcome to the login page. You will have to authenticate to get access to the secure area:
    <form method="POST" action="j_security_check">
    Username: <input type="text" name="j_username">
    Password: <input type="password" name="j_password">
    <input type="submit" value="Login">
    <input type="reset" value="Reset">
    </form>
    </html>
    web.xml <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
    <web-app>
    <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    </welcome-file-list>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>SecurePages</web-resource-name>
    <description>Security constraint for resources in the secure directory</description>
    <url-pattern>/secure/*</url-pattern>
    <http-method>GET</http-method>
    <http-method>POST</http-method>
    </web-resource-collection>
    <auth-constraint>
    <role-name>tomcatRole</role-name>
    </auth-constraint>
    <user-data-constraint>
    <description>SSL not required</description>
    <transport-guarantee>NONE</transport-guarantee>
    </user-data-constraint>
    </security-constraint>
    <login-config>
    <auth-method>FORM</auth-method>
    <form-login-config>
    <form-login-page>/LoginForm.html</form-login-page>
    <form-error-page>/LoginError.html</form-error-page>
    </form-login-config>
    </login-config>
    <security-role>
    <role-name>tomcatRole</role-name>
    </security-role>
    </web-app>
    extract from server.xml (in tomcat 3.2.2/conf dir) <<<<<<<<<<<<<<<<<<<!--
    UnComment the following and comment out the
              <RequestInterceptor className="org.apache.tomcat.request.SimpleRealm" debug="0" />
    -->
    <RequestInterceptor className="org.apache.tomcat.request.JDBCRealm" debug="99" driverName="oracle.jdbc.driver.OracleDriver" connectionURL="jdbc:oracle:thin:@MADDZILLA:1521:Store" connectionName="SYSTEM" connectionPassword="manager" userTable="users" userNameCol="user_name" userCredCol="user_pass" userRoleTable="user_roles" roleNameCol="role_name" />
    server.xml <<<<<<<<<<<<<<<<<<<<<<altered part...
    <!-- commented out memoryrealm request
    <RequestInterceptor className="org.apache.tomcat.request.SimpleRealm" debug="0" />     
    -->
    added jdbcrealm request
    <RequestInterceptor className="org.apache.tomcat.request.JDBCRealm" debug="99" driverName="oracle.jdbc.driver.OracleDriver" connectionURL="jdbc:oracle:thin:@MADDZILLA:1521:Store" connectionName="SYSTEM" connectionPassword="manager" userTable="users" userNameCol="user_name" userCredCol="user_pass" userRoleTable="user_roles" roleNameCol="role_name" />
    . tables created for tomcat security example <<<<<<<<<<<<<<<<create table users
    user_name varchar(15) not null primary key,
    user_pass varchar(15) not null
    create table roles
    role_name varchar(15) not null primary key
    create table user_roles
    user_name varchar(15) not null,
    role_name varchar(15) not null,
    primary key( user_name, role_name )
    INSERT INTO users (user_name, user_pass) VALUES (tomcat,tomcat);
    INSERT INTO users (user_name, user_pass) VALUES (user1,tomcat);
    INSERT INTO users (user_name, user_pass) VALUES (user2,tomcat);
    INSERT INTO users (user_name, user_pass) VALUES (user3,tomcat);
    INSERT INTO roles (role_name) VALUES (tomcatRole);
    INSERT INTO roles (role_name) VALUES (otherRole);
    INSERT INTO user_roles (role_name, user_name) VALUES (tomcatRole,user1);
    INSERT INTO user_roles (role_name, user_name) VALUES (otherRole,user2);
    INSERT INTO user_roles (role_name, user_name) VALUES (otherRole,tomcat);
    INSERT INTO user_roles (role_name, user_name) VALUES (tomcatRole,tomcat);

    I've tried jdbc realm, and it works fine for me. I'm not using the form_auth, rather it pops-up a network login dialog for me. If you need details, get in touch on [email protected]

  • Simple slideshow, will not work in as 3.0

    L.S. I have this little slideshow, it is for practise for my students. It always worked well in as 2.0,
    5 slides, and two buttons: back and next.
    The script in2.0 has: prevFrame and nextFrame in the code
    and for the exceptions in frame 1, and frame 5 we made a new frame 1 in the actions layer, and coded the back button, gotoAndStop(5); and a new frame 5, and coded the next button: gotoAndStop(1);
    Works.
    Now I put the thing over tot as 3.0: And I can not get it to work properly....the buttons work, but when I am on frame 5, and go back to 4, it will go no further than 4, evenso when I go back to frame 1 from 5, I can not go further up than frame 1.
    What do I do wrong??
    attached is the fla in cs5.
    Thanks,
    Anne Vossen
    Message was edited by: Vossen I am sorry but I can not find the button to load up my files...so here is the script:
    as frame 1:
    import flash.events.MouseEvent;
    stop();
    next_btn.addEventListener(MouseEvent.CLICK, volgendFrame);
    //next_btn.addEventListener(MouseEvent.CLICK, eersteFrame);
    //back_btn.addEventListener(MouseEvent.CLICK, vorigFrame);
    back_btn.addEventListener(MouseEvent.CLICK, laatsteFrame);
    function volgendFrame(evt:MouseEvent):void{
    nextFrame();
    function eersteFrame(evt:MouseEvent):void{
    gotoAndStop(1);
    function vorigFrame(event:MouseEvent):void{
    prevFrame();
    function laatsteFrame(event:MouseEvent):void{
    gotoAndStop(5);
    frame 2:
    next_btn.addEventListener(MouseEvent.CLICK, volgendFrame);
    //next_btn.addEventListener(MouseEvent.CLICK, eersteFrame);
    back_btn.addEventListener(MouseEvent.CLICK, vorigFrame);
    //back_btn.addEventListener(MouseEvent.CLICK, laatsteFrame);
    frame 5:
    stop();
    //next_btn.addEventListener(MouseEvent.CLICK, volgendFrame);
    next_btn.addEventListener(MouseEvent.CLICK, eersteFrame);
    back_btn.addEventListener(MouseEvent.CLICK, vorigFrame);
    //back_btn.addEventListener(MouseEvent.CLICK, laatsteFrame);

    It will be easiest to manage if you just have the buttons coded once for the entire timeline with the special conditions written into the functions instead of switching listeners.  And if you use totalFrames instead of the actual number (5), you can add frames in the future without having to change the code...  Frame 1...
    stop();
    next_btn.addEventListener(MouseEvent.CLICK, volgendFrame);
    back_btn.addEventListener(MouseEvent.CLICK, vorigFrame);
    function volgendFrame(evt:MouseEvent):void{
        if(currentFrame < totalFrames){
             nextFrame();
        } else {
             gotoAndStop(1);
    function vorigFrame(event:MouseEvent):void{
        if(currentFrame > 1){
             prevFrame();
        } else {
             gotoAndStop(totalFrames);

  • Updated to iOS 7 with kensington keyboard, Bluetooth keyboard will not work, help

    I Made the mistake of updating and now my Bluetooth kensington keyboard purchased with ipad won't work. Anybody know a fix?

    Reset Settings
    What this effectively does is to reset some of your Settings to factory default. It’s not a complete removal of settings. It removes all of your preferences for Wi-Fi, Bluetooth, Do No Disturb, Notifications, General, Sounds, Brightness & Wallpaper and Privacy. It doesn’t affect your data. All of your email accounts will remain intact, as well as any SMS text or iMessages.
     Cheers, Tom

  • My WRT54G2 will Not Work HELP NEEDED !! PLease Help

    Hey i Have a WRT54G2 and it has worked Flawlessly for about a Year... One Day i Wake u To No Connection coming From my Linksys ..... on the Wirless Connections Pop up there is a Message saying  " Information Sent over this network might be visable to others" I Have Tried Everything and Anything to Figure Out or Fix the Problem But NOthing i Do Works ... I am Really Out of Options ,,,,, Someone PLeaseeeee HElllllp Meeeee !!!!1 Aaaahhhhhhhhhhhhhh 

    In this case try to change the power socket. Try to do 30/30/30 hard reset. The following procedure will clear out the NVRAM and set Router back to default values:
    ~~ With the unit powered on, press and hold the reset button on back of unit for 30 seconds
    ~~ Without releasing the reset button, unplug the unit and hold reset for another 30 seconds
    ~~ Plug the unit back in STILL holding the reset button a final 30 seconds....
    Then make the physical connectivity. Here are the steps for the physical connectivity for the router:
    The router’s power adapter needs to be plugged to your router and into an available power outlet.
    If using a wired connection, the first Ethernet cable needs to be plugged to the computer’s LAN port into any of the router’s blue numbered Ethernet ports.
    The second Ethernet cable should be plugged to the modem’s Internet port and the other end into the router’s yellow Internet port.
    Ensure that you have no firewall enabled that may prevent the router from being detected.
    Then make the manual settings according to the ISP setup. Here is the link for setting up a Linksys router with Cable Internet service:
    http://www6.nohold.net/Cisco2/ukp.aspx?vw=1&docid=0ff4c94586a345d082828ec2161aaecf_3686.xml&pid=80&r...
    Here is the link for setting up a Linksys router with DSL Internet service: http://www6.nohold.net/Cisco2/ukp.aspx?vw=1&docid=20ee1457387f40178cd5f41d4b585db4_3687.xml&pid=80&r...

  • Nokia 500 auto navigation will not work

    I have a nokia 500 auto navigation and it will not show maps or it start to boot and freezup and will not work Help!

    I had the same problem a couple of months after activating the gps.
    I think my problem came up after I had loaded some songs and video onto the SD card.
    I used the DVD to restore the maps etc. Be careful with that. The software to run the video/music is not included on the restore DVD.
    I had to do the restore multiple times. Finally, I found an update on the Nokia website and did the update. DON'T DO THAT = my bluetooth has now stopped working. Bluetooth says it's on and you can turn it off, however, there's no change. It says on, but no devices can connect to the gps anymore.
    Frustrated with Nokia? YES. I have had it sent back, but since I bought it on ebay, forget about that.

  • Bean not found. WEBUTIL_FILE_TRANSFER.getMaxTransfer will not work

    Hi -
    I am installing WEBUTIL and trying to configure according to documentation. I get the following error.
    What I noticed, here is
    1. JACOB.jar and frmwebutil.jsr are not being loaded
    2. I do not see any certificates got created in Jinitiator - Where do I see it is created and if not where do I see the errors while creation.
    Any help from any one is really appreciated.
    Loading http://xp0100691.stpete.hsn.net:8890/forms90/java/f90all_jinit.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 9.0.4.0
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

    Hi -
    Webutil.jar is with older version. Now it goes with frmwebutil.jar.
    It is working now, I opened a TAR with Oracle and that was helpful.
    From Oracle:
    This issue can have various causes.
    1) Lack of olb at compile time
    The Note 270940.1 Oracle Forms WebUtil : Technical FAQ mentions the following
    lead:
    Ensure that the FMX was generated with no error messages. E.g. if webutil.olb
    is not on FORMS_PATH, the error message could be overlooked even though the FMX
    is generated.
    2) Lack of jar at runtime
    normally using config=webutil allows to have archive=....,frmwebutil.jar,...
    so should not be the case here
    3. Lack of bean in custom form A custom form should have followed a step such as
    Open webutil.olb, and Subclass (not Copy) the Webutil object to the form.
    ( as mentioned in step 9 of Note 333385.1 Kickstarting WebUtil 1.06 in
    Developer Suite 10.1.2.0.2 on Windows )
    4. If the error continues, please download the webutil test form WU_TEST_106.FMB fro
    m:
    http://www.oracle.com/technology/products/forms/htdocs/webutil/webutil.htm = >
    Webutil Demo
    or directly from:
    http://otn.oracle.com/products/forms/htdocs/webutil/Webutil_demo.zip
    5. generate the fmx ( ensuring the webutil.olb and webutil.pll are in the
    FORMS_PATH )
    6. Make sure that when called WEBUTIL in a new-form-instance-trigger when the bean is registered, otherwise, this error will
    arise.
    From Me:
    1. Form compiled correctly with no errors. However, FORMS90_PATH is not set with
    webutil.olb and webutil.pll. So I went added in FORMS90_PATH.
    2. Don't see any issues with config=webutil, archive=frmwebutil.jar, jacob.jar
    3. I did subclass the pll. Don't see any issues.
    4. I recompiled and tested, still gets the same error.
    5. I went downloaded the demo form WU_TEST_106.FMB
    6. I compiled and reran the form, got an error saying no attached libraries found.
    So I went and renamed webutil.pll to webutil_lib.pll. Reattached to the
    forms.
    7. No I get an different error.
    Oracle.forms.webutil.clientinfo.GetClientInfo bean not found.
    WEBUTIL.CLIENTINFO.GET_SYSTEM_PROPERTY will not work
    This was resolved my changing the URL to
    http://Host:8890/forms90/f90servlet?form=WU_TEST_106&config=webutil
    Thanks for your support.
    Thank You,
    Prashant

  • After trying to update my iphone 5 to ios 7 via itunes my phone will not work at all, all i have is an itunes logo and cable logo on the screen HELP!!!!

    after trying to update my iphone 5 to ios 7 via itunes my phone will not work at all, all i have is an itunes logo and cable logo on the screen HELP!!!!

    you'll want to restore it using itunes and recovery mode
    http://support.apple.com/kb/ht1808

  • My itunes will not work at all. i have deleted and reinstalled in over ten times, i have ended the process, i have reinstalled quicktime i few times, i have deleted many folders. What else can i do? Please help:(

    My itunes will not work at all. i have deleted and reinstalled in over ten times, i have ended the process, i have reinstalled quicktime i few times, i have deleted many folders such as TEMP, itunes helper et What else can i do? Please help:(

    Now it sometimes keeps coming up and working but once i plug an ipod in it freezes my whole computer up and no i dont get any response from itunes at all

  • Please help! Itunes fails to open on my macbook pro. I have remove itunes and reinstalled it and it still will not work!, Please help! Itunes fails to open on my macbook pro. I have remove itunes and reinstalled it and it still will not work!

    Please help! Itunes fails to open on my macbook pro. I have removed itunes and reinstalled it and it still will not work!

    Try removing the Genius database.  In the "Finder" go to the /username/Music/iTunes/ folder and delete the "iTunes Library Genius.itdb" file. This may allow the program to launch again. This file will be recreated upon first use of the "Genius" feature.

Maybe you are looking for