An error in jsp page useBean when i try to include the java bean package?

Hi Sir,
I am using import com.project.ShowData in java beans inorder to connect to the jsp.
The jsp code goes like this:-
<%@ page import="com.project.ShowData" %>
<jsp:useBean id="jspuser1" class="com.viman.ShowData" scope="session"/>
<jsp:setProperty name="jspuser1" property="*"/>
Here the error is showing as cannot resolve symbols in com.project.ShowData.But i have given the same in java beans like this:-
Package com.project;
//import of package goes here
public class ShowData
//code goes here
It seems that all are correct here.I have done few programs using this without any problem.But suddenly it is giving a problem like this.What is the problem here?It is quite Urgent.Thank u.
Regards,
m.ananthu

Greetings,
Here the error is showing as cannot resolve symbols in com.project.ShowData.But i have given the
same in java beans like this:-Seeing the actual error would be more helpful. ;)
Regards,
m.ananthu Regards,
Tony "Vee Schade" Cook

Similar Messages

  • Error code: ssl_error_no_cypher_overlap comes up when I try to veiw the log in screen on tumblr, how to fix this in FireFox 26.0?

    I can browse through tumblr just fine, but whenever I go to the login page it said:
    Secure Connection Failed. An error occurred during a connection to www.tumblr.com. Cannot communicate securely with peer: no common encryption algorithm(s). (Error code: ssl_error_no_cypher_overlap)
    I understand that tumblr has certification errors but that never happened to me before I until I upgraded to Firefox 26.0. I like FF and I don't want to use any other browser.
    How to fix this?

    Does it help if you either disable SSL3 or disable TLS as a test?
    security.tls.version.min = 1 and security.tls.version.max = 1 disables SSL3 and enables TLS 1.0
    security.tls.version.max = 0 and security.tls.version.max = 0 enables SSL3 and disables TLS 1.0
    Type <b>about:config</b> in the location (address) bar and press the <i>Enter</i> key to open the <i>about:config</i> page like you open a website by typing the URL in the location bar.
    *If you see a warning message then you can confirm that you want to access the about:config page.
    *http://kb.mozillazine.org/about:config
    See:
    *http://kb.mozillazine.org/security.tls.version.*
    0 means SSL 3.0, 1 means TLS 1.0, 2 means TLS 1.1, etc.
    You can try to rename the cert8.db file in the Firefox profile folder to cert8.db.old or delete the cert8.db file to remove intermediate certificates that Firefox has stored.
    If that helped to solve the problem then you can remove the renamed cert8.db.old file.
    Otherwise you can rename (or copy) the cert8.db.old file to cert8.db to restore the previous intermediate certificates.
    Firefox will automatically store intermediate certificates when you visit websites that send such a certificate.
    If that didn't help then remove or rename secmod.db (secmod.db.old) as well.

  • Pages freezes when I try to use the dictionary

    When I want to add a word to the dictionary Pages freezes and I have to force quit and restart the application.

    Pages 5 is just buggy.
    Apple has removed over 100 features from Pages 5.
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    If you can go to iWork '09, but only if you don't spending the relatively small amount of money. It is available quite cheaply from Amazon.
    Peter

  • Error (-69) keeps popping up when I try to transfer a digital copy of a movie I redeemed, anyone else run into this?

    Error (-69) keeps popping up when I try to transfer the digital copy of transformers to my ipod. Everything is updated and it successfully downloaded to my library but I've done what I've read about error (-69) and I am still having problems. I've never had a problem with purchases from itunes before and I don't know what to do. The Apple website doesn't help and if anyone has had the same problem and figured it out please help me. I would appreciate it, thanks.

    Error (-69) keeps popping up when I try to transfer the digital copy of transformers to my ipod. Everything is updated and it successfully downloaded to my library but I've done what I've read about error (-69) and I am still having problems. I've never had a problem with purchases from itunes before and I don't know what to do. The Apple website doesn't help and if anyone has had the same problem and figured it out please help me. I would appreciate it, thanks.

  • When we can go for a java bean

    Hi,
    i would like to know when we need or when it will be useful the java bean in a client-server application deveoped by using forms 6i, could abybody help without a link .
    Thanks
    Bcj

    Hi ,
    In General words , using JavaBeans / PJC's (Pluggable Java Components) is used when you want to extend your Form Funcionality to Java , on other words , if you have a case on which that Forms API and packages can not help you then you can develop/use a Java Bean or PJC , take a look at this PDF (you don't like Links :) sorry ):
    http://www.oracle.com/technology/products/forms/pdf/269054.pdf
    Regards,

  • [b]Error during JSP page processing[/b]

    hi , i'm mech.
    i have some probs with jsp. i am trying to connect jsp page with database and printing the data on the browser page. i have created DSN mm using microsoft odbc for oracle and oracle9i's driver oracle in orahome90 but it is giving yet . i have this coding and error.
    ------------------------jsp code--------------------------
    package pagecompile.jsp;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.servlet.jsp.*;
    import java.io.PrintWriter;
    import java.io.IOException;
    import java.io.FileInputStream;
    import java.io.ObjectInputStream;
    import java.util.Vector;
    import com.sun.server.http.pagecompile.jsp.runtime.*;
    import java.beans.*;
    import com.sun.server.http.pagecompile.jsp.JspException;
    import java.sql.*;
    public class _Connect extends HttpJspBase {
    static char[][] jspxhtml_data = null;
    public _Connect( ) {
    private static boolean jspxinited = false;
    public final void jspxinit() throws JspException {
    ObjectInputStream oin = null;
    int numStrings = 0;
    try {
    FileInputStream fin = new FileInputStream("E:\\JavaWebServer2.0\\tmpdir\\default\\pagecompile\\jsp\\pagecompile.jspConnect.dat");
    oin = new ObjectInputStream(fin);
    jspxhtml_data = (char[][]) oin.readObject();
    } catch (Exception ex) {
    throw new JspException("Unable to open data file");
    } finally {
    if (oin != null)
    try { oin.close(); } catch (IOException ignore) { }
    public void _jspService(HttpServletRequest request, HttpServletResponse  response)
    throws IOException, ServletException {
    boolean jspxcleared_due_to_forward = false;
    JspFactory _jspxFactory = null;
    PageContext pageContext = null;
    HttpSession session = null;
    ServletContext application = null;
    ServletConfig config = null;
    JspWriter out = null;
    Object page = this;
    String _value = null;
    try {
    if (_jspx_inited == false) {
    jspxinit();
    jspxinited = true;
    _jspxFactory = JspFactory.getDefaultFactory();
    response.setContentType("text/html");
    pageContext = _jspxFactory.getPageContext(this, request, response,
                   "", true, 8192, true);
    application = pageContext.getServletContext();
    config = pageContext.getServletConfig();
    session = pageContext.getSession();
    out = pageContext.getOut();
    out.print(_jspx_html_data[0]);
    out.print(_jspx_html_data[1]);
    // begin [file="E:\\JavaWebServer2.0\\public_html\\Connect.jsp";from=(14,2);to=(28,2)]
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection myconn=DriverManager.getConnection("Jdbc:Odbc:mm","madhulika","madhulika");
    Statement stmt = myconn.createStatement();
    ResultSet myResultSet = stmt.executeQuery("Select * from peopletable");
    if(myResultSet != null)
         while(myResultSet.next())
              int eid=myResultSet.getInt("id");
              String fname=myResultSet.getString("firstname");
              String lname=myResultSet.getString("lastname");
              String mail=myResultSet.getString("email");
    // end
    out.print(_jspx_html_data[2]);
    // begin [file="E:\\JavaWebServer2.0\\public_html\\Connect.jsp";from=(30,10);to=(30,13)]
    out.print(eid);
    // end
    out.print(_jspx_html_data[3]);
    // begin [file="E:\\JavaWebServer2.0\\public_html\\Connect.jsp";from=(31,10);to=(31,15)]
    out.print(fname);
    // end
    out.print(_jspx_html_data[4]);
    // begin [file="E:\\JavaWebServer2.0\\public_html\\Connect.jsp";from=(32,10);to=(32,15)]
    out.print(lname);
    // end
    out.print(_jspx_html_data[5]);
    // begin [file="E:\\JavaWebServer2.0\\public_html\\Connect.jsp";from=(33,10);to=(33,14)]
    out.print(mail);
    // end
    out.print(_jspx_html_data[6]);
    // begin [file="E:\\JavaWebServer2.0\\public_html\\Connect.jsp";from=(37,5);to=(43,0)]
    stmt.close();
    myconn.close();
    // end
    out.print(_jspx_html_data[7]);
    } catch (Throwable t) {
    if (out.getBufferSize() != 0)
    out.clear();
    throw new JspException("Unknown exception: ", t);
    } finally {
    if (!_jspx_cleared_due_to_forward)
    out.flush();
    _jspxFactory.releasePageContext(pageContext);
    -------------------error in browser----------------------
    Error during JSP page processing
    java.sql.SQLException: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
         at java.lang.Throwable.(Compiled Code)
         at java.lang.Exception.(Compiled Code)
         at java.sql.SQLException.(SQLException.java:43)
         at sun.jdbc.odbc.JdbcOdbc.createSQLException(Compiled Code)
         at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:3814)
         at sun.jdbc.odbc.JdbcOdbc.SQLDriverConnect(JdbcOdbc.java:1029)
         at sun.jdbc.odbc.JdbcOdbcConnection.initialize(JdbcOdbcConnection.java:145)
         at sun.jdbc.odbc.JdbcOdbcDriver.connect(JdbcOdbcDriver.java:165)
         at java.sql.DriverManager.getConnection(Compiled Code)
         at java.sql.DriverManager.getConnection(DriverManager.java:126)
         at pagecompile.jsp._Connect._jspService(Compiled Code)
         at com.sun.server.http.pagecompile.jsp.runtime.HttpJspBase.service(HttpJspBase.java:87)
         at javax.servlet.http.HttpServlet.service(Compiled Code)
         at com.sun.server.http.pagecompile.jsp.runtime.JspServlet.runServlet(JspServlet.java:469)
         at com.sun.server.http.pagecompile.jsp.runtime.JspServlet.processJspPage(JspServlet.java:259)
         at com.sun.server.http.pagecompile.jsp.runtime.JspServlet.service(JspServlet.java:97)
         at javax.servlet.http.HttpServlet.service(Compiled Code)
         at com.sun.server.ServletState.callService(ServletState.java:226)
         at com.sun.server.ServletManager.callServletService(ServletManager.java:936)
         at com.sun.server.ProcessingState.invokeTargetServlet(ProcessingState.java:423)
         at com.sun.server.http.HttpProcessingState.execute(HttpProcessingState.java:79)
         at com.sun.server.http.stages.Runner.process(Runner.java:79)
         at com.sun.server.ProcessingSupport.process(Compiled Code)
         at com.sun.server.Service.process(Service.java:204)
         at com.sun.server.http.HttpServiceHandler.handleRequest(HttpServiceHandler.java:374)
         at com.sun.server.http.HttpServiceHandler.handleRequest(Compiled Code)
         at com.sun.server.HandlerThread.run(Compiled

    Backing up a moment, is there a particular reason that you're using the JDBC-ODBC bridge rather than using the Oracle JDBC driver?
    Have you taken a look at the JSP sample code available on OTN? I would start by making sure you can run that.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • My Ipad air continue to see error 4005, 4013, or 4014 when I try to restore . Although I did all the instructions in the help page , and I changed many computers  and I still get same errors . Please help.

    My Ipad air continue to see error 4005, 4013, or 4014 when I try to restore . Although I did all the instructions in the help page , and I changed many computers  and I still get same errors . Please help.
    Ipad air crushes and stuck in loop of apple logo then blue screen.

    If you get the same errors on different computer and with different computers then contact Apple : iOS: Restore errors 4005, 4013, and 4014 :
    If you continue to see error 4005, 4013, or 4014 when you restore your device, contact Apple for support.

  • Error in jsp:Code too large for try statement

    Hi friends,
    When i try to run a jsp program i am getting error "code too large for try statement". How can i rectify it rather than truncating that jsp? is there another way?
                                                  Basha

    Basha,
    When we were implenting an e-form component which was very big, the only way we were able to achieve it was by
    "jsp includes". In the main form simply included muliple
    jsp pages, where each was a section of the e-form.
    we have not found any other better way.
    Hope this helps.
    -Venkat Malempati
    Message was edited by: Venkat Malempati
    Message was edited by: Venkat Malempati

  • PWA 2010 error when i try to open the project name in Project Center

    Hi, this is my first post.
    Im having a trouble with our Project Server, when i try to open the project name in Project Center it gives me an error like this:
    ProjectServerError(s) LastError=GeneralUnhandledException Instructions: Pass this into PSClientError constructore to access all error information 
    Stack Trace: 
    [SoapException: ProjectServerError(s) LastError=GeneralUnhandledException Instructions: Pass this into PSClientError constructore to access all error information]
       Microsoft.Office.Project.Server.WebServiceProxy.PWA.WorkflowGetProjectDrilldownInformation(Guid projectUid, String userPropToClear, Boolean bCheckOutProject) +401
       Microsoft.Office.Project.PWA.ApplicationPages.ProjectDrillDownPage.OnLoad(EventArgs e) +822
       System.Web.UI.Control.LoadRecursive() +66
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2428
     And also when i try to open the document that associated with the project in project center it gives me an error like this :
    Exception Details: System.Web.Services.Protocols.SoapException: ProjectServerError(s) LastError=GeneralUnhandledException Instructions: Pass this into PSClientError constructore
    to access all error information
    Source Error:
    Line 12: bool LoadLinkItemsPage = (Request.QueryString["Task"] != null);
    Line 13:
    Line 14: ProjectWSSInfoDataSet ds = PJContext.Current.PSI.WssInteropWebService.ReadWssData(ProjectGuid);
    Line 15: if (ds != null && ds.ProjWssInfo.Rows.Count > 0)
    Line 16: {
    Source File: c:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS\PWA\COMMON\wssnav.aspx    Line: 14 
    Stack Trace:
    [SoapException: ProjectServerError(s) LastError=GeneralUnhandledException Instructions: Pass this into PSClientError constructore to access all error information]
    Microsoft.Office.Project.Server.WebServiceProxy.WssInterop.ReadWssData(Guid projectUID) +377
    ASP._layouts_pwa_common_wssnav_aspx.PJWebPage_OnLoad(EventArgs e) in c:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS\PWA\COMMON\wssnav.aspx:14
    Microsoft.Office.Project.PWA.PJWebPage.OnLoad(EventArgs e) +67
    System.Web.UI.Control.LoadRecursive() +66
    System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2428
    has anyone experienced this
    before and might be able to help? Thank you!

    For what it's worth, given the age of this question, I've found that stopping and starting the Project Application Service on each server via Central Admin is less disruptive to the rest of your farm when using Project Server in a larger SharePoint
    farm.
    IISRESET will cause active user sessions to be disconnected and could result in lost data.
    I also found that recycling the app pool associated with my Project Server web application in IIS and restarting the web site did not resolve this situation so the IISRESET is not a guaranteed fix.
    Targeting only the Project Application Service from Central Admin removes this minor risk and actually restored access to our Project Sites.
    N03L.

  • I have installed HP2035n. But when i try to open the embedded web server, i get the error "Firefox doesn't know how to open this address, because the protocol (fe80) isn't associated with any program." What is the possible solution?

    I have installed HP2035n. But when i try to open the embedded web server, i get the error "Firefox doesn't know how to open this address, because the protocol (fe80) isn't associated with any program." What is the possible solution?
    I typed in the IPv6 address of the printer in the address feild of firefox.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    Do a malware check with some malware scanning programs.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br />
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also:
    * "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • Error A12E1 when I try to update the Creative Cloud desktop

    I get an Error code: A12E1 when I try to update the Creative Cloud desktop on my Mac, OS 10.7.5. I tried creating a different user account but that made no difference. I uninstalled the Creative Cloud desktop app and downloaded a new one from the CC website. Same problem with an Error code: A12E6.
    So how do we fix this?

    Dear Mr. Wright,
    I’ve encountered this A12E1 error EVERY time an update to CC Desktop has been required — that’s (5) times since August 2013. I  contacted TS chat the first (4) times and each time I listened to them tell me that this was the LAST TIME I’d encounter this error. Each time, they put me through exactly the same process, delete exactly the same processes and folders, uninstall the CC application and reinstall it. This time, I skipped the tech support chat and did it myself:  who needs to be lied to over and over again?
    If you’re not going to eliminate this A12E1 error, at least put something together to automate the process, please?
    The instructions for #3, reinstalling the CC desktop application (post #23 above) are inaccurate, at least for OS 10.7.5. Tip: the Mac has more than one OS in use, as does Windows.
    P.S. I deeply resent being ignominiously FORCED to use CC apps with the worst GUIs ever (are your code gurus completely ignorant of the concepts of CLARITY and LEGIBILITY?), being FORCED to reconfigure (6) or (8) “upgraded” applications every few months because Adobe won’t support the previous version(s) for more than five minutes, being FORCED to sift through hundreds of forum posts and dozens of INACCURATE  or non-existent so-called “support” pages (e.g., the link cited above) and being FORCED to watch hours of useless TV tutorials in order to find the one piece of information I need — EVERY TIME I need support — because Adobe is too lazy to write application- and version-specific manuals. You’ve backed us  into that infamous circle of hell between a rock and a hard place instead of providing us with the stable, seamless suite of creative tools we were promised.
    The bling and the glitz and the self-promotional “look at our wonderful new toys” videos just don’t fill the void, Adobe.
    Unless you work for a company big enough to afford one of your outrageously expensive tech support plans, you’re out here fending for yourself on forums that never seem to get looked at by an Adobe employee. I spend more time solving Adobe-related problems than I do producing billable work.  I’ve been a loyal, dues-paying, license-respecting Adobe customer since 1991; every year I paid the upgrade fees and was content to do so until Creative Suite offered the same upgrade deal to people with (1) outdated version of Photoshop that they offered to someone who’d paid the upgrades on (5) to (8) Adobe applications for (15) years. So much for loyalty and playing by the rules.
    If you really want to help me, please find out why the Typekit support people haven’t answered the e-mail I sent them (2) days ago. And if Typekit won’t work with Dreamweaver CS6, then they ought to come out and say that instead of sending you to help pages that tell you how to use it with Dreamweaver CC. Thanks.

  • When i try to download the new version of iTunes, I get an error message saying the download was for 32bit and I need the 64bit. How do i download 64bit?!?!

    When i try to download the new version of iTunes, I get an error message saying the download was for 32bit and I need the 64bit. How do i download 64bit?!?!

    Which I get. But clicking on that link you provided does not give you the option of choosing between 32 and 64 bit installers.
    Yeah, that was certainly a 32-bit installer file being referred to in the other message, too. (The 64-bit installer file is called iTunes64Setup.exe.)
    Just in case it's an issue with your normal browser not working properly with the system-detection equipment on the page (there's a javascript control that checks for operating system specifics, and is supposed to deliver the correct Mac or Windows installers), let's try a different web browser for the download. If you use Firefox instead of IE (or vice versa), do you get offered an iTunes64Setup.exe instead of an iTunesSetup.exe?

  • Getting an error when i try and download the free photoshop trial

    getting an error when i try and download the free photoshop trial

    I have no problem downloading the trial from http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements
    If you still have these problems, try downloading from http://prodesigntools.com/photoshop-elements-12-direct-download-links-premiere.html
    Make sure you follow the Very Important Instructions on that page.

  • In Pages 5 when I try to attach a pages document to an email it gives me 2 folders and 4 files ???  How does one email a pages document.

    How does one email a pages document? In pages 5 when I try to attach a pages document to a gmail email it gives me 2 folders and 4 other files to choose from. 

    Sounds like you are using Gmail.
    Pages 5 uses a zipped package of files as its format. 3rd party servers don't understand the format and show it as the component parts.
    Use Mail toenail the file or zip the .pages document before sending.
    Peter

  • Regarding Pages charts, when I try to 'build' a 3D chart all I get is little dots but not graphics.  No problems with 2D charts though. Guess my question is "Help?"

    Regarding Pages charts, when I try to 'build' a 3D chart all I get is little dots but not graphics.  No problems with 2D charts though. Guess my question is "Help?"

    Sorry for the delay getting back to this.
    Thanks to Fruhulda and Peter for their comments regarding the refusal of Pages to let me make 3D charts. 
    In answer to the questions put to  me in this regard :
    1. Pages version : Pages '09  v.4.1 (923)
    2. Mac O/S :          v.10.6.8 
    3. 3D chart :          Can't find a 'name', but upright bars with rounded corners ???
    4. Moved apps :    Not that I'm aware of!  All should be as installed off the disc.
    5. A note :              I have been able to create these in the past - related to a SW update? 
                          and ... can create these charts perfectly in Keynote (go figure).
    Thanks to all.
    CM

Maybe you are looking for

  • Pass parameter from HTML to Oracle Forms

    I have an application that connects to a third party company to process credit card transactions. They require a Sucess URL and a Fail URL depending on whether or not the credit card transaction is approved. How can I, using Oracle forms, "catch" the

  • How to call a transaction in an activity?

    Hi everyone, I need to call a standard transaction (passing some parameters) after a user decision in a custom workflow. I've found the TSTC business object with the EXECUTE method, but I don't know how to eventually use it with some parameteres. Any

  • Is there a script to create a next page button

    I have a PDF that I need to create next and previous page buttons on. There is no option in the actions menu. Is there a java script I can run to make this happen. I am using Acrobat 9 Pro and I do not know javascript at all. Thanks Tom

  • My screen is black and won't open up

    my screen is blank and won't open- i can't type my password, get messages, or answer a call.

  • SceneBuilder 2.0 does not update when refreshing CSS

    Hello, when I edit my CSS-Files then the SceneBuilder 2.0 does not update the new content. I have to reopen the Builder to see my new changes. Furthermore the SceneBuilder-Preview (Strg+P) shows diffrent styled controls then the normal SceneBuilder-V