Asking the same problem the 3rd time

our project is to use j2ee set up a simple portal for a poly. As the tutor required, there must be a entity bean and a session bean. however, I always got the same error message.
the error message from the running shell is like this:
D:\tools\news>runclient -client news.ear -name client -textauth
Initiating login ...
Enter Username:guest
Enter Password:guest123
Binding name:`java:comp/env/ejb/MyClient`
Error getting object: RemoteException occurred in server thread; nested exceptio
n is:
java.rmi.RemoteException: createNews: ejbCreate:xxxxxxx Connection refused to host: 172.16.1.35; nested exception is:
java.net.ConnectException: Connection refused: connect
D:\tools\news>
and the error from the j2ee log file is like this:
Warning: Application should provide username/password for resource reference jdbc/Cloudscape with application authorization
javax.ejb.EJBException: ejbCreate:xxxxxxx Connection refused to host: 172.16.1.34; nested exception is:
     java.net.ConnectException: Connection refused: connect
     at NewsBean.ejbCreate(NewsBean.java:43)
     at NewsBean_LocalHomeImpl.create(NewsBean_LocalHomeImpl.java:72)
     at NewsControllerBean.createNews(NewsControllerBean.java:39)
     at NewsControllerBean_EJBObjectImpl.createNews(NewsControllerBean_EJBObjectImpl.java:302)
     at NewsControllerBeanEJBObjectImpl_Tie._invoke(Unknown Source)
     at com.sun.corba.ee.internal.POA.GenericPOAServerSC.dispatchToServant(GenericPOAServerSC.java:520)
     at com.sun.corba.ee.internal.POA.GenericPOAServerSC.internalDispatch(GenericPOAServerSC.java:210)
     at com.sun.corba.ee.internal.POA.GenericPOAServerSC.dispatch(GenericPOAServerSC.java:112)
     at com.sun.corba.ee.internal.iiop.ORB.process(ORB.java:255)
     at com.sun.corba.ee.internal.iiop.RequestProcessor.process(RequestProcessor.java:84)
     at com.sun.corba.ee.internal.orbutil.ThreadPool$PooledThread.run(ThreadPool.java:99)
javax.ejb.EJBException: createNews: ejbCreate:xxxxxxx Connection refused to host: 172.16.1.34; nested exception is:
     java.net.ConnectException: Connection refused: connect
     at NewsControllerBean.createNews(NewsControllerBean.java:44)
     at NewsControllerBean_EJBObjectImpl.createNews(NewsControllerBean_EJBObjectImpl.java:302)
     at NewsControllerBeanEJBObjectImpl_Tie._invoke(Unknown Source)
     at com.sun.corba.ee.internal.POA.GenericPOAServerSC.dispatchToServant(GenericPOAServerSC.java:520)
     at com.sun.corba.ee.internal.POA.GenericPOAServerSC.internalDispatch(GenericPOAServerSC.java:210)
     at com.sun.corba.ee.internal.POA.GenericPOAServerSC.dispatch(GenericPOAServerSC.java:112)
     at com.sun.corba.ee.internal.iiop.ORB.process(ORB.java:255)
     at com.sun.corba.ee.internal.iiop.RequestProcessor.process(RequestProcessor.java:84)
     at com.sun.corba.ee.internal.orbutil.ThreadPool$PooledThread.run(ThreadPool.java:99)
java.rmi.RemoteException: createNews: ejbCreate:xxxxxxx Connection refused to host: 172.16.1.34; nested exception is:
     java.net.ConnectException: Connection refused: connect
     at com.sun.enterprise.iiop.POAProtocolMgr.mapException(POAProtocolMgr.java:389)
     at com.sun.ejb.containers.BaseContainer.postInvoke(BaseContainer.java:431)
     at NewsControllerBean_EJBObjectImpl.createNews(NewsControllerBean_EJBObjectImpl.java:306)
     at NewsControllerBeanEJBObjectImpl_Tie._invoke(Unknown Source)
     at com.sun.corba.ee.internal.POA.GenericPOAServerSC.dispatchToServant(GenericPOAServerSC.java:520)
     at com.sun.corba.ee.internal.POA.GenericPOAServerSC.internalDispatch(GenericPOAServerSC.java:210)
     at com.sun.corba.ee.internal.POA.GenericPOAServerSC.dispatch(GenericPOAServerSC.java:112)
     at com.sun.corba.ee.internal.iiop.ORB.process(ORB.java:255)
     at com.sun.corba.ee.internal.iiop.RequestProcessor.process(RequestProcessor.java:84)
     at com.sun.corba.ee.internal.orbutil.ThreadPool$PooledThread.run(ThreadPool.java:99)
