Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Other Discussions
  3. IT & Infrastructure
  4. Remote File Access.

Remote File Access.

Scheduled Pinned Locked Moved IT & Infrastructure
comhelptutorialquestion
8 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    Shouvik Das
    wrote on last edited by
    #1

    In our institution the firewall exclusively allows HTTP traffic alone. It does allow for ports other than 80 but the packet format should confirm to HTTP. Now I have a system at home connected to the internet by a router. I even have a static IP provided to me by my ISP. But in order to remotely access files not only for reading / opening alone but even for modification, upload, download etc. i need to use FTP. But the packets are dropped by the firewall. How and in which language can we write an ActiveX component which can convert these packets to HTTP from my institution system for outgoing traffic and also reconvert the HTTP to the original format at my home system end. Similarly as any inbound traffic other than HTTP is dropped so the same has to be performed at my home end also. Also tell me how what protocol and ports does mstsc.exe (WindowsXP) uses. Could you please throw some light on the above problem. In summary my main objective is to have a directory listing of my system(home) files so that I can use them locally. How to do it?


    There are only two kinds of people who are really fascinating-people who know absolutely everything, and people who know absolutely nothing. Oscar Wilde (1854-1900) Regards... Shouvik

    S 1 Reply Last reply
    0
    • S Shouvik Das

      In our institution the firewall exclusively allows HTTP traffic alone. It does allow for ports other than 80 but the packet format should confirm to HTTP. Now I have a system at home connected to the internet by a router. I even have a static IP provided to me by my ISP. But in order to remotely access files not only for reading / opening alone but even for modification, upload, download etc. i need to use FTP. But the packets are dropped by the firewall. How and in which language can we write an ActiveX component which can convert these packets to HTTP from my institution system for outgoing traffic and also reconvert the HTTP to the original format at my home system end. Similarly as any inbound traffic other than HTTP is dropped so the same has to be performed at my home end also. Also tell me how what protocol and ports does mstsc.exe (WindowsXP) uses. Could you please throw some light on the above problem. In summary my main objective is to have a directory listing of my system(home) files so that I can use them locally. How to do it?


      There are only two kinds of people who are really fascinating-people who know absolutely everything, and people who know absolutely nothing. Oscar Wilde (1854-1900) Regards... Shouvik

      S Offline
      S Offline
      S Douglas
      wrote on last edited by
      #2

      Try LogMeIn[^] Their service works over http


      S 2 Replies Last reply
      0
      • S S Douglas

        Try LogMeIn[^] Their service works over http


        S Offline
        S Offline
        Shouvik Das
        wrote on last edited by
        #3

        LogMeIn this blocked by the firewall


        There are only two kinds of people who are really fascinating-people who know absolutely everything, and people who know absolutely nothing. Oscar Wilde (1854-1900) Regards... Shouvik

        1 Reply Last reply
        0
        • S S Douglas

          Try LogMeIn[^] Their service works over http


          S Offline
          S Offline
          Shouvik Das
          wrote on last edited by
          #4

          I think my question was ambiguous. I actually want to develop my own ActiveX component to do the protocol conversion say from FTP to HTTP while outbound from my firewall and vice versa at my Home system end. At the same time I also want to do the above thing while coming traffic comes from my home system to my institution system so as the firewall doesn't discard the packet again. Hope i'm clear now. I want some programming / implementation concept.


          There are only two kinds of people who are really fascinating-people who know absolutely everything, and people who know absolutely nothing. Oscar Wilde (1854-1900) Regards... Shouvik

          D S 2 Replies Last reply
          0
          • S Shouvik Das

            I think my question was ambiguous. I actually want to develop my own ActiveX component to do the protocol conversion say from FTP to HTTP while outbound from my firewall and vice versa at my Home system end. At the same time I also want to do the above thing while coming traffic comes from my home system to my institution system so as the firewall doesn't discard the packet again. Hope i'm clear now. I want some programming / implementation concept.


            There are only two kinds of people who are really fascinating-people who know absolutely everything, and people who know absolutely nothing. Oscar Wilde (1854-1900) Regards... Shouvik

            D Offline
            D Offline
            Dave Kreskowiak
            wrote on last edited by
            #5

            OK, say you do this. If the company is that strict on controlling traffic through that firewall, how are you going to get them to install a component on the web servers that translates your traffic back to unencapsulated FTP?? You need components on BOTH sides of the firewall to get this to work. You need a server (possibly web service) running on the inside of the firewall and you need a client application running on your home machine.

            Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                 2006, 2007

            S 1 Reply Last reply
            0
            • S Shouvik Das

              I think my question was ambiguous. I actually want to develop my own ActiveX component to do the protocol conversion say from FTP to HTTP while outbound from my firewall and vice versa at my Home system end. At the same time I also want to do the above thing while coming traffic comes from my home system to my institution system so as the firewall doesn't discard the packet again. Hope i'm clear now. I want some programming / implementation concept.


              There are only two kinds of people who are really fascinating-people who know absolutely everything, and people who know absolutely nothing. Oscar Wilde (1854-1900) Regards... Shouvik

              S Offline
              S Offline
              S Douglas
              wrote on last edited by
              #6

              shouvik.d wrote:

              implementation concept.

              If your running IIS on your home server, then turn on directory browsing http://www.asp101.com/samples/dir_list.asp[^] or Planning Your IIS Content Directories and Virtual Servers[^] File uploading via http http://www.ondotnet.com/pub/a/dotnet/2002/04/01/asp.html[^]


              S 1 Reply Last reply
              0
              • D Dave Kreskowiak

                OK, say you do this. If the company is that strict on controlling traffic through that firewall, how are you going to get them to install a component on the web servers that translates your traffic back to unencapsulated FTP?? You need components on BOTH sides of the firewall to get this to work. You need a server (possibly web service) running on the inside of the firewall and you need a client application running on your home machine.

                Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                     2006, 2007

                S Offline
                S Offline
                Shouvik Das
                wrote on last edited by
                #7

                Exactly. U seem to read my mind. I have thought of the same kind but implementation wise I'm confused. IIS 6.0 is running on both ends. because the mechanism will always be like - institute system triggered, as the firewall will not allow inbound request, hence I need a component which will do encapsulation an decapsulation at both ends. Now please suggest a way to do this. I can even log into my system from any Cyber Cafe using mstsc. But I can't from my instiute system. Please help


                There are only two kinds of people who are really fascinating-people who know absolutely everything, and people who know absolutely nothing. Oscar Wilde (1854-1900) Regards... Shouvik

                1 Reply Last reply
                0
                • S S Douglas

                  shouvik.d wrote:

                  implementation concept.

                  If your running IIS on your home server, then turn on directory browsing http://www.asp101.com/samples/dir_list.asp[^] or Planning Your IIS Content Directories and Virtual Servers[^] File uploading via http http://www.ondotnet.com/pub/a/dotnet/2002/04/01/asp.html[^]


                  S Offline
                  S Offline
                  Shouvik Das
                  wrote on last edited by
                  #8

                  But will it give me permissions like i have in explorer? Can I download and upload any file in form of directory services? I'm not aware of it hence I'm asking so


                  There are only two kinds of people who are really fascinating-people who know absolutely everything, and people who know absolutely nothing. Oscar Wilde (1854-1900) Regards... Shouvik

                  1 Reply Last reply
                  0
                  Reply
                  • Reply as topic
                  Log in to reply
                  • Oldest to Newest
                  • Newest to Oldest
                  • Most Votes


                  • Login

                  • Don't have an account? Register

                  • Login or register to search.
                  • First post
                    Last post
                  0
                  • Categories
                  • Recent
                  • Tags
                  • Popular
                  • World
                  • Users
                  • Groups