Tech-Today
GSMComm message received 321 occurred
Recently I've encountered this error while developing a gsmcomm powered device up couple with 500 error.
To know what these errors mean, you can refer to:
http://www.developershome.com/sms/resultCodes2.asp#16.2.1.1.Table of +CMS Error Codes and Their Meanings|outline
I encountered the error while reading sms messages:
var messages = _comm.ReadMessages(PhoneMessageStatus.ReceivedUnread, PhoneStorageType.Sim);
//later on, I found out that my modem iTegno doesn't support ReceivedUnread memory. So to fix the error I replaced it with PhoneMessageStatus.All.
var messages = _comm.ReadMessages(PhoneMessageStatus.All, PhoneStorageType.Sim);
-
Validation-summary-errors Div Showing Even If There Is No Error Binded To A Property
I'm working on a change password form when I encountered this strange behavior from mvc3. I created a simple form and change password model with 3 fields (old, new, confirm password). Then I extended ValidationAttribute to validate the password's...
-
Solving The Php Startup: Unable To Load Dynamic Library Bug
Okay first I'm no expert in apache or php but I guess writing about this bug might help someone. Yes I've installed perhaps tens of times apache php mysql, but everytime I did I encountered several errors, like the error defined above. Well first...
-
Operation Must Use An Updateable Query
I am currently developing a certain application in MS Access and I need to link 2 databases, select data from one and move it to the second. In access I have no problem using the TransferDatabase command. DoCmd.TransferDatabase acLink, "Microsoft Access",...
-
An Error Occurred While Trying To Report This Transaction To The Merchant
Calling the authorize.net api, I've encountered this error: An error occurred while trying to report this transaction to the merchant. An e-mail has been sent to the merchant informing them of the error. The following is the result of the attempt...
-
Staxmem.dll Not Found...
Recently, I've encountered this error during IIS installation and don't know what to do or where to start. The error said it can't find the file though I can see it in the CD, I thought it was corrupted to I tried copying the i386 directory...
Tech-Today