Sending WAP Multimedia Message via 2-Way SMS

Sending WAP Multimedia Message via 2-Way SMS SearchSearch
Author Message
Osborne
Unregistered guest
Posted on Sunday, December 21, 2003 - 06:04 pm:   

Hi,

Using the Web Interface link "Send WAP Multimedia Message" I am successful in sending JPG image with text.

But if I type in my browser "http://127.0.0.1:8800/?MMSWAPPush=YES&PhoneNumber=6656555&MMSText=hi6&MMSFile=E:\Images\myimage.jpg"

I get an error "ERROR: INTERNAL ERROR"

I know that I have to send the image file as binary because the FORM enctype="multipart/form-data"

I am trying to use ASP script to send a reply back to the 2-Way SMS user. But the reply back must be in a MMS push format; that is using the "Send WAP Multimedia Message".

Is there any thread for this requirement?

Thank you.
Bryce Norwood - NowSMS Support
Board Administrator
Username: Bryce

Post Number: 1445
Registered: 10-2002
Posted on Monday, December 22, 2003 - 10:16 pm:   

Hi Osborne,

The MMSFILE parameter can't point directly to a filename.

The only work around is for the MMSFILE parameter to point to an HTTP URL. That way NowSMS will fetch the URL when it processes the request.

So in your example, if your thread could make myimage.jpg accessible via a web server, it could generate a request like this:

http://127.0.0.1:8800/?MMSWAPPush=YES&PhoneNumber=6656555&MMSText=hi6&MMSFile=ht tp://my.server.com/Images/myimage.jpg