Cannot create bean of class Error

Ok first off I realize several people have post messages similar to this - but the replys to those messages didn't help me:
Today the webserver I had my code on crashed - and was restarted.
Everything is working except for 1 page.
When I load it I get this error:
Error: 500
Location: /dynamic/VOTE_chart.jsp
Internal Servlet Error:
javax.servlet.ServletException: Cannot create bean of class update.VoteBean
     at _0002fVOTE_0005fchart_0002ejspVOTE_0005fchart_jsp_6._jspService(_0002fVOTE_0005fchart_0002ejspVOTE_0005fchart_jsp_6.java:71)
     at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:177)
     at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:318)
     at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:391)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:404)
     at org.apache.tomcat.core.Handler.service(Handler.java:286)
     at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
     at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:797)
     at org.apache.tomcat.core.ContextManager.service(ContextManager.java:743)
     at org.apache.tomcat.service.connector.Ajp12ConnectionHandler.processConnection(Ajp12ConnectionHandler.java:166)
     at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
     at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:498)
     at java.lang.Thread.run(Thread.java:484)
This tells my sod all what's actually wrong - I've tried renaming the jsp, I've tried renaming and recompiling the bean but that didn't help either (yes I redirected towards page to the new bean).
No-one here has a clue what the hell has gone wrong with this - especially cos I have at least 15 other beans in exactly the same place and they all work fine.
If you wish I'll post the code of the relevant jsp here.
Any suggestions?

most of this is irrelevent but you should be able to find what you need
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta Http-Equiv="Cache-Control" Content="no-cache">
<meta Http-Equiv="Pragma" Content="no-cache">
<script language="JavaScript">
<!--
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a)&&x.oSrc;i++) x.src=x.oSrc;
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
function MM_findObj(n, d) { //v3.0
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); return x;
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
//-->
</script>
</head>
<body bgcolor="#000066" onLoad="MM_preloadImages('images/previousOver.jpg','images/backOver.jpg')" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<jsp:useBean id="myBean" class= "update.VoteBean" scope="page" /> <jsp:setProperty name="myBean" property="*" />
<%
if (!myBean.isDone())
{%>
<form method="post">
<table width="422" border="0" cellspacing="0" cellpadding="0" align="center" height="225">
<tr>
<td colspan="3" height="32"><img src="images/vote.jpg" width="480" height="42"></td>
</tr>
<tr bgcolor="#000066">
<td colspan="3" height="32">
<div align="left"><b><font face="Arial, Helvetica, sans-serif" size="4" color="#cc0033">previous
results </font></b></div>
</td>
</tr>
<tr>
<td colspan="3" height="69">
<div align="center"><img name="Image9" border="0" src="images/previous.jpg" width="160" height="23"></div>
</td>
</tr>
<tr>
<td colspan="3" height="32"><b><font face="Arial, Helvetica, sans-serif" size="4" color="#cc0033">this
months vote</font></b></td>
</tr>
<tr>
<td colspan="3" height="54">
<div align="left"> <font face="Arial, Helvetica, sans-serif" size="2" color="ffcc00"><%=myBean.getQuestion()%>
</font></div>
</td>
</tr>
</table>
<table width="474" border="0" cellspacing="1" cellpadding="1" align="center" height="68">
<tr>
<td width="206">
<div align="left"> <font face="Arial, Helvetica, sans-serif" size="1" color="#FFFFFF">
<input type="radio" name="radiobutton" value="ONE">
<%=myBean.getOption1()%></font> </div>
</td>
<% double thisVote=Double.parseDouble(myBean.getVotes1());
          double overall=myBean.getTotalVotes();
          double ans=(thisVote/overall)*100*3;
               int intAns=(int)Math.round(ans);
          %>
<td width="253"><font face="Arial, Helvetica, sans-serif" size="1" color="#FFFFFF"><img src="images/bar_white.jpg" width="<%=intAns%>" height="10">
<%=intAns/3%>%</font> </td>
</tr>
<tr>
<td width="206" height="2">
<div align="left"> <font face="Arial, Helvetica, sans-serif" size="1" color="#FFFFFF">
<input type="radio" name="radiobutton" value="TWO">
<%=myBean.getOption2()%></font> </div>
</td>
<% thisVote=Double.parseDouble(myBean.getVotes2());
          overall=myBean.getTotalVotes();
          ans=(thisVote/overall)*100*3;
               intAns=(int)Math.round(ans);
          %>
<td width="253" height="2"><font face="Arial, Helvetica, sans-serif" size="1" color="#FFFFFF"><img src="images/bar_white.jpg" width="<%=intAns%>" height="10">
<%=intAns/3%>%</font> </td>
</tr>
<tr>
<td width="206" height="2">
<div align="left"> <font face="Arial, Helvetica, sans-serif" size="1" color="#FFFFFF">
<input type="radio" name="radiobutton" value="THREE">
<%=myBean.getOption3()%></font> </div>
</td>
<% thisVote=Double.parseDouble(myBean.getVotes3());
          overall=myBean.getTotalVotes();
          ans=(thisVote/overall)*100*3;
               intAns=(int)Math.round(ans);
          %>
<td width="253" height="2"><font face="Arial, Helvetica, sans-serif" size="1" color="#FFFFFF"><img src="images/bar_white.jpg" width="<%=intAns%>" height="10">
<%=intAns/3%>%</font> </td>
</tr>
<tr>
<td width="206" height="2">
<div align="left"> <font face="Arial, Helvetica, sans-serif" size="1" color="#FFFFFF">
<input type="radio" name="radiobutton" value="FOUR">
<%=myBean.getOption4()%></font> </div>
</td>
<% thisVote=Double.parseDouble(myBean.getVotes4());
          overall=myBean.getTotalVotes();
          ans=(thisVote/overall)*100*3;
               intAns=(int)Math.round(ans);
          %>
<td width="253" height="2"><font face="Arial, Helvetica, sans-serif" size="1" color="#FFFFFF"><img src="images/bar_white.jpg" width="<%=intAns%>" height="10">
<%=intAns/3%>%</font> </td>
</tr>
<tr>
<td width="206" height="2">
<div align="left"> <font face="Arial, Helvetica, sans-serif" size="1" color="#FFFFFF">
<input type="radio" name="radiobutton" value="FIVE">
<%=myBean.getOption5()%></font> </div>
</td>
<% thisVote=Double.parseDouble(myBean.getVotes5());
          overall=myBean.getTotalVotes();
          ans=(thisVote/overall)*100*3;
               intAns=(int)Math.round(ans);
          %>
<td width="253"><font face="Arial, Helvetica, sans-serif" size="1" color="#FFFFFF"><img src="images/bar_white.jpg" width="<%=intAns%>" height="10">
<%=intAns/3%>%</font> </td>
</tr>
</table>
<p align="center">
<input type="submit" name="Submit" value="Cast a Vote">
</p>
<p align="center"> </p>
<p align="center"> </p>
<p align="center"> </p>
<p align="center"> </p>
<p align="center"> </p>
<p align="center"> </p>
<p align="center"> </p>
<p align="center"> </p>
<p align="center"> </p>
</form>
<%
else
myBean.setDone(false);
String done=myBean.checkVote();
if (done.equals("OK"))
System.out.println("OK");
%>
<table width="424" border="0" cellspacing="0" cellpadding="0" align="center" height="103">
<tr bgcolor="#000066">
<td height="43" colspan="2"><img src="images/vote.jpg" width="480" height="42"></td>
</tr>
<tr bgcolor="#000066">
<td height="43" colspan="2">
<div align="left"><b><font face="Arial, Helvetica, sans-serif" size="4" color="#cc0033">complete
</font></b></div>
</td>
</tr>
</table>
<table width="463" border="0" cellspacing="3" cellpadding="4" align="center">
<tr>
<td width="327"><font face="Arial, Helvetica, sans-serif" size="1" color="#ffcc00">Thank
you for voting. Your vote will be instantly added to the calculations.</font></td>
<td width="109"> </td>
</tr>
</table>
<table width="461" border="0" cellspacing="3" cellpadding="4" align="center">
<tr>
<td height="53">
<div align="center"> <img name="Image10" border="0" src="images/back.jpg" width="160" height="23"></div>
</td>
</tr>
<tr>
<td height="397"> </td>
</tr>
</table>
<%}else{
System.out.println("Not equal or fell over");%>
<table width="454" border="0" cellspacing="0" cellpadding="0" align="center" height="103">
<tr bgcolor="#000066">
<td height="43" colspan="2"><img src="images/vote.jpg" width="480" height="42"></td>
</tr>
<tr bgcolor="#000066">
<td height="43" colspan="2">
<div align="left"><b><font face="Arial, Helvetica, sans-serif" size="4" color="#cc0033">sorry
</font></b></div>
</td>
</tr>
</table>
<table width="469" border="0" cellspacing="3" cellpadding="4" align="center">
<tr>
<td width="327"><font face="Arial, Helvetica, sans-serif" size="1" color="#ffcc00">There
has been a problem casting your vote. Please try again later.</font></td>
<td width="115"> </td>
</tr>
</table>
<table width="467" border="0" cellspacing="3" cellpadding="4" align="center">
<tr>
<td height="37">
<div align="center"> <img name="Image101" border="0" src="images/back.jpg" width="160" height="23">
</div>
</td>
</tr>
<tr>
<td height="560"> </td>
</tr>
</table>
<%}
%>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</body>
</html>

