Error when enrolling for a class

Users receive this error when they click on enrol.
You have encountered an unexpected error. Please contact the System Administrator for assistance.
Click here for exception details.
About Previous Page
Can someone please help.

This is very Generic Error. Check the setup once again. Ask DBA to bounce the apache once.
Thanks

Similar Messages

  • Error when searching for entries in secure store

    Hi All,
      I need to assign the certificate in the sender agreement  for signature verification and decrpting. So when i search for entries, i am getting the error as " Error when searching for entries in Secure Store".
    Details of the Error is showing as:
    Service call exception; nested exception is: com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code: (401) Unauthorized.
    What is the reason for the above error and how to rectify it..?
    Suggest some useful solution
    Regards
    Prakash

    Hi All,
      Can anyone suggest some ways to rectify the error, as i am not able to  find solution for the error in the
    forum.
    Regards
    Prakash

  • Float4() causes "error saving Pixel Bender Byte Code file" error when exporting for flash player

    Simple test
    <languageVersion : 1.0;>
    kernel untitled
    <   namespace : "Your Namespace";
        vendor : "Your Vendor";
        version : 1;
    >
        input image4 src;
        output pixel4 dst;
        void
        evaluatePixel()
            dst = float4(sampleNearest(src, outCoord()));
    The above code will produce a "error saving Pixel Bender Byte Code file" error when exporting for flash player in Pixel Bender Toolkit 2.5.449694.
    "dst = (sampleNearest(src, outCoord()));" works fine. And anything like "float4 a= float4(b);" will give same error.

    Thank you for the error report.  I'll put it into our bug database.  We're bottling things up for the current version.  Gven the workaround, it is unlikely we'll be addressing this bug soon.  Please accept my apologies for the annoyance this will cause.
    In your second example, float4 a = float4(b), does it return an error if b is only a float4 or regardless of what b is?  If b is a scalar float, for example, is the conversion performed correctly? If so, this could be an error that only crops up when using constructor/conversion syntax when the thing being converted is already the correct type.
    Thanks,
    Chuck.

  • Error when trying to create class file

    I am getting this error when I try to create file
    clobsearch.java:246: not a statement ex;
    protected Element getDocumentRoot(Clob c)
    Element root;
    Reader read = c.getCharacterStream();
    String s = convertClob(read, 8192);
    SAXReader sread = new SAXReader("org.dom4j.io.aelfred.SAXDriver");
    sread.setMergeAdjacentText(true);
    sread.setStripWhitespaceText(true);
    Document doc = sread.read(new StringReader(s));
    root = doc.getRootElement();
    return root;
    Exception ex;
    ex; <--- this is line 246
    System.out.println(ex.getMessage());
    return null;
    any help would be appricated
    thanks
    robert

    The guy who wrote this code is no longer with the company
    the server IP got changed and he had an IP coded in the program
    i managed to uncompile the code
    i changed the IP to the new one
    when I tryed to create the class file i get the error
    so as far as what is happenning with the ex I am not sure
    here is another piece of code that might help
    really all i need to do is get the class file created again...
    protected Element getDocumentRoot(Clob c)
    Element root;
    Reader read = c.getCharacterStream();
    String s = convertClob(read, 8192);
    SAXReader sread = new SAXReader("org.dom4j.io.aelfred.SAXDriver");
    sread.setMergeAdjacentText(true);
    sread.setStripWhitespaceText(true);
    Document doc = sread.read(new StringReader(s));
    root = doc.getRootElement();
    return root;
    Exception ex;
    ex;
    System.out.println(ex.getMessage());
    return null;
    protected double toDouble(String s)
    double d = 0.0D;
    try
    d = Double.parseDouble(s);
    catch(NumberFormatException ne) { }
    return d;
    protected String convertClob(Reader in, int blen)
    StringWriter sw = new StringWriter(32768);
    char buf[] = new char[blen];
    int len = 0;
    try
    while((len = in.read(buf)) != -1)
    sw.write(buf, 0, len);
    in.close();
    sw.close();
    catch(IOException ioe)
    len = 1;
    return null;
    String s = sw.toString();
    int q = s.indexOf("<Quote");
    int end = 0;
    if(q == 0)
    end = s.indexOf("</Quote>") + 8;
    } else
    q = s.indexOf("<Project");
    if(q == 0)
    end = s.indexOf("</Project>") + 10;
    else
    end = s.indexOf("</Order>") + 8;
    return s.substring(0, end);
    public static void main(String args[])
    if(args.length < 2)
    System.out.println("Usage: clobsearch tablename [searchpattern] [datesql]");
    System.out.println("Where: searchpattern like \"Geodesic Dome\" and datesql like \" where quotedate >= to_date('01/01/2004', 'MM/DD/YYYY')\"");
    System.out.println("OR: clobsearch tablename searchpattern -data idfile [idcolname]");
    System.out.println("Where: searchpattern as above, idfile is a one per line file of quote or order numbers, idcol=column name for id col");
    System.exit(1);
    clobsearch cs = new clobsearch(args);
    }

  • Stack overflow error when "compiling" a TagHandler class in IBM

    meda karthik, Aug 7, 2004
    Hi,
    I am getting a StackOverFlowError during compilation(yes StackOverFlow during compilation !) of a TagHandler class when i am compiling with IBM JDK 1.4.2. The strange thing is, that i dont get the error when i compile the same class with IBM JDK 1.3.1. I am sure that this class is causing the error, because without it,the build goes through fine. I am doing a build of my component through ant. The following is the error i get :
    ---------------------------ERROR-----------------------------
    [javac] The system is out of resources.
    [javac] Consult the following stack trace for details.
    [javac] java.lang.StackOverflowError
    [javac] at com.sun.tools.javac.v8.code.Type$ClassType.constType(Type.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.visitLiteral(Attr.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.tree.Tree$Literal.accept(Tree.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.attribTree(Attr.java(Inlined Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.attribArgs(Attr.java(Inlined Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.visitApply(Attr.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.tree.Tree$Apply.accept(Tree.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.attribTree(Attr.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.visitSelect(Attr.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.tree.Tree$Select.accept(Tree.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.attribTree(Attr.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.attribExpr(Attr.java(Inlined Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.visitApply(Attr.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.tree.Tree$Apply.accept(Tree.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.attribTree(Attr.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.visitSelect(Attr.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.tree.Tree$Select.accept(Tree.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.attribTree(Attr.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.attribExpr(Attr.java(Inlined Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.visitApply(Attr.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.tree.Tree$Apply.accept(Tree.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.attribTree(Attr.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.visitSelect(Attr.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.tree.Tree$Select.accept(Tree.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.attribTree(Attr.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.attribExpr(Attr.java(Inlined Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.visitApply(Attr.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.tree.Tree$Apply.accept(Tree.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.attribTree(Attr.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.visitSelect(Attr.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.tree.Tree$Select.accept(Tree.java(Compiled Code))
    The above messages continue repeating and finally ends with...
    [javac] at com.sun.tools.javac.v8.tree.Tree$MethodDef.accept(Tree.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.attribTree(Attr.java(Inlined Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.attribStat(Attr.java(Inlined Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.attribClassBody(Attr.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.attribClass(Attr.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.comp.Attr.attribClass(Attr.java:1349)
    [javac] at com.sun.tools.javac.v8.JavaCompiler.compile(JavaCompiler.java(Compiled Code))
    [javac] at com.sun.tools.javac.v8.Main.compile(Main.java:586)
    [javac] at com.sun.tools.javac.Main.compile(Main.java:67)
    [javac] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [javac] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85)
    [javac] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58)
    [javac] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
    [javac] at java.lang.reflect.Method.invoke(Method.java:391)
    [javac] at org.apache.tools.ant.taskdefs.compilers.Javac13.execute(Javac13.java:100)
    [javac] at org.apache.tools.ant.taskdefs.Javac.compile(Javac.java:842)
    [javac] at org.apache.tools.ant.taskdefs.Javac.execute(Javac.java:682)
    [javac] at org.apache.tools.ant.Task.perform(Task.java:341)
    [javac] at org.apache.tools.ant.Target.execute(Target.java:309)
    [javac] at org.apache.tools.ant.Target.performTasks(Target.java:336)
    [javac] at org.apache.tools.ant.Project.executeTarget(Project.java:1339)
    [javac] at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:397)
    [javac] at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:143)
    [javac] at org.apache.tools.ant.Task.perform(Task.java:341)
    [javac] at org.apache.tools.ant.Target.execute(Target.java:309)
    [javac] at org.apache.tools.ant.Target.performTasks(Target.java:336)
    [javac] at org.apache.tools.ant.Project.executeTarget(Project.java:1339)
    [javac] at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:397)
    [javac] at org.apache.tools.ant.Task.perform(Task.java:341)
    [javac] at org.apache.tools.ant.Target.execute(Target.java:309)
    [javac] at org.apache.tools.ant.Target.performTasks(Target.java:336)
    [javac] at org.apache.tools.ant.Project.executeTarget(Project.java:1339)
    [javac] at org.apache.tools.ant.Project.executeTargets(Project.java:1255)
    [javac] at org.apache.tools.ant.Main.runBuild(Main.java:609)
    [javac] at org.apache.tools.ant.Main.start(Main.java:196)
    [javac] at org.apache.tools.ant.Main.main(Main.java:235)
    ---------------------------ERROR----------------------------- I am also attaching the first few lines of the tag, incase you find some imports are being referenced circularly....here is the TagHandlerClass.........: ------------------CLASS-------------------------------------
    package com.ibm.bcg.consoleUI.tags;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpSession;
    import javax.servlet.jsp.JspException;
    import javax.servlet.jsp.JspWriter;
    import javax.servlet.jsp.tagext.TagSupport;
    import org.apache.struts.util.MessageResources;
    import com.ibm.bcg.consoleUI.forms.FormConstants;
    import com.ibm.bcg.consoleUI.forms.SchedulerForm;
    import com.ibm.bcg.consoleUI.forms.VCBaseForm;
    import com.ibm.bcg.consoleUI.locale.LocaleUtils;
    import com.ibm.bcg.shared.ClientInfo;
    import com.ibm.bcg.shared.NameIdAssoc;
    import com.ibm.bcg.shared.logging.Logger;
    import com.ibm.bcg.shared.logging.LoggerFactory;
    import java.util.*;
    import com.ibm.bcg.consoleUI.action.ActionLists;
    import com.ibm.bcg.consoleUI.action.alerts.AlertActionUtil;
    import com.ibm.icu.util.Calendar;
    import com.ibm.icu.text.NumberFormat;
    * @author karthikd
    * @version 1.0
    public class ScheduleTag extends TagSupport {
    // The following 3 fields denote the attributes of the tag.
    private String formName;
    private String requestKey;
    private String scheduleController;
    private SchedulerForm schedulerForm;
    private Logger logger;
    private MessageResources resources;
    private ClientInfo clientInfo;
    private Locale locale;
    private HttpServletRequest request;
    private JspWriter writer;
    private HttpSession session;
    private String newLine = "\r\n";
    private Calendar cal = null;
    public int doStartTag() throws JspException
    try
    logger = LoggerFactory.getLoggerInstance();
    logger.log(this.getClass(),Logger.PRIORITY_DEBUG,"staring SchedulerTag ******");
    request = (HttpServletRequest)pageContext.getRequest();
    writer = (JspWriter)pageContext.getOut();
    schedulerForm = (SchedulerForm) request.getAttribute(getRequestKey());
    session = (HttpSession)pageContext.getSession();
    clientInfo = (ClientInfo) session.getAttribute( "clientInfo" );
    locale = clientInfo.getLocale();
    resources = LocaleUtils.getMessageResources(VCBaseForm.CONSOLE_BUNDLE);
    cal = Calendar.getInstance( clientInfo.getFormatLocale() );
    // write out the various JavaScript functions required.
    writer.println(getScripts());
    //write out the main options,i.e Interval Based and Calendar based scheduling options
    writer.println(getOptions());
    //decide what kind of scheduling screen is needed.
    if(schedulerForm.isIntervalBased())
    logger.log(this.getClass(),Logger.PRIORITY_DEBUG,"Interval based scheduling ******* ");
    writer.println(getIntervalScreen());
    else
    logger.log(this.getClass(),Logger.PRIORITY_DEBUG,"Calendarbased scheduling ******* ");
    writer.println(getCalendarScreen());
    writer.println(initCalendarScreen());
    catch (Exception e)
    logger.log(this.getClass(),Logger.PRIORITY_ERROR,"SchedulerTag Handler Exception ******** ");
    logger.log(this.getClass(),Logger.PRIORITY_DEBUG,"Inside the catch block of Scheduler Tag ****** ");
    throw new JspException("SchedulerTag : " + e.getMessage());
    return SKIP_BODY;
    ------------------CLASS-------------------------------------
    What could cause such a problem? Please help , in need of urgent help !!
    regards, karthik .

    Hi,
    No i have not tried to compile it manually as the file is part of a larger project and there are a lot of other dependencies before i can compile this manually.
    In any case i found a work around for the porblem. What was happening is that i had a fairly large function, which was about 250 lines, with a larger number of calls to the "append()" function of the StringBuffer class.
    I broke the large function into smaller pieces and now i dont get the error.!
    But can somebody explain why this solved the problem. Is it because the compiler is not able to stack up all the activation records for execution during runtime ? But like i mentioned what is it in IBM JDK 1.4.2 which is not allowing this, whereas IBM JDK 1.3.1 is able to do it ?
    I did solve my problem, but havent got a logical answer to why this was happening !
    would appreciate it if someone sheds some light on this topic .
    thanks and regards,
    Karthik

  • Illegal start of type error when adding for loop to applet

    I have typed the following applet to print a horizontal row of stars with the length entered by the user (i.e. user enters 4 and applet prints out 4 stars in a row). Here is my code:
    import java.awt.Graphics;
    import javax.swing.*;
    public class Histograms extends JApplet
           String input = "";
            int number;
         public void init()
              input = JOptionPane.showInputDialog ( null,
              "Enter a number\nbetween 1 and 30:" );
              number = Integer.parseInt( input );
         public void paint ( Graphics g )
              for ( int counter = 1; counter <= number; counter++ )
                                    System.out.print( "*" );
               System.out.println();
    };Now I am trying to make it do this 5 times, so it seems like just surrounding the init and paint methods in a for loop (i.e. for ( int i=1; i <= 5; i++ ) ) would do the trick but when I do that I get an illegal start of type error when trying to compile. Does anyone know why this error would show up. The most common reply to questions of this sort seems to be to check the closing braces but I have checked very carefully after adding the for loop and don't see any problems with mismatched braces. Could you please help me get on the right track as to how I can make this applet print a horizontal row of stars five times? All help is appreciated.

    Hello JTMOBOP:
    You were correct in figuring that I was trying to get the applet to print five rows of stars of different length according to five different inputs from the user. I tried your suggestions, and the code now does compile and run, but it still does not run properly (i.e. only asks user once for input and displays row of stars but does not show an input dialog again). Here is the code I have retyped:
    import java.awt.Graphics;
    import javax.swing.*;
    public class Histograms extends JApplet
       String input = "";
       int[] number = new int[5];
       public void init()
          for ( int i = 0; i < 5; i++ )
             input = JOptionPane.showInputDialog ( null,
                "Enter a number\nbetween 1 and 30:" );
             number[i] = Integer.parseInt( input );
       public void paint ( Graphics g )
          for ( int i = 0; i < 5; i++ )
             for ( int myNumber = 0; myNumber <= number; myNumber++ )
    System.out.print( "*" );
    System.out.println();
    Any ideas what's going on here?
    Also, your comments about not being able to loop a method make sense. Thank you for the input so far.

  • VCS Expressway event log errors when Jabber for iPhone and Windows log in

    hi folks,
    I've deployed Collaboration Edge with VCS Control and Expressway:
    my Jabber for iPhone succesfully can log in from Internet and it can IM but not calls and I see next messages in VCS Expressway when Jabber is logging in:
    2015-03-27T18:00:28+02:00
    tvcs: Event="Authentication Failed" Service="SIP" Src-ip="Client-in-the-Internet-IPaddress" Src-port="49543" Detail="No valid authentication" Protocol="TLS" Method="REGISTER" Level="1" UTCTime="2015-03-27 16:00:28,204"
    2015-03-27T17:58:55+02:00
    tvcs: Event="Authentication Failed" Service="SIP" Src-ip="Client-in-the-Internet-IPaddress" Src-port="49535" Detail="No valid authentication" Protocol="TLS" Method="REGISTER" Level="1" UTCTime="2015-03-27 15:58:55,786"
    2015-03-27T17:58:32+02:00
    tvcs: Event="Authentication Failed" Service="SIP" Src-ip="Client-in-the-Internet-IPaddress" Src-port="49527" Detail="No valid authentication" Protocol="TLS" Method="REGISTER" Level="1" UTCTime="2015-03-27 15:58:32,202"
    2015-03-27T17:58:08+02:00
    tvcs: Event="Inbound TLS Negotiation Error" Service="SIP" Src-ip="Client-in-the-Internet-IPaddress" Src-port="49512" Dst-ip="Expressway-IPaddress" Dst-port="5061" Detail="No SSL error available, probably remote disconnect" Protocol="TLS" Level="1" UTCTime="2015-03-27 15:58:08,582"
    "Digest User" in the "Protocol Specific Information" section of Phone Configuration selected right user. in this Jabber I see following error "Failed to get device configuration". however Jabber for Windows and for Android hasn't such issues - they succesfully can log in from Internet and it can do calls and IM but I see next messages in VCS Expressway when Jabber is logging in. The same log line appears when Jabber for Android log in:
    tvcs: Event="Inbound TLS Negotiation Error" Service="SIP" Src-ip="Client-in-the-Internet-IPaddress" Src-port="56751" Dst-ip="Expressway-IPaddress" Dst-port="5061" Detail="No SSL error available, probably remote disconnect" Protocol="TLS" Level="1" UTCTime="2015-03-27 14:19:11,769"
    and I can't find any information which describe such types of error.
    thanks!

    Thanks Srini, but the instructions have two options:
    1. Use the Control Panel, select "Oracle 11g..." and uninstall from there.
    This is of course the first thing I tried, but as I said, there is no entry for Oracle 11g in my "Programs and Features" applet.
    2. Download the install package and run OracleXE.exe with the remove iss file.
    Firstly, there is no OracleXE.exe in the package I downloaded, just setup.exe;
    Secondly, setup.exe ignores the iss parameter and tells me that OracleXE is already installed (setup.log contains ResultCode=-3) so it can't be installed.
    Is there somewhere else to get an OracleXE.exe that will work for 11g? Or are these the instructions for 10g and haven't been updated yet?
    Am I unusual in not having a Control Panel entry?
    (and I understand this is a beta - that's partly why I'd like to uninstall it - I'll go back to 10g and not be so impatient :))
    Regards,
    Andrew

  • Error When Prompting for Substitution Variable

    Hi - I'm receiving an error when I try to run the following using the substitution variable - but only when I enter a string; when I enter a numeric value it runs fine.
    DECLARE
        l_SCR_Info            VARCHAR2(50) := '''SCR'||&SCR_NUM||'-'||'''';
    begin
    dbms_output.put_line(l_SCR_Info);
    end;Here is the error I receive when I supply a string value when prompted:
    ORA-06550: line 3, column 52:
    PLS-00201: identifier 'AB' must be declared
    ORA-06550: line 3, column 27:
    PL/SQL: Item ignored
    ORA-06550: line 10, column 22:
    PLS-00320: the declaration of the type of this expression is incomplete or malformed
    ORA-06550: line 10, column 1:
    PL/SQL: Statement ignoredCan anyone shed some light on what I'm missing here?
    Thanks!
    Christine

    Hi,
    It looks like you just want one string there:
    l_SCR_Info            VARCHAR2(50) := '''SCR&SCR_NUM-''';Remeber how substitution variables work: SQL*Plus replaces them with values before sending the code to the back end to be compiled.
    If you give a value like AB for the variable, the code you posted is equivalent to:
         l_SCR_Info            VARCHAR2(50) := '''SCR'|| AB ||'-'||'''';by the time it reaches the compiler. AB is not inside quotes, so the compiler looks for a variable or function called AB.
    If you gave a number:
         l_SCR_Info            VARCHAR2(50) := '''SCR'|| 123 ||'-'||'''';there's no problem; the compile knows what the literal number 123 is.

  • jsp:useBean error== The value for useBean class is invalid

    Can anybody tell me why am i getting the error for the JavaBean.
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: /SimpleBean.jsp(9,0) The value for the useBean class attribute com.stardeveloper.bean.test.SimpleBean is invalid.
         org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:40)
         org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:407)
         org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:148)
         org.apache.jasper.compiler.Generator$GenerateVisitor.visit(Generator.java:1272)
         org.apache.jasper.compiler.Node$UseBean.accept(Node.java:1178)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2361)
         org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2411)
         org.apache.jasper.compiler.Node$Visitor.visit(Node.java:2417)
         org.apache.jasper.compiler.Node$Root.accept(Node.java:495)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2361)
         org.apache.jasper.compiler.Generator.generate(Generator.java:3426)
         org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:216)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:332)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:312)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:299)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:586)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:317)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    note The full stack trace of the root cause is available in the Apache Tomcat/6.0.20 logs.
    Apache Tomcat/6.0.20
    my jsp file is in path c:\tomcat6\webapps\dev\SimpleBean.jsp
    my JavaBean compiled class is in path
    c:\tomcat6\webapps\dev\WEB-INF\classes\com\stardeveloper\bean\test\SimpleBean.class
    and my SimpleBean java class declaration is
    package com.stardeveloper.bean.test;
    public class SimpleBean implements java.io.Serializable
    and my jsp page SimpleBean.jsp pages call to useBean is as follows
    <jsp:useBean id="simple" class="com.stardeveloper.bean.test.SimpleBean">
         <jsp:setProperty name="simple" property="name" value="Sujoy" />
         <jsp:setProperty name="simple" property="age" value="26" />
    </jsp:useBean>
    Please help me anybody.

    First, try restarting Tomcat :-)
    Main 3 reasons for "useBean class is invalid"
    - class must be in a package (ok)
    - class must be public, and have public constructor that takes no arguments (check)
    - class must be compiled, valid and on the classpath. Normally this means the WEB-INF/classes directory.
    From what you have told us, everything seems to check out.
    Try recompiling the .class file to ensure it is valid.
    Does your constructor do anything which might thrown an exception?
    Can you invoke it in scriptlet code without getting an exception?
    <%@ page import="com.stardeveloper.bean.test.SimpleBean" %>
    <% SimpleBean sb = new SimpleBean() %>Trying it in scriptlet code like this might give you a different error message that might help your diagnosis.
    cheers,
    evnafets

  • ORA-01841 Error when value for date col is NULL in .dat (using SQL Loader)

    Hello Gurus,
    I have some data in .dat file which needs to be loaded into oracle table. I am using SQL * Loader to do the job. Although "NULLIF col_name =BLANKS" works for character datatype, but when value for date col is NULL then I get ORA-01841 error. I have to make NULL for all rows withour value for date column
    Early reply will be highly appreciated
    Farooq

    Hi,
    May be this problem is not with the NULLIF. The value for the date column is not in proper date format.
    create table:
    create table kk (empno number, ename varchar2(20), deptno number, hiredate date)
    Control file:
    LOAD DATA
    INFILE 'd:\kk\empdata.dat'
    insert into TABLE kk ( empno position (1:2) integer external,
    ename position(4:5) char NULLIF ename=BLANKS,
    deptno position (7:8) integer external NULLIF deptno=BLANKS,
    hiredate position (10:20) date NULLIF hiredate=BLANKS)
    data file:
    10 KK 01-jan-2005
    20 10
    SELECT * FROM KK;
    EMPNO ENAME DEPTNO HIREDATE
    10 KK 01-JAN-05
    20 10
    Verify the data file.
    Hope it will help

  • Error when compiling for IOS

    When compiling for IOS in Standard mode an error ocurred:
    Error occurred while packaging the application:
    Exception in thread "main" com.adobe.air.ipa.ProcessError: Assembler failed
              at com.adobe.air.ipa.AOTCompiler.launchProcess(AOTCompiler.java:263)
              at com.adobe.air.ipa.AOTCompiler.compileBitcode(AOTCompiler.java:935)
              at com.adobe.air.ipa.AOTCompiler.trimAndCompileBitcode(AOTCompiler.java: 763)
              at com.adobe.air.ipa.ASMGenerator.main(ASMGenerator.java:72)
    Compilation failed while executing : ADT
    Flex 4.6
    Windows 7
    Any idea?

    Sinious thanks for your answer.
    I tried compiling from adt and it worked using this command line script.
    @set java_cmd="C:\Program Files\Common Files\Adobe\Adobe Flash CC\jre\bin\java.exe"
    @set java_param=-Xmx8192m -jar
    @set adt_cmd="C:\Program Files\Adobe\Adobe Flash CC\AIR4.0\lib\adt.jar"
    @set target=ipa-test
    @set cert=samples.p12
    @set cert_pass=12345
    @set provisioning=samples.mobileprovision
    @set build_file=Testing.ipa
    @set desc_files=Testing-app.xml
    @set files=Testing.swf assets externalSWF
    %java_cmd% %java_param% %adt_cmd% -package -target %target% -storetype pkcs12 -keystore %cert% -storepass %cert_pass%  -provisioning-profile %provisioning% %build_file% %desc_files% %files%
    pause
    Still there is now a different problem.
    When trying to compile more than a certain number of external swfs (eg. 350) then the process never ends. The java.exe  process consumes all of my memory and it is just stuck there for hours( I've waited for it to compile for nearly 10 hours before I killed the java.exe process). When I randomly remove some swfs then everything goes fine and the process finishes after nearly half an hour or so.
    The pc i'm using has an i7 processor with 16gb of ram and the java process consumes it all even though i've set a limit using the -Xmx8192m command.
    Is there a problem with the xmx command?
    Do i need even more ram to compile a larger number of swfs.
    Is there a way to monitor the java process in order to catch any errors that occur or maybe use any different java params to control ram usage limits?
    Thank you for your help.

  • ERROR:HDLParsers:3370 Compile Error when compiling for NI-5640R

    I'm trying to get a FFT Core working inside the NI-5640R FPGA.  In my latest debugging step, I have received the following error when compiling:
    Compiling vhdl file "C:/NIFPGA82/srvrTmp/LOCALH~1/IFBC3E~1/bushold.vhd" in Library work.
    Entity <bushold> compiled.
    ERROR:HDLParsers:3370 - "C:/NIFPGA82/srvrTmp/LOCALH~1/IFBC3E~1/bushold.vhd" Line 142. Value 0 is not included in the range, 1 to 2147483647, of kConfiguration_ClkMaxWidth.
    ERROR:HDLParsers:3370 - "C:/NIFPGA82/srvrTmp/LOCALH~1/IFBC3E~1/bushold.vhd" Line 143. Value 0 is not included in the range, 1 to 2147483647, of kConfiguration_ClkCounterWidth.
    Has anybody seen this before?  I am including my FPGA VI that is causing this error (FFT (FPGA).vi).  I am also including my previous step in debugging the FFT that worked (FFTworking (FPGA).vi).
    Attachments:
    FFT (FPGA).vi ‏125 KB
    FFTworking (FPGA).vi ‏119 KB

    Hi,
    The main cause of this error message is the large array size. You configured a 16-bit fixed-size array with 4096 element for a total array size of 65536 (16 * 4096). Array uses a lot of FPGA resource and the general recommendation to limit the use and size of array as much as possible on the FPGA VI. This VI will certainly overmap the FPGA resource because of the large array size.
    Although this error message is not directly related to the array size, it has however been reported to R&D (#4G3COBJ0) for further investigation. A possible workaround would be to reduce the size of the array or use DMA FIFO to pass the data to the host.
    Thanks for the feedback!
    Tunde A.
    LabVIEW FPGA

  • Getting a error when workflow for some users

    Hi, 
    I'm getting this weird error when some users run this workflow. I'm not sure what the problem is how you can help. ALso how woul I enable some of these logging items.
    RequestorId: 2184e724-ab10-839d-4bda-e8175db97de3. Details: System.ApplicationException: HTTP 401 {"error_description":"The server was unable to process
    the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in order to send the exception
    information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs."} {"x-ms-diagnostics":["3001000;reason=\"There has been an error authenticating the request.\";category=\"invalid_client\""],"SPRequestGuid":["95c54cfd-7287-4eca-90a5-cb562caca261"],"request-id":["95c54cfd-7287-4eca-90a5-cb562caca261"],"X-FRAME-OPTIONS":["SAMEORIGIN"],"SPRequestDuration":["57"],"SPIisLatency":["0"],"Server":["Microsoft-IIS\/8.0"],"WWW-Authenticate":["Bearer
    realm=\"c7a65b41-dec2-476c-a601-e711474abe56\",client_id=\"00000003-0000-0ff1-ce00-000000000000\",trusted_issuers=\"00000005-0000-0000-c000-000000000000@*,[email protected]474abe56\"","NTLM"],"X-Powered-By":["ASP.NET"],"MicrosoftSharePointTeamServices":["15.0.0.4496"],"X-Content-Type-Options":["nosniff"],"X-MS-InvokeApp":["1;
    RequireReadOnly"],"Date":["Thu, 04 Dec 2014 02:42:23 GMT"]} at Microsoft.Activities.Hosting.Runtime.Subroutine.SubroutineChild.Execute(CodeActivityContext context) at System.Activities.CodeActivity.InternalExecute(ActivityInstance
    instance, ActivityExecutor executor, BookmarkManager bookmarkManager) at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation)

    Hi,
    Check if User Profile Synchronization service is running and Full Synchronization is done, check all the users that are getting
    error available and sync properly. If user is not available in the User Profile List run Full Synchronization manually or add manually new User Profile to User Profile List.
    Check this for more details
     http://chrisdomino.com/Blog/Post/SharePoint-2013-Quick-Tips-Workflow-And-The-User-Profile-Service
    Krishana Kumar http://www.mosstechnet-kk.com

  • Uknown error when enrolling to Imac

    I'v setup an OSX server on Mountain Lion. Made a self singed certificate and started the Open Directory and Profile Manager.
    If I go to <myservername>/mydevices I can see everything how it should be. I can download the Trust Profile and I can enroll my Mac Mini. (The server is on here).
    But if I do this on an Imac. I get an unkown error when it tries to install the Remote Management. It is an error about mdm.
    I've had the same error before but about the bootstrapper. This was fixed by opening the needed ports. But I cannot enroll the Imac or install a Test Profile I made in the profile manager. Even exported the Certificate I've used and imported it on the Imac.
    I've searchd around and resetted the Profile Manager before, Even completely reinstalled the OSX Server. But I can't get father then this.
    Is there anyone else with this problem or can help me with it?
    Thanks in advance

    On Tue, 29 Apr 2014 07:30:56 +0000, willimwangi wrote:
    when i try "ENroll on behalf of.." from administrator Personal container certificates, i get the error  "The signature of the certificate cannot be verified. 0x80096004 (-2146869244)"  when enrolling the smart card logon
    What is the signature key length on the CA?
    Paul Adare - FIM CM MVP
    "I thought banging luser heads on rocks was how we originally
    got zeroes." -- Steve VanDevender

  • KO88 - Error when settling for Cost Center AND Auc for the same Internal Or

    Hi Experts,
    We need to configure Investment Internal Orders that could settle to both Cost Center and Auc, but each assignments with different Source Cost Elements
    We did the following:
    1. Created Auc Class
    2. Created Investment Profile "IMOBIL" and assigned to Auc Class, flagging Auc
    3. Created Allocation Structure "CV" with two assignments:
    01, Source = Cost elements 7000000000 to 7999999999, receiver AUC "by cost element"
    02 Source = Cost elements 4000000000 to 4999999999, receiver CTR "by cost element"
    4. Created Model Order, filling the Investment Profile IMOBIL created in step 2.
    5 Created Settlement Profile ZCV0001, assigning Allocation Strucutre CV, allowing CTR and AUC for receivers, default receiver is "FXA", doc type "AA".
    6 Created ORder Type CV01, assigning Settlement Profile ZCV0001.
    When I post only for Asset Expenses (Source Cost element 7, Assigment 01), the settlement through KO88 correctly settles to AUC, and also creates the settlement rule for cost center (i'm using the strategy to create from Responsible Cost Center).
    But when I post for Asset Expenses (cost elements 7, receiver AUC) AND General Expenses (Source Cost element 4, receiver CTR), KO88 generates an error KD506, saying that for Assigment 02 - AUC I didnt define a settlement cost element.
    1. Assignment 02 is not AUC, is CTR;
    2. I flagged "by cost element", so I don't need a settlement cost element. And also, I was able to post to AUC when the source posting was only for cost element 7.
    Did you face any problem like this?
    I cannot find out what is the missing configuration, or if it is a program error...
    Kind Regards
    Mayumi Blak

    Hi Ajay
    I already created Source Structure and assigned to my Setllement profile (so I assigned Allocation Structure AND Source Structure).
    I don't understand when you say that I need to assign the Source Sutrcture in each rule....because the Source structure is in the Settlement Parameters valid for both rules...
    When I post to Asset Expenses only for the internal Order, the 2 rules (CTR and AUC) are created when I run KO88 (but only AUC rule is settled). This is OK.
    The problem is when I post for both General Expenses AND Asset Expenses, the system is not recognizing that I have 2 source structures, neither is findind that for CTR AND AUC the Settlement cost elements are the original cost elements.
    I'm thinking about changing message KD506 to warning, do you know if this can help?
    Kind Regards
    Mayumi Blak

Maybe you are looking for

  • Can you rename files in Bridge and relink in InDesign automatically?

    I have a 250+ page InDesign file with 800+ links to images. The problem I'm having is the images have French file names.  I want to remove the French text and rename the images to English. If I rename the images in Adobe Bridge will the Indesign link

  • Either the file does not exist, you do not have permission, or the file may be in use

    Had this file open this morning all the sudden Im getting this error. Either the file does not exist, you do not have permission, or the file may be in use Useing win 7 64bit. I think its version 6 Thanks

  • Creating a trigger in Portal

    I'm trying to create a trigger in Portal using the Wizard with the code below. It will not compile. Any ideas on why? Thank you, Sam DECLARE next_chemical_id msds.chemicals.id%TYPE; BEGIN SELECT chem_id.NEXTVAL INTO next_chemical_id FROM dual; :chemi

  • Differences between the Muvo Micro V200 and the N

    IS was just wondering what the diffences are betweeen the two. I have loooked at the page specific pages but I couldnt really dig out any major differences.

  • RET_CALL_NOT_FLUSHED when using OLE

    Hi,     i have an urgent problem about OLE.     i run an abap report to download an excel template to the local and when  calling the method document->save_copy_as , the exporting parameter 'ERROR' return an error 'RET_CALL_NOT_FLUSHED'.     This pro