Motorola Droid Forum Logo
Motorola Droid Forum Logo - Right

Recent Problems Receiving Picture Messages

This is a discussion on Recent Problems Receiving Picture Messages within the Tech Issues, Bug Reports & Suggestions forums, part of the Droid Discussions category; Have had my Droid Eris for about a month. Just a couple days ago sometimes when I get a picture message a gray box shows ...


Tech Issues, Bug Reports & Suggestions Tech Issues, Bug Reports & Suggestions. Having Verizon Droid problems? Have a bug you need to report? Post it here.

Reply
 
LinkBack Thread Tools Display Modes
Old 12-27-2009, 02:02 PM   #1
Junior Droid
 
Kruzer31's Avatar
 
Member #20054
Join Date: Dec 2009
Posts: 14
Phone: Enter Current Phone Here
Recent Problems Receiving Picture Messages

Have had my Droid Eris for about a month. Just a couple days ago sometimes when I get a picture message a gray box shows that says download. When I click to download i get a message saying Download of message unsuccessful. Sometimes I get the picture message right away but most of the time its this problem with the gray box and unable to download it when I click it. Anyone have a solution?

JEFF
Kruzer31 is offline   Reply With Quote
Old 12-27-2009, 08:45 PM   #2
Junior Droid
 
Kruzer31's Avatar
 
Member #20054
Join Date: Dec 2009
Posts: 14
Phone: Enter Current Phone Here
bumpzzzzzzzzzzzzz
Kruzer31 is offline   Reply With Quote
Old 01-08-2010, 07:02 PM   #3
Droid Newbie
 
IamDroiiid's Avatar
 
Member #25268
Join Date: Jan 2010
Posts: 1
Phone: droid eris
pictures messaging problem? try this...

make sure mobile is on and that u have access to web. download, blam!!! it should work. i had mobile off the whole time and couldn't download, until i turned it on. if it still doesn't work try mobile on and wifi on then dl. if not, then oh well, works 4 me.
IamDroiiid is offline   Reply With Quote
Old 04-26-2010, 05:48 PM   #4
Junior Droid
 
regulatre's Avatar
 
Member #62664
Join Date: Apr 2010
Posts: 5
Phone: Moto Droid, Droid Eris
MMS messages don't download because of a bug

My wife's phone has been having problems downloading picture messages for a while now.

I'm an Android developer so I plugged her phone into the adb debugger and pulled some trace messages as her phone tried to download the picture messages. Trace messages are like a play-by-play logbook of what the phone and its apps are doing at any given time.

As it turns out, her phone is being provided an invalid URL for the multimedia portion of the message and so her phone is never able to download certain messages.

In other words, VERIZON is saying "hey, here's your message, here's the subject, here's the body, and use this URL to get the picture" but that URL is mangled sometimes.

I've seen two forms of malformed URLs on her phone so far, I'll paste the relevant portions of the trace log:

First test message, from me:

04-26 19:11:35.783 I/InetAddress( 299): Unknown host 69.78.70..70, throwing UnknownHostException


And then we see this from a picture message from another source:

04-26 19:27:31.087 I/InetAddress( 299): Unknown host 69.78.130103, throwing UnknownHostException

In both cases the IP address of the MMS provider is mangled.


The big question: How would one ever get this information to the developers at Verizon?




Two more broader message snippets:

04-26 19:27:29.913 V/MmsProvider( 114): Query uri=content://mms/28, match=1
04-26 19:27:30.853 D/HtcCdmaStatusBar( 68): provide dormancy network icon net:5
04-26 19:27:31.087 I/InetAddress( 299): Unknown host 69.78.130103, throwing UnknownHostException
04-26 19:27:31.093 V/RetrieveTransaction( 299): Unexpected IOException.
04-26 19:27:31.093 V/RetrieveTransaction( 299): java.io.IOException: Cannot establish route for http://69.78.130103/servlets/mms?message-id=<DELETED_MESSAGE_ID>: Unknown host
04-26 19:27:31.093 V/RetrieveTransaction( 299): at com.android.mms.transaction.Transaction.ensureRout eToHost(Transaction.java:206)
04-26 19:27:31.093 V/RetrieveTransaction( 299): at com.android.mms.transaction.Transaction.getPdu(Tra nsaction.java:171)
04-26 19:27:31.093 V/RetrieveTransaction( 299): at com.android.mms.transaction.RetrieveTransaction.ru n(RetrieveTransaction.java:147)
04-26 19:27:31.093 V/RetrieveTransaction( 299): at java.lang.Thread.run(Thread.java:1058)
04-26 19:27:31.093 E/RetrieveTransaction( 299): Retrieval failed.


