Guest
2011-01-07T07:03:52Z
Hi,
I've just subscribed to the 5 free SMS messages. I am creating a website for my official purpose and i am using the following code below to send SMS. I am using ASP.NET with C#

IntelliSoftware.IntelliSMS objIntelli = new IntelliSMS();
objIntelli.Username = "*********";
objIntelli.Password = "***********";
objIntelli.PrimaryGateway = "http://www.intellisoftware.co.uk";
objIntelli.BackupGateway = "https://www.intellisoftware2.co.uk";
objIntelli.RequestDeliveryRpt = true;

System.Net.WebProxy Pry = new System.Net.WebProxy("172.29.23.77", 8002);
Pry.Credentials = CredentialCache.DefaultCredentials;
GlobalProxySelection.Select = Pry;

string strResult = objIntelli.SendMsg(txtNumber.Text, txtText.Text, "******");


I have used the following namespaces:

using System.Net;
using IntelliSoftware;

I am unable to send messages and it says Unable to connect to the remote server. Kindly help me out in this issue.
Support
2011-01-07T08:41:05Z
HTTP Connection problem can be caused by the following:

- HTTP connection problems may be caused by firewall or antivirus
software you have running on the machine. Some antivirus only allows
certain application (such as Internet Explorer) to connect out to port
80. Please check the configuration of any firewall and/or antivirus
(including Anti-Spyware) software, particular in relation to Port 80
access.

- If you are accessing our gateway from ASP.Net and your proxy server
requires authentication, then HTTP access may be blocked. This is
because the ASP.Net Worker Process is running as a local machine account
(e.g. ASPNET). To fix this issue you can try running the ASP.Net Worker
Process as your own personal domain account (please note this may
introduce security risks).
http://support.microsoft.com/kb/895967