SERVER ERROR - please help.

Hey everyone -
My iCal is giving a weird SERVER ERROR.
I'm running LION on my iMac and I have iCloud setup between my MacBook Pro, iPhone and iPad.
Everything was working perfectly a few weeks ago.
The problem occurs when someone emails me an iCal meeting request.
I open the iCal meeting request file in Apple mail, which takes me to iCal.
I then accept the meeting. An email goes out to the organiser of the meeting
and the meeting gets added to my iCal.
BUT THEN - I get the following ERROR MESSAGE.
The server responded with an error.
https://p03-caldav.icloud.com:443/1050977853/
principal/ is not a location that supports this request.
GO OFFLINE or REVERT TO SERVER
I then click "GO OFFLINE" ...
and the iCal entry that I just added to my calender, dissapears.
This never use to happen.
Any help will be appreciated.
Thanks

Ask the school's IT staff. The problem probably exists on their site and not in anything you have access to.
(122516)

Similar Messages

  • I cannot use iCloud on Windows 7, as it won't recognize my apple ID when i try to sign in to icloud it i get error saying "you can't sign in because of a server error (please help some one)

    I cannot use iCloud on Windows 7, as it won't recognize my apple ID when i try to sign in to icloud it i get error saying "you can't sign in because of a server error (please help some one)

    Although your message isn't mentioned in the symptoms, let's try the following document with that one:
    Apple software on Windows: May see performance issues and blank iTunes Store

  • HT201210 cont contact apple server error please help with ipad touch 4. im just fed up with apple please help me because why is it only apple with these kind of problems?

    cont contact apple server error please help with ipad touch 4. im just fed up with apple please help me because why is it only apple with these kind of problems?

    If you mean updae server
    Update Server
    Try:
    - Powering off and then back on your router.
    - iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server
    - Change the DNS to either Google's or Open DNS servers
    Public DNS — Google Developers
    OpenDNS IP Addresses
    - For one user uninstalling/reinstalling iTunes resolved the problem
    - Try on another computer/network
    - Wait if it is an Apple problem
    Otherwise what server are you talking about

  • Error 500--Internal Server Error.PLEASE   HELP .

    hi,
    I am using BEA weblogic server 9.0.i created a new domain named myproject.I have created directory mywebapp under applications dir.
    i.e C:\bea\user_projects\domains\myproject\applications\mywebapp
    I have placed my servlet class in :
    C:\bea\user_projects\domains\myproject\applications\mywebapp\WEB-INF\classes\Mypackage
    I deployed my apllication mywebapp using admin console.
    when i run the program in the browser,i get this error:
    Error 500--Internal Server Error
    javax.servlet.ServletException: [HTTP:101249][weblogic.servlet.internal.WebAppServletContext@17e5fde - name: 'mywebapp', context-path: '/mywebapp']: Servlet class HelloServlet for servlet myHello could not be loaded because the requested class was not found in the classpath C:\bea\user_projects\domains\myproject\applications\mywebapp\WEB-INF\classes.
    java.lang.ClassNotFoundException: HelloServlet.
         at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:497)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:234)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:2970)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:1888)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1810)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1274)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:167)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:139)
    what should i do?please help me.
    bye

    you are reason our error is slightly different is
    Error 500--Internal Server Error
    javax.servlet.ServletException: [HTTP:101249][ServletContext(id=21255917,name=BonusRoot,context-path=/BonusRoot)]: Servlet class Beans.BonusServlet for servlet BonusServlet could not be loaded because the requested class was not found in the classpath C:\bea\weblogic81\samples\domains\workshop\cgServer\.wlnotdelete\essai\war-ic.war.
    java.lang.ClassNotFoundException: Beans.BonusServlet.
         at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:799)
         at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:518)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:362)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:305)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6350)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3635)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2585)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    We have try with your proposition but we find the same error
    we must request servlet??? because i've one
    package Beans;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import javax.naming.*;
    import javax.rmi.PortableRemoteObject;
    public class BonusServlet extends HttpServlet {
      CalcHome homecalc;
      public void init(ServletConfig config) throws ServletException{
    //Look up home interface
       try {
         InitialContext ctx = new InitialContext();
         Object objref = ctx.lookup("calcs");
         homecalc = (CalcHome)PortableRemoteObject.narrow(objref, CalcHome.class);
       } catch (Exception NamingException) {
         NamingException.printStackTrace();
      public void doGet (HttpServletRequest request,
         HttpServletResponse response)
         throws ServletException, IOException
        String socsec = null;
        int multiplier = 0;
        double calc = 0.0;
        PrintWriter out;
        response.setContentType("text/html");
        String title = "EJB Example";
        out = response.getWriter();
        out.println("<HTML><HEAD><TITLE>");
        out.println(title);
        out.println("</TITLE></HEAD><BODY>");
        try{
        Calc theCalculation;
    //Retrieve Bonus and Social Security Information
       String strMult =
               request.getParameter("MULTIPLIER");
       Integer integerMult = new Integer(strMult);
       multiplier = integerMult.intValue();
       socsec = request.getParameter("SOCSEC");
    //Calculate bonus
        double bonus = 100.00;
        theCalculation = homecalc.create();
        calc = theCalculation.calcBonus(multiplier, bonus);
        }catch(Exception CreateException){
           CreateException.printStackTrace();
    //Display Data
        out.println("<H1>Bonus Calculation</H1>");
        out.println("<P>Soc Sec: " + socsec + "<P>");
        out.println("<P>Multiplier: " + multiplier + "<P>");
        out.println("<P>Bonus Amount: " + calc + "<P>");
        out.println("</BODY></HTML>");
        out.close();
      public void destroy() {
        System.out.println("Destroy");
    }Help us please
    Thanks

  • Can't decode JSP Server Error Please help!

    Hi,
    I wrote this code and I get this huge server error when I run it and I can't for the life of me figure out what's wrong, can someone please help me debug my jsp or explain to me what any of those errors mean?
    Here is the error message:
    type Exception report
    message
    description
    The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:254)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:594)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
         at java.lang.Thread.run(Thread.java:536)
    root cause
    java.lang.NullPointerException
         at org.apache.jsp.Pdb_Add_jsp._jspService(Pdb_Add_jsp.java:530)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:210)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:594)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
         at java.lang.Thread.run(Thread.java:536)
    Apache Tomcat/4.1.24
    Here is the code: Pdb_Add.jsp
    <%@ include file="authenticate.jsp" %>
    <%@ page import="java.sql.*" %>
    <%
    String connectionURL = "jdbc:mysql://localhost:3306/xxxxx?user=****&password=***";
    Connection connection = null;
    Statement statement = null;
    ResultSet rs = null;
    %>
    <html>
    <head>
    <title>Project Portal Confirm New Project</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <link href="style.css" rel="stylesheet" type="text/css">
    <link type="text/css" rel="stylesheet" href="xtree.css">
    <script src="xtree.js"></script>
    </head>
    <body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0">
    <table bgcolor="#ffffff" width="761" border="0" align="center" cellpadding="0" cellspacing="0">
      <tr>
        <td height="337" valign="top">
         <table width="761" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td height="11" valign="top"><IMG height=1 src="images/spacer.gif" width=1></td></tr>
          <tr>
            <td height="291" valign="top">
              <table width="761" border="0" cellspacing="0" cellpadding="0">
                   <tr>
                        <td width="10"><IMG height=1 src="images/spacer.gif" width=1></td>
                        <td width="399" valign="top">
                        <table width="399" border="0" cellspacing="0" cellpadding="0">
                        <TBODY>
                             <tr><!--IMAGE SQUARE ONE: TOP -->
                                  <td height="300" background="images/BB7250.jpg"><IMG height=1 src="images/spacer.gif" width="100%"></td>
                             </tr>
                             <tr>
                                  <td height="0" valign="top">
                                       <table width="300" height="200" border="0" cellpadding="0" cellspacing="0">
                                       </tr>
                                       </table>
                                  </td>
                             </tr>
                        <tr></tr>
         </table>
         </td>
                      <td width="340" valign="top">
                        <table width="340" border="0" cellspacing="0" cellpadding="0">
                        <tr>
                      <td height="91" valign="top">
                          <table width="340" height="88" border="0" cellpadding="0" cellspacing="0">
                          <tr>
                            <td width="3"><IMG height=1 src="images/spacer.gif" width=1></td>
                            <td width="167" valign="top" background="images/S1.gif">
                                       <table width="167" border="0" cellspacing="0" cellpadding="0">
                                            <tr>
                                                 <td width="80"> </td>
                                                 <td width="86" valign="top" class="text2" style="PADDING-TOP: 24px"></td>
                                            </tr>
                                       </table>
                                  </td>
                                  <td width="3"><IMG height=1 src="images/spacer.gif" width=1></td>
                            <td width="167" valign="top" background="images/V.gif">
                                       <table width="167" border="0" cellspacing="0" cellpadding="0">
                                            <tr>
                                                 <td width="70"> </td>
                                                 <td width="95" valign="top" class="text2" style="PADDING-TOP: 23px"></td>
                                            </tr>
                                       </table>
                                  </td>
                          </tr>
                     </table>
                         </td>
                   </tr>
                      <tr>
                      <td height="88" valign="top">
                          <table width="340" height="88" border="0" cellpadding="0" cellspacing="0">
                          <tr>
                            <td width="3"><IMG height=50 src="images/spacer.gif" width=1></td>
                            <td width="77" valign="top" background="images/and.gif">
                                       <table width="167" border="0" cellspacing="0" cellpadding="0">
                                          <tr>
                                             <td width="80"> </td>
                                              <td width="86" valign="top" class="text2" style="PADDING-TOP: 21px"></td>
                                            </tr>
                                       </table>
                                  </td>
                                  <td width="3"><IMG height=1 src="images/spacer.gif" width=1></td>
                            <td width="167" valign="top" background="images/V.gif">
                                       <table width="167" border="0" cellspacing="0" cellpadding="0">
                                            <tr>
                                            <td width="77"> </td>
                                            <td width="90" valign="top" class="text2" style="PADDING-TOP: 21px"></td>
                                            </tr>
                                       </table>
                                  </td>
                         </tr>
                      </table>
                          </td>
                   </tr>
                      <tr>
                      <td valign="top" style="PADDING-LEFT: 4px">
                          <table width="336" border="0" cellspacing="0" cellpadding="0">
                          <tr>
                            <td width="300" height="4" valign="top" background="images/spacer.gif">
                                 </td>
                          </tr>
                               <tr>
                            <td width="300" height="116" valign="top" background="images/portalspiral.jpg">
                                 </td>
                          </tr>
                      </table>
                          </td>
                   </tr>
                </table></td>
                <td><IMG height=1 src="images/spac" width=1></td>
              </tr>
            </table></td>
          </tr>
          <tr>
            <td valign="top">
              <table width="761" height="35" border="0" cellpadding="0" cellspacing="0">
              <tr>
                <td width="10" valign="top"> </td>
                <td width="517" valign="top">
                   <table width="517" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                    <td valign="top">
                        <table width="517" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td height="3" bgcolor="#000000">
                             <IMG height=1 src="images/spacer.gif" width=1></td>
                      </tr>
                      <tr>
                        <td valign="top">
                             <table width="250" border="0" cellspacing="0" cellpadding="1">
                            <tr>
                              <td width="75" valign="top">
                                       <A href="PIndex.html"><IMG height=31 src="images/but2.gif" width=99 border=0></A></td>
                              <td width="80" valign="top" style="PADDING-RIGHT: 1px">
                                       <A href="ProjectPortal_Add.html"><IMG height=31 src="images/but3.gif" width=104 border=0></A></td>
                              <td width="100" valign="top" style="PADDING-RIGHT: 6px">
                                       <A href="index-2.html"><IMG height=31 src="images/but4.gif" width=104 border=0></A></td>
                              <td width="100" valign="top">
                                       <A href="PDir.html"><IMG id=IMG1 height=31 src="images/but5.gif" width=134 border=0 ></A></td>
                              <td width="75" valign="top">
                                       <A href="index-4.html"><IMG height=31 src="images/but6.gif" width=99 border=0></A></td>
                            </tr>
                        </table></td>
                      </tr>
                    </table></td>
                  </tr>
                  <tr>
                    <td height="1" bgcolor="#e3e3e3">
                        <IMG height=1 src="images/spacer.gif" width=1></td>
                  </tr>
                </table></td>
                <td width="150" valign="top">
                   <table width="150" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                    <td height="3" bgcolor="#000000"><IMG height=1 src="images/spacer.gif" width=1></td>
                  </tr>
                  <tr>
                    <td height="1"><IMG height=1 src="images/spacer.gif" width=1></td>
                  </tr>
                  <tr>
                    <td height="31" valign="top">
                        <table width="150" height="31" border="0" cellpadding="0" cellspacing="0" background="images/spacer.gif" bgcolor="#ffffff">
                      <tr>
                        <td width="80" valign="top" style="PADDING-TOP: 7px"><IMG height=25 src="images/spacer.gif" width=56></td>
                        <td width="100" valign="top" style="PADDING-RIGHT: 4px; PADDING-TOP: 8px"
                               ><input name="textfield" class="form" ></td>
                        <td valign="top" style="PADDING-TOP: 5px">
                             <A href="#"><IMG height=21 src="images/minis.gif" width=20 border=0></A></td>
                      </tr>
                    </table></td>
                  </tr><tr>
                       <td height="1" bgcolor="#e3e3e3"><IMG height=1 src="images/spacer.gif" width=1></td>
                      </tr>
                </table></td>
                <td><IMG height=1 src="images/spacer.gif" width=1></td>
              </tr>
            </table></td>
          </tr>
        </table></TD></TR>
      <tr>
        <td height="362" valign="top">
         <table width="761" height="362" border="0" cellpadding="0" cellspacing="0">
          <tr>
            <td width="218" valign="top">
              <table width="218" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td width="12" valign="top">
                    <IMG height=1 src="images/spacer.gif" width=1></td>
                <td width="218" valign="top">
              <table width="218" border="0" cellspacing="0" cellpadding="0" style="WIDTH: 218px; HEIGHT: 472px">
              <tr>
                <td width="12" valign="top"><IMG height=1 src="images/spacer.gif" width=1></td>
                <td width="205" valign="top">
                <IMG alt="" src="file://C:\Documents and Settings\atavakkolie\Desktop\Project Portal\images\PDir.gif"
                      id=IMG1
                     >
                      <DIV id=DIV1
                      style="PADDING-RIGHT: 5px; PADDING-LEFT: 15px; LEFT: 5px; PADDING-BOTTOM: 5px; OVERFLOW: auto; WIDTH: 200px; PADDING-TOP: 0px; POSITION: relative; TOP: 10px; HEIGHT: 100%"><!-- js file containing the tree content, edit this file to alter the menu,
                        the menu will be inserted where this tag is located in the document -->
                      <SCRIPT src="tree.js"></SCRIPT>
                      </DIV></td>
                     <td>
                        </td>
              </tr>
            </table></td>
              </tr>
            </table></td>
            <td width="1" valign="top"><table width="1" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td height="2"><IMG height=1 src="images/spacer.gif" width=1></td>
              </tr>
              <tr>
                <td height="920" bgcolor="#e3e3e3"><IMG height=1 src="images/spacer.gif" width=1></td>
              </tr>
              <tr>
                <td height="2"><IMG height=1 src="images/spacer.gif" width=1></td>
              </tr>
            </table></td>
            <td width="542" valign="top">
              <table width="542" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td width="530" valign="top">
                   <table width="530" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                    <td valign="top">
                        <table width="530" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td height="41" valign="top" style="PADDING-TOP: 6px"><IMG id=IMG1
                                  style="LEFT: 409px; TOP: 552px" height
                                  =44 src="images/Addp.gif" width=207></td>
                      </tr><!-- Form starts here-->
                      <tr>
                        <td valign="top"
                                >
                             <table width="530" border="0" cellspacing="0" cellpadding="0">
                          <tr>
                            <td class="text" style="PADDING-LEFT: 18px">
                                      <!-- ***** START EDITABLE REGION  -->
    <%
    Class.forName("com.mysql.jdbc.Driver").newInstance();
    connection = DriverManager.getConnection(connectionURL, "", "");
    statement = connection.createStatement();
    String name = request.getParameter("name");
    String email = request.getParameter("email");
    String pname = request.getParameter("pname");
    String pmanager = request.getParameter("pmanager");
    String svvpp = request.getParameter("svvpp");
    String pdphase = request.getParameter("pdphase");
    String pdptarget = request.getParameter("pdptarget");
    String etimecode = request.getParameter("etimecode");
    if( request.getParameter("name").equals("") || request.getParameter("email").equals("") || request.getParameter("pname").equals("")
    || request.getParameter("pmanager").equals("") || request.getParameter("svvpp").equals("") || request.getParameter("pdphase").equals("")
    || request.getParameter("pdptarget").equals("") || request.getParameter("etimecode").equals(""))
    out.println("<b>ERROR:</b> All fields were not filled out. Please go back and try again.");
    else
    try
      int retval = statement.executeUpdate("INSERT INTO project VALUES('" + name + "," + email + "," + pmanager + "," +  svvpp + "," + pname + "," + pdphase + "," + pdptarget + "," + etimecode + "')");
      out.println("<b>SUCCESS:</b> Your changes have been successfully written to the database.");
      session.putValue("entry", "<b>" + pname + " (Add Project)</b>: added user with email: " + email + ", pmanager: " + pmanager + ", svvpp: " + svvpp + ", pdphase: " + pdphase + ", pdptarget: " + pdptarget + ", etimecode: " + etimecode);
      %>
      <jsp:include page="log.jsp" />
      </jsp:include>
      <%
      catch (SQLException e)
       if (e.getErrorCode() == 1062)
       { out.println("<p><b>ERROR:</b> There is something wrong. Please go back and try again.</p>");
       else
        out.println("<p><b>ERROR:</b> Unexpected error <b>" + e.getErrorCode() + "</b> occurred.</p>");
        out.println("<p>" + e + "</p>");
    %>
                        </td>
                         </tr>
                        </table>
                            </td>
                      </tr>
                    </table></td>
                  </tr>
                </table></td>
                <td width="12"> </td>
              </tr>
            </table></td>
          </tr>
        </table></td>
      </tr>
      <tr>
        <td height="71" valign="top"><table width="761" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td valign="top"><table width="761" height="25" border="0" cellpadding="0" cellspacing="0">
              <tr>
                <td width="13">
                   <IMG height=1 src="images/spacer.gif" width=1></td>
                <td width="738" align="middle" background="images/back_4.gif" bgcolor="#808080" class="links">
                   <A class=links href="index.html"><strong> Home page</strong></A> 
                   |  <A class=links href="index-1.html"><strong>About us</strong></A> 
                   |  <A class=links href="index-2.html"><strong>Search</strong></A> 
                   | <A class=links href="index-3.html"><strong> Contact</strong></A> 
                   |  <A class=links href="#"><strong>SV&V Links</strong></A> 
                   |  <A class=links href="index-4.html"><strong>Help</strong></A> 
                   |  <A class=links href="#"><strong>Site map</strong></A> 
                   |  <A class=links href="#"><strong>Links</strong></A></td>
                <td width="10">
                   <IMG height=1 src="images/spacer.gif" width=1></td>
              </tr>
            </table></td>
          </tr>
          <tr>
            <td height="18" valign="top"><IMG height=1 src="images/spacer.gif" width=1></td>
          </tr>
          <tr>
            <td align="middle" valign="top" class="copy">
              <A class=copy style="TEXT-DECORATION: none" href="index-5.html" >Copyright 2004-2005 � SV&V Project Portal. All rights reserved.</A></td>
          </tr>
        </table></td>
      </tr></TBODY></TABLE></TABLE>
    </body>
    <script>
    function addNode() {
         if (tree.getSelected()) {
              tree.getSelected().add(new WebFXTreeItem('New'));
    function addNodes() {
         if (tree.getSelected()) {
              var foo = tree.getSelected().add(new WebFXTreeItem('New'));
              var bar = foo.add(new WebFXTreeItem('Sub 1'));
    function delNode() {
         if (tree.getSelected()) {
              tree.getSelected().remove();
    </script>
    </html>

    request.getParameter("name").equals("")You are using this in your 'if' statement. But if a parameter by the name "name" is not found, it would return a null reference and calling equals() would call a NullPointerException.
    I observed that you are already assigning those parameters to Strings. You should add null checking for each of them. :)

  • DI Server Error, please help.

    I'm developing a class to use di server methods, when using AddObject the new Object is created but the response says that "i can't duplicate the primary key".
    Example:
    I send this
    [OCRD] , '1). [ODBC SQL Server Driver][SQL Server]Infracción de la restricción PRIMARY KEY 'OCRD_PRIMARY'. No se puede insertar una clave duplicada en el objeto 'OCRD'...
    I think is all right but...
    That's not all same with RemoveObject, the object is removed but the response says "No record founds".
    What's the matter with this??

    I don't understand, do you talk about the values in the soap response?
    <?xml version="1.0"?>
      <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope">
       <env:Body>
        <env:Fault>
         <env:Code>
          <env:Value>
            env:Receiver
          </env:Value>
          <env:Subcode>
            <env:Value>-1</env:Value>
          </env:Subcode>
         </env:Code>
         <env:Reason><env:Text xml:lang="en">[OCRD] , '1). [ODBC SQL Server Driver][SQL Server]Infracción de la restricción PRIMARY KEY 'OCRD_PRIMARY'. No se puede insertar una clave duplicada en el objeto 'OCRD'.
    2). [ODBC SQL Server Driver][SQL Server]Se terminó la instrucción.'

  • I am geting following error please help

    ERROR-
    RPC Fault faultString="HTTP request error" faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032: Stream Error. URL: http://www.nature.com/principles/webservice/login" errorID=2032]. URL: http://www.nature.com/principles/webservice/login"]
    code-
    operation = new Operation(null, "login");
      operation.url = "login";
      argsArray = new Array("login_id", "login_password", "unique_machine_id");
      operation.argumentNames = argsArray;
      operation.method = "POST";
      operation.serializationFilter = filter;
      operations.push(operation);
      public function login(loginId:String, loginPassword:String, uniqueMachineId:String):AsyncToken
           trace(loginId, loginPassword, uniqueMachineId);
           var _internal_operation:AbstractOperation = _service.getOperation("login");
           var _internal_token:AsyncToken = _internal_operation.send(loginId, loginPassword, uniqueMachineId);
           return _internal_token;
    login service is being called from server that is in java-
    package com.nature.ebook.components.auth
      import com.nature.ebook.data.UserInfo;
      import com.nature.ebook.services.CallStatus;
      import com.nature.ebook.services.IEBookService;
      import com.nature.ebook.services.XMLServiceParser;
      import flash.events.EventDispatcher;
      import flash.events.IEventDispatcher;
      import mx.controls.Alert;
      import mx.rpc.AsyncToken;
      import mx.rpc.Fault;
      [ManagedEvents("authSuccess, authFail")]
      public class AuthCommand extends EventDispatcher
      public function AuthCommand(target:IEventDispatcher=null)
      [Inject]
      public var service:IEBookService;
      [Inject]
      public var auth:AuthModel;
      //  Methods
      * This command dispatches  event AuthenticationEvent.AUTH_FAIL when the service return failt
      * @param fault Fault
      public function error(fault:Fault):void
      trace(fault);
      var e:AuthenticationEvent = new AuthenticationEvent(AuthenticationEvent.AUTH_FAIL, null, null, CallStatus.getServerFaultCall());
      dispatchEvent(e);
      * This command dispatches event when the service return rezult Array
      * @param result Array
      * if cs.success <code>true </code> dispatch AuthenticationEvent.AUTH_SUCCESS
      * if cs.success <code>false</code> dispatch AuthenticationEvent.AUTH_FAIL
      public function result(result:*):void
      if (result)
      var cs:CallStatus = XMLServiceParser.getCallStatus(result);
      if (cs.success)
      var us:UserInfo = XMLServiceParser.getUserInfo(result);
      var e:AuthenticationEvent = new AuthenticationEvent(AuthenticationEvent.AUTH_SUCCESS, us, null, cs);
      dispatchEvent(e);
      else
      e = new AuthenticationEvent(AuthenticationEvent.AUTH_FAIL, null, null, cs);
      dispatchEvent(e);
      public function execute(event:AuthenticationEvent):AsyncToken
      return service.login(event.user.loginId, event.magicWord, event.user.uniqueMachineId);

    Sorry for the confusion. After starting the WLS 6.0 server, use your browser
    to launch the console, verify that the Frobable EJB is correctly deployed as
    frobtarget with the correct class path specified. The 6.0 JAAS sample is
    trying to invoke on examples.security.acl.Frobable, make sure this is the
    deployed instance. This is an error in the JAAS example SampleAction.java
    file since the JAAS sample actually builds examples.security.jaas.Frobable,
    this bug will be corrected in service pack 1 which will be available
    shortly.
    nancy coelho <[email protected]> wrote in message
    news:3a9ee0af$[email protected]..
    Hi! I am new to JAAS and also to Weblogic server6.0. I am trying to run
    JAAS sample and geting the following error . please help
    Thanks,
    Nancy
    E:\bea\wlserver6.0\samples>java examples.security.jaas.SampleClient
    t3://localho
    st:7001
    Using Configuration File: Sample.policy
    Login Module Name: examples.security.jaas.SampleLoginModule
    Login Module Flag: required
    username: ncoelho
    password: prabhala
    javax.naming.NameNotFoundException: Unable to resolve frobtarget.Resolved:
    '' U
    nresolved:'frobtarget' ; remaining name ''
    at
    weblogic.rmi.internal.AbstractOutboundRequest.sendReceive(AbstractOut
    boundRequest.java:90)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteR
    ef.java:247)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteR
    ef.java:225)
    at
    weblogic.jndi.internal.ServerNamingNode_WLStub.lookup(ServerNamingNod
    e_WLStub.java:121)
    at
    weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:323)
    at javax.naming.InitialContext.lookup(InitialContext.java:350)
    at examples.security.jaas.SampleAction.run(SampleAction.java:61)
    at javax.security.auth.Subject.doAs(Subject.java:80)
    at examples.security.jaas.SampleClient.main(SampleClient.java:114)
    Failed to frob
    E:\bea\wlserver6.0\samples>

  • HT201104 I cannot open my icloud on my pc. It says there is a server error. HELP!

    I cannot open my icloud on my pc. It says there is a server error. HELP!

    Hello, and Welcome to the HP Support Community! This question has been asked and answered many times... Please read the post at the beginning of this section: http://h30434.www3.hp.com/t5/webOS-Hardware-and-Software/webOS-Cloud-Services-to-end-3-15-2015-updated/m-p/4614446#U4614446 WyreNut

  • Windows - No Disk Error - Please help!

    Windows - No Disk Error - Please help!
    Hi,
    I have the following set up:
    * Lenovo T-61p
    * Windows XP Pro, SP 3
    * HP Photosmart 8250 printer (with nothing plugged into the various card readers, and USB slot in the printer)
    I am getting the following error:
    Windows - No Disk
    Exception Processing Message 0xc0000013 Parameters 0x75CE023C
    0x84C40C84 0x75CE023C
    I have done a lof experimenting and thru process of  elimination, and believe I have determined that this only happens when the HP Photosmart 8250 printer is plugged in to the USB slot of the computer.
    I can stop it from happening by safely removing hardware, and removing the drive that the 8250 creates on your computer when you plug it in.  In my case, this is drive E.  I'm guessing if there was something in the the various card readers, and USB slot in the printer, that's what those would be, but I don't those use those functions of the printer.
    I understand there is more at work than simply the printer, because I did not used to get this error, so some software changed as well, that is scanning all ports, and finding a drive that has no disk, and producing the error.
    A simple google search finds a lot people all over the world having this problem, and are solving it in different ways, because the suspected source is different: Norton, HP, etc.
    I have tried everything I have read, and the only thing that works was my own idea, of manually safely removing the drive the printer creates each time I plug in the printer.
    Anyone every any better, more permanent solutions?  Or know what the real root of the problem is?  What is scanning all the drives and being showing an error message because it found an empty drive?
    Thanks and Happy Holidays/New Year!

    I've been getting the same error on my 4G nano for the past week. I've had my nano for about a month and the first few weeks were fine. Tried it on 2 different computers (Vista and XP) and same problem. Tried it on a 3rd (XP) and it started ok. Problem started coming back after a day.
    I was able to find a quick fix though. I noticed that sometimes the message says something like "iexplore.exe... no disk..." even if I don't even use IE. What I do is end iexplore.exe on task manager before running iTunes and syncing my nano. I don't get the error whenever I do this, but one drawback is that the contents of my nano suddenly pops up in a window - even when disk use is not enabled.
    I've reset/restored my nano dozens and dozens of times to make sure it's clean. Leads me to believe it's a driver issue. Either that or I have a friggin malware problem I can't seem to find.
    I'll be posting updates every now and then. I'm no expert so I'm hoping an Apple expert also steps in to give some input.

  • My ipod generation 5 will not come out of recovery mode. i was simply updating my software and this happened. it will not let me restore it comes up with and error. please help, thanks.

    my ipod generation 5 will not come out of recovery mode. i was simply updating my software and this happened. it will not let me restore it comes up with and error. please help, thanks.

    Hey erinoneill24,
    Thanks for using Apple Support Communities.
    Sounds like you can't update your device. You don't mention an error that it gives you. Take a look at both of these articles to troubleshoot.
    iPod displays "Use iTunes to restore" message
    http://support.apple.com/kb/ts1441?viewlocale=it_it
    If you can't update or restore your iOS device
    http://support.apple.com/kb/HT1808?viewlocale=de_DE_1
    If you started your device in recovery mode by mistake, restart it to exit recovery mode. Or you can just wait—after 15 minutes the device will exit recovery mode by itself.
    Have a nice day,
    Mario

  • 451 4.7.0 temporary server error. please try again later. prx4

    Hello,
    in my environment i can send/receive mail.
    When doing some checks i will end up with this error :
    451 4.7.0 temporary server error. please try again later. prx4
    I have tried the following without results :
    Exchange 2013 SMTP error "451 4.7.0 Temporary server error. Please try again later. PRX3"
    This error message seems to be caused by DNS issues in the Exchange 2013 set up. Exchange then rejects all emails like this. It is not quite clear what Microsoft means with this error code and the various PRX-numbers at the end - we've also seen PRX1, PRX3,
    PRX7. There is no list and no documentation on them available.
    From customer feedback we found these ways to solve the problem:
    Disable all unused network cards.
    Check all DNS server entries in the configuration of your network cards (check
    all network adapters) and make sure not to reference server 127.0.0.1 as DNS server but to use the real IP address instead.
    If you have more than one fixed IP address in the server add an entry for each IP address in the hosts file (C:\Windows\System32\drivers\etc\hosts) formatted like "192.168.1.1 SERVERNAME".
    Important: Do load the latest Exchange 2013 updates, especially CU1 if you haven't done that already.
    Please delete the receive connectors in Exchange and create one new receive connector. Use the "front end" instead of "hub transport" setting and vice versa.
    What do do, to fix this issue?
    Thx

    Hello,
    Please use dcdiag command to check if all DC run normally.
    Please use repadmin /showrepl command to verify DC replication status.
    Please check if there is any related error in application log.
    Cara Chen
    TechNet Community Support

  • I need help I tried to use cloud backup on my iPhone 5.0.1 and after all my camera roll pictures are blurry and videos canot be played messege says URL not on this server ! Please help!! iPhone 4S, iOS 5.0.1

    I need help I tried to use cloud backup on my iPhone 5.0.1 and after all my camera roll pictures are blurry and videos canot be played messege says URL not on this server ! Please help!!
    iPhone 4S, iOS 5.0.1

    Try updating to iOS 6.1.3.

  • HT201442 I did this but still i am getting the same error , please help me .

    I did this but still i am getting the same error , please help me .
    <Email Edited by Host>

    Look at http://support.apple.com/kb/ts4451
     Cheers, Tom

  • I am not able to update my iphone 4 ,when ever i tried to update it its show 1309 error...and at times 9006 error ,please help me ..

    i am not able to update my iphone 4 ,when ever i tried to update it its show 1309 error...and at times 9006 error ,please help me ..

    Hey alkarim2008,
    If you are having an issue with being unable to update or restore your iPhone, I would suggest that you troubleshoot using the steps in this article - 
    Resolve iOS update and restore errors in iTunes - Apple Support
    Thanks for using Apple Support Communities.
    Happy computing,
    Brett L 

  • My iphone won't pass the connect to itunes. when i try to restore is says that there is an error. please help!

    hi my iphone is broken. it won't pass the connect to itunes. when i try to restore is says that there is an error. please help!
    thanks,
    jg2013
    <Subject Edited by Host>

    Hello, 02633. 
    Thank you for visiting Apple Support Communities. 
    If your iPhone is disabled, you will need to process the steps in the article below.
    iOS: Forgotten passcode or device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    Cheers,
    Jason H.

Maybe you are looking for

  • Size of image is getting increased

    Hi I have cross compiled BDB using m68k-elf toolchain. I'm using motorola coldfire processor with uClinux for our development purpose. Now I need to include BDB into uClinux and flash it into our processor. The flash we are using is 4mb. The image I

  • In Windows 7 document printing the "Properties" button does not open the print selection list.

    New computer OS is Windows 7. Old computer OS was Windows XP. HP Officejet 4500 Wireless Printer G510n-z printed documents as I chose using the Porperties button on the old system. Under the new system the Properties button does nothing and I must pr

  • I dont have any username/password at my testdesktop

    How i can work when EM ask for Host credentials, I did'n set any when l login to my desktop, Example while doing reorg of table An error occurred verifying the host credentials. Make sure the credentials are valid and that they specify an account wit

  • UDF in documents lines that can be Change after adding the doc.

    Dear all How can i create a UDF in documents lines that can be change after adding the doc? He need to mark some of the lines to already audit or not audit and the date of the action. Kind Regards Margarida

  • MI Client Create Order

    Hi, I was trying to create order on mobile devices but I get the following error on the merep_mon: 18.06.2007 15:51:21 Z_MEREP_GEN_S01_____MAM30_001 has started for run number 0000005801 and runtime counter 18.06.2007 15:51:21 Downloader completed su