failure

Android Moto Droid Camera Hangs EVERY Time onTakePicture, WHAT AM I MISSING?

All, I've googled over and over again to find a solution and while I found a bug regarding camera release, etc I can not for the life of me seem to get the cam code to work. Every time I executed takePicture the system simply hangs, sometimes it calls the PictureCallback, but most of the time it simply hangs. Weird issues about not bei...

IIS7/Win7 - App Pool is failing suddenly

After nearly 5 months with this configuration I am now getting a series of: "A process serving application pool 'Classic .NET AppPool' suffered a fatal communication error with the Windows Process Activation Service. The process id was '1640'." This leads to: Application pool 'Classic .NET AppPool' is being automatically disa...

Error while running the package as SQL JOB in SQL SERVER AGENT

HI All, I have a SSIS package which Imports data from Excel to database.I added this package to execute as a SQL Agent Job.When I am running the package as a job I am able to run it successfully.When I run the package from Visual Studio I am getting error saying... "Code:0xC0202009 Source:User Connection manager " Excel Connection mana...

smtpclient " failure sending mail"

here is my code for(int i = 0; i < number ; i++) { MailAddress to = new MailAddress(iMail.to); MailAddress from = new MailAddress(iMail.from, iMail.displayName); string body = iMail.body; string subject = iMail.sub; oMail = new MailMessage(from, to); oMail.Subject = subject; oMail.Body = body; oMail.IsBodyHtml = true; oMail.Priority = M...

Flex-AIR: how to handle failure to update?

OK my flex app checks for a file on the internet (update.xml) which contains the most recent version number and a location on where to download the update, if the most recent version number is not the version of the current app, then the app auto-updates using the file at the location listed in the (update.xml) file. If my app fails to ...

Memcached set() fails: WRITE FAILURE

So Memcached fails to write certain keys, getResultMessage() says WRITE FAILURE I'm using this in setup: $this->mmcache = new Memcached(); $this->mmcache->addServer('localhost',11211, 100); $this->mmcache->setOption(Memcached::OPT_BINARY_PROTOCOL, true); $this->mmcache->setOption(Memcached::OPT_SERIALIZER, Memcached::SERIALIZER_IGBINARY...

Unable to connect to ADAM with Windows domain\username

I'm having some difficulty connecting to an ADAM instance from my Commerce Server 2007 ASP .NET solution, and I believe it relates to my config file somehow. The short version is that I can connect to ADAM through ADAM-ADSIEdit with my current username/password, but when I put this in my web.config i get "Parser Error Message: Logon fa...

MySQL: Why doesn't this db creation script work?

For some reason, this MySQL fails: CREATE SCHEMA IF NOT EXISTS `partB` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci ; USE `partB`; CREATE TABLE Employees ( ssn CHAR(11), Name CHAR(30), mlot INTEGER, PRIMARY KEY(ssn)) ENGINE = InnoDB; CREATE TABLE Dept_Mgr ( did INTEGER, dname CHAR(20), ssn CHAR(11) NOT NULL, PRIMARY KEY (did...

PHP Try-Catch Failing to Catch (Not a 'Warning')

I have some PHP code that should cause and catch two exceptions: try{ @$this->connector->connect(); // Suppress the default warning (doesn't effect 'throw') } catch(BadArgumentException $e) {} // Works, no error, following code executes. try{ @$this->connector->connect(array('user' => 'Doesn\'t exist', 'pass' => 'invalid')); } ...

CryptInit (Cryptlib function) failure in Xcode

I have put the libcl.3.3.dylib in /usr/lib folder and all the compilation and linking are done. However, i received a failure of CRYPT_ERROR_PARAM1 in CryptInit function. I get the libcl.3.3.dylib from "port install cryptlib" and copy them to "/usr/lib". It seems unusual for the cryptInit function to fail... hope you guys can help....T...

HttpClient automatically retires before the response is received from server

Hi all, I'm come upon a wierd problem with java HttpClient library. Specifically the library automatically retries my request (POST requests) even before the response is received from the server. Moreover the weirder problem is that this only happens on specific hosts (machines). So the end result is if a post request succeeds, the...

My -tpl file won't update!

Hi, I am running the site at www.euroworker.no, it's a linux server and the site has a backend editor. It's a smarty/php site, and when I try to update a few of the .tpl's (two or three) they don't update. I have tried uploading through FTP and that doesn't work either. It runs on the livecart system. any ideas? Thanks! ...

Why is this logical expression in python False?

My question is, why are these expressions False? Python 2.6.4 (r264:75706, Dec 7 2009, 18:45:15) [GCC 4.4.1] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> num = raw_input("Choose a number: ") Choose a number: 5 >>> print num 5 >>> print ( num < 18 ) False >>> print ( num == 5 ) False Because i...

what kind of components can fail in rmi?

Was wondering what kind of software and hardware component cant fail in a rmi program? so for example in a client server model when a client invokes an object in the server? thanks ...

Excel 2007 UDF keeps failing, why?

I've been trying to browse info about this for a while now. The user defined functions in Excel 2007 just make no sense to me whatsoever. According to all the tutorials, it should be really simple. Just press alt + f11, insert a new module, and enter the VBA code there. At this point typing '=FUNCTIONNAME(parameters)' into any cell shou...

Symfony sfMail not delivering emails

Hi, somehow sfMail doesn't want to send emails and I can't find the reaseon why. send() simply returns 0, here is my code: $message = $this->getMailer()->compose("[email protected]", "[email protected]", "test", "testing"); echo $this->getMailer()->send($message); factories.yml: all: mailer: class: sfMailer param: logging: ...

fedex shipping web service, test account authentication failed

hello, can't understand why the credentials of my fedex web services test account won't work for the create shipping service and work for the track package service. any ideas? ...

Insert Fails - Detailed Information

Hi, I am loading some data into a temp table. I then use a cursor to loop through the temp table, minipulate the data, and insert it into another table. The identity of the newly inserted record is then captured in a variable and inserted to another table to allow a look up of the newly inserted data. DECLARE c1 CURSOR READ_ONLY FO...

manage.py runserver not working

I am new to django and python in general, so pardon me for any simple mistakes I may be doing. I am trying to setup my first django project on my local windows vista machine. I have created the project successfully with no problems. The issue I am coming across is when my settings.py has values for my database keys, the manage.py runs...

App engine downtime

I've noticed that google app engine seems to have a fair amount of downtime where they place the datastore into read-only mode. Frequently this downtime is in the middle of the day. Is this something that is happening only during early development, or is this something that I can expect to be always be occurring? I'm developing an app...