Similar Messages

  • Error: 500    Cannot create bean of class Simulation

    Hello, I was working with J2ee 1.2 and suddenly I got this error. Any one has an idea about it?, I can't continue working.
    Thanks...
    Error: 500
    Internal Servlet Error:
    javax.servlet.ServletException: Cannot create bean of class Simulation
         at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:384)
         at _0005csimulation_0002ejspsimulation_jsp_325._jspService(_0005csimulation_0002ejspsimulation_jsp_325.java:215)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:126)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
         at org.apache.jasper.runtime.JspServlet$JspServletWrapper.service(JspServlet.java:161)
         at org.apache.jasper.runtime.JspServlet.serviceJspFile(JspServlet.java:247)
         at org.apache.jasper.runtime.JspServlet.service(JspServlet.java:352)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
         at org.apache.tomcat.core.ServiceInvocationHandler.method(ServletWrapper.java:626)
         at org.apache.tomcat.core.ServletWrapper.handleInvocation(ServletWrapper.java:534)
         at org.apache.tomcat.core.ServletWrapper.handleRequest(ServletWrapper.java:378)
         at org.apache.tomcat.core.Context.handleRequest(Context.java:644)
         at org.apache.tomcat.core.ContextManager.service(ContextManager.java:440)
         at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:144)
         at org.apache.tomcat.service.TcpConnectionThread.run(TcpEndpoint.java:310)
         at java.lang.Thread.run(Thread.java:484)
    Root cause:
    javax.servlet.ServletException: Cannot create bean of class Simulation
         at _0005csimulation_0002ejspsimulation_jsp_325._jspService(_0005csimulation_0002ejspsimulation_jsp_325.java:79)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:126)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
         at org.apache.jasper.runtime.JspServlet$JspServletWrapper.service(JspServlet.java:161)
         at org.apache.jasper.runtime.JspServlet.serviceJspFile(JspServlet.java:247)
         at org.apache.jasper.runtime.JspServlet.service(JspServlet.java:352)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
         at org.apache.tomcat.core.ServiceInvocationHandler.method(ServletWrapper.java:626)
         at org.apache.tomcat.core.ServletWrapper.handleInvocation(ServletWrapper.java:534)
         at org.apache.tomcat.core.ServletWrapper.handleRequest(ServletWrapper.java:378)
         at org.apache.tomcat.core.Context.handleRequest(Context.java:644)
         at org.apache.tomcat.core.ContextManager.service(ContextManager.java:440)
         at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:144)
         at org.apache.tomcat.service.TcpConnectionThread.run(TcpEndpoint.java:310)
         at java.lang.Thread.run(Thread.java:484)

    This is the code for the simulatin class.
    I think nothing special.
    Begin --- Simulation.java
    import java.io.*;
    import java.util.*;
    public class Simulation
    private int lastMessage;
    private int transactions;
    private int transaction_prospere;
    /* Creation des variables du system */
         private String Quantite_acheteurs;
         private String Quantite_vendeurs;
         private String Argent_initiale;
         private String Articles_initiales;
         private String Prix_initial;
         private String Mechants_acheteurs;
         private String Mechants_vendeurs;
         private String Cycles_simulation;
         private String Choisir_strategie;
         private String Choisir_formule;
         private String Afficher_resultats;
    int iAfficher_resultats = (new Integer(Afficher_resultats)).intValue();
         /* Section de declaration des constants */
         private int OFFRE_DE_VENTE = 0;
         private int DEMANDE_ACHAT = 1;
         private int BROADCAST = -1;
    private int TRICHEUR = -1;
         private int PROSPERE = 1;
         private int VRAI = 1;
         private int FAUX = 0;
    private int ACHETEUR = 0;
    private int VENDEUR = 1;
         private int GENTIL = 0;
         private int MECHANT = 1;
         private double SEUIL_MECHANT = 0.87;
    Messages message_anterieur= null;
    /*** PADOVAN ********************************/
         public String Padovan_alpha;
    Begin --- Creation des agents...
    Pour la creation des agents il y a une generation des chiffres aleatoires
         pour repartir les vendeurs et les acheteurs, ainsi que les gentils et les
         mechants dans le vecteur d'agents
         public Vector Creation_des_agents(){
    System.out.println ("<<<<<<<<<<Executing...Creation_des_agents>>>>>>>>");
    /* Le vector avec des agents....*/
              Vector agents = new Vector();
    lastMessage = 0; /* Le derni�re message ajout� au tableau */
              transactions = 0; /* Compteur pour les transactions */
              transaction_prospere = 0; /* Compteur pour les transaction prosp�res*/
              /* Conversion de variables de string a int */
    int iQuantite_acheteurs = (new Integer(Quantite_acheteurs)).intValue();
    int iQuantite_vendeurs = (new Integer(Quantite_vendeurs)).intValue();
    int iArgent_initiale = (new Integer(Argent_initiale)).intValue();
    int iArticles_initiales = (new Integer(Articles_initiales)).intValue();
    int iPrix_initial = (new Integer(Prix_initial)).intValue();
    int iMechants_acheteurs = (new Integer(Mechants_acheteurs)).intValue();
    int iMechants_vendeurs = (new Integer(Mechants_vendeurs)).intValue();
    int i; /* Compteur pour la generation des agents */
              double agent_type; /* Pour generation aleatoire et savoir si est acheteur ou vendeur */
              int iagent_type; /* Type d'agent acheteur=0, vendeur=1 */
              double agent_comportement; /* Pour generation aleatoire et savoir si est gentil ou mechant */
              int iagent_comportement; /* Comportement de l'agent 0=gentil, 1=mechant, gentil par default */
    int total=iQuantite_acheteurs+iQuantite_vendeurs;
              /* Pour les agents......... */
              int j=0;
              for (i=0;i<total;)
                   iagent_comportement = 0;
    j++;
                   agent_type=Math.random(); /* Pour repartir les agentes vendeurs et acheteurs aleatoirement. */
    iagent_type=(agent_type<0.5?0:1); /* 0-> acheteur, 1-> vendeur */
                   if (iagent_type==0){   /*Creation des acheteurs.... */
    if(iQuantite_acheteurs>0)
    iQuantite_acheteurs--; /* un acheteur de moins */
    /* Generation du comportement */
                             if (iMechants_acheteurs>0) /* Faltan generar agentes mechantes */
                             if ((iQuantite_acheteurs > iMechants_acheteurs))
    agent_comportement = Math.random(); /* Pour repartir les comportement de l'agent */
    iagent_comportement=(agent_comportement<0.5?0:1);     /* 0->gentil, 1->mechant */
                             else
                                  iagent_comportement=1;
                             if (iagent_comportement==1) /* S'il est mechante... */
    iMechants_acheteurs --;
                             Agents agent = new Agents(i,ACHETEUR,0,0,iArgent_initiale,iagent_comportement, total);
                             agent.setPadovan_alpha(Padovan_alpha);
                   i++;
    agents.addElement(agent);
                   else{                  /* Creation des vendeurs... */
    if(iQuantite_vendeurs>0)
                             iQuantite_vendeurs--; /* un vendeur de moins */
    /* Generation du comportement */
                             if (iMechants_vendeurs>0) /*Faltan generar agentes mechantes */
                             if ((iQuantite_vendeurs > iMechants_vendeurs))
    agent_comportement = Math.random(); /* Pour repartir les comportement de l'agent */
    iagent_comportement=(agent_comportement<0.5?0:1);     /* 0->gentil, 1->mechant */
                             else
                                  iagent_comportement=1;
                             if (iagent_comportement==1) /* S'il est mechante... */
    iMechants_vendeurs --;
    Agents agent = new Agents(i,VENDEUR,iArticles_initiales,iPrix_initial,0,iagent_comportement,total);
                             agent.setPadovan_alpha(Padovan_alpha);
                   i++;
    agents.addElement(agent);
         }/* End for */
    System.out.println ("<<<<<<<<<<Ending...Creation_des_agents>>>>>>>>>>");
    return agents;
         } /* End Creation_des_agents */
    End --- Creation des agents...
    Begin --- Setters and getters.........
    public void     setQuantite_acheteurs(String Quantite_acheteurs) {
              this.Quantite_acheteurs= Quantite_acheteurs;
    public void     setQuantite_vendeurs(String Quantite_vendeurs) {
              this.Quantite_vendeurs= Quantite_vendeurs;
    public void     setArgent_initiale(String Argent_initiale) {
              this.Argent_initiale= Argent_initiale;
    public void     setArticles_initiales(String Articles_initiales) {
              this.Articles_initiales= Articles_initiales;
    public void     setPrix_initial(String Prix_initial) {
              this.Prix_initial= Prix_initial;
    public void     setMechants_acheteurs(String Mechants_acheteurs) {
              this.Mechants_acheteurs= Mechants_acheteurs;
    public void     setMechants_vendeurs(String Mechants_vendeurs) {
              this.Mechants_vendeurs= Mechants_vendeurs;
    public void     setCycles_simulation(String Cycles_simulation) {
              this.Cycles_simulation= Cycles_simulation;
    public void     setChoisir_strategie(String Choisir_strategie) {
              this.Choisir_strategie= Choisir_strategie;
    public void     setChoisir_formule(String Choisir_formule) {
              this.Choisir_formule= Choisir_formule;
    public void     setPadovan_alpha(String Padovan_alpha) {
              this.Padovan_alpha= Padovan_alpha;
    public void     setAfficher_resultats(String Afficher_resultats) {
              this.Afficher_resultats= Afficher_resultats;
    public String getPadovan_alpha( ){
    return this.Padovan_alpha;
    } // End of the class Simulation
    End --- Simulation

  • Javax.servlet.ServletException: Cannot create bean of class

    People,
    HELP!! I am getting desperate!!!
    I am a newbie when it comes to TOMCAT, but i have been using Blazix before.
    My current system is using APACHE/TOMCAT on a Solaris machine and I keep hitting the same problem. I have gone through the archives but the only thing it states is to check the directory which i have done.
    I keep getting:
    Error 500
    Internal Error
    javax.servlet.ServletException: Cannot create bean of class MyClass
    The code used to work on the Blazix server so i am assuming it is something to do with a config parameter somewhere - but i do not know where. I have checked the directory/package structure and they seem to work. It even serves it when they are html pages not jsp, but obviously wont use the bean. :(
    I can post code if necessary.
    Please help
    Steve

    The FormData.class file is in examples/WEB-INF/classes/ directory.
    Is this wrong? then should it be in a package called examples.steve???
    <TITLE> Poc </TITLE>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <META NAME="Generator" CONTENT="Mozilla/4.61 [en] (WinNT; I) [Netscape]">
    <META NAME="Author" CONTENT="Steve Brodie">
    <META NAME="Proof of Concept order entry system" CONTENT="">
    <META NAME="PROOF OF CONCEPT ORDER ENTRY SYSTEM " CONTENT="">
    </HEAD>
    <%@ page import="steve.FormData" %>
    <jsp:useBean id="user" class="steve.FormData"/>
    <jsp:setProperty name="user" property="*"/>
    <FORM METHOD=POST ACTION="SaveDetails.jsp">
    <CENTER>
    <H1>     
    POC CNS demo <BR>
    POC Order Entry System <BR></H1>
    <H2><CENTER>PROOF OF CONCEPT ORDER ENTRY SYSTEM <BR>
    in order to illustrate the use of an new product<BR></H1>
    </CENTER>
    <BODY>
    Please enter the following details: <BR>
    Second name <INPUT TYPE=TEXT NAME=secondName SIZE=20><BR>
    First name <INPUT TYPE=TEXT NAME=firstName SIZE=20><BR>
    Address <INPUT TYPE=TEXT NAME=address1 SIZE=20><BR>
    Address <INPUT TYPE=TEXT NAME=address2 SIZE=20><BR>
    Post Code <INPUT TYPE=TEXT NAME=postCode SIZE=10><BR>
    Phone NO. <INPUT TYPE=TEXT NAME=phone SIZE=10><BR>
    <BR>
    Credit Card<INPUT TYPE=TEXT NAME=credit SIZE=15><BR>
    <BR>
    Quality of Service:
    <SELECT TYPE=TEXT NAME="QoS">
    <OPTION SELECTED TYPE=TEXT NAME=Gold>Gold <BR>
    <OPTION TYPE=TEXT NAME=Silver>Silver <BR>
    <OPTION TYPE=TEXT NAME=Bronze>Bronze <BR>
    </SELECT>
    <BR>
    <BR>
    <INPUT TYPE=RESET>
    <P><INPUT TYPE=SUBMIT>
    <BR>
    <BR>
    <IMG SRC=../images/Cisco.gif>
    </FORM>
    </BODY>
    </HTML>
    package steve;
    * @author Steven Brodie
    * @date
    * @version 0.0
    import java.io.*;
    import java.lang.*;
    import java.util.*;
    public class FormData {
         String secondName = null;
         String firstName = null;
         String address1 = null;
         String address2 = null;
         String postCode = null;
         int credit = 0;
         int phone = 0;
         String qos = null;
         String file = "out";
         String filex = "xout";
         PrintWriter pout = null;
         PrintWriter xout = null;
         FormData() {
              try {
                   pout = new PrintWriter(new BufferedWriter(new FileWriter(file + ".txt")));
                   xout = new PrintWriter(new BufferedWriter(new FileWriter(filex + ".xml")));
              xout.println("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
              xout.println("<OrderEntry xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"");
              xout.println("xsi:noNamespaceSchemaLocation=\"http://machine2.com:8080/xml/xsd/OrderEntry.xsd\">");
              } catch (IOException ioe) {
                   System.err.println("DataFileWriter error ioe on init");
                   ioe.printStackTrace();
                   System.exit(1);
    public void setFirstName( String value ) {
    firstName = value;
              System.out.println(firstName);
              pout.println(firstName);
              xout.println("<firstname value= \"" + firstName + "\"/>");
    public void setSecondName( String value ) {
    secondName = value;
              System.out.println(secondName);
              pout.println(secondName);
              xout.println("<secondname value= \"" + secondName + "\"/>");
    public void setAddress1( String value ) {
    address1 = value;
              System.out.println(address1);
         pout.println(address1);
              xout.println("<address1 value= \"" + address1 + "\"/>");
    public void setAddress2( String value ) {
    address2 = value;
              System.out.println(address2);
              pout.println(address2);
              xout.println("<address2 value= \"" + address2 + "\"/>");
    public void setPostCode( String value ) {
    postCode = value;
              System.out.println(postCode);
              pout.println(postCode);
              xout.println("<postCode value= \"" + postCode + "\"/>");
    public void setCredit( int value ) {
    credit = value;
              System.out.println(credit);
              pout.println(credit);
              xout.println("<creditCard value= \"" + credit + "\"/>");
         public void setPhone( int value) {
              phone = value;
              System.out.println("0" + phone);
              pout.println("0" + phone);
              xout.println("<phoneNo value= \"0" + phone + "\"/>");
    public void setQoS( String value ) {
    qos = value;
              System.out.println(qos);
              pout.println(qos);
              xout.println("<QoS value= \"" + qos + "\"/>");
              xout.println("</OrderEntry>");
              pout.flush();
              pout.close();
              xout.flush();
              xout.close();
    public String getFirstName() {
              return firstName;
    public String getSecondName() {
              return secondName;
    public String getAddress1() {
              return address1;
    public String getAddress2() {
              return address2;
    public String getPostCode() {
              return postCode;
    public int getCredit() {
              return credit;
         public int getPhone() {
              return phone;
         public String getQoS() {
              return qos;

  • Cannot create bean of class

    Dear Friends
    My tomcat server 3.2.4 is giving following error when i am going to run my jsp.
    javax.servlet.ServletException: Cannot create bean of class dts.query.ProjectSearchResultsPage
         at jspprojects._0002fjspprojects_0002fprojectsearchresults_0002ejspprojectsearchresults_jsp_12._jspService(_0002fjspprojects_0002fprojectsearchresults_0002ejspprojectsearchresults_jsp_12.java:111)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.jasper.servlet.JspServlet$JspCountedServlet.service(JspServlet.java:130)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:282)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:429)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:500)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:405)
         at org.apache.tomcat.core.Handler.service(Handler.java:287)
         at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
         at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:806)
         at org.apache.tomcat.core.ContextManager.service(ContextManager.java:752)
         at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:213)
         at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
         at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:501)
         at java.lang.Thread.run(Thread.java:484)
    =====================
    Please help me, Thanx in advance

    i am not sure but maybe an explicit constructor ( with no parameters ) for the bean will solve the problem ?

  • Cannot create bean of class...using TOMCAT 3.1

    my root is: "notwww.ucsd.edu/somesub/"
    my beans are in .../WEB-INF/classes/aseBeans/
    the error msg:
    Error: 500
    Location: /studentaffairs/aseAppValidate.jsp
    Internal Servlet Error:
    javax.servlet.ServletException: Cannot create bean of class aseBeans.AseApplicationBean
         at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:386)
         at _0002faseAppValidate_0002ejspaseAppValidate_jsp_0._jspService(_0002faseAppValidate_0002ejspaseAppValidate_jsp_0.java:138)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:126)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.jasper.runtime.JspServlet$JspServletWrapper.service(JspServlet.java:174)
         at org.apache.jasper.runtime.JspServlet.serviceJspFile(JspServlet.java:261)
         at org.apache.jasper.runtime.JspServlet.service(JspServlet.java:369)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.tomcat.core.ServletWrapper.handleRequest(ServletWrapper.java:503)
         at org.apache.tomcat.core.ContextManager.service(ContextManager.java:559)
         at org.apache.tomcat.service.connector.Ajp12ConnectionHandler.processConnection(Ajp12ConnectionHandler.java:156)
         at org.apache.tomcat.service.TcpConnectionThread.run(SimpleTcpEndpoint.java:338)
         at java.lang.Thread.run(Thread.java:496)
    Root cause:
    javax.servlet.ServletException: Cannot create bean of class aseBeans.AseApplicationBean
         at _0002faseAppValidate_0002ejspaseAppValidate_jsp_0._jspService(_0002faseAppValidate_0002ejspaseAppValidate_jsp_0.java:71)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:126)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.jasper.runtime.JspServlet$JspServletWrapper.service(JspServlet.java:174)
         at org.apache.jasper.runtime.JspServlet.serviceJspFile(JspServlet.java:261)
         at org.apache.jasper.runtime.JspServlet.service(JspServlet.java:369)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.tomcat.core.ServletWrapper.handleRequest(ServletWrapper.java:503)
         at org.apache.tomcat.core.ContextManager.service(ContextManager.java:559)
         at org.apache.tomcat.service.connector.Ajp12ConnectionHandler.processConnection(Ajp12ConnectionHandler.java:156)
         at org.apache.tomcat.service.TcpConnectionThread.run(SimpleTcpEndpoint.java:338)
         at java.lang.Thread.run(Thread.java:496)
    I think I have all the necessary elements:
    package aseBeans;
    pickled my beans
    <jsp:useBean id="app" scope="session" class="aseBeans.AseApplicationBean" >
    <jsp:setProperty.../>
    </jsp:useBean>
    MANIFEST.MF was created, are the name/attribute pairs necessary?
    Name: AseApplicationBean.class
    Java-Bean: true
    THANK YOU

    hubertn I modified the jsp file and the bean: here's the code:<!--
    Copyright (c) 1999 The Apache Software Foundation. All rights
    reserved.
    Number Guess Game
    Written by Jason Hunter, CTO, K&A Software
    http://www.servlets.com
    -->
    <%@ page import = "num.NumberGuessBean" %>
    <jsp:useBean id="numguess" class="num.NumberGuessBean" scope="session"/>
    <jsp:setProperty name="numguess" property="*"/>
    <html>
    <head><title>Number Guess</title></head>
    <body bgcolor="white">
    <font size=4>
    <% if (numguess.getSuccess()) { %>
    Congratulations! You got it.
    And after just <%= numguess.getNumGuesses() %> tries.<p>
    <% numguess.reset(); %>
    Care to try again?
    <% } else if (numguess.getNumGuesses() == 0) { %>
    Welcome to the Number Guess game.<p>
    Play with default limits ( a number between 0 and 100)<p>
    or enter upper and lower limits.<p>
    <form method=get>
    Play with defaults?: <input type=radio name=default value="yes">Yes
    <input type=radio name=default value="no">No
    </form>
    <% if (numguess.getRadio().equals("no")) { %>
    <form method=get>
    Enter upper limit:<input type=text name=upperLimit>
    Enter lower limit:<input type=text name=lowerLimit>
    </form>
    <% numguess.reset(); %>
    <% } %>
    <form method=get>
    What's your guess? <input type=text name=guess>
    <input type=submit value="Submit">
    </form>
    <% } else { %>
    Good guess, but nope. Try <b><%= numguess.getHint() %></b>.
    You have made <%= numguess.getNumGuesses() %> guesses.<p>
    I'm thinking of a number between <jsp:getProperty name="numguess" property="lowerLimit"/> and <jsp:getProperty name="numguess" property="upperLimit"/>.<p>
    <form method=get>
    What's your guess? <input type=text name=guess>
    <input type=submit value="Submit">
    </form>
    <% } %>
    </font>
    </body>
    </html>
    and the bean:
    * Originally written by Jason Hunter, http://www.servlets.com.
    package num;
    import java.util.*;
    public class NumberGuessBean {
    int answer;
    boolean success;
    String hint;
    int numGuesses;
    String radiochoice;
    int lowerLimit=0;
    int upperLimit=100;
    String error;
    public NumberGuessBean() {
    reset();
    public void setGuess(String guess) {
    numGuesses++;
    int g;
    try {
    g = Integer.parseInt(guess);
    catch (NumberFormatException e) {
    g = -1;
    if (g == answer) {
    success = true;
    else if (g == -1) {
    hint = "a number next time";
    else if (g < answer) {
    hint = "higher";
    else if (g > answer) {
    hint = "lower";
    public void setRadio(String s) {
         radiochoice=s;
    public String getRadio() {
         return radiochoice;
    public void setLowerLimit( int lowerLimit) {
         this.lowerLimit=lowerLimit;
    public int getLowerLimit() {
         return lowerLimit;
    public void setUpperLimit(int upperLimit) {
         this.upperLimit=upperLimit;
    public int getUpperLimit() {
         return upperLimit;
    public boolean getSuccess() {
    return success;
    public String getHint() {
    return "" + hint;
    public String getError() {
         return ""+error;
    public int getNumGuesses() {
    return numGuesses;
    public void reset() {
         if (getRadio().equals("yes")) {
              answer = (int)(Math.random()*100);
         else {
              int i;
              i=(int)(Math.random()*upperLimit);
              if (i<lowerLimit) {
                   i=i+lowerLimit;
              answer=i;
         success = false;
    numGuesses = 0;
    }

  • Javax.servlet.jsp.JspException: Exception creating bean of class ProdFormFB

    Hi I am trying to deploy a struts based web application using "DynaActionForms"
    When I am trying to access the jsp page I am getting the following error.
    I am providing as much as details as it can help full to u.
    Thank u.
    FormBean class ProdFormFB.java
    ========================================================================
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import org.apache.struts.action.*;
    public class ProdFormFB extends DynaActionForm
    public void reset(ActionMapping mapping, HttpServletRequest request)
         System.out.println("reset() called. . . . ");
    set("prodId", new Integer(10));
         set("prodName", new String("XYZ"));
         set("price", new Float(22.25));
    public ActionErrors validate(ActionMapping mappings, HttpServletRequest request)
    System.out.println("=== validate() called ===");
    ActionErrors aes=new ActionErrors();
         System.out.println("aes.size() ===> "+aes.size());
         String prodName = (String)get("prodName");
         if( prodName==null || prodName.equals("") )
              System.out.println("Adding prodName.req error . . . . . . .");
              aes.add("prodName",new ActionError ("prodName.req.error"));
    return aes;
    ========================================================================
    Action Class ProdAction.java
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import org.apache.struts.action.*;
    public class ProdAction extends Action
       public ActionForward execute(ActionMapping mapping,ActionForm form, HttpServletRequest request,HttpServletResponse response)throws Exception
          ProdFormFB fb = (ProdFormFB)form;
          System.out.println("fb.get('prodId')==> "+fb.get("prodId"));
          System.out.println("fb.get('prodName')==> "+fb.get("prodName"));
          System.out.println("fb.get('price')==> "+fb.get("price"));
           return mapping.findForward("dres");
    }========================================================================
    jsp page : npform.jsp
    <%@ taglib uri = "/tags/struts-html" prefix="html"%>
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
    <html:html>
      <head>
         <title>Product Form</title>
      </head>
      <body>
              <html:form action="/pAction">
              <center>
                <br><br>
                <center> <font color="green" style="bold" size=5>Product Form using Struts</font></center><br><br>
                <table>
                <tr>
                   <td>
                          <b> Product ID : </b>  <html:text property="prodId"/> </td><td><font color="red" style="bold"><html:errors property="prodId"/> </font>
                 </td>
             </tr>
               <tr>
                   <td>
                          <b> Prod Name : </b> <html:text property="prodName"/>  </td><td> <font color="red" style="bold"> <html:errors property="prodName"/> </font>
                 </td>
              </tr>
    <!--           <tr>
                   <td>
                          <b> Price : </b> <html:text property="price"/>  </td><td> <font color="red" style="bold"> <html:errors property="price"/> </font>
                 </td>
              </tr> -->
               <tr  colspan="2" align="center">
                   <td>
                      <html:submit property="submit" value="Store"/>
                </td>
              </tr>
              </table>
                          </center>
           </html:form>
      </body>
    </html:html>========================================================================
    Configuration in struts-config.jsp
        <form-beans>
             <form-bean name="NewProdForm" type="ProdFormFB">
                  <form-property name="prodId" type="java.land.Integer"/>
                    <form-property name="prodName" type="java.land.String"/>
                  <form-property name="price" type="java.land.Float"/>
            </form-bean>
    </form-beans>
    <action-mappings>
           <action name="NewProdForm" path="/pAction" type="ProdAction" input="/npform.jsp" validate="true" scope="request">
                  <forward name="dres" path="/dres.jsp"/>
           </action>
    </action-mappings>========================================================================
    After deploying successfully I am I am entering the following URL
    http://localhost:7001/oursapp/npform.jsp
    The following Exception on Browser: and also on the server console ......
    javax.servlet.jsp.JspException: Exception creating bean of class ProdFormFB: {1}
         at org.apache.struts.taglib.html.FormTag.initFormBean(FormTag.java:463)
         at org.apache.struts.taglib.html.FormTag.doStartTag(FormTag.java:433)
         at jsp_servlet.__npform._jspService(__npform.java:178)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1006)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:419)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:315)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6718)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3764)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2644)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)     
    Plz... Help me out is solving the problem .......
    my email :   [email protected]

    I never used DynaActionForm, what I have noticed here is, don't you need to declare the form bean? I may be wrong.
    <form-beans>
    <form-bean name="newProdForm" type="com.package.form.NewProdForm"></form-bean>
    </form-beans>

  • Cannot Create a ReportDocument Class on Win 7/VS 2008/Crystal 2008

    I recently installed Crystal 2008 (CR Developer) on my Win7/64bit dev. PC, then switched all .NET crystal references from v10 to v12. When I try to run a simple project containing a single report and crystal viewer, I am unable to create a ReportDocument Class. ERROR:  "Either the Crystal Reports registry key permissions are insufficient or the Crystal Reports runtime is not installed correctly". The CrystalDecisions.CrystalReports.Engine.ReportDocument exception occurs in the auto generated 'code behind' form of the Crystal report. Stand alone CR 2008 works fine, and the older VS.NET project, with CR10 references, also worked. Please advise. Thanks

    Is this a windows or web app?  Windows app, part of the compiler options is what type of CPU that you are targeting.  If it is web, you have to set this within IIS.

  • Updated Solution Center, get cannot create DIHPAiOFax​Manger object error message on 'Send a Fax'

    The printer is an OfficeJet J4540 All-In-One, running on Vista Home Premium x64. The orginal Solution Center faxed without any problems. I upgraded to new Solution Center and when I click on 'Send A Fax' I get this error message:   "cannot create DIHPAiOFaxManger object". My OfficeJet can and does send faxes manually, but I would like to use the Solution Center. Please, help!!!
    neptune49

    This might have been a quirk of the installation. So let's try to perform a complete and clean uninstallation and reinstallation. First if you use a USB cord, make sure to remove it. Do not plug it back in until the software directs you to. Then go through the Devices and Printers, Programs and Features and Device Manager folders and insure that all copies, files, and programs related to the printer are removed. Then as directed, restart the computer. 
    In the START menu type "%temp%" and press ENTER. Here I want you to press Ctrl+A and hit DELETE. Some of the files will not allow you to delete them, skip those files and delete the majority that allows it. 
    Then follow this link to download the full feature software and drivers for the printer: 
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloa​dIndex?softwareitem=mp-58704-2&cc=us&dlc=en&lc=en&​...
    Install that and let me know the result! 
    As an additional side note, you should also be able to use Windows Fax and Scan to fax from your PC as well. 
    Have a great day!

  • Get SOAP Cannot Create XML Document reader error with Outlook integration?

    Hi,
    We installed Outlook Email Integration on a windows XP / Office 2007 machine and it installed OK. However when we click the "Add to CRM On Demand" button and try to login we get the following error message when we click the 'Sign In" button
    "SOAP: Cannot create XML document reader"
    Has anyone come across this? Are there any pre-requisites for using this add-in? e.g. Service Packs, .NET framework etc?
    Cheers

    It may not be the case...but pls. check if MS Word is defined as editing tool for email.. It should not be.
    ANotnio
    BExpert, Brazil

  • BEA Portal 8.1 Sp4 - Cannot Create new Desktop - DB Error Returned?

    Please help.
    We are trying to migrate to streaming portal, and are encountering a problem. It appears to be a new problem as it wasn't coming up last week.
    Under the Weblogic Admin Portal, I create a Portal. Success
    - I then try to create a Desktop using a Portal Template File.
    - I select the Portal file we have, and the only Portal file from the dropdown.
    - I click "Create New Desktop"
    - When the popup displays "WARNING: Portal Template Contains Duplicate Resources" comes up, if I select "Replace conflicting Portal Resources" or "Replace Markup" it fails.
    The Javascript alert says (or tries to say)
    Error: The desktop could not be disassembled.
    Data exception -- row already exist in index AX1_PAGE_DEF on table PF_PAGE_DEFINITION
    Any idea what is going on? We haven't taken this a step further due to this problem.
    Before you suggest:
    - We haven't been doing anything fancy.
    - I have not gone into PointBase manually (I wouldn't know how)
    - By all accounts it appeared to be working fine, and then it stopped.
    Current Setup
    - BEA Weblogic 8.1 SP4
    - "Production" Domain using JRockit SDK
    - Currently using the workstation's PointBase database for the Admin tools.
    Full Error
    Error: The desktop could not be disassembled.
    [com.bea.netuix.application.transform.disassembler.view.ViewDisassemblerException: javax.transaction.TransactionRolledbackException: EJB Exception: : javax.ejb.EJBException: SQL Error while trying to createPageDefinition: SQL [insert into PF_PAGE_DEFINITION ( PAGE_DEFINITION_ID, MARKUP_DEFINITION_ID, IS_PUBLIC, IS_HIDDEN, INTERSECTION_ID, PAGE_LABEL, WEBAPP_NAME) values (?,?,?,?,?,?,?)] database error code [25,222] SQL state [22028] .; nested exception is: java.sql.SQLException: Data exception -- row already exist in index AX1_PAGE_DEF on table PF_PAGE_DEFINITION.java.sql.SQLException: Data exception -- row already exist in index AX1_PAGE_DEF on table PF_PAGE_DEFINITION.     at com.pointbase.net.netJDBCPrimitives.handleResponse(Ljava.io.DataInputStream;)V(Optimized Method)     at com.pointbase.net.netJDBCPrimitives.handlePrimitiveResponse(Ljava.io.DataInputStream;)Ljava.lang.Object;(Optimized Method)     at com.pointbase.net.netJDBCPreparedStatement.executeUpdate()I(Optimized Method)     at weblogic.jdbc.wrapper.PreparedStatement.executeUpdate()I(Optimized Method)     at com.bea.netuix.application.manager.persistence.jdbc.PageDefinitionDelegate.createPageDefinition(Ljava.sql.Connection;Lcom.bea.netuix.application.definition.PageDefinition;)Lcom.bea.netuix.application.definition.PageDefinition;(PageDefinitionDelegate.java:850)     at com.bea.netuix.application.manager.persistence.jdbc.PageDefinitionManagerImpl.createPageDefinition(Lcom.bea.netuix.application.manager.CustomizationContext;Lcom.bea.netuix.application.definition.PageDefinition;)Lcom.bea.netuix.application.definition.PageDefinition;(PageDefinitionManagerImpl.java:875)     at com.bea.netuix.application.manager.persistence.jdbc.PageDefinitionManager_c4el9c_EOImpl.createPageDefinition(Lcom.bea.netuix.application.manager.CustomizationContext;Lcom.bea.netuix.application.definition.PageDefinition;)Lcom.bea.netuix.application.definition.PageDefinition;(PageDefinitionManager_c4el9c_EOImpl.java:906)     at com.bea.netuix.application.transform.disassembler.view.DefinitionManagerFacade.createPageDefinition(Lcom.bea.netuix.application.manager.CustomizationContext;Lcom.bea.netuix.application.view.PageView;)Lcom.bea.netuix.application.transform.disassembler.view.CreatePageDefinitionResult;(DefinitionManagerFacade.java:956)     at com.bea.netuix.application.transform.disassembler.view.PageViewDisassembler.disassemble(Lcom.bea.netuix.application.view.View;Lcom.bea.netuix.application.manager.CustomizationContext;)Lcom.bea.netuix.application.identifier.Id;(PageViewDisassembler.java:75)     at com.bea.netuix.application.transform.disassembler.view.ViewDisassemblerDelegator.disassemble(Lcom.bea.netuix.application.view.View;Lcom.bea.netuix.application.manager.CustomizationContext;)Lcom.bea.netuix.application.identifier.Id;(ViewDisassemblerDelegator.java:134)     at com.bea.netuix.application.transform.disassembler.view.BookViewDisassembler.disassemble(Lcom.bea.netuix.application.view.View;Lcom.bea.netuix.application.manager.CustomizationContext;)Lcom.bea.netuix.application.identifier.Id;(BookViewDisassembler.java:102)     at com.bea.netuix.application.transform.disassembler.view.BookViewDisassembler.disassemble(Lcom.bea.netuix.application.view.View;Lcom.bea.netuix.application.manager.CustomizationContext;)Lcom.bea.netuix.application.identifier.Id;(BookViewDisassembler.java:116)     at com.bea.netuix.application.transform.disassembler.view.BookViewDisassembler.disassemble(Lcom.bea.netuix.application.view.View;Lcom.bea.netuix.application.manager.CustomizationContext;)Lcom.bea.netuix.application.identifier.Id;(BookViewDisassembler.java:116)     at com.bea.netuix.application.transform.disassembler.view.ViewDisassemblerDelegator.disassemble(Lcom.bea.netuix.application.view.View;Lcom.bea.netuix.application.manager.CustomizationContext;)Lcom.bea.netuix.application.identifier.Id;(ViewDisassemblerDelegator.java:134)     at com.bea.netuix.application.transform.disassembler.view.PageViewDisassembler.disassemble(Lcom.bea.netuix.application.view.View;Lcom.bea.netuix.application.manager.CustomizationContext;)Lcom.bea.netuix.application.identifier.Id;(PageViewDisassembler.java:109)     at com.bea.netuix.application.transform.disassembler.view.ViewDisassemblerDelegator.disassemble(Lcom.bea.netuix.application.view.View;Lcom.bea.netuix.application.manager.CustomizationContext;)Lcom.bea.netuix.application.identifier.Id;(ViewDisassemblerDelegator.java:134)     at com.bea.netuix.application.transform.disassembler.view.BookViewDisassembler.disassemble(Lcom.bea.netuix.application.view.View;Lcom.bea.netuix.application.manager.CustomizationContext;)Lcom.bea.netuix.application.identifier.Id;(BookViewDisassembler.java:102)     at com.bea.netuix.application.transform.disassembler.view.ViewDisassemblerDelegator.disassemble(Lcom.bea.netuix.application.view.View;Lcom.bea.netuix.application.manager.CustomizationContext;)Lcom.bea.netuix.application.identifier.Id;(ViewDisassemblerDelegator.java:134)     at com.bea.netuix.application.transform.disassembler.view.ViewDisassemblerFactory.createDesktopDefinition(Lcom.bea.netuix.application.manager.CustomizationContext;Lcom.bea.netuix.application.view.DesktopView;Ljava.lang.String;)Lcom.bea.netuix.application.definition.DesktopDefinition;(ViewDisassemblerFactory.java:113)     at com.bea.netuix.application.manager.persistence.jdbc.DesktopDefinitionManagerImpl.createDesktopDefinition(Lcom.bea.netuix.application.manager.CustomizationContext;Lcom.bea.netuix.application.view.DesktopView;Ljava.lang.String;)Lcom.bea.netuix.application.definition.DesktopDefinition;(DesktopDefinitionManagerImpl.java:378)     at com.bea.netuix.application.manager.persistence.jdbc.DesktopDefinitionManager_8c1hh8_EOImpl.createDesktopDefinition(Lcom.bea.netuix.application.manager.CustomizationContext;Lcom.bea.netuix.application.view.DesktopView;Ljava.lang.String;)Lcom.bea.netuix.application.definition.DesktopDefinition;(DesktopDefinitionManager_8c1hh8_EOImpl.java:46)     at com.bea.jsptools.portal.PortalDisassembler.disassemble(Lcom.bea.netuix.application.identifier.PortalPath;Lcom.bea.netuix.application.identifier.DesktopPath;Ljava.lang.String;Ljava.lang.String;Ljava.lang.String;ILjava.io.InputStream;Ljavax.servlet.http.HttpServletRequest;)Lcom.bea.netuix.application.definition.DesktopDefinition;(PortalDisassembler.java:133)     at com.bea.jsptools.portal.PortalAdminManager.createDesktopFromTemplate(Ljava.lang.String;Ljava.lang.String;Ljava.lang.String;Ljava.lang.String;Ljava.lang.String;Ljava.lang.String;ILjava.util.Locale;Ljavax.servlet.http.HttpServletRequest;)V(PortalAdminManager.java:427)     at jsp_servlet._portaltools.__portalmgmttree._jspService(Ljavax.servlet.http.HttpServletRequest;Ljavax.servlet.http.HttpServletResponse;)V(__portalmgmttree.java:3293)     at weblogic.servlet.jsp.JspBase.service(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;)V(Optimized Method)     at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run()Ljava.lang.Object;(ServletStubImpl.java:1006)     at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;Lweblogic.servlet.internal.FilterChainImpl;)V(Optimized Method)     at weblogic.servlet.internal.TailFilter.doFilter(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;Ljavax.servlet.FilterChain;)V(TailFilter.java:28)     at weblogic.servlet.internal.FilterChainImpl.doFilter(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;)V(FilterChainImpl.java:27)     at com.bea.p13n.servlets.PortalServletFilter.doFilter(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;Ljavax.servlet.FilterChain;)V(PortalServletFilter.java:293)     at weblogic.servlet.internal.FilterChainImpl.doFilter(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;)V(FilterChainImpl.java:27)     at weblogic.servlet.internal.RequestDispatcherImpl.include(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;Z)V(RequestDispatcherImpl.java:644)javax.ejb.EJBException: SQL Error while trying to createPageDefinition: SQL [insert into PF_PAGE_DEFINITION ( PAGE_DEFINITION_ID, MARKUP_DEFINITION_ID, IS_PUBLIC, IS_HIDDEN, INTERSECTION_ID, PAGE_LABEL, WEBAPP_NAME) values (?,?,?,?,?,?,?)] database error code [25,222] SQL state [22028] .; nested exception is: java.sql.SQLException: Data exception -- row already exist in index AX1_PAGE_DEF on table PF_PAGE_DEFINITION.     at com.bea.netuix.application.manager.persistence.jdbc.PageDefinitionDelegate.createPageDefinition(Ljava.sql.Connection;Lcom.bea.netuix.application.definition.PageDefinition;)Lcom.bea.netuix.application.definition.PageDefinition;(PageDefinitionDelegate.java:866)     at com.bea.netuix.application.manager.persistence.jdbc.PageDefinitionManagerImpl.createPageDefinition(Lcom.bea.netuix.application.manager.CustomizationContext;Lcom.bea.netuix.application.definition.PageDefinition;)Lcom.bea.netuix.application.definition.PageDefinition;(PageDefinitionManagerImpl.java:875)     at com.bea.netuix.application.manager.persistence.jdbc.PageDefinitionManager_c4el9c_EOImpl.createPageDefinition(Lcom.bea.netuix.application.manager.CustomizationContext;Lcom.bea.netuix.application.definition.PageDefinition;)Lcom.bea.netuix.application.definition.PageDefinition;(PageDefinitionManager_c4el9c_EOImpl.java:906)     at com.bea.netuix.application.transform.disassembler.view.DefinitionManagerFacade.createPageDefinition(Lcom.bea.netuix.application.manager.CustomizationContext;Lcom.bea.netuix.application.view.PageView;)Lcom.bea.netuix.application.transform.disassembler.view.CreatePageDefinitionResult;(DefinitionManagerFacade.java:956)     at com.bea.netuix.application.transform.disassembler.view.PageViewDisassembler.disassemble(Lcom.bea.netuix.application.view.View;Lcom.bea.netuix.application.manager.CustomizationContext;)Lcom.bea.netuix.application.identifier.Id;(PageViewDisassembler.java:75)     at com.bea.netuix.application.transform.disassembler.view.ViewDisassemblerDelegator.disassemble(Lcom.bea.netuix.application.view.View;Lcom.bea.netuix.application.manager.CustomizationContext;)Lcom.bea.netuix.application.identifier.Id;(ViewDisassemblerDelegator.java:134)     at com.bea.netuix.application.transform.disassembler.view.BookViewDisassembler.disassemble(Lcom.bea.netuix.application.view.View;Lcom.bea.netuix.application.manager.CustomizationContext;)Lcom.bea.netuix.application.identifier.Id;(BookViewDisassembler.java:102)     at com.bea.netuix.application.transform.disassembler.view.BookViewDisassembler.disassemble(Lcom.bea.netuix.application.view.View;Lcom.bea.netuix.application.manager.CustomizationContext;)Lcom.bea.netuix.application.identifier.Id;(BookViewDisassembler.java:116)     at com.bea.netuix.application.transform.disassembler.view.BookViewDisassembler.disassemble(Lcom.bea.netuix.application.view.View;Lcom.bea.netuix.application.manager.CustomizationContext;)Lcom.bea.netuix.application.identifier.Id;(BookViewDisassembler.java:116)     at com.bea.netuix.application.transform.disassembler.view.ViewDisassemblerDelegator.disassemble(Lcom.bea.netuix.application.view.View;Lcom.bea.netuix.application.manager.CustomizationContext;)Lcom.bea.netuix.application.identifier.Id;(ViewDisassemblerDelegator.java:134)     at com.bea.netuix.application.transform.disassembler.view.PageViewDisassembler.disassemble(Lcom.bea.netuix.application.view.View;Lcom.bea.netuix.application.manager.CustomizationContext;)Lcom.bea.netuix.application.identifier.Id;(PageViewDisassembler.java:109)     at com.bea.netuix.application.transform.disassembler.view.ViewDisassemblerDelegator.disassemble(Lcom.bea.netuix.application.view.View;Lcom.bea.netuix.application.manager.CustomizationContext;)Lcom.bea.netuix.application.identifier.Id;(ViewDisassemblerDelegator.java:134)     at com.bea.netuix.application.transform.disassembler.view.BookViewDisassembler.disassemble(Lcom.bea.netuix.application.view.View;Lcom.bea.netuix.application.manager.CustomizationContext;)Lcom.bea.netuix.application.identifier.Id;(BookViewDisassembler.java:102)     at com.bea.netuix.application.transform.disassembler.view.ViewDisassemblerDelegator.disassemble(Lcom.bea.netuix.application.view.View;Lcom.bea.netuix.application.manager.CustomizationContext;)Lcom.bea.netuix.application.identifier.Id;(ViewDisassemblerDelegator.java:134)     at com.bea.netuix.application.transform.disassembler.view.ViewDisassemblerFactory.createDesktopDefinition(Lcom.bea.netuix.application.manager.CustomizationContext;Lcom.bea.netuix.application.view.DesktopView;Ljava.lang.String;)Lcom.bea.netuix.application.definition.DesktopDefinition;(ViewDisassemblerFactory.java:113)     at com.bea.netuix.application.manager.persistence.jdbc.DesktopDefinitionManagerImpl.createDesktopDefinition(Lcom.bea.netuix.application.manager.CustomizationContext;Lcom.bea.netuix.application.view.DesktopView;Ljava.lang.String;)Lcom.bea.netuix.application.definition.DesktopDefinition;(DesktopDefinitionManagerImpl.java:378)     at com.bea.netuix.application.manager.persistence.jdbc.DesktopDefinitionManager_8c1hh8_EOImpl.createDesktopDefinition(Lcom.bea.netuix.application.manager.CustomizationContext;Lcom.bea.netuix.application.view.DesktopView;Ljava.lang.String;)Lcom.bea.netuix.application.definition.DesktopDefinition;(DesktopDefinitionManager_8c1hh8_EOImpl.java:46)     at com.bea.jsptools.portal.PortalDisassembler.disassemble(Lcom.bea.netuix.application.identifier.PortalPath;Lcom.bea.netuix.application.identifier.DesktopPath;Ljava.lang.String;Ljava.lang.String;Ljava.lang.String;ILjava.io.InputStream;Ljavax.servlet.http.HttpServletRequest;)Lcom.bea.netuix.application.definition.DesktopDefinition;(PortalDisassembler.java:133)     at com.bea.jsptools.portal.PortalAdminManager.createDesktopFromTemplate(Ljava.lang.String;Ljava.lang.String;Ljava.lang.String;Ljava.lang.String;Ljava.lang.String;Ljava.lang.String;ILjava.util.Locale;Ljavax.servlet.http.HttpServletRequest;)V(PortalAdminManager.java:427)     at jsp_servlet._portaltools.__portalmgmttree._jspService(Ljavax.servlet.http.HttpServletRequest;Ljavax.servlet.http.HttpServletResponse;)V(__portalmgmttree.java:3293)     at weblogic.servlet.jsp.JspBase.service(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;)V(Optimized Method)     at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run()Ljava.lang.Object;(ServletStubImpl.java:1006)     at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;Lweblogic.servlet.internal.FilterChainImpl;)V(Optimized Method)     at weblogic.servlet.internal.TailFilter.doFilter(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;Ljavax.servlet.FilterChain;)V(TailFilter.java:28)     at weblogic.servlet.internal.FilterChainImpl.doFilter(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;)V(FilterChainImpl.java:27)     at com.bea.p13n.servlets.PortalServletFilter.doFilter(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;Ljavax.servlet.FilterChain;)V(PortalServletFilter.java:293)     at weblogic.servlet.internal.FilterChainImpl.doFilter(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;)V(FilterChainImpl.java:27)     at weblogic.servlet.internal.RequestDispatcherImpl.include(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;Z)V(RequestDispatcherImpl.java:644)     at weblogic.servlet.internal.RequestDispatcherImpl.include(Ljavax.servlet.ServletRequest;Ljavax.servlet.ServletResponse;)V(RequestDispatcherImpl.java:423)     at com.bea.netuix.servlets.controls.content.JspContent.beginRender(Ljava.io.Writer;)Z(JspContent.java:533)     at com.bea.netuix.nf.ControlLifecycle$1.visit(Lcom.bea.netuix.nf.UIControl;Ljava.lang.Object;)Z(ControlLifecycle.java:495)     at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(Lcom.bea.netuix.nf.VisitorType;Lcom.bea.netuix.nf.UIControl;Ljava.lang.Object;)V(ControlTreeWalker.java:485); nested exception is:
         javax.ejb.EJBException: SQL Error while trying to createPageDefinition: SQL [insert into PF_PAGE_DEFINITION ( PAGE_DEFINITION_ID, MARKUP_DEFINITION_ID, IS_PUBLIC, IS_HIDDEN, INTERSECTION_ID, PAGE_LABEL, WEBAPP_NAME) values (?,?,?,?,?,?,?)] database error code [25,222] SQL state [22028] .; nested exception is: java.sql.SQLException: Data exception -- row already exist in index AX1_PAGE_DEF on table PF_PAGE_DEFINITION.]."));

    You might have already checked it but just in case, did you check the server console when this happens ?
    If there is any problem with the template file, it doesnt create a desktop even though it doesnt complain about this explicitly in the Portal Admin.
    Cheers,
    Satish

  • Cannot create jms module, unusual error

    I'm not sure what happened, but this was working before, but I can no longer create a jms module. I need to create a jms module, but every time I try to activate my changes, I get this error. Has anyone ran into this before that could shed some light? This is running in production mode with ADF libraries installed.
    <9-Aug-2012 6:31:22 o'clock PM PDT> <Warning> <Deployer> <BEA-149004> <Failures were detected while initiating activate task for application 'SystemModule-2'.>
    <9-Aug-2012 6:31:22 o'clock PM PDT> <Warning> <Deployer> <BEA-149078> <Stack trace for message 149004
    weblogic.application.ModuleException:
    at weblogic.jms.module.ModuleCoordinator.activate(ModuleCoordinator.java:247)
    at weblogic.application.internal.flow.ModuleListenerInvoker.activate(ModuleListenerInvoker.java:227)
    at weblogic.application.internal.flow.DeploymentCallbackFlow$2.next(DeploymentCallbackFlow.java:541)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.DeploymentCallbackFlow.activate(DeploymentCallbackFlow.java:175)
    Truncated. see log file for complete stacktrace
    Caused By: weblogic.cluster.migration.GroupActivationException: cause is: weblogic.management.DeploymentException:
    at weblogic.cluster.migration.MigratableGroup.activateAllMigratables(MigratableGroup.java:350)
    at weblogic.cluster.migration.MigratableGroup.activate(MigratableGroup.java:337)
    at weblogic.cluster.migration.MigrationManager.privateRegister(MigrationManager.java:255)
    at weblogic.cluster.migration.MigrationManager.register(MigrationManager.java:192)
    at weblogic.jms.module.ModuleCoordinator.activate(ModuleCoordinator.java:243)
    Truncated. see log file for complete stacktrace
    >
    <9-Aug-2012 6:31:22 o'clock PM PDT> <Warning> <Deployer> <BEA-149004> <Failures were detected while initiating redeploy task for application 'Module-FMWDFW'.>
    <9-Aug-2012 6:31:22 o'clock PM PDT> <Warning> <Deployer> <BEA-149078> <Stack trace for message 149004
    weblogic.application.ModuleException:
    at weblogic.jms.module.ModuleCoordinator.activate(ModuleCoordinator.java:247)
    at weblogic.application.internal.flow.ModuleListenerInvoker.activate(ModuleListenerInvoker.java:227)
    at weblogic.application.internal.flow.DeploymentCallbackFlow$2.next(DeploymentCallbackFlow.java:541)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.DeploymentCallbackFlow.activate(DeploymentCallbackFlow.java:175)
    Truncated. see log file for complete stacktrace
    Caused By: weblogic.cluster.migration.GroupActivationException: cause is: weblogic.management.DeploymentException:
    at weblogic.cluster.migration.MigratableGroup.activateAllMigratables(MigratableGroup.java:350)
    at weblogic.cluster.migration.MigratableGroup.activate(MigratableGroup.java:337)
    at weblogic.cluster.migration.MigrationManager.privateRegister(MigrationManager.java:255)
    at weblogic.cluster.migration.MigrationManager.register(MigrationManager.java:192)
    at weblogic.jms.module.ModuleCoordinator.activate(ModuleCoordinator.java:243)
    Truncated. see log file for complete stacktrace
    >
    <9-Aug-2012 6:31:23 o'clock PM PDT> <Error> <Console> <BEA-240003> <Console encountered the following error weblogic.application.ModuleException:
    at weblogic.jms.module.ModuleCoordinator.activate(ModuleCoordinator.java:247)
    at weblogic.application.internal.flow.ModuleListenerInvoker.activate(ModuleListenerInvoker.java:227)
    at weblogic.application.internal.flow.DeploymentCallbackFlow$2.next(DeploymentCallbackFlow.java:541)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.DeploymentCallbackFlow.activate(DeploymentCallbackFlow.java:175)
    at weblogic.application.internal.flow.DeploymentCallbackFlow.activate(DeploymentCallbackFlow.java:167)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:636)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:205)
    at weblogic.application.internal.SingleModuleDeployment.activate(SingleModuleDeployment.java:43)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
    at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
    at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused by: weblogic.cluster.migration.GroupActivationException: cause is: weblogic.management.DeploymentException:
    at weblogic.cluster.migration.MigratableGroup.activateAllMigratables(MigratableGroup.java:350)
    at weblogic.cluster.migration.MigratableGroup.activate(MigratableGroup.java:337)
    at weblogic.cluster.migration.MigrationManager.privateRegister(MigrationManager.java:255)
    at weblogic.cluster.migration.MigrationManager.register(MigrationManager.java:192)
    at weblogic.jms.module.ModuleCoordinator.activate(ModuleCoordinator.java:243)

    I think the following can be a possible problems:
    a. Cluster communication issue (which can be checked using admin console > cluster > cluster_name > monitoring.
    b. Problem with the JMS server hosts. Check whether there are any issues with the migration setup?
    Just a quick search lead to:
    https://confluence.nau.edu/confluence/plugins/viewsource/viewpagesrc.action?pageId=4522139
    This thread is talking about the same exception due to migration.

  • Cannot create database ORA-03113 error

    Hi all,
    I ve just installed oracle 9i on win2k server , after installation i went to create a
    database using DBCA. After filling up the necessary, when i click on create database it gives me the following error.
    ORA-03113: end-of-file on communication channel
    Though i am getting a ignore option i preferred aborting it.
    Someone please help

    hi 477985,
    Is it some thing tat you want to create the db using wizard. you can actually save it as a script and run tat.
    Anyway, just check for disk & physical memory. Stop if any other server or service is running and give a try
    Cheers,
    kamaslesh jk

  • HT3204 new ipod touch. can access iTunes store. cannot create iTunes ID. get error "could not complete iTunes request. unknown error occured (-1202)".Ipod updated to latest issue,firewall exception allowed.SSL 3.0 & TSL 1.0 ok. Running windows Vista. Help

    New ipod touch 32gb. Can access iTune store.Can sample music selection. Completed latest update for ipod Can't make any purchases. Get error "could not complete your iTunes store request. An unknown error occured  (-1202)". security SSL 3.0 & TSL 1.0 OK. Firewall enabled for iTunes. ???

    laneymenion wrote:
    Using Proxy: Yes
    HTTP Proxy: 192.168.100.15:80
    Change the Using Proxy to No
    Have you allowed itunes and itunes helper in your security software firewall?

  • CAQuietExec: Error: Cannot create database.

    Could not upgrade from Azure .NET SDK 2.2 to 2.3 (VS 2013) on Windows 8.1 x64. The Storage Emulator 3.0 setup is failing, even if launched manually. Do you have any tips?
    The logs of the WindowsAzureStorageEmulator install has the following lines just before initiating a rollback.
    MSI (s) (F4:D8) [08:18:27:340]: Source for file 'StartStorageEmulator.cmd' is compressed
    InstallFiles: File: StartStorageEmulator.cmd,  Directory: C:\Program Files (x86)\Microsoft SDKs\Windows Azure\Storage Emulator\,  Size: 64
    MSI (s) (F4:D8) [08:18:27:340]: Executing op: CacheSizeFlush(,)
    MSI (s) (F4:D8) [08:18:27:340]: Executing op: ActionStart(Name=RunInitialize,Description=Initializing the Storage Emulator,)
    Action 8:18:27: RunInitialize. Initializing the Storage Emulator
    MSI (s) (F4:D8) [08:18:27:340]: Executing op: CustomActionSchedule(Action=RunInitialize,ActionType=1025,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files (x86)\Microsoft SDKs\Windows Azure\Storage Emulator\WAStorageEmulator.exe"
    init -forcecreate -autodetect)
    MSI (s) (F4:F8) [08:18:27:371]: Invoking remote custom action. DLL: C:\Windows\Installer\MSIEAC9.tmp, Entrypoint: CAQuietExec
    MSI (s) (F4:C8) [08:18:27:371]: Generating random cookie.
    MSI (s) (F4:C8) [08:18:27:371]: Created Custom Action Server with PID 3640 (0xE38).
    MSI (s) (F4:48) [08:18:27:387]: Running as a service.
    MSI (s) (F4:48) [08:18:27:387]: Hello, I'm your 32bit Impersonated custom action server.
    CAQuietExec:  Windows Azure Storage Emulator 3.0.0.0 command line tool
    CAQuietExec:  Error: Cannot create database.
    CAQuietExec:  Error 0xfffffff3: Command line returned an error.
    CAQuietExec:  Error 0xfffffff3: CAQuietExec Failed
    CustomAction RunInitialize returned actual error code 1603 (note this may not be 100% accurate if translation happened inside sandbox)
    Action ended 8:18:32: InstallFinalize. Return value 3.
    MSI (s) (F4:D8) [08:18:32:276]: Note: 1: 2265 2:  3: -2147287035
    MSI (s) (F4:D8) [08:18:32:276]: User policy value 'DisableRollback' is 0

    I agree.  This (finally) took care of it!  Thanks to DixQuinze and Trent Swanson...
    sqllocaldb stop v11.0
    sqllocaldb delete v11.0
    delete C:\Users\MyAccount\WAStorageEmulatorDb30*.*
    sqllocaldb create v11.0
    Then try the install again!
    -Dave
    DixQuinze

  • Creating Sparse Image: Authentication Error

    I created an encrypted sparse image in DU and then deleted it (by highlighting in DU and pressing "delete") because I thought I had made an error in sizing and location. Now, trying to create a new one, when I press "create" it begins a progress bar of creating the file (without asking for a new password creation) and then fails with:"cannot create sparse.dmg: authentication error".
    I eliminated the original password(for the first sparse.dmg)in my keychain, ran "repair disk permissions" for my HD, and also logged out and restarted, but still get the same error message.
    Any help appreciated!
    David

    WOW, fantastic work David!
    I hope I have not done something wrong here regarding placing these files on the desktop; furthermore, what do I do with them now?
    Looks like you did right, you can trash them if everything is fine now, new ones were made on use or reboot, I suspect the keychain one myself.
    My other question is that if I eject the new formed sparse drive and then remount it by double clicking the sparse image, it does not request the password.
    Did you choose to save the password in the Keychain? It'd automatically open it with the stored Keychain password.
    in trying to keep this "vintage" imac G5 (non intel) machine going is it worthwhile or recommended to purchase OS 10.5 Leopard or am I looking at further trouble?
    Leopard should be just fine, how much RAM do you have?
    Leopard requirements/10.5.x...
    * Mac computer with an Intel, PowerPC G5, or PowerPC G4 (867MHz or faster) processor
    minimum system requirements
    * 512MB of memory (I say 2GB at least)
    * DVD drive for installation
    * 9GB of available disk space (I say 30GB at least)
    You have to call Apple & likely ask for a Product Specialist to get it, if they still have it!

Maybe you are looking for

  • PhotoShop CS6 won't open

    CS6 will not open and gives me the message: "The specified module could not be found." Any ideas?

  • Airport Express audio: total washout?

    I just got a new Airport Extreme base station (I had previously been using a Linksys wireless router) and Airport Express and I'm having a very negative experience trying to use the latter with iTunes (which was the main purpose of buying it in the f

  • KT4V MS-6712 Odd sounds

    Got this mobo a few weeks back now, everything seemed to be running fine.  Decided to change the heatsink/fan for something less noisey.   Now I have noticed a noise !!  Sounds like a off centre fan ! Checked all the fans in the system, nope they are

  • Struts basics

    can anybody help me i am getting error while compiling my class CustomerAction .... i alrdy have compiled my acrionform class i.e... CustomerForm my classes are in WEB-INF/src/net the error is CustomerAction.java:5: cannot find symbol symbol : class

  • Proper use of Iphone

    Does anyone know here the proper use of Iphone? 1. Im wondering if it's okay if we expose it to sunlight? or sun raise?(walking in the street) 2. and in Charging mode. we cannot safely remove the iphone in the Computer if its fully charge, is it safe