active questions tagged dial-up - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T19:25:31Zhttp://stackoverflow.com/feeds/tag/dial-uphttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1563480/commanding-a-device-to-send-sms-through-dial-up-networking-in-python0Commanding a device to send SMS through Dial Up Networking in PythonAlex2009-10-13T23:19:10Z2009-10-13T23:19:10Z
<p>How to tell a device, which has an open Dial Up Networking port, to send and SMS with a given body to a given short code? How to implement it in Python?</p>
http://stackoverflow.com/questions/722805/how-do-i-work-with-dial-up-ras-connections-in-windows-using-c-net1How do I work with dial-up (RAS) connections in Windows using C#/.NET?Noffie2009-04-06T19:28:46Z2009-07-26T00:17:45Z
<p>I need to be able to connect, disconnect, and re-connect a dial-up networking connection in a C# .NET Framework application. Creating the connection in the phone-book might also be useful/necessary.</p>
<p>Are there any classes or libraries written for C# or .NET out there that wrap all this functionality nicely for me? Anyone have some code they would be willing to share?</p>
<p><strong>Note</strong>: Application is <em>unattended</em>, like a Kiosk, and thus requiring user action is unacceptable.</p>
http://stackoverflow.com/questions/969235/modem-call-in-c0modem call in c++deb2009-06-09T10:20:41Z2009-06-09T16:34:28Z
<p>I'm trying to make a modem call in one end, and in the other end the program answers the call. It doesn't seem to detect the carrier. Am I doing anything wrong? Am I missing something?</p>
<pre><code>int main(int argc, char** argv)
{
ParseArgs(argc,argv);
SerialPort* port = SerialPort::New();
if(!port)
Error(ErrorNoMemory,"Can't create port");
int error = port->Open(PortNum, SendFlag);
if(error)
Error(error,"Can't open port");
error = port->Initialise(PortBaud);
if(error)
Error(error,"Can't initialise port");
if(ReceiveFlag)
{
port->Listen();
Receive(port); //after the call is stablished I send a file
}
else
{
port->Dial(PhoneNumber);
Send(port);
}
port->Close();
delete port;
return 0;
}
</code></pre>
<p>The part of opening the port:</p>
<pre><code>int Open(unsigned port, bool SendFlag)
{
// make name for port...
char name[] = "\\\\.\\com???.???";
char* nameNumber = name+sizeof(name)-8;
char* nameEnd = nameNumber;
if(port>999){
return ErrorInvalidPort;
}
if(port>99)
{
*nameEnd++ = '0'+port/100;
port %= 100;
}
if(port>9)
{
*nameEnd++ = '0'+port/10;
port %= 10;
}
*nameEnd++ = '0'+port;
*nameEnd = 0;
// open port...
hSerial = CreateFile(name, GENERIC_READ|GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, NULL);
if(hSerial==INVALID_HANDLE_VALUE)
{
switch(GetLastError())
{
case ERROR_FILE_NOT_FOUND:
return ErrorInvalidPort;
case ERROR_ACCESS_DENIED:
return ErrorPortInUse;
default:
return Error();
}
}
SetupComm( hSerial, 1024, 1024 );
if (!SendFlag)
{
if (!SetCommMask(hSerial, EV_RING |EV_RLSD))
// Error setting communications mask
printf("error mascara");
}
else
{
if (!SetCommMask(hSerial, EV_RLSD))
{
// Error setting communications mask
printf("error mascara");
}
}
return 0;
}
</code></pre>
<p>The initialise part:</p>
<pre><code>int Initialise(unsigned baud)
{
// flush port...
if(!FlushFileBuffers(hSerial))
return Error();
if(!PurgeComm(hSerial, PURGE_TXABORT|PURGE_RXABORT|PURGE_TXCLEAR|PURGE_RXCLEAR))
return Error();
// configure port...
DCB dcb ;
if(!GetCommState(hSerial, &dcb))
return Error();
dcb.BaudRate = CBR_115200;
dcb.ByteSize = 8;
dcb.StopBits = ONESTOPBIT;
dcb.Parity = NOPARITY;
if(!SetCommState(hSerial, &dcb))
{
if(GetLastError()==ERROR_INVALID_PARAMETER)
return ErrorInvalidSettings;
return Error();
}
// set timeouts to zero so read/writes return immediately...
COMMTIMEOUTS timeouts = {0};
timeouts.ReadIntervalTimeout = MAXDWORD;
timeouts.ReadTotalTimeoutConstant = 0;
timeouts.ReadTotalTimeoutMultiplier = 0;
timeouts.WriteTotalTimeoutConstant = 0;
timeouts.WriteTotalTimeoutMultiplier= 0;
if(!SetCommTimeouts(hSerial, &timeouts))
return Error();
// flush port again...
if(!PurgeComm(hSerial, PURGE_TXABORT|PURGE_RXABORT|PURGE_TXCLEAR|PURGE_RXCLEAR))
return Error();
return 0;
}
</code></pre>
<p>The dial part:</p>
<pre><code>int Dial(char *telefono)
{
unsigned long int n = 0;
DWORD dwCommEvent;
DWORD bytes;
DWORD dwRead;
char cadena[15];
char chRead;
sprintf(cadena, "ATDT%s\r", telefono);
if (!WriteFile( hSerial, "ATH1\r", strlen("ATH1\r"), (&(n)), 0 ))
{
printf("error");
}
FlushFileBuffers( hSerial );
Sleep(1000);
if (!WriteFile( hSerial, cadena, strlen(cadena), (&(n)), 0))
{
printf("error");
}
FlushFileBuffers( hSerial );
Sleep(10000);
printf("Marcamos");
do
{
printf("Espero eventos");
if(WaitCommEvent(hSerial, &dwCommEvent, NULL))
{
if(dwCommEvent & EV_RLSD)
{
printf("rlsd");
break;
}
else
{
printf("otro");
}
}
printf("fin del bucle");
} while(true);
return 0;
}
</code></pre>
<p>The listening part:</p>
<pre><code>int Listen()
{
DWORD dwCommEvent;
unsigned long int n = 0;
do
{
printf("ESpero eventos");
if(WaitCommEvent(hSerial, &dwCommEvent, NULL))
{
if(dwCommEvent & EV_RING)
{
printf("RING");
if (!WriteFile( hSerial, "ATA\r", strlen("ATA\r"), (&(n)), 0 ))
{
printf("error");
}
FlushFileBuffers( hSerial );
break;
}
else if (dwCommEvent & EV_RLSD )
{
break;
}
}
printf("fin del bucle");
} while(true);
return 0;
}
</code></pre>
http://stackoverflow.com/questions/868456/desinging-an-application-for-xmodem-transfer-through-dial-up-in-java0Desinging an Application for xmodem Transfer Through Dial-up in Javadebita2009-05-15T12:40:40Z2009-05-15T12:48:31Z
<p>I want to desing an application to send/receive a file with xmodem (written in java, I found the source code at <a href="http://stackoverflow.com/questions/606074/implementation-of-x-modem-protocol-in-java">http://stackoverflow.com/questions/606074/implementation-of-x-modem-protocol-in-java</a>). I've decided to modify this code. First I should dial a number on the client-side and listen on the server-side. My problem is that I don't know wheter I should use events or lock-steep. I've written some code with events and I achieved the goal of connecting, but after that I don't know how to use the Jmodem code after the connection is stablished because of the events... I suppose that the DataAvailable event will trigger if I get the jmodem to work... </p>
<p>Should I forget the event-driven connection and use lock-step? or is there any way of using this implementation of xmodem with events? </p>
<p>Thanks a lot</p>
http://stackoverflow.com/questions/839236/monitoring-serial-port1Monitoring serial portdebita2009-05-08T10:36:55Z2009-05-08T13:50:03Z
<p>Hi,</p>
<p>I'm using a communications program (Tera Term) to communicate with another computer through a dialup connection. I'll be sending a file with this software, but I would like to monitor the port (like PortMon) to measure the time it takes to transfer the file. Do you know any way of doing it without this software? </p>
<p>Thanks a lot</p>
http://stackoverflow.com/questions/839403/changing-dun-properties-for-a-specific-connection-in-visual-basic0Changing DuN properties for a specific connection in Visual BasicGaaty2009-05-08T11:26:48Z2009-05-08T11:28:15Z
<p>I have an application that makes an internet connection from within the application by the click of a button.</p>
<p>When the button is clicked, the sub determines which type of modem is being used, and dials the connection associated to that modem.</p>
<p>My question is:
How can i change the properties for those dial-up connections in the code? Or rather how do i SET them in the code?</p>
<p>For example: I'd like to set the one setting where on connection it shows the notification in the Taskbar.</p>
<p>Can anyone help? Or point me in the right direction?</p>
http://stackoverflow.com/questions/745721/is-there-any-library-component-for-dial-up-connections0Is there any library/component for dial-up connections?Jader Dias2009-04-13T23:09:47Z2009-04-29T17:28:59Z
<p>I want to dial-up through VoIP. Yes, I know that it's almost impossible. I have heard that softmodems use software for DSP, but I guess the code its hardware specific. If I only could isolate the code that makes the modem signal I could use it on my project. Anyone ever heard about a library that would fullfill my needs?</p>
<p>PS: iaxmodem only modulates fax signals.</p>
http://stackoverflow.com/questions/802401/web-2-0-and-dial-up-how-make-it-as-painless-as-possible0Web 2.0 and dial-up: how make it as painless as possible?Carina2009-04-29T13:36:35Z2009-04-29T14:25:54Z
<p>I'm trying to put a workable plan together for a charity that could really make good use of a forum and a wiki, but a crucial part of its operations happen in parts of the world where dial-up connection dominates and probably will continue to do so for the foreseeable future.</p>
<p>This site was recommended as one that behaves well even on a dial-up connection, so I thought I'd ask for some help here!</p>
<p>The site I want to hook this on to is using Drupal. Anyone out there with experiences like this who could maybe help?</p>
http://stackoverflow.com/questions/753750/is-there-a-way-to-determine-if-a-user-is-using-broadband-or-dial-up4Is there a way to determine if a user is using broadband or dial-upnzpcmad2009-04-15T21:13:48Z2009-04-15T23:44:44Z
<p>We have a requirement from a customer to provide a "lite" version for dial-up and all the bells-and-whistles for a broadband user.</p>
<p>The solution will use Flex / Flash / Java EJB and some jsp.</p>
<p>Is there a way for the web server to distinguish between the two?</p>
http://stackoverflow.com/questions/593835/games-using-phone-line3games using phone lineacidzombie242009-02-27T07:23:12Z2009-02-27T19:09:25Z
<p>I remember years ago my friend and i were playing command and conquer red alert and there was a mode were we put the others phone number and the game would dial up and connect. What was this called? and where can i find resource to program for this?</p>