Message 2:

04-26 19:11:35.663 V/TransactionService( 299): Adding transaction to list: com.android.mms.transaction.RetrieveTransaction: serviceId=1
04-26 19:11:35.673 V/TransactionService( 299): Starting transaction: com.android.mms.transaction.RetrieveTransaction: serviceId=1
04-26 19:11:35.683 V/TransactionService( 299): Started processing of incoming message: { what=1 when=1633652 arg1=1 obj=com.android.mms.transaction.TransactionBundle@ 4357c868 }
04-26 19:11:35.683 V/MmsProvider( 114): Update uri=content://mms/23, match=1
04-26 19:11:35.693 V/MmsProvider( 114): Update values=st=129
04-26 19:11:35.753 V/MmsProvider( 114): Broadcasting intent: Intent { action=android.intent.action.CONTENT_CHANGED (has extras) }
04-26 19:11:35.763 D/MyWidgetViewWL( 116): message widget observer onChange, isDelete false
04-26 19:11:35.783 I/InetAddress( 299): Unknown host 69.78.70..70, throwing UnknownHostException
04-26 19:11:35.793 V/RetrieveTransaction( 299): Unexpected IOException.
04-26 19:11:35.793 V/RetrieveTransaction( 299): java.io.IOException: Cannot establish route for http://69.78.70..70/servlets/mms?message-id=<DELETED_MESSAGE_ID>: Unknown host
04-26 19:11:35.793 V/RetrieveTransaction( 299): at com.android.mms.transaction.Transaction.ensureRout eToHost(Transaction.java:206)
04-26 19:11:35.793 V/RetrieveTransaction( 299): at com.android.mms.transaction.Transaction.getPdu(Tra nsaction.java:171)
04-26 19:11:35.793 V/RetrieveTransaction( 299): at com.android.mms.transaction.RetrieveTransaction.ru n(RetrieveTransaction.java:147)
04-26 19:11:35.793 V/RetrieveTransaction( 299): at java.lang.Thread.run(Thread.java:1058)
04-26 19:11:35.793 E/RetrieveTransaction( 299): Retrieval failed.


Last edited by regulatre; 04-27-2010 at 08:37 AM.
regulatre is offline   Reply With Quote
Old 04-29-2010, 09:03 AM   #5
Rescue Squad
 
Tallica's Avatar
 
Premium Member
Member #48266
Join Date: Mar 2010
Location: Middleboro, MA
Posts: 1,642
Phone: Motorola DrOID-Rooted
so is there a fix?
Tallica is online now   Reply With Quote
Old 04-29-2010, 09:08 AM   #6
Junior Droid
 
regulatre's Avatar
 
Member #62664
Join Date: Apr 2010
Posts: 5
Phone: Moto Droid, Droid Eris
Bandaid: Hard reset

Originally Posted by tallica View Post
so is there a fix?
They had me do a hard reset. In the two days since the reset we have received about 5 pix messages without a problem. It's too early to tell if this is "the" solution. And if it is, it would suggest a bug in the software on the phone.

The hard reset wipes out all user data so make sure you sync your contacts with gmail first so afterwards they come back after you sync again. Also, I pulled the SD card during the reset for good measure. Afterwards I put it back in and it sees the multimedia again.
regulatre is offline   Reply With Quote
Old 05-09-2010, 03:11 PM   #7
Junior Droid
 
regulatre's Avatar
 
Member #62664
Join Date: Apr 2010
Posts: 5
Phone: Moto Droid, Droid Eris
SOLVED: Don't use task killer.

After the hard-reset the problem went away.

I'm now certain that the problem originated by using the task killer app on the phone. The task killer killed the DB writer process during an I/O operation on the messages database.

Bottom line: Don't use those damn task killer apps!
note: The guys at our local Verizon store actually downloaded and installed the task killer for us.

For a detailed description of what is happening, see this:
Android SQLite database gets corrupted - Stack Overflow


Originally Posted by regulatre View Post
Originally Posted by tallica View Post
so is there a fix?
They had me do a hard reset. In the two days since the reset we have received about 5 pix messages without a problem. It's too early to tell if this is "the" solution. And if it is, it would suggest a bug in the software on the phone.

