473,396 Members | 2,013 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

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 1185
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.spam> wrote in message
news:Xn*****************************@207.46.248.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**************@TK2MSFTNGP12.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.spam> wrote in message
news:Xn*****************************@207.46.248.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.spam> wrote in message
news:Xn*****************************@207.46.248.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.spam> wrote in message
news:Xn*****************************@207.46.248.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*****@stbernard.com> wrote in
news:u1**************@TK2MSFTNGP09.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.spam> wrote in message
news:Xn*****************************@207.46.248.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.spam> wrote in message
news:Xn*****************************@207.46.248.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*****@stbernard.com> wrote in
news:u1**************@TK2MSFTNGP09.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.spam> wrote in message
news:Xn*****************************@207.46.248.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.spam> wrote in message
news:Xn*****************************@207.46.248.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*****@stbernard.com> wrote in
news:u1**************@TK2MSFTNGP09.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.spam> wrote in message
news:Xn*****************************@207.46.248.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
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...
1
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...
2
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...
15
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...
2
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
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...
0
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...
2
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...
0
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...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
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...
0
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,...
0
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...
0
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.