473,569 Members | 2,789 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Transferring Student Data Securely Between Servers

We have a read only connection to the remote campus sql server. For
security reasons, my network nazi won't let me have a web server on our
local server that has this connection. Fine. He want's to isolate our
server with the connection to the remote server from the outside world.

----------------------
| Campus server |
----------------------
|
----------------------
| Secure server |
----------------------
|
----------------------
| Public web server |
----------------------

So the public queries the public server and the secure server acts as a
go between between the public server and the campus sql server. The
public sees the report web page.

What's the best way to do this? I was thinking I could put a web server
on the secure server and have it query the campus server and return xml
to the public web server. But the network nazi won't let me run a
webserver on the secure server.

Nov 18 '05 #1
7 1191
we need to know what the programming enviroment on the secure server is to
answer the question. (o/s and what types of applications are supported)

-- bruce (sqlwork.com)
"Jim Bayers" <sp**@spamity.s pam> wrote in message
news:Xn******** *************** ******@207.46.2 48.16...
| We have a read only connection to the remote campus sql server. For
| security reasons, my network nazi won't let me have a web server on our
| local server that has this connection. Fine. He want's to isolate our
| server with the connection to the remote server from the outside world.
|
| ----------------------
| | Campus server |
| ----------------------
| |
| ----------------------
| | Secure server |
| ----------------------
| |
| ----------------------
| | Public web server |
| ----------------------
|
| So the public queries the public server and the secure server acts as a
| go between between the public server and the campus sql server. The
| public sees the report web page.
|
| What's the best way to do this? I was thinking I could put a web server
| on the secure server and have it query the campus server and return xml
| to the public web server. But the network nazi won't let me run a
| webserver on the secure server.
|
Nov 18 '05 #2
It's windows 2003 with sql server 2000. All three are in fact. I run
IIS 6 on the public server. I use asp.net but can use wsh/vbscript.
The web applications, mostly reports, will run on the public server and
query the campus server through the secure server.
"bruce barker" <no***********@ safeco.com> wrote in
news:#H******** ******@TK2MSFTN GP12.phx.gbl:
we need to know what the programming enviroment on the secure server
is to answer the question. (o/s and what types of applications are
supported)

-- bruce (sqlwork.com)
"Jim Bayers" <sp**@spamity.s pam> wrote in message
news:Xn******** *************** ******@207.46.2 48.16...
| We have a read only connection to the remote campus sql server. For
| security reasons, my network nazi won't let me have a web server on
| our local server that has this connection. Fine. He want's to
| isolate our server with the connection to the remote server from the
| outside world.
|
| ----------------------
| | Campus server |
| ----------------------
| |
| ----------------------
| | Secure server |
| ----------------------
| |
| ----------------------
| | Public web server |
| ----------------------
|
| So the public queries the public server and the secure server acts as
| a go between between the public server and the campus sql server.
| The public sees the report web page.
|
| What's the best way to do this? I was thinking I could put a web
| server on the secure server and have it query the campus server and
| return xml to the public web server. But the network nazi won't let
| me run a webserver on the secure server.
|


Nov 18 '05 #3
This article can give you an idea to start with.
http://msdn.microsoft.com/library/en...SecNetHT15.asp

or you can use a proxy on public server to a COm+ app on secure server to
get back the xml.

"Jim Bayers" <sp**@spamity.s pam> wrote in message
news:Xn******** *************** ******@207.46.2 48.16...
We have a read only connection to the remote campus sql server. For
security reasons, my network nazi won't let me have a web server on our
local server that has this connection. Fine. He want's to isolate our
server with the connection to the remote server from the outside world.

----------------------
| Campus server |
----------------------
|
----------------------
| Secure server |
----------------------
|
----------------------
| Public web server |
----------------------

So the public queries the public server and the secure server acts as a
go between between the public server and the campus sql server. The
public sees the report web page.

What's the best way to do this? I was thinking I could put a web server
on the secure server and have it query the campus server and return xml
to the public web server. But the network nazi won't let me run a
webserver on the secure server.

Nov 18 '05 #4
Does the Secure Server have a SQL Database?

Why not create a DSN pointing to Campus.
In Public connect to DSN.

.....