I created an entity bean as following:
import java.sql.*;
import javax.sql.*;
import java.util.*;
import java.math.*;
import javax.ejb.*;
import javax.naming.*;
import java.util.*;
import java.util.Date;
//import news.Helper;
public class NewsBean implements EntityBean
     private String title;
     private String type;
     private String content;
     private Date date;
private String newsId;
private EntityContext context;
private Connection con;
//     private Helper helper;
//     private EntityContext context;
     private String dbName = "java:comp/env/jdbc/newsDB";
     public String ejbCreate(String title, String content, String type, Date date) throws CreateException
          if(content == null)
               throw new CreateException("content cannot be empty");
          this.title = title;
          this.content = content;
          this.type = type;
          this.date = date;
          this.newsId = Helper.getNewsId(date);
          System.out.println("ccccc" + newsId + "ddddddd");
          try
          System.out.println("jian ren xu jia");
               insertRow();
               System.out.println("wu xia xiao shuo");
          catch (Exception ex)
               throw new EJBException ("ejbCreate:xxxxxxx " + ex.getMessage());
          System.out.println("aiiiiiiiiiiiiiiiiiiiiiii!");
          return newsId;
     public String ejbCreate(String title, String content) throws CreateException
          if(content == null)
               throw new CreateException("content cannot be empty");
          try
               insertRow();
          catch (Exception ex)
               throw new EJBException ("ejbCreate: " + ex.getMessage());
          this.title = title;
          this.content = content;
          this.type = "default";
          this.date = new Date();
          this.newsId = Helper.getNewsId(date);
          return newsId;
     public void ejbRemove()
          try
               deleteRow(newsId);
          catch(Exception ex)
               throw new EJBException("ejbRemove: " + ex.getMessage());
     public void ejbLoad()
          try
               loadRow();
          catch(Exception ex)
               throw new EJBException("ejbLoad: "+ ex.getMessage());
     public void ejbStore()
          try
               storeRow();
          catch(Exception ex)
               throw new EJBException ("ejbStore: " + ex.getMessage());
public void ejbPassivate() {}
public void ejbPostCreate (String title, String content, String type, Date date) throws CreateException{}
public void ejbPostCreate(String title, String content) throws CreateException {}
public void ejbActivate() {}
public void unsetEntityContext() {context = null;}
public void setEntityContext(javax.ejb.EntityContext context)
     this.context = context;
     public Collection ejbFindInRage(String start, String end)
          Collection result;
          try
               result = selectInRange(start, end);
          catch(Exception ex)
               throw new EJBException ("ejbFindInRange: " + ex.getMessage());
          return result;
     public String ejbFindByPrimaryKey(String primary) throws ObjectNotFoundException, FinderException
          boolean result;
          try
               result = selectByPrimaryKey(primary);
          catch(Exception ex)
               throw new EJBException("ejbFindByPrimaryKey: " + ex.getMessage());
          if(result)
               return primary;
          else
               throw new FinderException("Row for id " + primary + " not found.");
     public String ejbFindByTitle(String tt) throws ObjectNotFoundException,FinderException
          boolean result;
          try
               result = selectByTitle(tt);
          catch(Exception ex)
               throw new EJBException ("ejbFindByTitle: " + ex.getMessage());
          if(result)
               return tt;
          else
               throw new FinderException("Row for title " + tt + " not found.");
     public void setContent (String content)
          this.content = content;
     public void setDate(Date date)
          this.date = date;
     public void setTitle (String t)
          this.title = t;
     public void setType(String t)
          this.type = t;
     public String getTitle()
          return title;
     public String getContent()
          return content;
     public String getType ()
          return type;
     public Date getDate()
          return date;
     public String getNewsId()
          return newsId;
