STUCK STUK STUCK- GOIN LOONEY

i am really stuck i have pasted my code below in terms of bean, servlet and jsp. please could someone tell me where i am going wrong.
I am totally new to this so really stuck. When i am deploying the application the page is being displayed however when entering fields of disease and postcode nothing is being displayed it just takes me to the same page as i am alreay on but the text changes to "welcome null".
i need it to connect to my jsp.
your help is appreciated!
BEAN
* RetrieveBean.java
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
package beans ;
import java.sql.*;
import javax.sql.*;
import java.util.*;
public class RetrieveBean
public String doctorpostCodeVal;
public String diseaseNameVal;
//private Connection gp_conn = null, hpu_conn=null;
private Statement gp_stmt ;
private String statusStr = "" ;
public RetrieveBean() throws InstantiationException, IllegalAccessException
try {
Class.forName("com.mysql.jdbc.Driver").newInstance();
// gp_conn = HospitalConnection.getInstance().getGPConn();
// hpu_conn = HospitalConnection.getInstance().getHPUConn();
catch(Exception e) {
System.err.println("Exception: " + e.getMessage());
e.printStackTrace();
public void closeConnection()
try
gp_stmt.close() ;
catch( SQLException e )
System.err.println( e.getMessage()) ;
e.printStackTrace();
public String getStatus()
return statusStr ;
public boolean isValiddoctorpostCode(String doctorpostCode)
String strQuery = "select distinct PostCode d from doctor where PostCode='" + doctorpostCode + "'";
String str = null;
ResultSet rs;
try {
rs = gp_stmt.executeQuery(strQuery);
while ( rs.next() )
str= rs.getString("doctorpostCode");
return true;
} catch (SQLException ex) {
ex.printStackTrace();
return false;
public String getDiseaseName(String diseaseName)
String strQuery = "select Disease_Name from disease where Disease_Name ='" + diseaseName + "'";
String str = null;
ResultSet rs;
try {
rs = gp_stmt.executeQuery(strQuery);
while ( rs.next() )
str= rs.getString("diseaseName");
return str;
} catch (SQLException ex) {
ex.printStackTrace();
str = null;
return str;
public int getCount( String givenDoctorpostCode, String givendiseaseName )
String strQuery, strCount="0";
int count = 0;
//select count(*) ct from Patient p, Consultation c, Diagnosis d where p.Post_Code= 'E176HR'
// and p.Patient_No=c.Patient_No AND c.Consultation_No=d.Consultation_No and d.Diagnosed_disease='malaria'
try
strQuery = "select Post_Code from doctor where PostCode='"+ givenDoctorpostCode + "'";
ResultSet rs = gp_stmt.executeQuery( strQuery ) ;
while ( rs.next() )
strCount = rs.getString("givenDoctorpostCode");
String[] postcode_list = new String[Integer.valueOf(strCount)];
int i = 0;
strQuery = "select PostCode pc from PostCode where doctor='"+ givenDoctorpostCode + "'";
rs = gp_stmt.executeQuery( strQuery ) ;
while ( rs.next() )
postcode_list[i++] = rs.getString("givenDoctorpostCode");
for (i =0; i<postcode_list.length;i++) {   
strQuery = "Select patient.Patient_No, patient.Surname, patient.FirstName, patient.DOB, patient.House_No, patient.Street, patient.Post_Code, doctor.PostCode, doctor.Doctor_Id, consultation.Consultation_No, diagnosis.Diagnosed_disease, disease.Disease_Name from patient, doctor, consultation, diagnosis, disease where consultation.Consultation_No = diagnosis.Consultation_No and patient.Patient_No = consultation.Patient_No and doctor.Doctor_Id = Consultation.Doctor_Id and diagnosis.Diagnosed_disease = disease.Disease_code and disease.Disease_Name = '"+diseaseNameVal+"'and doctor.PostCode = '"+doctorpostCodeVal+"'" ;
rs = gp_stmt.executeQuery( strQuery ) ;
while ( rs.next() ){
strCount= rs.getString("ct");
Integer temp = (Integer.valueOf(strCount));
count = count + temp.intValue();
return count ;
     catch (Exception ex) {
return -1 ;
SERVLET
* RetrieveServlet.java
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
import java.sql.* ;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.rmi.PortableRemoteObject;
// import login.ejb.*;
import beans.* ;
* @version
public class RetrieveServlet extends HttpServlet
private String statusStr = null;
/** Processes requests for both HTTP <code>GET</code> and <code>POST</code> methods.
* @param request servlet request
* @param response servlet response
protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException, InstantiationException,
SQLException, ClassNotFoundException, IllegalAccessException
HttpSession session = request.getSession();
String hpustaffIDVal = (String) session.getAttribute("hpustaffID");
String doctorpostCodeVal = request.getParameter("doctorpostCode");
String diseaseNameVal = request.getParameter("DiseaseName");
String buttonVal=request.getParameter("Button");
String responseTarget = null;
String diseaseName = null;
if (hpustaffIDVal == null){
responseTarget = new String("/accept.jsp");
request.setAttribute("Status", null);
else {
if (buttonVal.equals("Logout")) {
responseTarget = new String("/accept.jsp");
//request.setAttribute("Status", null);
session.invalidate();
else {
if( doctorpostCodeVal == null || diseaseNameVal == null ) {
//HttpSession session = request.getSession();
responseTarget = new String("/accept.jsp");
//request.setAttribute( "HPUStaffID", hpustaffIDVal ) ;
request.setAttribute("Status", "Please enter a valid doctorpostCode and Disease Name");
else if( doctorpostCodeVal.trim().equals("") || diseaseNameVal.trim().equals("") ) {
//HttpSession session = request.getSession();
responseTarget = new String("/accept.jsp");
//request.setAttribute( "HPUStaffID", hpustaffIDVal ) ;
request.setAttribute("Status", "Please enter a valid doctorpostCode and Disease Name");
else {
RetrieveBean rtBean = new RetrieveBean();
if (rtBean.isValiddoctorpostCode(doctorpostCodeVal)) {
diseaseName =rtBean.getDiseaseName(diseaseNameVal);
if (diseaseName==null){
responseTarget = new String("/retrieve.jsp");
request.setAttribute("Status", "DiseaseName is not correct. It does not have a corresponding disease entry");
} else {
int count = rtBean.getCount(doctorpostCodeVal, diseaseNameVal) ;
if (count>=0) {
responseTarget = new String("/retrieve.jsp");
request.setAttribute( "DoctorpostCode", doctorpostCodeVal ) ;
request.setAttribute("diseaseName", diseaseNameVal);
request.setAttribute( "Count", Integer.toString(count)) ;
request.setAttribute( "Status", "1") ;
else {
responseTarget = new String("/accept.jsp");
//request.setAttribute( "HPUStaffID", hpustaffIDVal ) ;
request.setAttribute("Status", "Retrieve Bean Instantiation Error");
} else {
responseTarget = new String("/accept.jsp");
request.setAttribute("Status", "Entered PostCode ID is not present in the GP database");
RequestDispatcher dispatcher = getServletContext().getRequestDispatcher( responseTarget );
dispatcher.forward( request, response );
/** Handles the HTTP <code>GET</code> method.
* @param request servlet request
* @param response servlet response
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException
try
processRequest(request, response);
catch( Exception e ) { e.printStackTrace();}
/** Handles the HTTP <code>POST</code> method.
* @param request servlet request
* @param response servlet response
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException
try
processRequest(request, response);
catch( Exception e ) { e.printStackTrace();}
JSP
<%@page import="Beanpackage.RetrieveBean" %>
<%@page errorPage="loginJSP.jsp"%>
<html>
<head><title>Post code search</title></head>
<body bgcolor="#ffffdd">
<%
String doctorpostCodeVal = request.getParameter("doctorpostCode");
//String hpustaffIdVal = (String) session.getAttribute("hpustaffID");
//if(session.getAttribute("hpustaffID") == nullll) {
// throw new Exception("Login error ");
%>
<%
String diseaseName = (String) request.getAttribute("DiseaseName");
String Query = (String) request.getAttribute("Query");
String hpustaffIDVal = (String) session.getAttribute("hpustaffID");
String statusVal = (String) request.getAttribute("Status");
String message = "Logged in as " + hpustaffIDVal;
%>
<center>
<h1>Data sharing project for the NHS</h1>
<h2><font color="#DC143C">Information Retrieval Screen</font></h2>
<h3><font color="blue"> <p> <%= message %> </font> </p> </h3>
<p> </p>
<form method="POST" action="RetrieveServlet">
<h1 align="center"><font color="FF7F50">Results table</font></h1>
<table border="1" cellspacing="">
<td> Disease name</td> <td><%= diseaseName %> </td>
</tr>
<tr>
<td> PostCode ID</td> <td><%= doctorpostCode %> </td>
</tr>
<tr>
<td> # of patients</td> <td><%= count %> </td>
</tr>
</table>

i dont get it?//request.setAttribute( "HPUStaffID", hpustaffIDVal ) ; request.setAttribute("Status", "Please enter a valid doctorpostCode and Disease Name"); } else if( doctorpostCodeVal.trim().equals("") || diseaseNameVal.trim().equals("") ) { //HttpSession session = request.getSession(); responseTarget = new String("/accept.jsp"); //request.setAttribute( "HPUStaffID", hpustaffIDVal ) ; request.setAttribute("Status", "Please enter a valid doctorpostCode and Disease Name"); } else { RetrieveBean rtBean = new RetrieveBean(); if (rtBean.isValiddoctorpostCode(doctorpostCodeVal)) { diseaseName =rtBean.getDiseaseName(diseaseNameVal); if (diseaseName==null){ responseTarget = new String("/retrieve.jsp"); request.setAttribute("Status", "DiseaseName is not correct. It does not have a corresponding disease entry"); } else { int count = rtBean.getCount(doctorpostCodeVal, diseaseNameVal) ; if (count>=0) { responseTarget = new String("/retrieve.jsp"); request.setAttribute( "DoctorpostCode", doctorpostCodeVal ) ; request.setAttribute("diseaseNamei am really stuck i hav responseTarget = new String("/accept.jsp"); //request.setAttribute("Status", null); session.invalidate(); } else { if( doctorpostCodeVal == null || diseaseNameVal == null ) { //HttpSession session = request.getSession(); responseTarget = new String("/accept.jsp"); //request.setAttribute( "HPUStaffID", hpustaffIDVal ) ; request.setAttribute("Status", "Please enter a valid doctorpostCode and Disease Name"); } else if( doctorpostCodeVal.trim().equals("") || diseaseNameVal.trim().equals("") ) { //HttpSession session = request.getSession(); responseTarget = new String("/accept.jsp"); //request.setAttribute( "HPUStaffID", hpustaffIDVal ) ; request.setAttribute("Status", "Please enter a valid doctorpostCode and Disease Name"); } else { RetrieveBean rtBean = new RetrieveBean(); if (rtBean.isValiddoctorpostCode(doctorpostCodeVal)) { diseaseName =rtBean.getDiseaseName(diseaseNameVal); if (diseaseName==null){ responseTarget = new String("/retrieve.jsp"); request.setAttribute("Status", "DiseaseName is not correct. It does not have a corresponding disease entry"); } else { int count = rtBean.getCount(doctorpostCodeVal, diseaseNameVal) ; if (count>=0) { responseTarget = new String("/retrieve.jsp"); request.setAttribute( "DoctorpostCode", doctorpostCodeVal ) ; request.setAttribute("diseaseName", diseaseNameVal); request.setAttribute( "Count", Integer.toString(count)) ; request.setAttribute( "Status", "1") ; } else { responseTarget = new String("/accept.jsp"); //request.setAttribute( "HPUStaffID", hpustaffIDVal ) ; request.setAttribute("Status", "Retrieve Bean Instantiation Error"); } } } else { responseTarget = new String("/accept.jsp"); request.setAttribute("Status", "Entered PostCode ID is not present in the GP database"); } } } } RequestDispatcher dispatcher = getServletContext().getRequestDispatcher( responseTarget ); dispatcher.forward( request, response ); } /** Handles the HTTP <code>GET</code> method. * @param request servlet request * @param response servlet response */ protected void doGet(HttpServletRequest request,//request.setAttribute( "HPUStaffID", hpustaffIDVal ) ; request.setAttribute("Status", "Please enter a valid doctorpostCode and Disease Name"); } else if( doctorpostCodeVal.trim().equals("") || diseaseNameVal.trim().equals("") ) { //HttpSession session = request.getSession(); responseTarget = new String("/accept.jsp"); //request.setAttribute( "HPUStaffID", hpustaffIDVal ) ; request.setAttribute("Status", "Please enter a valid doctorpostCode and Disease Name"); } else { RetrieveBean rtBean = new RetrieveBean(); if (rtBean.isValiddoctorpostCode(doctorpostCodeVal)) { diseaseName =rtBean.getDiseaseName(diseaseNameVal); if (diseaseName==null){ responseTarget = new String("/retrieve.jsp"); request.setAttribute("Status", "DiseaseName is not correct. It does not have a corresponding disease entry"); } else { int count = rtBean.getCount(doctorpostCodeVal, diseaseNameVal) ; if (count>=0) { responseTarget = new String("/retrieve.jsp"); request.setAttribute( "DoctorpostCode", doctorpostCodeVal ) ; request.setAttribute("diseaseNamei am really stuck i have pasted my code below in terms of bean, servlet and jsp. please could someone tell me where i am going wrong. I am totally new to this so really stuck. When i am deploying the application the page is being displayed however when entering fields of disease and postcode nothing is being displayed it just takes me to the same page as i am alreay on but the text changes to "welcome null". i need it to connect to my jsp. your help is appreciated! BEAN /* * RetrieveBean.java * * * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package beans ; import java.sql.*; import javax.sql.*; import java.util.*; public class RetrieveBean { public String doctorpostCodeVal; public String diseaseNameVal; //private Connection gp_conn = null, hpu_conn=null; private Statement gp_stmt ; private String statusStr = "" ; public RetrieveBean() throws InstantiationException, IllegalAccessException { try { Class.forName("com.mysql.jdbc.Driver").newInstance(); // gp_conn = HospitalConnection.getInstance().getGPConn(); // hpu_conn = HospitalConnection.getInstance().getHPUConn(); } catch(Exception e) { System.err.println("Exception: " + e.getMessage()); e.printStackTrace(); } } public void closeConnection() { try { gp_stmt.close() ; } catch( SQLException e ) { System.err.println( e.getMessage()) ; e.printStackTrace(); } } public String getStatus() { return statusStr ; } public boolean isValiddoctorpostCode(String doctorpostCode) { String strQuery = "select distinct PostCode d from doctor where PostCode='" + doctorpostCode + "'"; String str = null; ResultSet rs; try { rs = gp_stmt.executeQuery(strQuery); while ( rs.next() ) { str= rs.getString("doctorpostCode"); return true; } } catch (SQLException ex) { ex.printStackTrace(); } return false; } public String getDiseaseName(String diseaseName) { String strQuery = "select Disease_Name from disease where Disease_Name ='" + diseaseName + "'"; String str = null; ResultSet rs; try { rs = gp_stmt.executeQuery(strQuery); while ( rs.next() ) { str= rs.getString("diseaseName"); return str; } } catch (SQLException ex) { ex.printStackTrace(); } str = null; return str; } public int getCount( String givenDoctorpostCode, String givendiseaseName ) { String strQuery, strCount="0"; int count = 0; //select count(*) ct from Patient p, Consultation c, Diagnosis d where p.Post_Code= 'E176HR' // and p.Patient_No=c.Patient_No AND c.Consultation_No=d.Consultation_No and d.Diagnosed_disease='malaria' try { strQuery = "select Post_Code from doctor where PostCode='"+ givenDoctorpostCode + "'"; ResultSet rs = gp_stmt.executeQuery( strQuery ) ; while ( rs.next() ) strCount = rs.getString("givenDoctorpostCode"); String[] postcode_list = new String[Integer.valueOf(strCount)]; int i = 0; strQuery = "select PostCode pc from PostCode where doctor='"+ givenDoctorpostCode + "'"; rs = gp_stmt.executeQuery( strQuery ) ; while ( rs.next() ) postcode_list[i++] = rs.getString("givenDoctorpostCode"); for (i =0; i<postcode_list.length;i++) { strQuery = "Select patient.Patient_No, patient.Surname, patient.FirstName, patient.DOB, patient.House_No, patient.Street, patient.Post_Code, doctor.PostCode, doctor.Doctor_Id, consultation.Consultation_No, diagnosis.Diagnosed_disease, disease.Disease_Name from patient, doctor, consultation, diagnosis, disease where consultation.Consultation_No = diagnosis.Consultation_No and patient.Patient_No = consultation.Patient_No and doctor.Doctor_Id = Consultation.Doctor_Id and diagnosis.Diagnosed_disease = disease.Disease_code and disease.Disease_Name = '"+diseaseNameVal+"'and doctor.PostCode = '"+doctorpostCodeVal+"'" ; rs = gp_stmt.executeQuery( strQuery ) ; while ( rs.next() ){ strCount= rs.getString("ct"); Integer temp = (Integer.valueOf(strCount)); count = count + temp.intValue(); } } return count ; } catch (Exception ex) { return -1 ; } } } SERVLET /* * RetrieveServlet.java * * */ import java.io.*; import javax.servlet.*; import javax.servlet.http.*; import java.sql.* ; import javax.naming.Context; import javax.naming.InitialContext; import javax.rmi.PortableRemoteObject; // import login.ejb.*; import beans.* ; /** * * * @version */ public class RetrieveServlet extends HttpServlet { private String statusStr = null; /** Processes requests for both HTTP ><code>GET</code> and <code>POST</code> methods. * @param request servlet request * @param response servlet response */ protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException, InstantiationException, SQLException, ClassNotFoundException, IllegalAccessException { HttpSession session = request.getSession(); String hpustaffIDVal = (String) session.getAttribute("hpustaffID"); String doctorpostCodeVal = request.getParameter("doctorpostCode"); String diseaseNameVal = request.getParameter("DiseaseName"); String buttonVal=request.getParameter("Button"); String responseTarget = null; String diseaseName = null; if (hpustaffIDVal == null){ responseTarget = new String("/accept.jsp"); request.setAttribute("Status", null); } else { if (buttonVal.equals("Logout")) { responseTarget = new String("/accept.jsp"); //request.setAttribute("Status", null); session.invalidate(); } else { if( doctorpostCodeVal == null || diseaseNameVal == null ) { //HttpSession session = request.getSession(); responseTarget = new String("/accept.jsp"); //request.setAttribute( "HPUStaffID", hpustaffIDVal ) ; request.setAttribute("Status", "Please enter a valid doctorpostCode and Disease Name"); } else if( doctorpostCodeVal.trim().equals("") || diseaseNameVal.trim().equals("") ) { //HttpSession session = request.getSession(); responseTarget = new String("/accept.jsp"); //request.setAttribute( "HPUStaffID", hpustaffIDVal ) ; request.setAttribute("Status", "Please enter a valid doctorpostCode and Disease Name"); } else { RetrieveBean rtBean = new RetrieveBean(); if (rtBean.isValiddoctorpostCode(doctorpostCodeVal)) { diseaseName =rtBean.getDiseaseName(diseaseNameVal); if (diseaseName==null){ responseTarget = new String("/retrieve.jsp"); request.setAttribute("Status", "DiseaseName is not correct. It does not have a corresponding disease entry"); } else { int count = rtBean.getCount(doctorpostCodeVal, diseaseNameVal) ; if (count>=0) { responseTarget = new String("/retrieve.jsp"); request.setAttribute( "DoctorpostCode", doctorpostCodeVal ) ; request.setAttribute("diseaseName", diseaseNameVal); request.setAttribute( "Count", Integer.toString(count)) ; request.setAttribute( "Status", "1") ; } else { responseTarget = new String("/accept.jsp"); //request.setAttribute( "HPUStaffID", hpustaffIDVal ) ; request.setAttribute("Status", "Retrieve Bean Instantiation Error"); } } } else { responseTarget = new String("/accept.jsp"); request.setAttribute("Status", "Entered PostCode ID is not present in the GP database"); } } } } RequestDispatcher dispatcher = getServletContext().getRequestDispatcher( responseTarget ); dispatcher.forward( request, response ); } /** Handles the HTTP <code>GET</code> method. * @param request servlet request * @param response servlet response */ protected void doGet(HttpServletRequest request,) ct from Patient p, Consultation c, Diagnosis d where p.Post_Code= 'E176HR' // and p.Patient_No=c.Patient_No AND c.Consultation_No=d.Consultation_No and d.Diagnosed_disease='malaria' try { strQuery = "select Post_Code from doctor where PostCode='"+ givenDoctorpostCode + "'"; ResultSet rs = gp_stmt.executeQuery( strQuery ) ; while ( rs.next() ) strCount = rs.getString("givenDoctorpostCode"); String[] postcode_list = new String[Integer.valueOf(strCount)]; int i = 0; strQuery = "select PostCode pc from PostCode where doctor='"+ givenDoctorpostCode + "'"; rs = gp_stmt.executeQuery( strQuery ) ; while ( rs.next() ) postcode_list[i++] = rs.getString("givenDoctorpostCode"); for (i =0; i<postcode_list.length;i++) { strQuery = "Select patient.Patient_No, patient.Surname, patient.FirstName, patient.DOB, patient.House_No, patient.Street, patient.Post_Code, doctor.PostCode, doctor.Doctor_Id, consultation.Consultation_No, diagnosis.Diagnosed_disease, disease.Disease_Name from patient, doctor, consultation, diagnosis, disease where consultation.Consultation_No = diagnosis.Consultation_No and patient.Patient_No = consultation.Patient_No and doctor.Doctor_Id = Consultation.Doctor_Id and diagnosis.Diagnosed_disease = disease.Disease_code and disease.Disease_Name = '"+diseaseNameVal+"'and doctor.PostCode = '"+doctorpostCodeVal+"'" ; rs = gp_stmt.executeQuery( strQuery ) ; while ( rs.next() ){ strCount= rs.getString("ct"); Integer temp = (Integer.valueOf(strCount)); count = count + temp.intValue(); } } return count ; } catch (Exception ex) { return -1 ; } } } SERVLET /* * RetrieveServlet.java * * */ import java.io.*; import javax.servlet.*; import javax.servlet.http.*; import java.sql.* ; import javax.naming.Context; import javax.naming.InitialContext; import javax.rmi.PortableRemoteObject; // import login.ejb.*; import beans.* ; /** * * * @version */ public class RetrieveServlet extends HttpServlet { private String statusStr = null; /** Processes requests for both HTTP ><code>GET</code> and <code>POST</code> methods. * @param request servlet request * @param response servlet response */ protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException, InstantiationException, SQLException, ClassNotFoundException, IllegalAccessException { HttpSession session = request.getSession(); String hpustaffIDVal = (String) session.getAttribute("hpustaffID"); String doctorpostCodeVal = request.getParameter("doctorpostCode"); String diseaseNameVal = request.getParameter("DiseaseName"); String buttonVal=request.getParameter("Button"); String responseTarget = null; String diseaseName = null; if (hpustaffIDVal == null){ responseTarget = new String("/accept.jsp"); request.setAttribute("Status", null); } else { if (buttonVal.equals("Logout")) { responseTarget = new String("/accept.jsp"); //request.setAttribute("Status", null); session.invalidate(); } else { if( doctorpostCodeVal == null || diseaseNameVal == null ) { //HttpSession session = request.getSession(); responseTarget = new String("/accept.jsp"); //request.setAttribute( "HPUStaffID", hpustaffIDVal ) ; request.setAttribute("Status", "Please enter a valid doctorpostCode and Disease Name"); } else if( doctorpostCodeVal.trim().equals("") || diseaseNameVal.trim().equals("") ) { //HttpSession session = request.getSession(); responseTarget = new String("/accept.jsp"); //request.setAttribute( "HPUStaffID", hpustaffIDVal ) ; request.setAttribute("Status", "Please enter a valid doctorpostCode and Disease Name"); } else { RetrieveBean rtBean = new RetrieveBean(); if (rtBean.isValiddoctorpostCode(doctorpostCodeVal)) { diseaseName =rtBean.getDiseaseName(diseaseNameVal); if (diseaseName==null){ responseTarget = new String("/retrieve.jsp"); request.setAttribute("Status", "DiseaseName is not correct. It does not have a corresponding disease entry"); } else { int count = rtBean.getCount(doctorpostCodeVal, diseaseNameVal) ; if (count>=0) { responseTarget = new String("/retrieve.jsp"); request.setAttribute( "DoctorpostCode", doctorpostCodeVal ) ; request.setAttribute("diseaseNamei am really stuck i have pasted my code below in terms of bean, servlet and jsp. please could someone tell me where i am going wrong. I am totally new to this so really stuck. When i am deploying the application the page is being displayed however when entering fields of disease and postcode nothing is being displayed it just takes me to the same page as i am alreay on but the text changes to "welcome null". i need it to connect to my jsp. your help is appreciated! BEAN /* * RetrieveBean.java * * * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package beans ; import java.sql.*; import javax.sql.*; import java.util.*; public class RetrieveBean { public String doctorpostCodeVal; public String diseaseNameVal; //private Connection gp_conn = null, hpu_conn=null; private Statement gp_stmt ; private String statusStr = "" ; public RetrieveBean() throws InstantiationException, IllegalAccessException { try { Class.forName("com.mysql.jdbc.Driver").newInstance(); // gp_conn = HospitalConnection.getInstance().getGPConn(); // hpu_conn = HospitalConnection.getInstance().getHPUConn(); } catch(Exception e) { System.err.println("Exception: " + e.getMessage()); e.printStackTrace(); } } public void closeConnection() { try { gp_stmt.close() ; } catch( SQLException e ) { System.err.println( e.getMessage()) ; e.printStackTrace(); } } public String getStatus() { return statusStr ; } public boolean isValiddoctorpostCode(String doctorpostCode) { String strQuery = "select distinct PostCode d from doctor where PostCode='" + doctorpostCode + "'"; String str = null; ResultSet rs; try { rs = gp_stmt.executeQuery(strQuery); while ( rs.next() ) { str= rs.getString("doctorpostCode"); return true; } } catch (SQLException ex) { ex.printStackTrace(); } return false; } public String getDiseaseName(String diseaseName) { String strQuery = "select Disease_Name from disease where Disease_Name ='" + diseaseNamection.getInstance().getGPConn(); // hpu_conn = HospitalConnection.getInstance().getHPUConn(); } catch(Exception e) { System.err.println("Exception: " + e.getMessage()); e.printStackTrace(); } } public void closeConnection() { try { gp_stmt.close() ; } catch( SQLException e ) { System.err.println( e.getMessage()) ; e.printStackTrace(); } } public String getStatus() { return statusStr ; } public boolean isValiddoctorpostCode(String doctorpostCode) { String strQuery = "select distinct PostCode d from doctor where PostCode='" + doctorpostCode + "'"; String str = null; ResultSet rs; try { rs = gp_stmt.executeQuery(strQuery); while ( rs.next() ) { str= rs.getString("doctorpostCode"); return true; } } catch (SQLException ex) { ex.printStackTrace(); } return false; } public String getDiseaseName(String diseaseName) { String strQuery = "select Disease_Name from disease where Disease_Name ='" + diseaseName + "'"; String str = null; ResultSet rs; try { rs = gp_stmt.executeQuery(strQuery); while ( rs.next() ) { str= rs.getString("diseaseName"); return str; } } catch (SQLException ex) { ex.printStackTrace(); } str = null; return str; } public int getCount( String givenDoctorpostCode, String givendiseaseName ) { String strQuery, strCount="0"; int count = 0; //select count(*) ct from Patient p, Consultation c, Diagnosis d where p.Post_Code= 'E176HR' // and p.Patient_No=c.Patient_No AND c.Consultation_No=d.Consultation_No and d.Diagnosed_disease='malaria' try { strQuery = "select Post_Code from doctor where PostCode='"+ givenDoctorpostCode + "'"; ResultSet rs = gp_stmt.executeQuery( strQuery ) ; while ( rs.next() ) strCount = rs.getString("givenDoctorpostCode"); String[] postcode_list = new String[Integer.valueOf(strCount)]; int i = 0; strQuery = "select PostCode pc from PostCode where doctor='"+ givenDoctorpostCode + "'"; rs = gp_stmt.executeQuery( strQuery ) ; while ( rs.next() ) postcode_list[i++] = rs.getString("givenDoctorpostCode"); for (i =0; i<postcode_list.length;i++) { strQuery = "Select patient.Patient_No, patient.Surname, patient.FirstName, patient.DOB, patient.House_No, patient.Street, patient.Post_Code, doctor.PostCode, doctor.Doctor_Id, consultation.Consultation_No, diagnosis.Diagnosed_disease, disease.Disease_Name from patient, doctor, consultation, diagnosis, disease where consultation.Consultation_No = diagnosis.Consultation_No and patient.Patient_No = consultation.Patient_No and doctor.Doctor_Id = Consultation.Doctor_Id and diagnosis.Diagnosed_disease = disease.Disease_code and disease.Disease_Name = '"+diseaseNameVal+"'and doctor.PostCode = '"+doctorpostCodeVal+"'" ; rs = gp_stmt.executeQuery( strQuery ) ; while ( rs.next() ){ strCount= rs.getString("ct"); Integer temp = (Integer.valueOf(strCount)); count = count + temp.intValue(); } } return count ; } catch (Exception ex) { return -1 ; } } } SERVLET /* * RetrieveServlet.java * * */ import java.io.*; import javax.servlet.*; import javax.servlet.http.*; import java.sql.* ; import javax.naming.Context; import javax.naming.InitialContext; import javax.rmi.PortableRemoteObject; // import login.ejb.*; import beans.* ; /** * * * @version */ public class RetrieveServlet extends HttpServlet { private String statusStr = null; /** Processes requests for both HTTP ><code>GET</code> and <code>POST</code> methods. * @param request servlet request * @param response servlet response */ protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException, InstantiationException, SQLException, ClassNotFoundException, IllegalAccessException { HttpSession session = request.getSession(); String hpustaffIDVal = (String) session.getAttribute("hpustaffID"); String doctorpostCodeVal = request.getParameter("doctorpostCode"); String diseaseNameVal = request.getParameter("DiseaseName"); String buttonVal=request.getParameter("Button"); String responseTarget = null; String diseaseName = null; if (hpustaffIDVal == null){ responseTarget = new String("/accept.jsp"); request.setAttribute("Status", null); } else { if (buttonVal.equals("Logout")) { responseTarget = new String("/accept.jsp"); //request.setAttribute("Status", null); session.invalidate(); } else { if( doctorpostCodeVal == null || diseaseNameVal == null ) { //HttpSession session = request.getSession(); responseTarget = new String("/accept.jsp"); //request.setAttribute( "HPUStaffID", hpustaffIDVal ) ; request.setAttribute("Status", "Please enter a valid doctorpostCode and Disease Name"); } else if( doctorpostCodeVal.trim().equals("") || diseaseNameVal.trim().equals("") ) { //HttpSession session = request.getSession(); responseTarget = new String("/accept.jsp"); //request.setAttribute( "HPUStaffID", hpustaffIDVal ) ; request.setAttribute("Status", "Please enter a valid doctorpostCode and Disease Name"); } else { RetrieveBean rtBean = new RetrieveBean(); if (rtBean.isValiddoctorpostCode(doctorpostCodeVal)) { diseaseName =rtBean.getDiseaseName(diseaseNameVal); if (diseaseName==null){ responseTarget = new String("/retrieve.jsp"); request.setAttribute("Status", "DiseaseName is not correct. It does not have a corresponding disease entry"); } else { int count = rtBean.getCount(doctorpostCodeVal, diseaseNameVal) ; if (count>=0) { responseTarget = new String("/retrieve.jsp"); request.setAttribute( "DoctorpostCode", doctorpostCodeVal ) ; request.setAttribute("diseaseName", diseaseNameVal); request.setAttribute( "Count", Integer.toString(count)) ; request.setAttribute( "Status", "1") ; } else { responseTarget = new String("/accept.jsp"); //request.setAttribute( "HPUStaffID", hpustaffIDVal ) ; request.setAttribute("Status", "Retrieve Bean Instantiation Error"); } } } else { responseTarget = new String("/accept.jsp"); request.setAttribute("Status", "Entered PostCode ID is not present in the GP database"); } } } } RequestDispatcher dispatcher = getServletContext().getRequestDispatcher( responseTarget ); dispatcher.forward( request, response ); } /** Handles the HTTP <code>GET</code> method. * @param request servlet request * @param response servlet response */ protected void doGet(HttpServletRequest request,//request.setAttribute( "HPUStaffID", hpustaffIDVal ) ; request.setAttribute("Status", "Please enter a valid doctorpostCode and Disease Name"); } else if( doctorpostCodeVal.trim().equals("") || diseaseNameVal.trim().equals("") ) { //HttpSession session = request.getSession(); responseTarget = new String("/accept.jsp"); //request.setAttribute( "HPUStaffID", hpustaffIDVal ) ; request.setAttribute("Status", "Please enter a valid doctorpostCode and Disease Name"); } else { RetrieveBean rtBean = new RetrieveBean(); if (rtBean.isValiddoctorpostCode(doctorpostCodeVal)) { diseaseName =rtBean.getDiseaseName(diseaseNameVal); if (diseaseName==null){ responseTarget = new String("/retrieve.jsp"); request.setAttribute("Status", "DiseaseName is not correct. It does not have a corresponding disease entry"); } else { int count = rtBean.getCount(doctorpostCodeVal, diseaseNameVal) ; if (count>=0) { responseTarget = new String("/retrieve.jsp"); request.setAttribute( "DoctorpostCode", doctorpostCodeVal ) ; request.setAttribute("diseaseNamei am really stuck i have pasted my code below in terms of bean, servlet and jsp. please could someone tell me where i am going wrong. I am totally new to this so really stuck. When i am deploying the application the page is being displayed however when entering fields of disease and postcode nothing is being displayed it just takes me to the same page as i am alreay on but the text changes to "welcome null". i need it to connect to my jsp. your help is appreciated! BEAN /* * RetrieveBean.java * * * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package beans ; import java.sql.*; import javax.sql.*; import java.util.*; public class RetrieveBean { public String doctorpostCodeVal; public String diseaseNameVal; //private Connection gp_conn = null, hpu_conn=null; private Statement gp_stmt ; private String statusStr = "" ; public RetrieveBean() throws InstantiationException, IllegalAccessException { try { Class.forName("com.mysql.jdbc.Driver").newInstance(); // gp_conn = HospitalConnection.getInstance().getGPConn(); // hpu_conn = HospitalConnection.getInstance().getHPUConn(); } catch(Exception e) { System.err.println("Exception: " + e.getMessage()); e.printStackTrace(); } } public void closeConnection() { try { gp_stmt.close() ; } catch( SQLException e ) { System.err.println( e.getMessage()) ; e.printStackTrace(); } } public String getStatus() { return statusStr ; } public boolean isValiddoctorpostCode(String doctorpostCode) { String strQuery = "select distinct PostCode d from doctor where PostCode='" + doctorpostCode + "'"; String str = null; ResultSet rs; try { rs = gp_stmt.executeQuery(strQuery); while ( rs.next() ) { str= rs.getString("doctorpostCode"); return true; } } catch (SQLException ex) { ex.printStackTrace(); } return false; } public String getDiseaseName(String diseaseName) { String strQuery = "select Disease_Name from disease where Disease_Name ='" + diseaseName + "'"; String str = null; ResultSet rs; try { rs = gp_stmt.executeQuery(strQuery); while ( rs.next() ) { str= rs.getString("diseaseName"); return str; } } catch (SQLException ex) { ex.printStackTrace(); } str = null; return str; } public int getCount( String givenDoctorpostCode, String givendiseaseName ) { String strQuery, strCount="0"; int count = 0; //select count(*) ct from Patient p, Consultation c, Diagnosis d where p.Post_Code= 'E176HR' // and p.Patient_No=c.Patient_No AND c.Consultation_No=d.Consultation_No and d.Diagnosed_disease='malaria' try { strQuery = "select Post_Code from doctor where PostCode='"+ givenDoctorpostCode + "'"; ResultSet rs = gp_stmt.executeQuery( strQuery ) ; while ( rs.next() ) strCount = rs.getString("givenDoctorpostCode"); String[] postcode_list = new String[Integer.valueOf(strCount)]; int i = 0; strQuery = "select PostCode pc from PostCode where doctor='"+ givenDoctorpostCode + "'"; rs = gp_stmt.executeQuery( strQuery ) ; while ( rs.next() ) postcode_list[i++] = rs.getString("givenDoctorpostCode"); for (i =0; i<postcode_list.length;i++) { strQuery = "Select patient.Patient_No, patient.Surname, patient.FirstName, patient.DOB, patient.House_No, patient.Street, patient.Post_Code, doctor.PostCode, doctor.Doctor_Id, consultation.Consultation_No, diagnosis.Diagnosed_disease, disease.Disease_Name from patient, doctor, consultation, diagnosis, disease where consultation.Consultation_No = diagnosis.Consultation_No and patient.Patient_No = consultation.Patient_No and doctor.Doctor_Id = Consultation.Doctor_Id and diagnosis.Diagnosed_disease = disease.Disease_code and disease.Disease_Name = '"+diseaseNameVal+"'and doctor.PostCode = '"+doctorpostCodeVal+"'" ; rs = gp_stmt.executeQuery( strQuery ) ; while ( rs.next() ){ strCount= rs.getString("ct"); Integer temp = (Integer.valueOf(strCount)); count = count + temp.intValue(); } } return count ; } catch (Exception ex) { return -1 ; } } } SERVLET /* * RetrieveServlet.java * * */ import java.io.*; import javax.servlet.*; import javax.servlet.http.*; import java.sql.* ; import javax.naming.Context; import javax.naming.InitialContext; import javax.rmi.PortableRemoteObject; // import login.ejb.*; import beans.* ; /** * * * @version */ public class RetrieveServlet extends HttpServlet { private String statusStr = null; /** Processes requests for both HTTP ><code>GET</code> and <code>POST</code> methods. * @param request servlet request * @param response servlet response */ protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException, InstantiationException, SQLException, ClassNotFoundException, IllegalAccessException { HttpSession session = request.getSession(); String hpustaffIDVal = (String) session.getAttribute("hpustaffID"); String doctorpostCodeVal = request.getParameter("doctorpostCode"); String diseaseNameVal = request.getParameter("DiseaseName"); String buttonVal=request.getParameter("Button"); String responseTarget = null; String diseaseName = null; if (hpustaffIDVal == null){ responseTarget = new String("/accept.jsp"); request.setAttribute("Status", null); } else { if (buttonVal.equals("Logout")) { responseTarget = new String("/accept.jsp"); //request.setAttribute("Status", null); session.invalidate(); } else { if( doctorpostCodeVal == null || diseaseNameVal == null ) { //HttpSession session = request.getSession(); responseTarget = new String("                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • 3GS stuck in recovery mode

    I bought 16G 3GS last week. This morning I tried to update from 3.0.1 to 3.1. Phone is now stuck in recovery mode. I followed all the steps to fix it, diff PC, USB port, uninstall etc It still wont get out of recovery mode or update. Its now useless. Is anyone able to help me please? Tried calling Apple, HA! No one there

    Hi Jim, thanks for your response. I have tried this. But the only thing the phone will display is the usb cable and the itunes icon, i hold down the off button etc, no slide comes up but it does turn off, when it restarts it goes straight to the usb & itunes icon again. Ive also tried holding down the home key and power button, it turns off, back on again, the apple comes up, I release them, and it goes back to the usb and itunes icon again. I followed all the steps in the apple (so called help) files, nothing. Cant even talk to anyone at apple, no online help available except from nice users like yourself. VERY slack Apple. I dont know what else to do. Are iPhones CRAP or am I just unlucky? Ive spent 6 hours following there crappy steps. Im goin nuts. Multi billion dollar companies screwin the little guy again! Any other suggestions I will try also. Thanks again for your response, anything else I can do? or maybe I am stuck with a paperweight too.

  • New G5 Stuck in some sort of loop!

    Everything worked fine for about 3 weeks on my new G5 Quad. Then one day I start up and everything boots normally, but I'm stuck in something that sounds similar to the Finder loop. My desktop looks normal...but I can't open any files and app's...when I try...everything disappears except the wallpaper, and the toolbar at the tops flashes for several seconds...like its in some sort of loop before opening up the finder window. This happens everytime I click on something...effectively making my computer useless.
    It reminds me of some sort of hardware problem...so I took everthing out 1 by 1, until eventually it only had what came stock...512 MB RAM and the 1 hard drive...same problem...so its not peripherals. Did hardware test...everything passed. Reset PRAM and PMU. Same problem.
    Then I tried to boot off of Tiger DVD...system crashed after I selected language...not good. Has done the repeatedly so I can't repair any permission with disk utility...tried to boot in safe mode...didn't work...took me to a blank prompt that was unresponsive.
    I'm at a total loss...Thanks for any help.

    It wouldn't even let me choose disk utility...as soon as I selected my language (1st step)...it shuts down. I do have a second drive...but unplugged it while troubleshooting to put the machine back to its initial state (yeah...like it was 3 weeks ago when it was brand new)...no...this looks like a hardware malfunction...almost like it'll boot up fine but if you require it do any work (i.e computations...like open an app)...it stops itself from goin any further...i'm wondering if this is fan/heat sensor related.
    btw-are there actually any G5's out there that don't crash all the time? If so, does that imply that some just roll off the line bad?

  • Adobe Cloud membership - I am stuck in the loop of Licensing VERY Frustrating!!!

    I have an Adobe Cloud membership - I am stuck in the loop of Licensing as well VERY Frustrating - I have a project due and have been troubleshooting for days -
    Un Installing - Re installing - NIGHTMARE  - Please someone help me!!! Thanks in advance -

    What happens when you enter your Adobe ID tied to your subscription?

  • Adobe Cloud Update stuck at 99%

    My Adobe Cloud update for After Effects CC 2014 has been stuck at 99% for about 20 minutes. I have a job I need to get out right away. Anyone have any ideas? Would really appreciate any help... thank you!

    After Effects
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html#TroubleshootUpda…
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6

  • Application stuck under menu toolbar

    An application I'm running (Filezilla FTP client) is stuck under the mac menu toolbar. I can't grab the toolbar of the application to move it or access what I need to access. I've researched this issue and other people have had the same problem, but none of their solutions have worked for me. I've tried changing the resolution of my screen, disconnecting my dual monitor, "zoom" is not available in the program I'm working with, and I've tried a multitude of expose/spaces/random key commands to no avail. Any other ideas?
    Using 10.9.5

    I can't see from your screenshot if there available screen space around the window. You could try dragging the window down from one of the bottom edge - making it smaller first if necessary (when the cursor is near the edge it has double arrow that indicates changing the window size), then make sure that your mouse is enough inside the window that the cursor is a normal one-arrow and drag it down. Repeat if necessary until the title bar reappears.

  • Need help with Sharepoint foundation web application stuck on "STOPPING" error job-service-instance-GUID Number already exists

    Hi All,
         I cant get to stop SharePoint foundation web app service. Its stuck on status stopping
    I have tried the following:
    reset IIS
    restarted the Timer Service
    When I try to use powershell command to stop I get the following error:
    Can anyone who went through this help PLEASE
    Stop-SPServiceInstance : An object of the type
    Microsoft.SharePoint.Administration.SPServiceInstanceJobDefinition named
    "job-service-instance-1ff39eb2-12d2-457d-a749-265e350eb1b1" already exists
    under the parent Microsoft.SharePoint.Administration.SPTimerService named
    "SPTimerV4". Rename your object or delete the existing object.
    At line:1 char:127
    + ... pplication"} | Stop-SPServiceInstance
    + ~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidData: (Microsoft.Share...ServiceInstance:
    SPCmdletStopServiceInstance) [Stop-SPServiceInstance], SPDuplicateObjectEx
    ception
    + FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletStopServ
    iceInstance

    Hi,
    It seems that the issue is in the timer job definition for executing this operation.
    My suggestion is to start the service again and delete the job definition from the error and again try to stop it.
    This might be helpful:
    http://sharepoint.stackexchange.com/questions/22368/is-there-a-powershell-cmdlet-to-delete-a-timer-job 
    I had a lot of issues in the past when try to stop this instance after the Web apps are provisioned.
    As general rule now If I have multi-server Farm topology that has servers that should not serve Web App requests I turn off the service prior to provisioning any Web Apps in the Farm. 
    BR,
    Ivan

  • Help !!! freeze and stuck on grey screen, difficult to reboot, here is my EtreCheck report

    Help !!! I experienced more and more issues since I upgraded to mavericks and i brought my MBP 15" (from 2011, out of warranty) to the Apple genius bar a couple of days after my computer started to freeze and crash on a grey screen with less and less possibility to reboot it (tried all advices i could find on the forums to reboot in other ways, etc. ). The overnight tests at Apple gave nothing, they just decided to reinitiate the software and concluded that the problem was solved.
    But the problem happened again: when i reloaded my backup from Time Machine, i could run the whole process till the end then when I was asked to restart, I couldn’t open the finder, my screen was stuck on a light grey.
    I could reboot it (always in maintaining the off button to stop the machine or in using the single mode) but it’s non stable, after too many manipulations, the screen freezes or divides in 2 parts with lines, etc. And I have to try again different ways to reboot…
    I took a new appointment to the Apple Genius bar, but in the mean time, I tried to repair the authorizations, and I have to say that the list is really long, even if I did the operation more 3 times…
    I think there is a software conflict somewhere and find the possibility to check the system with EtreCheck (thanks! I will also bring this paper to the Genius bar technician).
    Please, would there be someone who could read this information and gives me some advices and opinion on what could be problematic, what to do etc.
    In end, what is very weird to me:
    I could read on this forum that “startup items” are no more necessary since OS 10.4. I tried to delete the ones that appear here in library/startupitems, and found another one which is not mentioned in this EtreCheck list : startouc
    Also when I tried to delete those items, it was refused by the finder with the message saying that this items are in use…
    Another point: I uninstalled the application Chiavetta Internet 42 a week ago when I started to have the problems. I was in Italy and this is a usb key with pin for internet. At the moment thought about a possible conflict with the key and deleted every item concerning this installation. This is because I don’t understand that it appears now in the “User login Items”.
    Thank you so much in advance
    Here is the EtreCheck report:
    Hardware Information:
                MacBook Pro (15-inch, Early 2011)
                MacBook Pro - model: MacBookPro8,2
                1 2 GHz Intel Core i7 CPU: 4 cores
                8 GB RAM
    Video Information:
                Intel HD Graphics 3000 - VRAM: 512 MB
                AMD Radeon HD 6490M - VRAM: 256 MB
    System Software:
                OS X 10.9.2 (13C1021) - Uptime: 0 days 1:42:38
    Disk Information:
                Hitachi HTS545050B9A302 disk0 : (500,11 GB)
                            EFI (disk0s1) <not mounted>: 209,7 MB
                      Macintosh HD (disk0s2) / [Startup]: 499,25 GB (219,23 GB free)
                            Recovery HD (disk0s3) <not mounted>: 650 MB
                MATSHITADVD-R   UJ-8A8 
    USB Information:
                Apple Inc. FaceTime HD Camera (Built-in)
                Apple Inc. BRCM2070 Hub
                            Apple Inc. Bluetooth USB Host Controller
                Apple Inc. Apple Internal Keyboard / Trackpad
                Apple Computer, Inc. IR Receiver
    Thunderbolt Information:
                Apple Inc. thunderbolt_bus
    Gatekeeper:
                Mac App Store and identified developers
    Kernel Extensions:
                [not loaded]            com.MBB.driver.MBBACMData (5.00.02) Support
                [not loaded]            com.MBB.driver.MBBActivateDriver (1.0.14) Support
                [not loaded]            com.MBB.driver.MBBEthernetData (2.00.05) Support
                [not loaded]            com.palm.ClassicNotSeizeDriver (3.1) Support
                [not loaded]            com.wdc.driver.1394HP (1.0.9) Support
                [not loaded]            com.wdc.driver.USBHP (1.0.11) Support
    Launch Daemons:
                [failed]            com.google.GoogleML.plist Support
                [failed]            com.google.keystone.daemon.plist Support
    Launch Agents:
                [loaded]            com.hp.help.tocgenerator.plist Support
    User Launch Agents:
                [loaded]            com.iLike.Agent.plist Support
    User Login Items:
                Transport Monitor
                Firefox
                My Day
                Chiavetta Internet 42
                GoogleSoftwareUpdateAgent
    Internet Plug-ins:
                Unity Web Player: Version: UnityPlayer version 4.2.1f4 - SDK 10.6 Support
                QuickTime Plugin: Version: 7.7.3
                Default Browser: Version: 537 - SDK 10.9
                OfficeLiveBrowserPlugin: Version: 12.3.6 Support
                Google Earth Web Plug-in: Version: 7.1 Support
                Mozillaplug: Version: 1.0
                Silverlight: Version: 5.1.20913.0 - SDK 10.6 Support
                DirectorShockwave: Version: 12.0.5r146 - SDK 10.6 Support
                iPhotoPhotocast: Version: 7.0 - SDK 10.7
    Safari Extensions:
                Amazon Shopping Assistant: Version: 1.1
                Searchme: Version: 1.3
                Ebay Shopping Assistant: Version: 1.1
    Audio Plug-ins:
                BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
                AirPlay: Version: 2.0 - SDK 10.9
                AppleAVBAudio: Version: 203.2 - SDK 10.9
                iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
                Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User iTunes Plug-ins:
                iLike: Version: 1.0 Support
                PPC Bundle: Version: (null) Support
                iLike Bundle: Version: (null) Support
                Tiger Bundle: Version: (null) Support
                TuneUp Visualizer: Version: (null) Support
    3rd Party Preference Panes:
                None
    Time Machine:
                Skip System Files: NO
                Mobile backups: OFF
                Auto backup: NO - Auto backup turned off
                Volumes being backed up:
                            Macintosh HD: Disk size: 464.96 GB Disk used: 260.79 GB
                Destinations:
                            EVE TIME MACHINE & PHOTOS [Local] (Last used)
                            Total size: 2 
                            Total number of backups: 22
                            Oldest backup: 2013-11-19 10:49:38 +0000
                            Last backup: 2014-05-07 09:35:48 +0000
                            Size of backup disk: Excellent
                                        Backup size 2  > (Disk size 464.96 GB X 3)
                            copy Time Machine + photos (22 Nov 2013) [Local]
                            Total size: 931.36 GB
                            Total number of backups: 5
                            Oldest backup: 2013-11-23 04:29:31 +0000
                            Last backup: 2014-03-26 20:03:02 +0000
                            Size of backup disk: Adequate
                                        Backup size 931.36 GB > (Disk used 260.79 GB X 3)
                Time Machine details may not be accurate.
                All volumes being backed up may not be listed.
    Top Processes by CPU:
                     5%            firefox
                     3%            WindowServer
                     0%            Microsoft Word
                     0%            launchservicesd
                     0%            fontd
    Top Processes by Memory:
                606 MB            com.apple.IconServicesAgent
                401 MB            firefox
                238 MB            Finder
                221 MB            mds_stores
                123 MB            Microsoft Word
    Virtual Memory Information:
                3.68 GB            Free RAM
                2.57 GB            Active RAM
                492 MB            Inactive RAM
                1.26 GB            Wired RAM
                2.42 GB            Page-ins
                0 B            Page-outs

    Hey thank you! I tried to send you a first answer but Firefox blocked... Again thank you for your advice and the detailed process to follow, hope it can help! - Also sorry for my English which is not my primary language.
    Also don't know how to edit the Anonymous UUID... is it in the apple discussion account?
    Here is what i found in Console > Diagnostic and usage information > System diagnostic report:
    there were 4 lines as titles, and after Firefox crash there are 5 now.
    I will send you the content for each of them, but in a new message each time in case it freezes again.
    1st line starts with diskarbitrationd, ends with .shutdownStall
    content:
    Date/Time:  
    2014-05-12 18:05:15 -0700
    OS Version: 
    10.9.2 (Build 13C1021)
    Architecture:
    x86_64
    Report Version:  18
    Command:    
    No Target
    Path:       
    No Target
    Version:    
    Parent:     
    UNKNOWN PROCESS [0]
    PID:        
    0
    Event:      
    shutdown stall
    Duration:   
    12.05s (sampling started after 2 seconds)
    Steps:      
    101 (100ms sampling interval)
    Hardware model:  MacBookPro8,2
    Active cpus:
    8
    Fan speed:  
    4033 rpm (-334)
    Free pages: 
    1153467 pages (-455)
    Pageins:    
    5 pages
    Pageouts:   
    0 pages
    Swapins:    
    0 pages
    Swapouts:   
    0 pages
    Process:    
    diskarbitrationd [21]
    Path:       
    /usr/libexec/diskarbitrationd
    Architecture:
    x86_64
    Parent:     
    launchd [1]
    UID:        
    0
    Sudden Term:
    Dirty
    Task size:  
    577 pages (-6)
    Importance: 
    Adaptive, Donating
    Timers:     
    Coalesced
      Thread 0x13d 
    DispatchQueue 1     
    priority 31   
      101 start + 1 (libdyld.dylib) [0x7fff8c4db5fd]
    101 ??? (diskarbitrationd + 28877) [0x10e56a0cd]
    101 CFRunLoopRun + 97 (CoreFoundation) [0x7fff8c3da811]
    101 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8c3250b5]
    101 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8c325779]
    101 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8c326155]
    101 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8f270a1a]
    *101 ??? (mach_kernel + 92160) [0xffffff8000216800]
      Thread 0x146 
    DispatchQueue 2     
    priority 33   
      101 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff8ab9c152]
    101 kevent64 + 10 (libsystem_kernel.dylib) [0x7fff8f275662]
    *101 ??? (mach_kernel + 3949760) [0xffffff80005c44c0]
      Thread 0x15ac
    priority 31   
    *101 wq_unsuspend_continue + 0 (pthread) [0xffffff7f80b747c4]
      Thread 0x14e2
    priority 29   
      80 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff93750fb9]
    80 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff8f274e6a]
    *80 wq_unpark_continue + 0 (pthread) [0xffffff7f80b746ae]
      Thread 0x1569
    priority 0    
      79 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff93750fb9]
    79 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff8f274e6a]
    *79 wq_unpark_continue + 0 (pthread) [0xffffff7f80b746ae]
      Thread 0x15a6
    priority 31   
      71 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff93750fb9]
    71 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff8f274e6a]
    *71 wq_unpark_continue + 0 (pthread) [0xffffff7f80b746ae]
      Binary Images:
    0x10e563000 -   
    0x10e578fff  diskarbitrationd (266) <94F10D52-A866-34ED-B278-873B4B2E0C7E> /usr/libexec/diskarbitrationd
    0x7fff8ab99000 -
    0x7fff8abb3fff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib
    0x7fff8c2b5000 -
    0x7fff8c49afff  com.apple.CoreFoundation 6.9 (855.16) <617B8A7B-FAB2-3271-A09B-C542E351C532> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8c4d8000 -
    0x7fff8c4dbff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
    0x7fff8f25f000 -
    0x7fff8f27bff7  libsystem_kernel.dylib (2422.90.20) <20E00C54-9222-359F-BD98-CB79ABED769A> /usr/lib/system/libsystem_kernel.dylib
    0x7fff9374b000 -
    0x7fff93752ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
    *0xffffff7f80b71000 - 0xffffff7f80b78fff  com.apple.kec.pthread 1.0 (1) <619F6A5D-FFA2-3B59-9993-958FD7154B83> /System/Library/Extensions/pthread.kext/Contents/MacOS/pthread
    *0xffffff8000200000 - 0xffffff8000200000  mach_kernel <9FEA8EDC-B629-3ED2-A1A3-6521A1885953> /mach_kernel
    Process:    
    fsck_hfs [267]
    Path:       
    /System/Library/Filesystems/hfs.fs/Contents/Resources/fsck_hfs
    Architecture:
    x86_64
    Parent:     
    diskarbitrationd [21]
    Responsible:
    diskarbitrationd [21]
    UID:        
    0
    Task size:  
    206770 pages
    CPU Time:   
    10.043s
    Importance: 
    Adaptive, Donating
      Thread 0x968 
    DispatchQueue 1     
    priority 31    
    cpu time  10.043s
      101 start + 1 (libdyld.dylib) [0x7fff8c4db5fd]
    101 ??? (fsck_hfs + 7233) [0x106fe7c41]
    101 ??? (fsck_hfs + 76504) [0x106ff8ad8]
    101 ??? (fsck_hfs + 79339) [0x106ff95eb]
    101 ??? (fsck_hfs + 119757) [0x1070033cd]
    42  ??? (fsck_hfs + 135082) [0x107006faa]
    42  ??? (fsck_hfs + 73083) [0x106ff7d7b]
    38  ??? (fsck_hfs + 33605) [0x106fee345]
    24  ??? (fsck_hfs + 43420) [0x106ff099c]
    23  ??? (fsck_hfs + 40781) [0x106feff4d]
    6   ??? (fsck_hfs + 28484) [0x106fecf44]
    *6   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *6   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *6   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *6   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *6   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    3   ??? (fsck_hfs + 29225) [0x106fed229]
    *3   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *3   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *3   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *3   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *3   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    2   ??? (fsck_hfs + 29241) [0x106fed239]
    *2   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *2   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *2   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *2   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *2   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    2   ??? (fsck_hfs + 28343) [0x106feceb7]
    *2   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *2   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *2   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *2   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *2   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28442) [0x106fecf1a]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28427) [0x106fecf0b]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28390) [0x106fecee6]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 29203) [0x106fed213]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28331) [0x106feceab]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28938) [0x106fed10a]
    1   ??? (fsck_hfs + 26336) [0x106fec6e0]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28490) [0x106fecf4a]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 30064) [0x106fed570]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28519) [0x106fecf67]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28406) [0x106fecef6]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 40680) [0x106fefee8]
    1   ??? (fsck_hfs + 32482) [0x106fedee2]
    1   ??? (fsck_hfs + 17431) [0x106fea417]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    14  ??? (fsck_hfs + 43610) [0x106ff0a5a]
    14  ??? (fsck_hfs + 41086) [0x106ff007e]
    2   ??? (fsck_hfs + 28484) [0x106fecf44]
    *2   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *2   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *2   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *2   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *2   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28373) [0x106feced5]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 29225) [0x106fed229]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28492) [0x106fecf4c]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 29199) [0x106fed20f]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28511) [0x106fecf5f]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28505) [0x106fecf59]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28401) [0x106fecef1]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28477) [0x106fecf3d]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28390) [0x106fecee6]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 30356) [0x106fed694]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28496) [0x106fecf50]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28343) [0x106feceb7]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    4   ??? (fsck_hfs + 33871) [0x106fee44f]
    4   ??? (fsck_hfs + 41086) [0x106ff007e]
    1   ??? (fsck_hfs + 28652) [0x106fecfec]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28673) [0x106fed001]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 29179) [0x106fed1fb]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28664) [0x106fecff8]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    39  ??? (fsck_hfs + 134138) [0x107006bfa]
    39  ??? (fsck_hfs + 73083) [0x106ff7d7b]
    36  ??? (fsck_hfs + 33605) [0x106fee345]
    22  ??? (fsck_hfs + 43420) [0x106ff099c]
    20  ??? (fsck_hfs + 40781) [0x106feff4d]
    8   ??? (fsck_hfs + 28484) [0x106fecf44]
    *8   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *8   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *8   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *8   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *8   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    2   ??? (fsck_hfs + 28492) [0x106fecf4c]
    *2   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *2   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *2   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *2   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *2   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 29194) [0x106fed20a]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 29225) [0x106fed229]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 26738) [0x106fec872]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28433) [0x106fecf11]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28442) [0x106fecf1a]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28427) [0x106fecf0b]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28490) [0x106fecf4a]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28660) [0x106fecff4]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28496) [0x106fecf50]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28477) [0x106fecf3d]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    2   ??? (fsck_hfs + 40680) [0x106fefee8]
    2   ??? (fsck_hfs + 32482) [0x106fedee2]
    1   ??? (fsck_hfs + 17850) [0x106fea5ba]
    1   _platform_memmove$VARIANT$Nehalem + 258 (libsystem_platform.dylib) [0x7fff8ae280e2]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 17595) [0x106fea4bb]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    13  ??? (fsck_hfs + 43610) [0x106ff0a5a]
    13  ??? (fsck_hfs + 41086) [0x106ff007e]
    2   ??? (fsck_hfs + 30447) [0x106fed6ef]
    *2   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *2   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *2   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *2   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *2   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    2   ??? (fsck_hfs + 28484) [0x106fecf44]
    *2   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *2   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *2   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *2   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *2   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    2   ??? (fsck_hfs + 28477) [0x106fecf3d]
    *2   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *2   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *2   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *2   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *2   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 29225) [0x106fed229]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28511) [0x106fecf5f]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28406) [0x106fecef6]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 30435) [0x106fed6e3]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28490) [0x106fecf4a]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 29255) [0x106fed247]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 29237) [0x106fed235]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 43408) [0x106ff0990]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    2   ??? (fsck_hfs + 33871) [0x106fee44f]
    2   ??? (fsck_hfs + 41086) [0x106ff007e]
    1   ??? (fsck_hfs + 28860) [0x106fed0bc]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28331) [0x106feceab]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
                  

  • My iPod touch is stuck in landscape view.  Even when held vertically if I open facebook or safari is rotates to landscape.  Have tried turning on and off, same results. Any ideas to fix?

    My iPod touch is stuck in landscape view.  Even when held vertically if I open facebook or safari is rotates to landscape.  Have tried turning on and off, same results. Any ideas to fix?

    Try switching it back from landscape to vertical. Or, go to settings and see if you have any special setting turned on that enable only landscape view. Also, try hooking it up to your computer and charging it to see what happens.

  • My iPod touch is stuck on one song in my play list when in the shuffle mode.  How do I fix this to shuffle through all the songs in that playlist?

    My iPod touch is stuck on one song in my play list when in the shuffle mode.  How do I fix this to shuffle through all the songs in that playlist?

    If you go to the Now Playing screen, the Repeat control is the the arrowed racetrack icon on the left side right below the scrubber bar. Tap the icon to change. It is white when Repeat is off.

  • The screen on my ipod touch is stuck zoomed in. I turned it off and back and its still stuck zoomed in. I also tried to reset it and that didn't work either. Please help.

    The screen on my ipod touch is stuck zoomed in. I don't know how it happened I just looked down and it was like that. I have turned it off and back and even reset it but it still keeps zooming back in each time I turn it on. I can't unlock it because I can't see the numbers and it won't let me move around the screen. Please help.

    This is asked and answered often.  The foru search bar is on the right side of this page.
    It is also covered in the manual - zoom feature:
    iPod touch User Guide (For iOS 4.3 Software)
    Double tap with three fingers.

  • The Home button on my iPod Touch is stuck in!

    Hi,
    Dropped my iPod this morning. The home button is stuck in. It was bought for me as a Christmas Present. Is it still covered with warranty? Hope it is, if it's not how much roughly? Or is it just a simple DIY 10 min job? Thanks in advance, Freely2

    Try:
    fix for Home button
    Fix a broken, unresponsive or sticky iPhone Home Button
    - If you have iOS 5 and later you can turn on Assistive Touch it add the Home and other buttons to the iPods screen. Settings>General>Accessibility>Assistive Touch
    - If not under warranty Apple will exchange your iPod for a refurbished one for:
    Apple - Support - iPod - Repair pricing
    - There are third-party places like the following that will repair the Home button. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens

  • Calendar app stuck on year view

    iPhone 4S running OS 8.1 - Calendar app stuck in year view. Shows todays date in red but when you try to go to "Today" nothing happens. Any thoughts?

    There is more than one place to change time. If you set the time to local, you need to go into Settings>Mail, Contacts, Calendar>scroll down to the bottom under calendar and set the time zone support there for the local time zone.

  • My iPod Touch is stuck in recovery mode after I left it on while updating!!!

    I was updating my ipod touch 3rd generation (ios 4.3, i think) and I saw a wasp and left the computer on in the middle of the updating process and now the ipod is stuck in recovery mode and it says the only way to get it out is to recover it, but that will erase everything!!! HELP ME!!! until i get an answer      I HATE YOU, APPLE URGG
    operating system: whatever the latest available to itouch is.

    Without knowing what the error message said all I can suggest is:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar                                     

  • When I click on 2014 month view in calendar iPhone 5 s stucks, lagging. What is the problem I don't know????

    When I click on 2014 month view in calendar iPhone 5 s stucks, lagging. What is the problem I don't know????

    Should read 'When I '''clicked''' on your update this a.m......

Maybe you are looking for

  • Can you store the resultSet from a query into a vector?

    I am totally frustrated. How the heck does one store the results of a query (resultSet) in a vector so that I can get the vector from my jsp page to display in a table.? searchRS is my resultSet from stmt.executeQuery(). public Vector storeResultSet

  • Who can help me with my IPHONE4S unlock thank you.

    I was a few years ago in the United States work in Chinese, because the marriage, so coming back to China, I back to the iphone4s verzion customization, I do not have a verzion account, but returned to find the mobile phone is locked, and can not be

  • Import javafx.ext.swing.SwingToggleGroup not found in the classpath

    I am trying to run the example here Desktop profile http://java.sun.com/javafx/1/tutorials/ui/layout/index.html but import javafx.ext.swing.SwingToggleGroup; import javafx.ext.swing.SwingRadioButton; here i am having error because javafx.ext is not f

  • My experience at store #608

    So I pre ordered at store 608 in sanford fl from a guy named mike. He was extremely nice and said on pre order day we had a good shot of getting one since we were early. So I kept waiting on call and just decided to go in Wednesday and find out if we

  • Load external images

    Im wanting to make a photo gallery that I can update easy, I thought if I could have a movieclip load external images for my thumbnails it would be nice but Im not sure how to set it up. I would make a file for my images and then another for my thumb