Can you tell me what is available in Secure server? How about the Campus?
Does the requirements require you to use XML?
Did you build a web service in the Campus server?

You could build a Web service that GETS data from Secure Server.
Now you can invoke the web service from Public and use the data to load your
reports.

Easy!

Yama

"Jim Bayers" <sp**@spamity.s pam> wrote in message
news:Xn******** *************** ******@207.46.2 48.16...
We have a read only connection to the remote campus sql server. For
security reasons, my network nazi won't let me have a web server on our
local server that has this connection. Fine. He want's to isolate our
server with the connection to the remote server from the outside world.

----------------------
| Campus server |
----------------------
|
----------------------
| Secure server |
----------------------
|
----------------------
| Public web server |
----------------------

So the public queries the public server and the secure server acts as a
go between between the public server and the campus sql server. The
public sees the report web page.

What's the best way to do this? I was thinking I could put a web server
on the secure server and have it query the campus server and return xml
to the public web server. But the network nazi won't let me run a
webserver on the secure server.

Nov 18 '05 #5
Yes, secure will communicate with campus via ipsec or something like it.
The big problem is getting the response from public to secure and the
data back from secure to public. xml is not a requirement.

"Yama" <yk*****@stbern ard.com> wrote in
news:u1******** ******@TK2MSFTN GP09.phx.gbl:
Does the Secure Server have a SQL Database?

Why not create a DSN pointing to Campus.
In Public connect to DSN.

....

Can you tell me what is available in Secure server? How about the
Campus? Does the requirements require you to use XML?
Did you build a web service in the Campus server?

You could build a Web service that GETS data from Secure Server.
Now you can invoke the web service from Public and use the data to
load your reports.

Easy!

Yama

"Jim Bayers" <sp**@spamity.s pam> wrote in message
news:Xn******** *************** ******@207.46.2 48.16...
We have a read only connection to the remote campus sql server. For
security reasons, my network nazi won't let me have a web server on
our local server that has this connection. Fine. He want's to
isolate our server with the connection to the remote server from the
outside world.

----------------------
| Campus server |
----------------------
|
----------------------
| Secure server |
----------------------
|
----------------------
| Public web server |
----------------------

So the public queries the public server and the secure server acts as
a go between between the public server and the campus sql server.
The public sees the report web page.

What's the best way to do this? I was thinking I could put a web
server on the secure server and have it query the campus server and
return xml to the public web server. But the network nazi won't let
me run a webserver on the secure server.



Nov 18 '05 #6
That is where you need to build a web service to handle communication.
"Jim Bayers" <sp**@spamity.s pam> wrote in message
news:Xn******** *************** ******@207.46.2 48.16...
Yes, secure will communicate with campus via ipsec or something like it.
The big problem is getting the response from public to secure and the
data back from secure to public. xml is not a requirement.

"Yama" <yk*****@stbern ard.com> wrote in
news:u1******** ******@TK2MSFTN GP09.phx.gbl:
Does the Secure Server have a SQL Database?

Why not create a DSN pointing to Campus.
In Public connect to DSN.

....

Can you tell me what is available in Secure server? How about the
Campus? Does the requirements require you to use XML?
Did you build a web service in the Campus server?

You could build a Web service that GETS data from Secure Server.
Now you can invoke the web service from Public and use the data to
load your reports.

Easy!

Yama

"Jim Bayers" <sp**@spamity.s pam> wrote in message
news:Xn******** *************** ******@207.46.2 48.16...
We have a read only connection to the remote campus sql server. For
security reasons, my network nazi won't let me have a web server on
our local server that has this connection. Fine. He want's to
isolate our server with the connection to the remote server from the
outside world.

----------------------
| Campus server |
----------------------
|
----------------------
| Secure server |
----------------------
|
----------------------
| Public web server |
----------------------

So the public queries the public server and the secure server acts as
a go between between the public server and the campus sql server.
The public sees the report web page.

What's the best way to do this? I was thinking I could put a web
server on the secure server and have it query the campus server and
return xml to the public web server. But the network nazi won't let
me run a webserver on the secure server.


