473,606 Members | 2,885 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

File sharing between Internet and Intranet for ASP.net application

I am loooking for the bet way to share files between Internet and
Intranet application in real time, means as soon as an file is
uploaded to the intranet application it should show up in the internet
application.
Thanks,
Nov 19 '05 #1
3 2123
And what did you tried for now ? Whay do you have a delay ? Do you register
them in a DB ?

Storing them at a common location should do the job ?

Patrice

--

"sanjeeev" <sa***********@ yahoo.com> a écrit dans le message de
news:6c******** *************** ***@posting.goo gle.com...
I am loooking for the bet way to share files between Internet and
Intranet application in real time, means as soon as an file is
uploaded to the intranet application it should show up in the internet
application.
Thanks,

Nov 19 '05 #2
Currently, our organisation push the files every night to appear on
the internet from intranet. Now as We are going to use DMZ for
database sharing between internet and internet, how does we control
the security of files folder, if we share files.

One way to tight the security is not to allow user to access the
directory, and file should only be routed through HTTP headers.

Please advice

thanks,
sanjeev
"Patrice" <no****@nowhere .com> wrote in message news:<#1******* *******@TK2MSFT NGP10.phx.gbl>. ..
And what did you tried for now ? Whay do you have a delay ? Do you register
them in a DB ?

Storing them at a common location should do the job ?

Patrice

--

"sanjeeev" <sa***********@ yahoo.com> a ?crit dans le message de
news:6c******** *************** ***@posting.goo gle.com...
I am loooking for the bet way to share files between Internet and
Intranet application in real time, means as soon as an file is
uploaded to the intranet application it should show up in the internet
application.
Thanks,

Nov 19 '05 #3
Is this acceptable to stream those files using Response.WriteF ile ? This way
they don't need to have a direct URL to access those folders. They'll use a
page that will read those files from a non internet reachable location and
that will stream this content to them.

Patrice
--

"sanjeeev" <sa***********@ yahoo.com> a ecrit dans le message de
news:6c******** *************** ***@posting.goo gle.com...
Currently, our organisation push the files every night to appear on
the internet from intranet. Now as We are going to use DMZ for
database sharing between internet and internet, how does we control
the security of files folder, if we share files.

One way to tight the security is not to allow user to access the
directory, and file should only be routed through HTTP headers.

Please advice

thanks,
sanjeev
"Patrice" <no****@nowhere .com> wrote in message

news:<#1******* *******@TK2MSFT NGP10.phx.gbl>. ..
And what did you tried for now ? Whay do you have a delay ? Do you register them in a DB ?

Storing them at a common location should do the job ?

Patrice

--

"sanjeeev" <sa***********@ yahoo.com> a ?crit dans le message de
news:6c******** *************** ***@posting.goo gle.com...
I am loooking for the bet way to share files between Internet and
Intranet application in real time, means as soon as an file is
uploaded to the intranet application it should show up in the internet
application.
Thanks,

Nov 19 '05 #4

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

Similar topics

0
1511
by: Marco | last post by:
Hello everybody, I have a little Access application that is composed by two MDB files. I have stored the tables in the first MDB file, and the other objects (forms, reports, queries, etc.) in the second. I'm trying to share the back-end file (the one with the tables) in a Windows 2000 Server network. I have created an apposite folder, I have shared it and I have set up all the sharing options. When I try to open the MDB file, or to...
2
1711
by: Helen | last post by:
Guys and gals, I am having a problem with an IFRAME that is embedded into an ASPX page (ASP.NET application). The IFRAME is originally empty (src=''). When a user selects a date from the drop-down list box above the IFRAME, the IFRAME loads the content of a file on the local machine (c:\bds\blahblahblah.txt). The application that contains this page is running on a secure socket layer (SSL). When the IFRAME tries to load the file, a...
5
2800
by: Martin Heuckeroth | last post by:
Hi We are working on a webservice application and are having some problems with the cookies and/or sessions. We have them working on our intranet but then its not working on the internet. We have been looking our asses off but can not find a working solution. the code we came up with is ...
3
7013
by: Jennifer | last post by:
On an ASP page I've got some code that is supposed to "export" data in a grid to an Excel file. What I'm doing is writing all the data to a text file, separating the fields by commas. Then I'll redirect the user to a new page with the file that was just created. Code: Dim objFSO, objTextFile Dim sRead, sReadLine, sReadAll Const ForReading = 1, ForWriting = 2, ForAppending = 8
2
4740
by: createdbyx | last post by:
I am trying to make a file sync utillity to sync files between my laptop and my desktop pc. On my desktop machine (xp pro sp2) I have shared my "Visual Studio Projects" folder using windows simple file sharing. And have specified the "Allow network users to change my files." option as well. Then on my laptop (xp home sp2) I have mapped a network drive using windows explorer. So on my laptop I have a Y: drive that points to the "Visual...
0
1347
by: Shannon Broskie | last post by:
I'm posting this here as I first found the issue trying to run a 2.0 Framework app on a 2003 server. Background -------------- We utilize a strong name policy sent to all XP machines using group policy. This policy allows us to trust our applications that run from an application server as opposed to having to set the applications up locally on every XP box. We were trying to run an application on a Windows 2003 server from an...
3
5029
by: Mike Kelly | last post by:
Hi. I've built a page using standard ASP.NET 2.0 features and when I upload a large file (>20MB) to our intranet server, I get a paltry 100KB/s on our 100Mb/s LAN. Simply copying the file, I get around 7MB/s. I'm using a FileUpload control on an .aspx page, and then I'm writing the MyFileUpload.PostedFile.InputStream off to a database. What can I do to speed up this uploading? Thanks in advance
0
1869
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 engineers and managers to "poke holes" in the firewall (unlikely), buy an expensive specialized...
2
1963
by: =?Utf-8?B?Sm9zZXBo?= | last post by:
I am building an ASP.Net 2.0 application that will be accessible through both internet and intranet. The application will use two different types of security methods, depending on whether the application is being accessed through internet or intranet. I am trying to figure out how to write the code necessary to have the application make the determination and thereby use the appropriate security method. Does anyone have any ideas or...
0
8031
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
7962
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 synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8107
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 most users, this new feature is actually very convenient. If you want to control the update process,...
0
8315
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 choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6792
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
5971
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
3945
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 the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
1565
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
1309
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 effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.