MMSCOMP

MMSCOMP SearchSearch
Author Message
Anonymous
 
Posted on Sunday, April 04, 2004 - 09:40 am:   

Hello Bryce,

I have tried using MMSCOMP to create mms messages using the dos promt and it worked fine for me the (.mms)got created.
i created an ASP application that creates some servays and stores them in a text file. Now i need to call this MMSCOMP from with in an ASP page in order to create mms message with the survey contents i created.

Is it possible to do so?and how can i do it?
Morlac
Unregistered guest
Posted on Tuesday, April 06, 2004 - 03:31 pm:   

I dont know about ASP, I have done something similar using ASP.NET c#.

using System.Diagnostics;

Process compiler = new Process();
compiler.StartInfo.FileName "D:\ringconvert.exe";
compiler.StartInfo.Arguments = "-somearguments value";
compiler.StartInfo.UseShellExecute = false;
compiler.StartInfo.RedirectStandardOutput = true;
compiler.StartInfo.RedirectStandardInput = true;
compiler.StartInfo.WorkingDirectory = @"D:\temp";
compiler.Start();
String ringNok="sanafer:d=8,o=5,b=200,l=0:a,h,p,a,f#,p,a,4g.,4p,g,a,p,g,e,p,g,4f#.,4p,f #,g,p,f#,d,p,f#,4e.,4p,e,f#,p,e,c#,p,e,4d.,a4,p,a4,h4,p,h4,c#,p,c#,d,2p,a,h,a4,a ,f#";

compiler.StandardInput.Write(ringNok);
compiler.StandardInput.Close();
String out = compiler.StandardOutput.ReadToEnd()
compiler.WaitForExit();

//SendMessage(phone, out, udh, dcs, pid);


NOTE: You might have a security issue as you should the user account which ASP runs under access to the directory where file reading/writing might happen.

Morlac
Christian
Unregistered guest
Posted on Monday, April 19, 2004 - 11:26 pm:   

Hello, I am reading-up on mms technology myself and came across 'mmscomp' mentioned in literature, however I haven't been able to find the program, help? please? thanking you in advance
Christian
Bryce Norwood - NowSMS Support
Board Administrator
Username: Bryce

Post Number: 2367
Registered: 10-2002
Posted on Thursday, April 22, 2004 - 06:53 pm:   

MMSCOMP is part of the NowSMS product. A trial of which can be downloaded from this web site.
Anonymous
 
Posted on Friday, May 28, 2004 - 04:07 pm:   

I have configured NowSMS using M1 interface to an operator MMSC. I am able to recieve MMSs and send them OK through the web interface. I would like to send MMSs to e-mail recipients but it seems it is only feasible via the mmscomp command. Is it so?
I tried the mmscomp command and I have created the corresponding .MMS files, but when I place them in the web interface it always requires a phone number to be filled in. Can I send the MMS only to an e-mail account? Coul you provide me with some examples of the header file to do so?
Anonymous
 
Posted on Monday, June 07, 2004 - 10:43 am:   

Please,
Has anyone suggestions on how to send MMS through operators MMSC to email accounts ???
Thanks in advance...
Bryce Norwood - NowSMS Support
Board Administrator
Username: Bryce

Post Number: 2750
Registered: 10-2002
Posted on Tuesday, June 08, 2004 - 09:28 pm:   

I'm sorry, but I don't have any suggestions.

We didn't see a need for doing this, so we only implemented support for routing messages to phone numbers via an operator MMSC.

You might be able to hack sending a few messages this way by manipulating the VASPQ. Disconnect your modem, or disable it, so that no messages can be sent via the modem.

Send a message to a phone number.

NowSMS will queue the message into the VASPQ directory. There will be a .INI and a .MMS file. Edit the .INI file, and change the recipient to an e-mail address (remove the "/TYPE=" part of the address).

I just tried here, and I was able to make this work.

You could experiment with directly creating files in this VASPQ directory for sending out messages. We don't have any documentation on the format for the files in that directory, but it is rather easy to figure out by looking at the files.

-bn