/**************************************Database Routines***********************************/
     private void makeConnection()
          try
               InitialContext ic = new InitialContext();
               DataSource ds = (DataSource)ic.lookup(dbName);
               con = ds.getConnection();
          catch(Exception ex)
               throw new EJBException ("Unable to connect to database." + ex.getMessage());
     private void releaseConnection() throws SQLException
          try
          if(con != null)
               con.close();
          catch(SQLException ex)
          throw new RuntimeException ("cannot close DataBase connection:\n"
               + ex.getMessage());
          catch(Exception ex)
               throw new EJBException("releaseConnection." + ex.getMessage());
     private void closeStatement(PreparedStatement ps) throws RuntimeException
     try
          if(ps != null)
          ps.close();
     catch(SQLException ex)
          throw new RuntimeException("cannot close sql statement:\n" + ex.getMessage());
     private void closeResultSet(ResultSet rs) throws RuntimeException
     try
          if(rs != null)
          rs.close();
     catch(SQLException ex)
          throw new RuntimeException("cannot close sql ResultSet:\n" + ex.getMessage());
     private void insertRow() throws SQLException
     System.out.println("iiiiiisert");
          makeConnection();
          String insertStatement =
               "insert into news values (?,?,?,?,?)";
          PreparedStatement prep = con.prepareStatement(insertStatement);
          prep.setString(1,newsId);
          prep.setString(2,title);
          prep.setString(3,content);
          prep.setString(4,type);
          prep.setDate(5,new java.sql.Date(date.getTime()));
          prep.executeUpdate();
          closeStatement(prep);
          releaseConnection();
          System.out.println("insert ended!!!!!!!!");          
     private void deleteRow(String id) throws SQLException
          makeConnection();
          String delString = "delete from news where news_id = ?";
          PreparedStatement prep = con.prepareStatement(delString);
          prep.setString(1,id);
          prep.executeUpdate();
          prep.close();
          releaseConnection();
     private boolean selectByPrimaryKey(String pk) throws SQLException
          makeConnection();
          String selString = "select news_id from news where news_id = ?";
          PreparedStatement prep = con.prepareStatement(selString);
          prep.setString(1,pk);
          ResultSet rs = prep.executeQuery();
          boolean result = rs.next();
          prep.close();
          releaseConnection();
          return result;
     private boolean selectByTitle(String tt) throws SQLException
          makeConnection();
          String selString = "select news_id from news where news_id = ?";
          PreparedStatement prep = con.prepareStatement(selString);
          prep.setString(1,tt);
          ResultSet rs = prep.executeQuery();
          boolean result = rs.next();
          prep.close();
          releaseConnection();
          return result;
     private void loadRow() throws SQLException
          makeConnection();
          String selString = "select title, content, type,"
          + "date from news where news_id =?";
          PreparedStatement prep = con.prepareStatement(selString);
          prep.setString(1,newsId);
          ResultSet rs = prep.executeQuery();
          if(rs.next())
               title = rs.getString(2);
               content = rs.getString(3);
               type = rs.getString(4);
               date = rs.getDate(5);
               prep.close();
               releaseConnection();
          else
               prep.close();
               releaseConnection();
               throw new NoSuchEntityException("row for id " + newsId + " not found "
                         + " in the database.");
     private void storeRow () throws SQLException
          makeConnection();
          String upString = "update news set newsId = ?,title = ?, content = ?, type = ?, "
               + " date = ? where news_id = newsId";
          PreparedStatement prep = con.prepareStatement(upString);
          prep.setString(1,newsId);
          prep.setString(2,title);
          prep.setString(3,content);
          prep.setString(4,type);
          prep.setDate(5,new java.sql.Date(date.getTime()));
          int rowCount = prep.executeUpdate();
          prep.close();
          releaseConnection();
          if(rowCount == 0)
               throw new EJBException ("Storing row for newsId " + newsId + " failed.");
class Helper
     public static String getNewsId(Date date)
          GregorianCalendar calendar = new GregorianCalendar();
          calendar.setTime(date);
          String ss = "" + calendar.get(Calendar.YEAR) + calendar.get(Calendar.MONTH)
               + calendar.get(Calendar.DATE) + calendar.get(Calendar.HOUR) +
               calendar.get(Calendar.MINUTE) + calendar.get(Calendar.SECOND);
          System.out.println("this is: " + ss + "xxxxxx");
          return ss;
