hot questions tagged ras - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T22:55:48Zhttp://stackoverflow.com/feeds/tag?tagnames=ras&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1572349/determine-rasentry-structure-size-use-rasgetentryproperties-in-delphi0Determine RasEntry structure size use RasGetEntryProperties in DelphiMLS2009-10-15T13:23:36Z2009-10-15T17:11:48Z
<p>I'm trying to create a DUN entry. </p>
<p>I am calling RasGetEntryProperties with a lpRasEntry parameter of null. This should return the structure size in the lpdwEntryInfoSize parameter. Instead it returns an error - ERROR_INVALID_SIZE.</p>
<p>How do I call the RasGetEntryProperties function to get the RasEntry structure size?</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/440566/what-is-the-best-way-to-bulk-copying-sql-data-over-a-dial-up-connection0What is the best way to bulk copying SQL data over a dial-up connection?scottm2009-01-13T20:05:29Z2009-01-14T16:15:58Z
<p>I have a few remote SQL servers that I need to pull a large amount of data from regularly (say 5,000,000 rows per server). This data also needs to be formatted and FTPed to another server. The dial-up portion is fine, I can connect and communicate with the server, but sometimes the connection is slow, maybe only 19Kbps.</p>
<p>Once connected I tried to use System.Data.SqlClient.SqlBulkCopy, but it just throws a timeout error. I've set the timeout on the bulk copy to 7200 seconds, and the timeout on the connection strings to each database at 900 seconds, but it still times out at around 30 seconds. </p>
<p>I tried using a DataReader and running SqlCommand.ExecuteNonQuery() to insert each row, which works OK, but it's slow and sometimes the connection is lost.</p>
<p>I also tried setting up a DTS package on the remote servers, scheduling them to dump the data I need to text, and then tried downloading the files. But, they can be a few hundred MB (possibly even GB on some servers) and the dial-up connection is usually dropped at some point. </p>
http://stackoverflow.com/questions/1016009/looking-for-a-solution-to-a-remote-application-connecting-to-local-resources0Looking for a solution to a remote application connecting to local resourcesAngryHacker2009-06-19T01:34:03Z2009-06-19T01:34:03Z
<p>I have a client side app that I've deployed at a company and I've integrated it into their TAPI compliant PBX system. They love not having to dial the phone, but rather just click on a phone number in the application and it magically dials.</p>
<p>However, a large part of their workforce uses the application remotely by logging into an NT RAS server (for silly reasons but they won't change that). Obviously TAPI does not work like that - the remote application has no connection to their local phone system. </p>
<p>I am just looking to brainstorm here... What can I do to connect my remote application to their local phone system?</p>