I am getting following error in my application please find the sol...jax rs

15 Mar, 2013 1:09:49 PM com.sun.jersey.spi.container.ContainerRequest getEntity
SEVERE: A message body reader for Java class aero.omanair.flightStatus.vo.SearchCriteriaVO, and Java type class aero.omanair.flightStatus.vo.SearchCriteriaVO, and MIME media type application/octet-stream was not found.
The registered message body readers compatible with the MIME media type are:
application/octet-stream ->
com.sun.jersey.core.impl.provider.entity.ByteArrayProvider
com.sun.jersey.core.impl.provider.entity.FileProvider
com.sun.jersey.core.impl.provider.entity.InputStreamProvider
com.sun.jersey.core.impl.provider.entity.DataSourceProvider
com.sun.jersey.core.impl.provider.entity.RenderedImageProvider
*/* ->
com.sun.jersey.core.impl.provider.entity.FormProvider
com.sun.jersey.core.impl.provider.entity.MimeMultipartProvider
please solve the issue......
my pojo class is
package aero.omanair.flightStatus.vo;
import aero.omanair.flightStatus.util.FlightStatusUtils;
@Entity
@XmlRootElement
@Consumes({"MediaType.MULTIPART_FORM_DATA", "application/x-www-form-urlencoded"})
@Produces({"MediaType.MULTIPART_FORM_DATA", "application/x-www-form-urlencoded"})
@XStreamAlias("SearchCriteriaVO")
public class SearchCriteriaVO implements MessageBodyReader<JSONObject>, Serializable {     
     private static final long serialVersionUID = 1L;
     static final Logger logger = Logger.getLogger(SearchCriteriaVO.class);     
     private static final DateFormat TIMESTAMP_FORMAT_DEFAULT = new SimpleDateFormat("yyyy-MM-dd");
     private static final DateFormat DATE_FORMAT_DISPLAY = new SimpleDateFormat("dd-MMM-yyyy");
     private String tripType;
     private String fromStation;
     private String toStation;
     private String beginStationCode;
     private String beginStationName;
     private String destinationStationCode;
     private String destinationStationName;
     private String flightNumber;
     private String flightDate;
     private String flightDateDisp;
     //private Date scheduledTimeDeparture;
     private Timestamp scheduledTimeDep;
     private int connectingTime;
     private String searchResult;     
     private String searchdetails;
     private String errorMessage;
     private String infoMessage;
     @XStreamImplicit
     private Map<String,String> depDateList;
     public SearchCriteriaVO(
               String tripType,
               String flightNumber,
               String flightDate) {
          this.tripType = tripType;
          this.flightNumber = flightNumber;
          this.flightDate = flightDate;
          populateDateList();     
     public SearchCriteriaVO(
               String tripType,
               String beginStationCode,
               String beginStationName,
               String destinationStationCode,
               String destinationStationName,
               String flightDate) {
          this.tripType = tripType;
          this.beginStationCode = beginStationCode;
          this.beginStationName = beginStationName;
          this.destinationStationCode = destinationStationCode;
          this.destinationStationName = destinationStationName;
          this.flightDate = flightDate;
          populateDateList();          
     public SearchCriteriaVO(){          
          String today="";
          try {
               Calendar cal = Calendar.getInstance();
               today = TIMESTAMP_FORMAT_DEFAULT.format(cal.getTime());
          } catch (Exception e) {
               logger.error("Exception in SearchCriteriaVO: ", e);
          this.setTripType("BRO");
          this.setSearchResult("");
          this.setFlightDate(today);
          populateDateList();          
     @GET
     private void populateDateList(){
     try {
               Calendar cal = Calendar.getInstance();
               String today = TIMESTAMP_FORMAT_DEFAULT.format(cal.getTime());
               String todayDisplay = DATE_FORMAT_DISPLAY.format(cal.getTime());
               cal.add(Calendar.DATE, -1);     
               String yesterday = TIMESTAMP_FORMAT_DEFAULT.format(cal.getTime());
               String yesterdayDisp = DATE_FORMAT_DISPLAY.format(cal.getTime());
               cal.add(Calendar.DATE, +2);
               String tomorrow = TIMESTAMP_FORMAT_DEFAULT.format(cal.getTime());
               String tomorrowDisplay = DATE_FORMAT_DISPLAY.format(cal.getTime());
               depDateList = new LinkedHashMap<String,String>();
               depDateList.put(yesterday, yesterdayDisp);
               depDateList.put(today, todayDisplay);          
               depDateList.put(tomorrow, tomorrowDisplay);
          } catch (Exception e) {
               logger.error("Exception in init: ", e);
     @GET
     public String toString() {
          StringBuffer sb = new StringBuffer("SearchCriteria{");
          sb.append("tripType :" + tripType);          
          sb.append(", beginStationCode :" + beginStationCode);
          sb.append(", beginStationName :" + beginStationName);
          sb.append(", destinationStationCode :" + destinationStationCode);
          sb.append(", destinationStationName :" + destinationStationName);               
          sb.append("}");
          return sb.toString();
     @GET
     public void setSearchInfoMsg(){
          if(getTripType().equals("BRO")){               
               if(StringUtils.isNotBlank(getBeginStationName()) && StringUtils.isNotBlank(getDestinationStationName()) && StringUtils.isNotBlank(getFlightDateDisp())){                                        
                    StringBuffer msg = new StringBuffer("Flight details for ");
                    msg.append(getBeginStationName());
                    msg.append(" - ");
                    msg.append(getDestinationStationName());                              
                    msg.append(" on : ");
                    msg.append(getFlightDateDisp());     
                    setInfoMessage(msg.toString());
          }else if(getTripType().equals("BFL")){
               if(StringUtils.isNotBlank(getFlightNumber()) && StringUtils.isNotBlank(getFlightDateDisp())){                                        
                    StringBuffer msg = new StringBuffer("Flight details for ");
                    msg.append("WY ");
                    msg.append(getFlightNumber());                         
                    msg.append(" on : ");
                    msg.append(getFlightDateDisp());     
                    setInfoMessage(msg.toString());
     @GET
     public String getTripType() {
          return tripType;
     @GET
     public void setTripType(String tripType) {
          this.tripType = tripType;
     @GET
     public String getFromStation() {
          return fromStation;
     @GET
     public void setFromStation(String fromStation) {
          this.fromStation = fromStation;
     @GET
     public String getToStation() {
          return toStation;
     @GET
     public void setToStation(String toStation) {
          this.toStation = toStation;
     @GET
     public String getBeginStationCode() {
          return beginStationCode;
     @GET
     public void setBeginStationCode(String beginStationCode) {
          this.beginStationCode = beginStationCode;
     @GET
     public String getBeginStationName() {
          return beginStationName;
     @GET
     public void setBeginStationName(String beginStationName) {
          this.beginStationName = beginStationName;
     @GET
     public String getDestinationStationCode() {
          return destinationStationCode;
     @GET
     public void setDestinationStationCode(String destinationStationCode) {
          this.destinationStationCode = destinationStationCode;
     @GET
     public String getDestinationStationName() {
          return destinationStationName;
     @GET
     public void setDestinationStationName(String destinationStationName) {
          this.destinationStationName = destinationStationName;
     @GET
     public String getFlightNumber() {
          return flightNumber;
     public void setFlightNumber(String flightNumber) {
          this.flightNumber = flightNumber;
     @GET
     public String getFlightDate() {
          return flightDate;
     @GET
     public void setFlightDate(String flightDate) {
          this.flightDate = flightDate;
     * @return the depDateList
     @GET
     public Map<String, String> getDepDateList() {
          return depDateList;
     * @param depDateList the depDateList to set
     @GET
     public void setDepDateList(Map<String, String> depDateList) {
          this.depDateList = depDateList;
     @GET
     public String getSearchResult() {
          return searchResult;
     @GET
     public void setSearchResult(String searchResult) {
          this.searchResult = searchResult;
     @GET
     public String getSearchdetails() {
          return searchdetails;
     @GET
     public void setSearchdetails(String searchdetails) {
          this.searchdetails = searchdetails;
     /*public Date getScheduledTimeDeparture() {
          return scheduledTimeDeparture;
     public void setScheduledTimeDeparture(Date scheduledTimeDeparture) {
          this.scheduledTimeDeparture = scheduledTimeDeparture;
     * @return the scheduledTimeDep
     @GET
     public Timestamp getScheduledTimeDep() {
          return scheduledTimeDep;
     * @param scheduledTimeDep the scheduledTimeDep to set
     @GET
     public void setScheduledTimeDep(Timestamp scheduledTimeDep) {
          this.scheduledTimeDep = scheduledTimeDep;
     @GET
     public int getConnectingTime() {
          return connectingTime;
     @GET
     public void setConnectingTime(int connectingTime) {
          this.connectingTime = connectingTime;
     @GET
     public String getErrorMessage() {
          return errorMessage;
     @GET
     public void setErrorMessage(String errorMessage) {
          this.errorMessage = errorMessage;
     @GET
     public String getInfoMessage() {
          return infoMessage;
     @GET
     public void setInfoMessage(String infoMessage) {
          this.infoMessage = infoMessage;
     @GET
     public String getFlightDateDisp() {
          flightDateDisp = getFlightDate();
          if(StringUtils.isNotBlank(flightDateDisp)){
               flightDateDisp = FlightStatusUtils.getDisplayDate(flightDateDisp);               
          return flightDateDisp;
     @GET
     public void setFlightDateDisp(String flightDateDisp) {
          this.flightDateDisp = flightDateDisp;
     @GET
     public boolean isReadable(Class<?> arg0, Type arg1, Annotation[] arg2,
               MediaType arg3) {
          // TODO Auto-generated method stub
          return false;
     //public Object readFrom(Class<Object> arg0, Type arg1, Annotation[] arg2,
          //     MediaType arg3, MultivaluedMap<String, String> arg4,
          //     InputStream arg5) throws IOException, WebApplicationException {
          // TODO Auto-generated method stub
          //return null;
     @GET
     public JSONObject readFrom(Class<JSONObject> arg0, Type arg1,
               Annotation[] arg2, MediaType arg3,
               MultivaluedMap<String, String> arg4, InputStream arg5)
               throws IOException, WebApplicationException {
          // TODO Auto-generated method stub
          return null;
and my service class is
package aero.omanair.flightStatus.service.impl;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import javax.ws.rs.FormParam;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.MultivaluedMap;
import javax.ws.rs.ext.MessageBodyReader;
import javax.ws.rs.ext.MessageBodyWriter;
import javax.ws.rs.ext.Provider;
import javax.ws.rs.Produces;
import javax.ws.rs.Consumes;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
@Path("hello")
@Singleton
@Provider public class FlightStatusManagerImpl implements FlightStatusManager,Constants,MessageBodyReader<SearchCriteriaVO> {
     private static final Object FlightStatusVO = null;
     private FlightStatusDAO flightStatusDAO;
     private SectorDAO sectorDAO;
     private Object FloghtStatusVO;
     private FlightStatusVO FlightStatus;
     public FlightStatusManagerImpl()
          SearchCriteriaVO cv=new SearchCriteriaVO();
          cv.setFromStation("HYD");
          cv.setToStation("BGL");
     /*Method that returns the list of FlightStatusVO based on the searchCriteria*/
     @GET
     @Produces({"application/xml", "application/octet-stream"})
               @Consumes({"application/xml", "application/octet-stream"})
     public List<FlightStatusVO> searchAndExport(SearchCriteriaVO searchCriteria)throws OperationFailedException{
          try{     
          //     SearchCriteriaVO searchCriteria = buildSearchCriteriaObj(searchParametersVO);
               List<FlightStatusVO> flightStatusVO = new ArrayList<FlightStatusVO>();
               List<FlightStatusVO> flightStatusListVO = new ArrayList<FlightStatusVO>();
               boolean connectionFlightChk= true;               
               //obCriteria = buildSearchCriteriaObj(request);
               String tripType = searchCriteria.getTripType();
               String fromStationCode = searchCriteria.getBeginStationCode();
               String fromStationDesc = searchCriteria.getBeginStationName();
               String toStationCode = searchCriteria.getDestinationStationCode();
               String toStationDesc = searchCriteria.getDestinationStationName();
               String fromStation = StringUtils.isNotBlank(fromStationCode) ? fromStationCode : "";
               fromStation = fromStation + (StringUtils.isNotBlank(fromStationDesc) ? "("+fromStationDesc+")" : "");
               String toStation = StringUtils.isNotBlank(toStationCode) ? toStationCode : "";
               toStation = toStation + (StringUtils.isNotBlank(toStationDesc) ? "("+toStationDesc+")" : "");
               searchCriteria.setFromStation(fromStation);
               searchCriteria.setToStation(toStation);
               flightStatusVO = flightStatusDAO.getDirectFlights(searchCriteria);
               flightStatusDAO.setReplacementFlight(flightStatusVO, toStationCode, toStationDesc, false);
               if(StringUtils.isNotBlank(tripType) && tripType.equals("BRO")){
                    if((StringUtils.isNotBlank(toStationCode) && toStationCode.contains(BASE_STATION_NAME))
                              || (StringUtils.isNotBlank(toStationDesc) && toStationDesc.contains(BASE_STATION_NAME))
                              || (StringUtils.isNotBlank(fromStationCode) && fromStationCode.contains(BASE_STATION_CODE))
                              || (StringUtils.isNotBlank(fromStationDesc) && fromStationDesc.contains(BASE_STATION_NAME))){
                         connectionFlightChk = false;
                    if(connectionFlightChk){
                         searchCriteria.setConnectingTime(11);
                         List<FlightStatusVO> connectionFlights = flightStatusDAO.getCircularFlights(searchCriteria, BASE_STATION_CODE);
                         if(!connectionFlights.isEmpty()){
                              flightStatusVO.addAll(connectionFlights);
                    if((StringUtils.isNotBlank(fromStationCode) && fromStationCode.contains(BASE_STATION_CODE)) || (StringUtils.isNotBlank(fromStationDesc) && fromStationDesc.contains(BASE_STATION_NAME))) {
                         String sectorPattern = StringUtils.isNotBlank(toStationCode) ? "-"+toStationCode : "";
                         List<String> toSectors = null;
                         if(StringUtils.isNotBlank(sectorPattern)){
                              toSectors = sectorDAO.searchSectors(sectorPattern);
                              List<String> connectingSectors = new ArrayList<String>();
                              Iterator<String> it = toSectors.iterator();
                              while (it.hasNext()) {
                                   String toSector = (String) it.next();
                                   String connectingStation = toSector.split("-")[0];
                                   connectingSectors.add(BASE_STATION_CODE+"-"+connectingStation);
                              if(connectingSectors.size() > 0){
                                   List<String> validSectors = new ArrayList<String>();
                                   validSectors = sectorDAO.checkSectorExist(connectingSectors);
                                   Iterator<String> itr = validSectors.iterator();
                                   while (itr.hasNext()) {
                                        String sector = itr.next();
                                        String stopOver = StringUtils.isNotBlank(sector) ? sector.split("-")[1] : null;
                                        searchCriteria.setConnectingTime(9);                                   
                                        List<FlightStatusVO> circularFlights = flightStatusDAO.getCircularFlights(searchCriteria, stopOver);
                                        if(!circularFlights.isEmpty()){
                                             flightStatusVO.addAll(circularFlights);
                    } else if((StringUtils.isNotBlank(toStationCode) && toStationCode.contains(BASE_STATION_CODE)) || (StringUtils.isNotBlank(toStationDesc) && toStationDesc.contains(BASE_STATION_NAME))){
                         String sectorPattern = StringUtils.isNotBlank(fromStationCode) ? fromStationCode+"-" : "";
                         List<String> fromSectors = null;
                         if(StringUtils.isNotBlank(sectorPattern)){
                              fromSectors = sectorDAO.searchSectors(sectorPattern);
                              List<String> connectingFSectors = new ArrayList<String>();
                              Iterator<String> it = fromSectors.iterator();
                              while (it.hasNext()) {
                                   String toSector = (String) it.next();
                                   String connectingFStation = toSector.split("-")[1];
                                   connectingFSectors.add(connectingFStation+"-"+BASE_STATION_CODE);
                              if(connectingFSectors.size()!=0){
                                   List<String> validFSectors = new ArrayList<String>();
                                   validFSectors = sectorDAO.checkSectorExist(connectingFSectors);
                                   Iterator<String> itr= validFSectors.iterator();
                                   while (itr.hasNext()) {
                                        String sector = itr.next();
                                        String stopOver = StringUtils.isNotBlank(sector) ? sector.split("-")[0] : null;
                                        searchCriteria.setConnectingTime(9);
                                        List<FlightStatusVO> circularFlights = flightStatusDAO.getCircularFlights(searchCriteria, stopOver);
                                        if(!circularFlights.isEmpty()){
                                             flightStatusVO.addAll(circularFlights);
               flightStatusDAO.setReplacementFlight(flightStatusVO, toStationCode, toStationDesc, true);
               searchCriteria.setBeginStationName(searchCriteria.getFromStation());
               searchCriteria.setDestinationStationName(searchCriteria.getToStation());
               //searchCriteria.setSearchResult("Flight Not Available");
               //searchCriteria.setSearchdetails("Flight details for ");
               //request.setAttribute("flightStatusList", flightStatusVO);
               //request.setAttribute("searchCriteriaVO", obCriteria);
               flightStatusVO = statusCalculation(flightStatusVO);
               return flightStatusVO;          
          } catch (Exception e) {               
               /*SearchCriteriaVO searchCriteriaVO = new SearchCriteriaVO();
               searchCriteriaVO.setErrorMessage(e.getMessage());
               String tripType = StringUtils.isNotBlank(request.getParameter("tripType")) ? request.getParameter("tripType").trim() : null;
               flightDate = request.getParameter("flightDate");     
               if(StringUtils.isNotBlank(tripType) && tripType.equals("BRO")){
                    fromStationName = StringUtils.isNotBlank(request.getParameter("fmCode_visible")) ? request.getParameter("fmCode_visible").trim() : null;                              
                    toStationName = StringUtils.isNotBlank(request.getParameter("toCode_visible")) ? request.getParameter("toCode_visible").trim() : null;
                    searchCriteriaVO.setTripType(tripType);
                    searchCriteriaVO.setFlightDate(flightDate);
                    searchCriteriaVO.setBeginStationName(fromStationName);
                    searchCriteriaVO.setDestinationStationName(toStationName);
               } else if(StringUtils.isNotBlank(tripType) && tripType.equals("BFL")){
                    flightNumber = StringUtils.isNotBlank(request.getParameter("flightNumber")) ? request.getParameter("flightNumber").trim() : null;
                    searchCriteriaVO.setTripType(tripType);
                    searchCriteriaVO.setFlightDate(flightDate);
                    searchCriteriaVO.setFlightNumber(flightNumber);               
               request.setAttribute("searchCriteriaVO", searchCriteriaVO);*/
               throw new OperationFailedException(e.getMessage());               
     public SearchCriteriaVO buildSearchCriteriaObj(SearchParametersVO searchParamenterVO) throws OperationFailedException{
          String fromStationCode = null;
          String fromStationDesc = null;
          String toStationCode = null;
          String toStationDesc = null;
          String fromStation = searchParamenterVO.getFromStationName();
          String toStation = searchParamenterVO.getToStationName();
          if(StringUtils.isNotBlank(searchParamenterVO.getTripType()) && searchParamenterVO.getTripType().equals("BRO")) {
          if(StringUtils.isNotBlank(fromStation)){                                        
               int length = (fromStation).length();               
               if(length > 3){
                    if(fromStation.contains("(") && fromStation.contains(")")){
                         int beginIndex = fromStation.indexOf("(");
                         int endIndex = fromStation.indexOf(")");
                         fromStationCode = fromStation.substring(0, beginIndex);
                         fromStationDesc = fromStation.substring(beginIndex+1, endIndex);
                    } else if(fromStation.contains("(")){
                         int beginIndex = fromStation.indexOf("(");
                         int endIndex = length;
                         fromStationCode = fromStation.substring(0, beginIndex);
                         fromStationDesc = fromStation.substring(beginIndex+1, endIndex);
                    } else if(fromStation.contains(")")){
                         int beginIndex = 0;
                         int endIndex = fromStation.indexOf(")");
                         fromStationCode = null;
                         fromStationDesc = fromStation.substring(beginIndex, endIndex);
                    } else{
                         fromStationCode = null;
                         fromStationDesc = fromStation;
               } else if(length == 3 && !fromStation.contains("(") && !fromStation.contains(")")) {
                    fromStationCode = fromStation;
                    fromStationDesc = null;
               } else{
                    //request.setAttribute("message", "Please enter a valid From Station");
                    throw new OperationFailedException("Please enter a valid From Station");
               fromStationCode = flightStatusDAO.isValidFromStationCode(fromStationCode) ? fromStationCode : null;
               fromStationDesc = flightStatusDAO.isValidFromStationDesc(fromStationDesc) ? fromStationDesc : null;
               if(StringUtils.isBlank(fromStationCode) && StringUtils.isBlank(fromStationDesc)){
                    //request.setAttribute("message", "Please enter a valid From Station");
                    throw new OperationFailedException("Please enter a valid From Station");                         
          if(StringUtils.isNotBlank(toStation)){                                        
               int length = toStation.length();               
               if(length > 3){
                    if(toStation.contains("(") && toStation.contains(")")){
                         int beginIndex = toStation.indexOf("(");
                         int endIndex = toStation.indexOf(")");
                         toStationCode = toStation.substring(0, beginIndex);
                         toStationDesc = toStation.substring(beginIndex+1, endIndex);
                    } else if(toStation.contains("(")){
                         int beginIndex = toStation.indexOf("(");
                         int endIndex = length;
                         toStationCode = toStation.substring(0, beginIndex);
                         toStationDesc = toStation.substring(beginIndex+1, endIndex);
                    } else if(toStation.contains(")")){
                         int beginIndex = 0;
                         int endIndex = toStation.indexOf(")");
                         toStationCode = null;
                         toStationDesc = toStation.substring(beginIndex, endIndex);
                    } else{
                         toStationCode = null;
                         toStationDesc = toStation;
               } else if(length == 3 && !toStation.contains("(") && !toStation.contains(")")) {
                    toStationCode = toStation;
                    toStationDesc = null;
               } else{
                    //request.setAttribute("message", "Please enter a valid To Station");
                    throw new OperationFailedException("Please enter a valid To Station");
               toStationCode = flightStatusDAO.isValidToStationCode(toStationCode) ? toStationCode : null;
               toStationDesc = flightStatusDAO.isValidToStationDesc(toStationDesc) ? toStationDesc : null;
               if(StringUtils.isBlank(toStationCode) && StringUtils.isBlank(toStationDesc)){
                    //request.setAttribute("message", "Please enter a valid To Station");
                    throw new OperationFailedException("Please enter a valid To Station");                         
          if(StringUtils.isNotBlank(fromStationCode) && StringUtils.isNotBlank(toStationCode) && fromStationCode.equalsIgnoreCase(toStationCode)){
               //request.setAttribute("message", "From and To Stations cannot be the same");
               throw new OperationFailedException("From and To Stations cannot be the same");
          if(StringUtils.isNotBlank(fromStationDesc) && StringUtils.isNotBlank(toStationDesc) && fromStationDesc.equalsIgnoreCase(toStationDesc)){
               //request.setAttribute("message", "From and To Stations cannot be the same");
               throw new OperationFailedException("From and To Stations cannot be the same");
          SearchCriteriaVO searchCriteriaVO = new SearchCriteriaVO(searchParamenterVO.getTripType(), fromStationCode, fromStationDesc, toStationCode, toStationDesc, searchParamenterVO.getFlightDate());               
          //session.putValue("searchCriteriaVO", searchCriteriaVO);
          return searchCriteriaVO;     
     } else if(StringUtils.isNotBlank(searchParamenterVO.getTripType()) && searchParamenterVO.getTripType().equals("BFL")){               
          String flightNumber=StringUtils.isNotBlank(searchParamenterVO.getFlightNumber()) ? searchParamenterVO.getFlightNumber().trim() : null;
          searchParamenterVO.setFlightNumber(flightNumber) ;
          if(StringUtils.isBlank(searchParamenterVO.getFlightNumber())){
               //request.setAttribute("message", "Please enter valid Flight Number");
               throw new OperationFailedException("Please enter valid Flight Number");
          SearchCriteriaVO searchCriteriaVO = new SearchCriteriaVO(searchParamenterVO.getTripType(), flightNumber, searchParamenterVO.getFlightDate());                         
          //session.putValue("searchCriteriaVO", searchCriteriaVO);               
          return searchCriteriaVO;     
     } else{
          //request.setAttribute("message", "Please select a valid Trip Type");
          throw new OperationFailedException("Please select a valid Trip Type");
     /*This method is written for displaying Flight Status: written on 28/1/2013*/
     public List<FlightStatusVO> statusCalculation(List<FlightStatusVO> flightStatusListVO)
          List<FlightStatusVO> flightStatus = new ArrayList<FlightStatusVO>();
          //String flightStatusDescription;
          //String statusDisplay;
          if(flightStatusListVO.size()>0){
               for(int i=0;i<flightStatusListVO.size();i++){               
                    FlightStatusVO flightStatusVO =new FlightStatusVO();
                    flightStatusVO=flightStatusListVO.get(i);
                    if(flightStatusVO.getFlightStatus() =="CNLD" || flightStatusVO.getFlightStatus() =="RTND")
                         flightStatusVO.setStatusDisplay(flightStatusVO.getFlightStatusDesc());
                    else if(flightStatusVO.getActualTimeArv() != null)
                         flightStatusVO.setStatusDisplay("ARRIVED");
                    }else if(flightStatusVO.getActualTimeDep() != null)
                         flightStatusVO.setStatusDisplay("IN FLIGHT");
                    }else
                         flightStatusVO.setStatusDisplay("NOT YET DEPARTED");               
                    flightStatus.add(flightStatusVO);
          return flightStatus;
     /*Method for displaying flight status ends here*/
     public FlightStatusDAO getFlightStatusDAO() {
          return flightStatusDAO;
     public void setFlightStatusDAO(FlightStatusDAO flightStatusDAO) {
          this.flightStatusDAO = flightStatusDAO;
     public SectorDAO getSectorDAO() {
          return sectorDAO;
     public void setSectorDAO(SectorDAO sectorDAO) {
          this.sectorDAO = sectorDAO;
     public long getSize(Object arg0, Class arg1, Type arg2, Annotation[] arg3,
               MediaType arg4) {
          // TODO Auto-generated method stub
          return 0;
     public boolean isWriteable(Class arg0, Type arg1, Annotation[] arg2,
               MediaType arg3) {
          // TODO Auto-generated method stub
          return false;
     public void writeTo(Object arg0, Class arg1, Type arg2, Annotation[] arg3,
               MediaType arg4, MultivaluedMap arg5, OutputStream arg6)
               throws IOException, WebApplicationException {
          // TODO Auto-generated method stub
     public boolean isReadable(Class<?> arg0, Type arg1, Annotation[] arg2,
               MediaType arg3) {
          // TODO Auto-generated method stub
          return false;
     public SearchCriteriaVO readFrom(Class<SearchCriteriaVO> arg0, Type arg1,
               Annotation[] arg2, MediaType arg3,
               MultivaluedMap<String, String> arg4, InputStream arg5)
               throws IOException, WebApplicationException {
          // TODO Auto-generated method stub
          return null;
plz find the solution...
thanks in advance
Edited by: 992108 on Mar 15, 2013 12:54 AM

I think I remember hearing that if you quit iTunes with your device still connected, then open iTunes up again, it should work.
EDIT: Here, this might help: http://support.apple.com/kb/ts1567

Similar Messages

  • I have photoshop C6 on my MAC Pro and want to install it on my new MAC desktop.  I sent the files with AirDrop but photoshop wont open I get an error message that it cant find the Library.  Any thoughts?

    I have photoshop C6 on my MAC Pro and want to install it on my new MAC desktop.  I sent the files with AirDrop but photoshop wont open I get an error message that it cant find the Library.  Any thoughts?

    download the installation files and install using your serial number or adobe id,
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.5 (win), 5.5 (mac) | 5.4 (win), 5.4 (mac) | 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • I am getting an error message stating it cannot find the apps on my ipad.

    I am getting an error message saying "iTunes cannot sync apps to iPad (name) because the apps installed on the iPad cound not be determined."
    I have logged out of iTunes on both iPad and in iTunes.  Rebooted both iPad and computer then logged back in.
    I am using:
    os 10.7.5
    itunes 10.7
    ipad os 6.0

    I couldn't open it, so I couldn't check on how it was running. But I actually just tried reinstalling the program and for now it seems to be working.
    Thanks for your help!

  • When I open a new tab I get the following error message: Firefox can't find the file at /C:/Users/Tanisha/AppData/Local/TNT2/2.0.0.1128/pinnedSearch.htm."

    I can still browse websites, but I want to know what is causing this error message.

    hello tanisha625, it looks like some program has overwritten the default new tab page. you can either install the [https://addons.mozilla.org/firefox/addon/searchreset/ searchreset addon] to get rid of the problem or manually reset the page that opens on each new tab.
    enter '''about:config''' into the firefox location bar (confirm the info message in case it shows up), search for the preference named '''browser.newtab.url''' and double-click & change its value to '''about:newtab'''.

  • TS1702 ?Some of my applications have been saying I need the latest version of Adoebe Flash Player.  When I try to download it I get the following error message:  'Frame Load interrupted' and the installation stops.  Any suggestions

    Some of my applications have been saying I need the latest version of Adoebe Flash Player.  When I try to download it I get the following error message:  'Frame Load interrupted' and the installation stops.  Any suggestions?

    You can only use apps downloaded from the App store, not via a browser. There is no Flash for any iOS device including the iPod.

  • Getting following error when trying to run my application through eclipse

    Hi
    i am getting following error when i am trying to execute my program from my eclipse id 3.2 .Plz help me .I have also increase jvm memory upto 256M but it doesnt work.
    [java] E:\tarun\java\workspace1\Nss_Gui\main\build.xml:62: java.io.IOException: CreateProcess: "C:\Program Files\Java\jre1.5.0_05\bin\java.exe" -Xmx100M -classpath E:\tarun\java\workspace1\Nss_Gui\main\output;E:\tarun\java\workspace1\Nss_Gui\main\conf;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\GuiXmlQueryRequest.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\GuiXmlQueryResponse.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\cdr\Cdr.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\cdr\CdrDescriptor$1.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\cdr\CdrDescriptor$2.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\cdr\CdrDescriptor.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\cdr\Event.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\cdr\EventDescriptor$1.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\cdr\EventDescriptor�
    [java] at org.apache.tools.ant.taskdefs.Java.fork(Java.java:758)
    [java] at org.apache.tools.ant.taskdefs.Java.executeJava(Java.java:171)
    [java] at org.apache.tools.ant.taskdefs.Java.execute(Java.java:84)
    [java] at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    [java] at org.apache.tools.ant.Task.perform(Task.java:364)
    [java] at org.apache.tools.ant.Target.execute(Target.java:341)
    [java] at org.apache.tools.ant.Target.performTasks(Target.java:369)
    [java] at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
    [java] at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
    [java] at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
    [java] at org.eclipse.ant.internal.ui.antsupport.EclipseDefaultExecutor.executeTargets(EclipseDefaultExecutor.java:32)
    [java] at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
    [java] at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.run(InternalAntRunner.java:423)
    [java] at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.main(InternalAntRunner.java:137)
    [java] Caused by: java.io.IOException: CreateProcess: "C:\Program Files\Java\jre1.5.0_05\bin\java.exe" -Xmx100M -classpath E:\tarun\java\workspace1\Nss_Gui\main\output;E:\tarun\java\workspace1\Nss_Gui\main\conf;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\GuiXmlQueryRequest.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\GuiXmlQueryResponse.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\cdr\Cdr.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\cdr\CdrDescriptor$1.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\cdr\CdrDescriptor$2.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\cdr\CdrDescriptor.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\cdr\Event.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\cdr\EventDescriptor$1.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\cdr\EventDescriptor�
    [java] at java.lang.ProcessImpl.create(Native Method)
    [java] at java.lang.ProcessImpl.<init>(Unknown Source)
    [java] at java.lang.ProcessImpl.start(Unknown Source)
    [java] at java.lang.ProcessBuilder.start(Unknown Source)
    [java] at java.lang.Runtime.exec(Unknown Source)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    [java] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    [java] at java.lang.reflect.Method.invoke(Unknown Source)
    [java] at org.apache.tools.ant.taskdefs.Execute$Java13CommandLauncher.exec(Execute.java:834)
    [java] at org.apache.tools.ant.taskdefs.Execute.launch(Execute.java:435)
    [java] at org.apache.tools.ant.taskdefs.Execute.execute(Execute.java:449)
    [java] at org.apache.tools.ant.taskdefs.Java.fork(Java.java:751)
    [java] ... 13 more
    [java] --- Nested Exception ---
    [java] java.io.IOException: CreateProcess: "C:\Program Files\Java\jre1.5.0_05\bin\java.exe" -Xmx100M -classpath E:\tarun\java\workspace1\Nss_Gui\main\output;E:\tarun\java\workspace1\Nss_Gui\main\conf;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\GuiXmlQueryRequest.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\GuiXmlQueryResponse.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\cdr\Cdr.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\cdr\CdrDescriptor$1.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\cdr\CdrDescriptor$2.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\cdr\CdrDescriptor.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\cdr\Event.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\cdr\EventDescriptor$1.class;E:\tarun\java\workspace1\Nss_Gui\main\output\com\ardit\nss\common\model\cdr\EventDescriptor�
    [java] at java.lang.ProcessImpl.create(Native Method)
    [java] at java.lang.ProcessImpl.<init>(Unknown Source)
    [java] at java.lang.ProcessImpl.start(Unknown Source)
    [java] at java.lang.ProcessBuilder.start(Unknown Source)
    [java] at java.lang.Runtime.exec(Unknown Source)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    [java] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    [java] at java.lang.reflect.Method.invoke(Unknown Source)
    [java] at org.apache.tools.ant.taskdefs.Execute$Java13CommandLauncher.exec(Execute.java:834)
    [java] at org.apache.tools.ant.taskdefs.Execute.launch(Execute.java:435)
    [java] at org.apache.tools.ant.taskdefs.Execute.execute(Execute.java:449)
    [java] at org.apache.tools.ant.taskdefs.Java.fork(Java.java:751)
    [java] at org.apache.tools.ant.taskdefs.Java.executeJava(Java.java:171)
    [java] at org.apache.tools.ant.taskdefs.Java.execute(Java.java:84)
    [java] at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    [java] at org.apache.tools.ant.Task.perform(Task.java:364)
    [java] at org.apache.tools.ant.Target.execute(Target.java:341)
    [java] at org.apache.tools.ant.Target.performTasks(Target.java:369)
    [java] at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
    [java] at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
    [java] at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
    [java] at org.eclipse.ant.internal.ui.antsupport.EclipseDefaultExecutor.executeTargets(EclipseDefaultExecutor.java:32)
    [java] at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
    [java] at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.run(InternalAntRunner.java:423)
    [java] at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.main(InternalAntRunner.java:137)

    javax.el.PropertyNotFoundException: Target Unreachable, 'oracle' returned null
    The managed bean property 'oracle' is not found with the specified EL expression. What is the EL expression used  and what is the managed bean property?

  • When upgrading to the most current version of iTunes I get the following error message "An application has made an attempt to load the C runtime library incorrectly"  How do I fix this?

    When upgrading iTunes I recieve the following error message "An application has made an attempt to load the C runtime library incorrectly". 
    Program:C:\Program Files\iTunes.exe

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Getting following error while deploying my webservice on weblogic 10.3

    hi
    I am tring to deploy a webservice (spring + cxf ) in weblogic 10.3
    applicationContext.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:p="http://www.springframework.org/schema/p"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:jee="http://www.springframework.org/schema/jee"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:jaxws="http://cxf.apache.org/jaxws"
    xsi:schemaLocation="
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
    http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
    http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">
    <!-- Scan for both Jersey Rest Annotations a -->
    <import resource="classpath:META-INF/cxf/cxf.xml" />
    <import resource="classpath:META-INF/cxf/cxf-extension-http-binding.xml"/>
    <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
    <context:component-scan base-package="com.persistent.rest"/>
    <context:annotation-config />
    <jaxws:endpoint
    id="accountProcess"
    implementor="com.persistent.rest.GetAccountListImpl"
    address="/"
    bindingUri="http://apache.org/cxf/binding/http" >
    <jaxws:serviceFactory>
    <bean class="org.apache.cxf.jaxws.support.JaxWsServiceFactoryBean">
    <property name="wrapped" value="false" />
    </bean>
    </jaxws:serviceFactory>
    </jaxws:endpoint>
    <bean>...........</bean>
    </beans>
    web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>springCXFWeb</display-name>
    <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>WEB-INF/applicationContext.xml</param-value>
    </context-param>
    <listener>
    <listener-class>
    org.springframework.web.context.ContextLoaderListener
    </listener-class>
    </listener>
    <servlet>
    <servlet-name>CXFServlet</servlet-name>
    <servlet-class>
    org.apache.cxf.transport.servlet.CXFServlet
    </servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>CXFServlet</servlet-name>
    <url-pattern>/*</url-pattern>
    </servlet-mapping>
    </web-app>
    Getting following error while deploying my webservice on weblogic 10.3
    <Dec 4, 2009 2:04:04 PM PST> <Error> <org.springframework.web.context.ContextLoader> <BEA-000000> <Context initialization failed
    org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.apache.cxf.wsdl.WSDLManager' defined in class path resource http://META-INF/cxf/cxf.xml: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class http://org.apache.cxf.wsdl11.WSDLManagerImpl: Constructor threw exception; nested exception is java.lang.InternalError: erroneous handlers
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:883)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:839)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:440)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
    Truncated. see log file for complete stacktrace
    org.springframework.beans.BeanInstantiationException: Could not instantiate bean class http://org.apache.cxf.wsdl11.WSDLManagerImpl: Constructor threw exception; nested exception is java.lang.InternalError: erroneous handlers
    at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:115)
    at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:61)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:877)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:839)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:440)
    Truncated. see log file for complete stacktrace
    java.lang.InternalError: erroneous handlers
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:100)
    Truncated. see log file for complete stacktrace
    <Dec 4, 2009 2:04:04 PM PST> <Warning> <HTTP> <BEA-101162> <User defined listener org.springframework.web.context.ContextLoaderListener failed: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.apache.cxf.wsdl.WSDLManager' defined in class path resource http://META-INF/cxf/cxf.xml: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class http://org.apache.cxf.wsdl11.WSDLManagerImpl: Constructor threw exception; nested exception is java.lang.InternalError: erroneous handlers.
    org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.apache.cxf.wsdl.WSDLManager' defined in class path resource http://META-INF/cxf/cxf.xml: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class http://org.apache.cxf.wsdl11.WSDLManagerImpl: Constructor threw exception; nested exception is java.lang.InternalError: erroneous handlers
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:883)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:839)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:440)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
    Truncated. see log file for complete stacktrace
    org.springframework.beans.BeanInstantiationException: Could not instantiate bean class http://org.apache.cxf.wsdl11.WSDLManagerImpl: Constructor threw exception; nested exception is java.lang.InternalError: erroneous handlers
    at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:115)
    at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:61)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:877)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:839)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:440)
    Truncated. see log file for complete stacktrace
    java.lang.InternalError: erroneous handlers
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:100)
    Truncated. see log file for complete stacktrace
    <Dec 4, 2009 2:04:04 PM PST> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1259964185054' for task '2'. Error is: 'weblogic.application.ModuleException: '
    weblogic.application.ModuleException:
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1373)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:468)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
    Truncated. see log file for complete stacktrace
    java.lang.InternalError: erroneous handlers
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:100)
    Truncated. see log file for complete stacktrace
    <Dec 4, 2009 2:04:04 PM PST> <Error> <Deployer> <BEA-149202> <Encountered an exception while attempting to commit the 1 task for the application 'springCXFApp'.>
    <Dec 4, 2009 2:04:04 PM PST> <Warning> <Deployer> <BEA-149004> <Failures were detected while initiating deploy task for application 'springCXFApp'.>
    <Dec 4, 2009 2:04:04 PM PST> <Warning> <Deployer> <BEA-149078> <Stack trace for message 149004
    weblogic.application.ModuleException:
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1373)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:468)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
    Truncated. see log file for complete stacktrace
    java.lang.InternalError: erroneous handlers
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:100)
    Truncated. see log file for complete stacktrace
    thanks

    hi
    I am tring to deploy a webservice (spring + cxf ) in weblogic 10.3
    applicationContext.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:p="http://www.springframework.org/schema/p"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:jee="http://www.springframework.org/schema/jee"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:jaxws="http://cxf.apache.org/jaxws"
    xsi:schemaLocation="
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
    http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
    http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">
    <!-- Scan for both Jersey Rest Annotations a -->
    <import resource="classpath:META-INF/cxf/cxf.xml" />
    <import resource="classpath:META-INF/cxf/cxf-extension-http-binding.xml"/>
    <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
    <context:component-scan base-package="com.persistent.rest"/>
    <context:annotation-config />
    <jaxws:endpoint
    id="accountProcess"
    implementor="com.persistent.rest.GetAccountListImpl"
    address="/"
    bindingUri="http://apache.org/cxf/binding/http" >
    <jaxws:serviceFactory>
    <bean class="org.apache.cxf.jaxws.support.JaxWsServiceFactoryBean">
    <property name="wrapped" value="false" />
    </bean>
    </jaxws:serviceFactory>
    </jaxws:endpoint>
    <bean>...........</bean>
    </beans>
    web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>springCXFWeb</display-name>
    <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>WEB-INF/applicationContext.xml</param-value>
    </context-param>
    <listener>
    <listener-class>
    org.springframework.web.context.ContextLoaderListener
    </listener-class>
    </listener>
    <servlet>
    <servlet-name>CXFServlet</servlet-name>
    <servlet-class>
    org.apache.cxf.transport.servlet.CXFServlet
    </servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>CXFServlet</servlet-name>
    <url-pattern>/*</url-pattern>
    </servlet-mapping>
    </web-app>
    Getting following error while deploying my webservice on weblogic 10.3
    <Dec 4, 2009 2:04:04 PM PST> <Error> <org.springframework.web.context.ContextLoader> <BEA-000000> <Context initialization failed
    org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.apache.cxf.wsdl.WSDLManager' defined in class path resource http://META-INF/cxf/cxf.xml: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class http://org.apache.cxf.wsdl11.WSDLManagerImpl: Constructor threw exception; nested exception is java.lang.InternalError: erroneous handlers
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:883)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:839)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:440)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
    Truncated. see log file for complete stacktrace
    org.springframework.beans.BeanInstantiationException: Could not instantiate bean class http://org.apache.cxf.wsdl11.WSDLManagerImpl: Constructor threw exception; nested exception is java.lang.InternalError: erroneous handlers
    at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:115)
    at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:61)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:877)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:839)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:440)
    Truncated. see log file for complete stacktrace
    java.lang.InternalError: erroneous handlers
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:100)
    Truncated. see log file for complete stacktrace
    <Dec 4, 2009 2:04:04 PM PST> <Warning> <HTTP> <BEA-101162> <User defined listener org.springframework.web.context.ContextLoaderListener failed: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.apache.cxf.wsdl.WSDLManager' defined in class path resource http://META-INF/cxf/cxf.xml: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class http://org.apache.cxf.wsdl11.WSDLManagerImpl: Constructor threw exception; nested exception is java.lang.InternalError: erroneous handlers.
    org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.apache.cxf.wsdl.WSDLManager' defined in class path resource http://META-INF/cxf/cxf.xml: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class http://org.apache.cxf.wsdl11.WSDLManagerImpl: Constructor threw exception; nested exception is java.lang.InternalError: erroneous handlers
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:883)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:839)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:440)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
    Truncated. see log file for complete stacktrace
    org.springframework.beans.BeanInstantiationException: Could not instantiate bean class http://org.apache.cxf.wsdl11.WSDLManagerImpl: Constructor threw exception; nested exception is java.lang.InternalError: erroneous handlers
    at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:115)
    at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:61)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:877)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:839)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:440)
    Truncated. see log file for complete stacktrace
    java.lang.InternalError: erroneous handlers
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:100)
    Truncated. see log file for complete stacktrace
    <Dec 4, 2009 2:04:04 PM PST> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1259964185054' for task '2'. Error is: 'weblogic.application.ModuleException: '
    weblogic.application.ModuleException:
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1373)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:468)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
    Truncated. see log file for complete stacktrace
    java.lang.InternalError: erroneous handlers
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:100)
    Truncated. see log file for complete stacktrace
    <Dec 4, 2009 2:04:04 PM PST> <Error> <Deployer> <BEA-149202> <Encountered an exception while attempting to commit the 1 task for the application 'springCXFApp'.>
    <Dec 4, 2009 2:04:04 PM PST> <Warning> <Deployer> <BEA-149004> <Failures were detected while initiating deploy task for application 'springCXFApp'.>
    <Dec 4, 2009 2:04:04 PM PST> <Warning> <Deployer> <BEA-149078> <Stack trace for message 149004
    weblogic.application.ModuleException:
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1373)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:468)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
    Truncated. see log file for complete stacktrace
    java.lang.InternalError: erroneous handlers
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:100)
    Truncated. see log file for complete stacktrace
    thanks

  • I recently tried to update iTunes to 11.1, and am now getting an error message "This application has failed to start because MSVCR80.d11 was not found."  I have uninstalled and reinstalled iTunes multiple times.  Am running Windows XP Svc Pack 3.  help

    I recently tried to update iTunes to 11.1, and am now getting an error message "This application has failed to start because MSVCR80.dll was not found.  Reinstalling the application may fix this problem."  I have uninstalled and reinstalled iTunes several times with no success.  I am running Windows XP Svc Pack 3.  Help please.

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (99753)

  • During iTunes installation "Registering iTunes automation server"... I am getting following error messag from "Microsoft visual C   runtime Library"... Runtime Error! Program: C:\program files (x86)\iTunes\iTunes.exe

    During iTunes installation, when it comes to installation phase "Registering iTunes automation server"... I am getting following error message:
    "Microsoft visual C++ runtime Library"...
    "Runtime Error! Program: C:\program files (x86)\iTunes\iTunes.exe"
    "R6034
    An application has made an attempt to load the C runtime library incorrectly. Please contact the application's support team for more information."
    My system is Windows 7 Enterprise - Service Pack1

    Check the user tip below.
    https://discussions.apple.com/docs/DOC-6562

  • When I try to run iTunes I receive the following error message: "Apple Application Support was not found.  Apple Application Support is required to run iTunes helper.  Please unistall iTunes, then install iTunes again". I have done this twice.  What now?

    When I try to run iTunes I receive the following error message: "Apple Application Support was not found.  Apple Application Support is required to run iTunes helper.  Please unistall iTunes, then install iTunes again". I have done this twice and continue to get the error message.  What now?

    Hi texasslagle,
    It sounds like you are having issues installing iTunes on your Windows 7 PC, a frustrating situation I am sure.
    There is an article that you may want to use to try to complete your install here -
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/ts5376
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • When I try to start Firefox I get an Error Message: (Javascript /application) Error on adding toolbar element. TypeError, aButtonLabel is undefined. id. Google Shortcut settings

    When I try to start Firefox I get an Error Message: (Javascript /application) Error on adding toolbar element. TypeError, aButtonLabel is undefined. id. Google Shortcut settings. Firefox will not start. I have been through the troubleshooting steps. Nothing helps
    == I tried to enter Firefox. No apparant reason ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; AskTbGLSV5/5.8.0.12304)

    Hi,
    had this problem but now sorted.
    Go to settings for google shortcuts, follow link to homepage and upload latest version, it has not yet been approved by Firefox, but works and solves the bug.
    Hope this helps.
    A

  • DB13 Database check getting following error

    Job started
    Step 001 started (program RSDBAJOB, variant &0000000000116, user ID KMDBASIS)
    No application server found on database host - rsh/gateway will be used
    Execute logical command BRCONNECT On host sapbwpor3
    Parameters: -u / -jid CHECK20070822134120 -c -f check
    BR0801I BRCONNECT 7.00 (26)
    BR0252E Function NetShareGetInfo() failed for 'sapmnt' at location BrEnvProcess-89
    BR0253E errno 2310: This shared resource does notexist.
    BR0806I End of BRCONNECT processing: cdvzfvhd.log2007-08-22 13.41.25
    BR0280I BRCONNECT time stamp: 2007-08-22 13.41.25
    BR0804I BRCONNECT terminated with errors
    External program terminated with exit code 3
    BRCONNECT returned error status E
    Job finished

    this post is duplicated at DB13  Database check getting following error.

  • When I open Firefox I get this error-firefox.exe application error the instruction at 0x02c38690 referenced memory at 0x02c38690 the memory could not be written

    When I open Firefox I get the following error: firefox.exe application error - The instruction at 0x02c38690 referenced memory at 0x02c38690 - The memory could not be written - Click on OK to terminate the program.
    If you click on OK it closes Firefox - You can not reopen Firefox until you reboot the computer. Then it starts all over again.
    The same happens if I click the "X" instead on the error window.

    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Having trouble with Face Time app, get following error messages

    Since having a new hard drive installed in computer my Face Time account no longer works. Everytime i try and sign into my Face Time account= get following error message
    "the server encountered an error processing registration. Please try again later.
    = when try and install the app from mac store error message says
    "A newer version of this app is already installed on this computer
    If you want to replace it with this version, move the existing app to the trash.
    BUT WHEN TRY TO DELETE APP ON COMPUTUER (AS IT IS NOT WORKING)
    Get following error message " Face Time.app" can't be modified or deleted because it is required by Mac OS X.
    have MacBook Pro
    mountain Lion
    Software OS X 10.8.3
    Hope you can assist, best wishes GG

    This could be a complicated problem to solve, as there are many possible causes for it. Test after taking each of the following steps that you haven't already tried. Back up all data before making any changes.
    Before proceeding, test on another network, if possible. That could be a public Wi-Fi hotspot, if your computer is portable, or a cellular network if you have a mobile device that can share its Internet connection. If you find that iMessage works on the other network, the problem is in your network or at your ISP, not in your computer.
    Step 1
    Check the status of the service. If the service is down, wait tor it to come back up. There may be a localized outage, even if the status indicator is green.
    Step 2
    Restart your broadband device and your router, if different. You may have to skip this step if you don't control those devices.
    Step 3
    From the menu bar, select
     ▹ About This Mac
    Below the "OS X" legend in the window that opens, the OS version appears. Click the version line twice to display the serial number. If the number is missing or obviously invalid, take the machine to an Apple Store or other authorized service center to have the problem corrected.
    Step 4
    Back up all data, then take the steps suggested in this support article.
    There are five steps in that article. Please take all of them. If you don't understand some of the steps or can't carry them out, ask for guidance.
    Step 5
    From the menu bar, select
     ▹ System Preferences ▹ Network
    If the preference pane is locked, click the lock icon in the lower left corner and enter your password to unlock it. Then click the Advanced button and select the Proxies tab. If any proxy options are selected, make a note of them and then deselect them. You don’t need to change the bypass or FTP settings. Click OK and then Apply. Test. The result may be that you can't connect to any web server. Restore the previous settings if that happens.
    Step 6
    Reset the NVRAM.
    Step 7
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    If iMessage worked in the guest account, stop here and post your results.
    Step 8
    Boot in safe mode and log in. Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including Wi-Fi on certain iMacs.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. After testing, reboot as usual (i.e., not in safe mode) and test again.
    If iMessage worked in safe mode, but didn't work when you booted out of safe mode, stop here and post your results.
    Step 9
    According to one anecdotal report, Flash Player may interfere with iMessage, though I don't know how and can't confirm. To test this theory, select from the menu bar
     ▹ System Preferences… ▹ Flash Player ▹ Storage
    and click
    Block all sites from storing information on this computer
    Close the preference pane. If this action solves the problem, please post your results.
    Step 10
    Boot into Recovery and reinstall OS X.
    Step 11
    If none of the above steps resolves the issue, make a "Genius" appointment at an Apple Store, or contact Apple  Support.

Maybe you are looking for

  • How do I set up a seperate ITunes account on same MacBook?  I'm running snow leopard

    I have a MacBook and want to run two distinct ITunes accounts with different libraries and billing.  How do I do that?

  • Cannot update to iTunes 10.7 on Windows 7

    When I go to update iTunes, it says there are issues and I would have to go to Tools > Download Only. I can't find that option (I'm on iTunes 10.6.1.7) but I assume it wouldn't work because the guys on different discussions/forums all said it doesn't

  • Handling large wave files

    Hi, I got a 2gb wave recording of a live gig. What I want to do is to clean it, add some effects and finally export it into separate mp3 files - one for each number. What would you do? I've tried blading the wavefile and moving them to each separate

  • Hover color on ContextMenu

    How do i change the hover color used on a menu item in a ContextMenu using setStyle() or getStyleClass().add() Actually I'd like to remove / switch off the hover color. I suppose this would be done by making the hover color the same as the normal bac

  • 8.2 wont install!!

    ok, so when i tried to install iTunes 8.2, it started, but then said it could not access %APPDATA%\. I tried installing Quicktime on its own, that didn't work. I tried what it said on the iTunes help page, and they didn't work either! It won't recogn