and a session bean like this:
import java.sql.*;
import javax.sql.*;
import java.util.*;
import java.math.*;
import javax.ejb.*;
import javax.naming.*;
import java.rmi.RemoteException;
import java.util.Date;
import javax.rmi.PortableRemoteObject;
public class NewsControllerBean implements SessionBean
private NewsLocalHome newsHome;
private NewsLocal news;
private Date date;
private String title;
private String newsId;
private String content;
public String createNews(String title, String content, String type,Date date) throws NewsNotFoundException, InvalidParameterException
     if(title == null)
          throw new InvalidParameterException("title null");
     else this.title = title;
     if(content == null)
          throw new InvalidParameterException("content null");
     if(type == null)
          type = "default";
     if(date == null)
          date = new Date();
     try
          System.out.println("ta ma de, NewsControllerBean");
          news = newsHome.create(title,content,type,date);
          System.out.println("ta nn de, NewsControllerBean");
     catch (Exception ex)
          throw new EJBException("createNews: " + ex.getMessage());
     try
               newsId = getNewsId();
     catch(Exception ex)
          throw new EJBException("gettingNewsId: " + ex.getMessage());
     // return, maybe not right.
     return title;
public void removeNews(String newsId) throws NewsNotFoundException, InvalidParameterException
     if(newsId == null)
          throw new InvalidParameterException("null newsId" );
     if(newsExists(newsId) == false)
          throw new NewsNotFoundException(newsId);
     try
          news.remove();
     catch (Exception ex)
          throw new EJBException("removeNews: " + ex.getMessage());