Nov 18 '05 #7
So like I mentionned earlier why not create somethnig between the Campus and
Secure then use Public to talk with Campus.
"Jim Bayers" <sp**@spamity.s pam> wrote in message
news:Xn******** *************** ******@207.46.2 48.16...
Yes, secure will communicate with campus via ipsec or something like it.
The big problem is getting the response from public to secure and the
data back from secure to public. xml is not a requirement.

"Yama" <yk*****@stbern ard.com> wrote in
news:u1******** ******@TK2MSFTN GP09.phx.gbl:
Does the Secure Server have a SQL Database?

Why not create a DSN pointing to Campus.
In Public connect to DSN.

....

Can you tell me what is available in Secure server? How about the
Campus? Does the requirements require you to use XML?
Did you build a web service in the Campus server?

You could build a Web service that GETS data from Secure Server.
Now you can invoke the web service from Public and use the data to
load your reports.

Easy!

Yama

"Jim Bayers" <sp**@spamity.s pam> wrote in message
news:Xn******** *************** ******@207.46.2 48.16...
We have a read only connection to the remote campus sql server. For
security reasons, my network nazi won't let me have a web server on
our local server that has this connection. Fine. He want's to
isolate our server with the connection to the remote server from the
outside world.

----------------------
| Campus server |
----------------------
|
----------------------
| Secure server |
----------------------
|
----------------------
| Public web server |
----------------------

So the public queries the public server and the secure server acts as
a go between between the public server and the campus sql server.
The public sees the report web page.

What's the best way to do this? I was thinking I could put a web
server on the secure server and have it query the campus server and
return xml to the public web server. But the network nazi won't let
me run a webserver on the secure server.


Nov 18 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1391
by: James B | last post by:
I have been asked to write a windows app that will reside outside our organization that can Read/Write data that will be on one of our servers. Since I have never done this before I'm not sure how I can securely access the data. I have used web services to send and receive datasets over the Internet but not encrypted. Any help would be...
1
1522
by: Chris Holliday | last post by:
Windows 2000/2003 servers We are deploying some B2B functionality that requires data to be submitted to our DMZ web servers. We want to push this data in near real time through the internal firewall into our network. I have been searching google and several other resources to come up with an MS recommended taxonomy for deployment but I...
2
4539
by: jimb | last post by:
I need some advice on how to securely transfer data between two servers. Here is the situation. We have two sql servers that hold student data. I have full access to my sql server, but only write access to the main sql server on campus. I hope to use XML and SSL to transfer student data to the main server. As for generating the XML, I'll...
15
5063
by: http://www.visual-basic-data-mining.net/forum | last post by:
Does anyone have any idea how to transferring data from TextBox1 in form1 to textBox2 in form2..... That means after i fill in any data in textBox1 and click Next button... It will bring me to form2....and there the data that i key in form1 will appear to form2 in textbox2 Thanks
2
1426
by: Neil | last post by:
I need to append data from a database on one server to a table in a database on a different server. Both servers are running SQL 7. How can that be done? Thanks.
2
2585
by: Bob | last post by:
Trying to transfer databases from MSDE to SQL. When I use SQL Enterprise Manager - DTS - import or export, it works for the first database, but then fails for the others. I select the to and from databases using DTS - Import - 'MS OLE DB Provider for SQL Server', then select 'Copy objects and data between SQL Servers'. It fails with the...
0
1867
by: doron.grinstein | last post by:
A lot of architects tackle the issue of exposing internal web services and web applications to the Internet. How many times do you see a requirement such as "the application should be accessible to users behind the firewall (on the intranet) but also to users on the Internet"? Traditionally, architects had two choices - beg the network...
2
1913
by: garther | last post by:
Hi I'm trying to get something like this to work: Application calculates data and stores them in local SQL server. Once a week this data needs to copied to DVD. Then I need second application which has to take this data from DVD and send to global SQL server. Talking directly from remote hosts to main database is not an option.
0
1354
by: Desmodromic | last post by:
I have two linux servers running DB2 v8.2 with SQL replication. I recently started a full refresh of a single subscription set via the Replication Center GUI. This was successful, but seemed to take a lot longer than I anticipated. Throughout the process I was getting low disk space warnings on my desktop PC. At the time, I didn't pay too...
0
7612
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7924
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
1
7672
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7968
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
5219
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3653
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
1
2113
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1212
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
937
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.