~anteater/mms-stack-bugs#49: 
mmsd[]: src/service.c:process_request_queue() location (null)

I was getting this error after mmsd decoded the initial WAP notification. This was on Ting, a T-mobile MVNO, which does not appear in my mobile-broadband-provider-info database. The problem was that I did not have a MMSC defined. I believe ofono should get this information from the provider database. The following is a workaround using a modified ofono test script.

Append the following to test/create-mms-context:

        if len(sys.argv) > 4:
                context.SetProperty("MessageCenter", sys.argv[4])
                print("Setting MMSC to %s" % (sys.argv[4]))

Then, run the script

$ test/create-mms-context wholesale "" "" http://wholesale.mmsmvno.com/mms/wapenc
Created new context /quectelqmi_0/context2
Setting APN to wholesale
Setting username to
Setting password to
Setting MMSC to http://wholesale.mmsmvno.com/mms/wapenc
Status
REPORTED
Submitter
~fuzzy7k
Assigned to
No-one
Submitted
4 years ago
Updated
4 years ago
Labels
integration

~fuzzy7k 4 years ago

Modifying that scipt is unnecessary as there is another script, set-mms-details, that can set the MMSC.

Register here or Log in to comment, or comment via email.