public void ejbCreate() {
try {
     System.out.println("define by me: error in controller");
InitialContext initial = new InitialContext();
Object objref = initial.lookup("java:comp/env/ejb/NewsManager");
System.out.println("hannnnnnnnn");
newsHome = (NewsLocalHome)PortableRemoteObject.narrow(objref, NewsLocalHome.class);
     System.out.println("xu jia jian ren");
} catch (Exception ex) {
throw new EJBException("ejbCreate: " +
ex.getMessage());
} // ejbCreate
public NewsControllerBean() {}
public void ejbRemove() {}
public void ejbActivate() {}
public void ejbPassivate() {}
public void setSessionContext(SessionContext sc) {}
public String getTitle()
     String title;
try {
title= news.getTitle();
} catch (Exception ex) {
throw new EJBException("getTitle: "
+ ex.getMessage());
     return title;
public String getContent()
     String content;
try {
content = news.getContent();
} catch (Exception ex) {
throw new EJBException("getContent: "
+ ex.getMessage());
     return content;
public String getType()
     String type;
try {
type = news.getType();
} catch (Exception ex) {
throw new EJBException("getType: "
+ ex.getMessage());
     return type;
public Date getDate()
     Date date;
try {
date = news.getDate();
} catch (Exception ex) {
throw new EJBException("getDate: "
+ ex.getMessage());
     return date;
public String getNewsId()
     String id;
try {
id = news.getNewsId();
} catch (Exception ex) {
throw new EJBException("getNewsId: "
+ ex.getMessage());
     return id;
public void setTitle(String title) throws NewsNotFoundException, InvalidParameterException
     if(title == null)
          throw new InvalidParameterException("null title");
     if(newsExists(this.newsId) == false)
          throw new NewsNotFoundException(newsId);
     try
          news.setTitle(title);
     catch(Exception ex)
          throw new EJBException("setTitle: " + ex.getMessage());
public void setContent(String content) throws NewsNotFoundException, InvalidParameterException
     if(content == null)
          throw new InvalidParameterException("null content");
     if(newsExists(this.newsId) == false)
          throw new NewsNotFoundException(newsId);
     try
          news.setContent(content);
     catch(Exception ex)
          throw new EJBException("setContent: " + ex.getMessage());
public void setType(String type) throws NewsNotFoundException, InvalidParameterException
     if(type == null)
          throw new InvalidParameterException("null type");
     if(newsExists(this.newsId) == false)
          throw new NewsNotFoundException(newsId);
     try
          news.setType(type);
     catch(Exception ex)
          throw new EJBException("setType: " + ex.getMessage());
public void setDate(Date date) throws NewsNotFoundException, InvalidParameterException
     if(date == null)
          throw new InvalidParameterException("null date");
     if(newsExists(this.newsId) == false)
          throw new NewsNotFoundException(newsId);
     try
          news.setDate(date);
     catch(Exception ex)
          throw new EJBException("setDate: " + ex.getMessage());
private boolean newsExists(String newsId) {
// If a business method has been invoked with
// a different accountId, then find the new
// accountId and update the accountId and account
// variables. Return false if the account
// cannot be found.
try {
newsHome.findByPrimaryKey(newsId);
} catch (Exception ex) {
return false;
return true;
} // sreamExists
can someone give me some guide?

You must be using j2ee 1.3. Use Container authentication and set the username and password via deploytool for the JNDI entry for cloudscape.
If you must you User Auth, you should specify the user/password via getConnection.

Similar Messages

  • Cannot sign into my pc with icloud just reinstalled for the 3rd time!!! I am doing it all right there is a major problem!

    cannot sign into my pc with icloud just reinstalled for the 3rd time!!! I am doing it all right there is a major problem! The wheel keeps spinning!!!!! says problem with server. 

    Which version of Audition? With the latest version of Audition running on a Windows 7 machine I can't get a dropdown menu at all when I left click on the time in Markers List. The only way to do it is with cntrl-c.

  • I purchased numbers for my mac and my iPad.  It is asking me to purchase it again (for the 3rd time) for my iPhone.  Is that correct?

    I purchased numbers for my mac and my iPad.  It is asking me to purchase  it again (for the 3rd time) for my iPhone. 
    Is that correct?

    You only need to purchase Numbers once for each OS. Have you tried connecting your iPhone to your Mac via iTunes & adding Numbers there?
    Eric,
    The iOS versions of the iWork apps are "universal' & there is no reason to have to buy the iPhone version first.

  • EXTREMELY slow synching and having to reinstall, for the 3rd time!

    Recently, I got an update for iTunes. I installed it and it said "Would you like windows to restart now or would you like to manually restart later?" I clicked on that I would manually restart. Well, I had computer problems so I had to hold down the power button and restart. (This is unhealthy and should only be done in an emergency!) When I turned it back on, I got an alert that said "Unable to open iTunes, please uninstall then reinstall." So I did. This is about the 3rd time this has happened. Now my iPod Video (80g) syncs majorly slow. Like when I say majorly I mean about 30min-1hr major. If you could help me in any way, that would be awesome!
    +EDIT: Also, when I'm listening to my music it will stop at random parts of the song, any idea why? It has done this ever since it came out of the box!+
    Message was edited by: Ashleigh Martini

    So, since it syncs really slowly, make sure that it's not a USB issue with the iPod. Make sure it's the only USB device plugged in since the others might be taking power, and then try to get the iPod plugged in directly to the back of the computer to make sure it's plugged into your more powerful ports.
    If that doesn't do it, it might be confused with a network drive and following that article helps you change the drive letter.
    Also make sure to disable any third party software that might be interfering with it, go through this article if you've got XP or this one if you're using Vista.
    Hope I was of some help,
    iTunes Helper.

  • What hard drive can I put in a touchsmart iq800? This is the 3rd time it's crashed.

    I have a touchsmart iq800 with windows 7, 64 bit. This is the 3rd time I've had a hard drive failure in 2 1/2 years.  I am not too familiar with computer lingo and need to know what type of hard drive to get. I called hp and they wouldn't tell me anything because I'm out of warranty. I know I have a seagate. At this point, I want something entirely different. If someone could just tell me what name, #, etc of a hard drive, I can order one. I've installed 2 already and am getting good at it. Not sure if that's good or not! thanks in advance. 

    The iq800 appears to be a series number and not a model or product number. Please provide the full HP model name and/or product number of the computer in question for accurate assistance.
    Frank
    {------------ Please click the "White Kudos" Thumbs Up to say THANKS for helping.
    Please click the "Accept As Solution" on my post, if my assistance has solved your issue. ------------V
    This is a user supported forum. I am a volunteer and I don't work for HP.
    HP 15t-j100 (on loan from HP)
    HP 13 Split x2 (on loan from HP)
    HP Slate8 Pro (on loan from HP)
    HP a1632x - Windows 7, 4GB RAM, AMD Radeon HD 6450
    HP p6130y - Windows 7, 8GB RAM, AMD Radeon HD 6450
    HP p6320y - Windows 7, 8GB RAM, NVIDIA GT 240
    HP p7-1026 - Windows 7, 6GB RAM, AMD Radeon HD 6450
    HP p6787c - Windows 7, 8GB RAM, NVIDIA GT 240

  • I ask the third time: How can I enlarge the menue symbols and the text of the menue in Photoshop CS6 vers.13 so that I can read them??? My laptop has Win 8.1 and a screen resolution of 3840x2160

    I ask the third time:
    How can I enlarge the menue symbols and the text of the menue in Photoshop CS6 vers.13 so that I can read them??? My laptop has Win 8.1 and a screen resolution of 3840x2160.
    It is unbelievable that such an expensive software does not provide a proper lay out wit a high screen resolution!
    It is also unbelivable that it is not possible to get a qualified employee of ADOBE on the phone in Germany.
    hope of feed back: e-mail: [email protected]

    Chris Cox answered your question here:
    I have PS cs6 extended and a new laptop with screen resolution of 3840x2160. Now all control elements and menues are so small that I can not reed them. How can I make them readable without reducing the resolution of the schreen?

  • Mac mini stuck at start up screen for the 3rd time

    My 2011 Mac mini gets stuck at the boot up screen and this is the 3rd time it has happened what do I do

    Unplug everything except power. Certain peripherals cause this. Return it!

  • So For The 3rd TIME WHEN I'VE PLEADINGLY ASKED NOT TO UPDATED Why Does FF Update My Browser?

    You see, I've asked this same question twice before, because Firefox has once again for the third time updated by browser DESPITE MY PLEADING REQUEST TWICE BEFORE NOT TO DO SO. but now I have a platform to make Firefox's DISHONESY public, putting them to task for specifically defying a very adamant request, NOT TO UPDATE MY BROWSER, CIRCUMSTANCES THAT have consistently, repeatedly occurred throughout all the years I've been with Firefox since 2005.
    Why is it that Firefox deliberately continues to defy, ignore the wishes of its most loyal customers inflame me beyond words, when I've repeatedly made it KNOWN QUITE WELL NOT TO HAVE MY BROWSER UPDATED.
    BUT NOW AFTER ALL THIS TIME, TOGETHER WITH THE INSIGHT I HAVE ACCRUED AS AN IT INDUSTRY SPECIALIST I do very well know why Firefox CONTINUES THIS PRACTICE WITH ABANDON.
    1.They don't like anyone fooling around with the about:config (then why did you ever include it in the first place) the way I do.
    2. They don't like anyone making incompatible add-ons extensions COMPATIBLE again the way I do.
    3. They don't like anyone tampering with Firefox the way I do.
    And all Firefox has to do to nullify all the meticulous hard work I spend changing about:config. configurations to accommodate my own and my company's needs and all the hard work. spending time enabling newly incompatible extensions I need to work as efficiently and effectively as possibleamong other things that I've tweaked, WHICH I EXACTLY WHAT YOU DO FOR THE REASONS I GAVE. YOU DO IT deliberately, spitefully so. And that is the definitive reason for YOUR total defiance in disregarding a customer's request. Additionally, YOU, fIREFOX feel that since YOU wrote the code, and own the code, YOU can insist USERS follow the Firefox protocols exactly as YOU demand.
    Another example of YOUR dictatorial approach to browsing the web is that that YOU feel no one should dare take a gander at content that is not up to the standards of WHAT YOU BELIEVE IS purity AND ANY OTHER CONTENT CORRUPTING THE MORALS OF OUR YOUTH.
    In one of the instances in which my browser was updated despite my adamant position against it, SOMEONE IN YOUR ORGANIZATION deleted several STRICTLY STRAIGHT adult sites from my bookmarks.
    SO NOW, NOT ONLY DO you HAVE AN INTRUSIVE BIG BROTHER ATTITUDE THAT NO ONE DARE DEVIATE FROM THE OFFICIAL FIREFOX BROWSING PROTOCOLS BUT NOW YOU'VE IMPLEMENTED A CENSORING CAMPAIGN ON WHAT YOU CAN READ, LOOK AT OR SIMPLY BOOKMARK.
    BUT IT GETS WORSE, MUCH WORSE.THE LAST TWO TIMES YOU UPDATED MY BROWSER AGAINST MY WISHES, YOU GAVE ME THE LAMEST MOST ASININE, INSULTING, MORONIC REASON WHY YOU UPDATED IT TWICE BEFORE AS IF THEY WERE MERELY EXTENUATING CIRCUMSTANCES THAT OTHERWISE WOULD NEVER HAVE VIOLATED YOUR CUSTOMER'S PRIVACY AS WELL AS BEING DEFIANT, ARROGANT AND JUST PLAIN TERRIBLE BUSINESS PRACTICES. BUT NOW IN ADDITION TO PROVING YOURSELVES TO BEING SOCIOPATH MEGALOMANIACS YOU'VE ALSO REVEALED YOURSELVES TO BEING ABSOLUTE CHRONIC LIARS.
    AND THAT IS BECAUSE I'M IN CHARGE OF MY COMPANY'S IT DEPARTMENT AND HAVE MANY COMPUTERS UNDER MY CONTROL AND SUPERVISION. I'VE ONLY RECENTLY SWITCHED OVER SOME OF OUR COMPUTERS FROM IE TO FIREFOX AS A TEST AND I AM PRIVY TO WHAT HAS BEEN GOING ON AMONG THE COMPUTERS THAT HAVE BEEN USING FIREFOX AS A TEST STUDY.
    AND WHILE THE TRUTH BEING WHAT IT IS, YOU MADE SURE NOT TO MESS WITH MY BROWSER, AS IT IS CLEARLY CONFIGURED NOT TO BE UPDATED, WHICH TO YOUR CREDIT, YOU HAD GIVEN IT A WIDE BERTH, BUT YOU DID SINISTERLY UPDATE SIX COMPUTERS THAT WERE PART OF OUR TEST STUDY
    THAT HAD THE SAME BROWSER CONFIGURATION REQUEST NOT TO BE UPDATED BUT WHICH YOU UPDATED NEVERTHELESS. THESE COMPUTERS WERE PART OF A PRODUCTIVITY STUDY WHICH BY UPDATING IT SET THE ENTIRE LITTLE EXPERIMENT OF OURS BACK A BIT.
    SO, WHAT AM I GOING TO DO WITH YOU? I REALLY HAVE TO THINK LONG AND HARD ABOUT HOW I RESPOND TO AN ORGANIZATION THAT HAS SHOWN NOTHING BUT THE WORST SORT OF APATHY, DISHONEST BUSINESS PRACTICES I'VE SEEN SINCE BEING IN THE IT INDUSTRY.

    Firefox never forces updates on me. I set three settings in the about:config window.
    <pre>app.update.auto = false
    app.update.enabled = false
    app.update.silent = false</pre>

  • Uploeaded the latest FF version and very happy with it. When I restart my comp because of other problems..... games and video get slow again. This is the 3rd time and I have to wait for a new update to fix it. What di I do?

    Hi, I have a Mac running 10.4.11. I recently updated my FF and noticed my games ran faster and videos worked better. I had some problems accessing the net today and had to restart my computer. Suddenly my games all went into super slow mode. This is the third time this has happened. It appears that my restart (my computer) does something to override whatever has made my computer faster and better. What can I do, except wait for the next update? I have tried reinstalling it, but no, it doesn't work.

    Well now FF just closes on many applications. Is there a Mac & FF compatibility problem?

  • Help!! My Profile Has Been Deleted for the 3rd Time!

    Can anyone help me with this. I just tried to login to discussions, with the same password I have been using for the last year (since the last time this same problem happened to me), and when I tried to login, a popup showed saying "invalid password". I use Safari and Firefox to save the id and password, so I know it is enter properly.
    OK. Fine. So I had the reset password sent to my dot mac account. However, when I login in with the reset password, I am immediately sent to the default, first sign up page! What!!!! I have been using my dot mac id for 7 years as my login!
    So, I enter in the same alias that I have always used, and I am promptly told that it is already taken!!!???
    The last time this happened I had to go through the same process and I lost all my Level points - when from several hundred to Zero, which has happened again!
    Can some tell what happened and how I can get my profile and alias back?
    I looked up my previous alias and it is still there:
    http://discussions.apple.com/profile.jspa?userID=306818
    Thanks
    Gary Sumlak (really)

    4181
    Hello Gary,
    Your profile (userID=306818) is not deleted, and be sure there is a way to eventually go on with it.
    Here's what I would try:
    - First, delete your cookies in both Safari and Firefox (in Preferences>Security or Preferences>Privacy), so you make sure to start fresh with no possible interference at all on you browsers' side.
    - Then go to "My Contact Info" again, and enter your complete ID as it has always been from the beginning
    (should be something like [email protected] ?)
    - Now that everything is straight, the only possible problem left is the password:
    Try the very first, old password.
    If it doesn't work, try the new password I understand you tried to change afterwards.
    In any case: do not use autofill; type IDs and passwords yourself this time.
    You'll be able to leave it to autofill in the future when the problem will be fixed.
    Good luck!
    Axl

  • My incoming mail server stopped working for the 3rd time Help?

    This is the third time my incoming mail server stopped working any suggestions on how to repair this?
    Thank You!

    If Apple replaced the logic board three times for the same issue, and the third board has now broken for the same reason, you may be able to ask Apple for a replacement machine. You're out of warranty, and Apple is under no obligation to do anything for you (unless the current logic board was replaced by Apple less than 90 days ago in which case it's still under warranty), however, as a good will gesture, they may be willing to exchange your system for another one. You can start at the Apple store or call Apple customer care directly.

  • I got screwed again, my Mac suggested I download a newer version of Firefox which I did (3.6) and i ended up with the same problem as last time when I was prompted to try the Beta version (4).

    Now I can''t use or access the bookmarks !
    How can I go back to the older version that worked ok, except for the theme issues? I've consistently had issues with the themes, I can't get rid of the one I can't see through and have to uninstall it every time i open Firefox. I need a solution or I'll have to delete it for good and go back to Safari!

    Might it be that the bookmarks toolbar is hidden.
    Please see https://support.mozilla.com/en-US/kb/Bookmarks%20Toolbar#w_show-or-hide-the-bookmarks-toolbar for how to make it visible again.

  • I am new to the $9.99 per month club. Lightroom downloaded with no trouble. Photoshop CC has failed for the 3rd time. What gives?

    Below are the details of my failed Photoshop CC install. This has happened 3 times. Any answers out there?
    Exit Code: 6
    Please see specific errors below for troubleshooting. For example,  ERROR:
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 2 error(s)
    ----------- Payload: Microsoft Visual C++ 2012 Redistributable Package (x64) 11.0.61030.0 {3E272A93-C06B-4206-AD02-0EBE02535E20} -----------
    ERROR: Third party payload installer vcredist_x64.exe failed with exit code: -2147024546
    ERROR: Failed to install Microsoft Visual C++ 2012 Redistributable Package (x64). Please try installing it by double clicking on the executable at "C:\Users\Calvin\AppData\Local\Temp\{1F34A67E-0B69-4F30-9439-A4906B06D979}\Photoshop_15_L S20_win64\Adobe CC 2014\payloads\Microsoft VC 2012 Redist (x64)\vcredist_x64.exe", or download and install the latest Microsoft Visual C++ 2012 Redistributable Package (x64) from Microsoft website - www.microsoft.com

    The exit code you are receiving is due to a security patch which you need to install before you can install the C++ redistributable.
    i.e. You have to make sure your computer is up to security standards, all patches installed: Please see the Javascript security patch at the following page:
    http://www.microsoft.com/en-us/search/Results.aspx?q=exists%20with%20code%20-2147024546&fo rm=DLC
    Then you install your C++ with the below link.
    Download Visual C++ Redistributable for Visual Studio 2012 Update 4 from Official Microsoft Download Center
    Then you can install your Photoshop/Lightroom bundle
    Security is everything these days. Think about putting your system on an auto-update for security related patches, or due to 'other issues' if you'd rather, simply make it a rule to run the system update when you're checking your mail, that way you'll always stay up on the security updates. *IF* your system is vulnerable, to a javascript exploit, even if you are running HTTPS everywhere, you are at risk. Not only are you at risk, but every computer you come into contact with is then also at risk. Be kind to your internet neighbors and if you have any questions, see
    http://www.eff.org   <-- they have some great tools and 100% reliability.
    ~elaine.

  • Iweb has lost my site for the 3rd time...

    i can't even open i web now... it's all grey....
    i can't retrieve the new web pages I spent 2 days making.
    i can't get rid of the old site/pages that I don't want
    it's just really not good enough...

    Try the troubleshooting steps under "Fix iWeb" here....
    http://www.iwebformusicians.com/iWeb/iWeb-Tips.html
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

  • I am LR5 user  purchased not long after release (MAC Mavericks OS 10.9.5).   This is the 3rd time that after successfully closing (no errors or anything unusual)  that Lightroom opens to the intro screen as if its a new install,  losing all my settings

    Why is this happening and how do I get them back?   Quite frustrating

    Try using File->Open Recent and see if any of the other catalogs shown there are the one you want

Maybe you are looking for