vpn

Is there such a thing as a SOAP proxy server or am I going to have to roll my own?

Disclaimer: I've tried Googling for something that will do what I want, but no luck there. I'm hoping someone here might be able to lend a hand. Background I have a .NET class library that accesses a secure web service with the WSE 2.0 library. The web service provides a front-end to a central database (it's actually part of a data-sha...

Access VPN connection on guest Virtual PC from Host OS

Hello, I am running as my Host OS - Win 7 x64 and running an instance of Virtual PC XP. I am running the Cisco ISPec VPN Client on the Guest XP VPC OS and can successfully connect to my company's corporate network. I cannot run the Cisco IPSec client sw on the Host, because it is 64-bit, Cisco doesn't support 64-bit on its IPSec clien...

secure Oracle connection from java applet

I've written a java applet that connects to Oracle on a hosted server. I have been testing it by connecting by VPN to my hosting service and connecting to the Oracle database. I've done this so I don't have to expose the Oracle db to outside connections, but now I need to be able to connect to Oracle without being on the VPN. Is there...

How do I get the Current User identity for a VPN user in a Windows forms app?

We're currently developing a Windows Smartclient that needs to authenticate users using their AD group membership. We now have a requirement for some users to connect over VPN. Is there any way I can get the AD account identity and groups from the VPN login? WindowsIdentity.GetCurrent() returns the local user account rather than their ...

PPTP VPN - users cannot access internet via the server

Hi. I have set up a pptp vpn on windows xp, and added the users. The vpn users can connect to the server, but once they are connected they can't access the internet via the vpn server which should act like a proxy. That's my basic task - to make a vpn server serve as a proxy for the users. Can someone explain why the users are not abl...

Connecting/Tunneling to remote server to bypass firewall

I want to try out some of the MySQL software, like Workbench, on the MySQL Db I develop on at work. After many failed attempts to make the connection, I finally asked one of the server admins if I was doing something wrong and was informed that the Db is behind firewall. So I can use phpMyAdmin, since it's installed server-side, but not ...

When application is behind the VPN IPSec, How can I connect it through my iPhone application?

Hi, I am making iPhone application for accessing bugzilla (application). Rightnow my application is allow to access bugzilla from anywhere without VPN IPSec, but whenever some bugzilla's required VPN IPsec authentication to use from outside the network, It will not allow to access bugzilla from my iPhone application, how can I code to ...

Need to Automate PPTP connectivity from Linux to Windows.

Hi All, I'm in need of setting up cron-based VPN connectivity from Ubuntu "Jaunty" to a Windows-based VPN over PPTP for incremental DB synchronization. Using the default Network Manager and PPTP module everything seems to work fine. However, I have 2 issues: 1) Despite checking "Use this only for resources", I still lose my local in...

Connection refused - nettcp WCF Service from work - client connecting over VPN

Here's the scenario: A client machine has connected to the 'Work network' via VPN (Cisco VPN Client). The work network hosts a machine that has a WCF service with nettcp binding. The client tries to connect to this service and gets an exception as follows: Could not connect to net.tcp://workMachine:2010/SomeService. The connectio...

Synchronizing SQL Data with or without a VPN

I have written a Windows application that stores data locally in a SQL Server Express database. It is used by multiple people from remote locations who need to synchronize their data occassionally. It requires a fairly simple synchronization process of only a handful of tables and I'm currently accomplishing this by linking each of the...

Asp.Net Impersonation over a VPN

I'm doing a spot of development from home over a VPN. The project is an Asp.Net 2.0 (Using 3.5 SP1) app that uses impersonation. The account that is impersonated is on the domain at work but when ever I attempt to run the app I get the following error: 'Logon failure: unknown user name or bad password.' The impersonation is requ...

How to find connected hosts at network (vpn or lan)

Hello, I'm looking for possible solutions to the following need: I have a VPN configured (using openVPN over Linux, BTW), and I want to know at any moment which hosts are connected to it. I recognize that it probably is the same thing as trying to know which hosts are connected to a lan, so any of the solutions might do the job... The ...

VPN authentication in C#

I have a VPN in my office. One machine has windows server 2003 installed. I am coding an app in C# to upload files from a machine connected to the server machine on a shared folder. The file transfer code has been written, but it throw Access denied exception when I run it. However when I open the shared folder using windows explorer a...

Iphone VPN security

When developing an application, there might come a time where I would want to establish a secure connection like a vpn with a client. An iphone is the topic here. Once the user has established this, is all IP traffic routed when I suggest it do so? I'm curious about some open port or inspection of vpn traffic. Is there any method availa...

VPN in cocoa app

Is it possible to setup a vpn connection in my cocoa app or from a commandline? And where should i start if i want to do something like that? ...

[C#] Connect and reconnect VPN

Hi! I need to be able to connect and reconnect to a VPN connection in Windows 2008 server programmatically. I also need to monitor the state of the connection. One solution is to use the rsdial application built into windows and use Process.Start() to invoke it. My problem is then how i would monitor the state of the connection. I am...

How can I connect to VPN server through C# program?

I am a C# programmer, I have client needs: He have 10 computers in office (VPN connection). one computer is server and all are clients. server computer has one folder it always updated time to time, I had to writer code to copy that folder from server computer. I made it and it works fine when I run that software in two system LAN conne...

How to detect vpnc disconnection ?

Hi, What is the easiest way to detect that a vpnc connection on Linux/Ubuntu has disconnected ? Manually, I think the way to detect is to check whether the interface (tun0) appears in /sbin/ifconfig output. Is there a better way to find out immediately, so that a script can be run to restart the connection ? ...

Creating VPN client and server using WCF

I would like to create a VPN client and VPN server using WCF through HTTP. Can this be accomplished? ...

Trying to start VPNC from PHP exec()

I am trying to start my VPN connection (using VPNC) from PHP. I have to do it this way because it is closed remotely if there isn't activity so I can't just leave it running on the server. I am able to do it from the command line by typing: /usr/local/sbin/vpnc --natt-mode force-natt This works. It doesn't require any input from me...