views:

135

answers:

3

I following this article for sending SMS it is a winform application.. I have referenced all the Dll's to my asp.net application.....

I use an aspx page to detect a mobile device connected to a PC..... But it alwys shows COM 'n' Port could not be opened.....

using SMS;
using GsmComm.GsmCommunication;
using GsmComm.PduConverter;

public partial class _Default : System.Web.UI.Page 
{
    protected void Page_Load(object sender, EventArgs e)
    {
        GsmCommMain comm = new GsmCommMain(6, 9600, 300);
        comm.Open();
        if (!comm.IsConnected())
        {
            Response.Write("No Phone Connected");
        }
        else
        {
            SmsSubmitPdu pdu = new SmsSubmitPdu("test", "+919999999999", "");
            CommSetting.comm.SendMessage(pdu);
        }
    }
}

EDIT:

I use the web development server that ships with Visual Studio... If go to Control Panel -> Phones & Modems -> Modems i could see my mobile connected in com6...

i have tested the winform application it works fine...

Is this the answer?

ASP.NET pages are supposed to work. What is happening over here is that when you click on open_com button, the ASP.NET page posts back to itself, executes the event handler i.e., opens the port. Then when the page finishes processing the post back, it is unloaded. At this point the COM1 objects is also destroyed.

+1  A: 

Which webserver are you using? If its the web development server that ships with Visual Studio? Then it should be working. If you want to get it working with IIS you need to use impersonation or run the ASP.net worker process in a different security context with admin privileges.

Also try to test your sample in a console application first.

nitroxn
A: 

It's most likely permissions.

Unless you are using impersonation the site will run as the ASPnet user which has very low privileges. Either set the site to impersonate an admin user, or set the site to run as a high priviledge user.

Alternatively, and my personal recommendation, rather use an online service like http://www.clickatell.com/ to send and receive SMSes. It's a heck of a lot easier, it's cheaper, and it's more robust.

Doobi
@Doobi how to change to admin user? Any suggestion?
Pandiya Chendur
A: 

i use that code but error... the error is Phone reports generic communication error or syntax error i develop with c#, Visual studio 2008.. i get the error when i execute CommSetting.comm.SendMessage(pdu); can u tell me to solve that problem?? thx

deni
@deni what phone r u using?
Pandiya Chendur