The hard reset wipes out all user data so make sure you sync your contacts with gmail first so afterwards they come back after you sync again. Also, I pulled the SD card during the reset for good measure. Afterwards I put it back in and it sees the multimedia again.
regulatre is offline   Reply With Quote
Old 05-09-2010, 03:25 PM   #8
Junior Droid
 
Pidge's Avatar
 
Member #66639
Join Date: May 2010
Posts: 25
Originally Posted by IamDroiiid View Post
make sure mobile is on and that u have access to web. download, blam!!! it should work. i had mobile off the whole time and couldn't download, until i turned it on. if it still doesn't work try mobile on and wifi on then dl. if not, then oh well, works 4 me.
I was having a similar problem, thanks for the info. Had data shut off, was using wifi only.
Pidge is offline   Reply With Quote
Old 05-31-2010, 01:11 AM   #9
Droid Newbie
 
laptopfreek0's Avatar
 
Member #73166
Join Date: May 2010
Posts: 3
Phone: Droid eris
I have a similar problem, but yet kinda different. What is happening with my phone is it is not getting the message ID... any ideas why?

05-31 02:53:19.564 V/TransactionService( 283): 4-Handling incoming message: { what=1214 when=6674637 obj=com.android.mms.transaction.NotificationTransa ction: serviceId=4 }
05-31 02:53:19.564 V/TransactionService( 283): Transaction failed: 4
05-31 02:53:19.574 D/Scheduler( 283): release wake lock
05-31 02:53:19.594 D/MyWidgetViewWL( 146): message widget observer onChange, isDelete false
05-31 02:53:19.594 D/Goven ( 283): RetrieveTransaction/construct uri is: content://mms/inbox/6
05-31 02:53:19.594 D/Goven ( 283): RetrieveTransaction/construct parsed mUri is: content://mms/inbox/6
05-31 02:53:19.624 V/MmsProvider( 138): Query uri=content://mms/inbox/6, match=3
05-31 02:53:19.634 D/Goven ( 283): RetrieveTransaction/get cursor string is: http://69.78.130.23/servlets/mms?message-id=
05-31 02:53:19.654 V/RetrieveTransaction( 283): X-Mms-Content-Location: http://69.78.130.23/servlets/mms?message-id=
05-31 02:53:19.654 D/Jerry ( 283): mScheme >content
05-31 02:53:19.674 V/MmsProvider( 138): Query uri=content://mms/inbox/6, match=3
05-31 02:53:19.704 D/Jerry ( 283): retrieveTransaction server URI >http://69.78.130.23/servlets/mms?message-id=
No I did not edit out my message IDs. That is a strait bugreport dump.
Only thing is that I have hard reset, and reprogrammed many times to try and fix this... Any ideas?
laptopfreek0 is offline   Reply With Quote
Reply



Lower Navigation
Go Back   Droid Forum - Verizon Droid & the Motorola Droid Forum > Droid Discussions > Tech Issues, Bug Reports & Suggestions

Divider
Droid Accessories Store


Visitors found this page by searching for these keywords:

motorola droid and picture message problems

,

Why don't I get pic messages on droid x

,

why isnt my droid eris downloading picture messages

,

droid 2 receiving pictures

,
droid 2 pictures message
,
motorola droid problems downloading pictures in messaging
,
how to download mms using wifi on a droid
,
droid receives picture messages as downloads
,
picture download problems
,
unable to download picture texts droid
,
problems downloading picture messages on motorola droid
,
how to look at picture messages on droid
,
can not download picture message on Droid
,
droid unable to download pictures
,
problem receiving pics on driod
,
problem receiving pics on droid
,
mortorola droid with 2.2 not receiving pics
,
unable to download message on droid
,
droid problem accepting pic messages
,
droid eris photo message receive
,
problems with receiving pictures on cell, no URL?
,
receiving picture messages from the droid
,
how to receive picture message on a droid 2
,
droid trouble downloading picture messages
,
rooted droid incredible unable to download picture messages

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
5MP Picture Messages bkopsick1 HTC Droid Eris 11 12-14-2009 03:34 PM
8+ hour delay with people receiving my MMS messages jrl9851 Droid General Discussions 4 12-13-2009 01:04 PM
Problem with picture messages? ashkev843 Droid General Discussions 2 12-12-2009 05:42 PM
Picture with text messages in them JFM-jr Droid General Discussions 0 12-09-2009 05:20 PM
picture messages SHoCKBiZZLE Droid General Discussions 4 11-18-2009 11:41 AM