Providing external access to data

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default Providing external access to data

    I need to provide someone access to an SQL database over the Internet.

    Would I better off just setting up a username/password for them to
    access the database directly? Or, should I have them access the data as
    XML through HTTP?

    In either case, I'm going to have to provide them with sample code.

    I have a "public" database at the moment that we allow access as XML
    through HTTP.

    I'm not so much worried about security as I am "bandwidth". I have no
    idea how much bandwidth an SQL query over the Internet takes.

    --Dave
    Dave Navarro Guest

  2. Similar Questions and Discussions

    1. No external HTML access to Server
      Please could somebody give me some advice. I have a Flash app. that accesses a mySql database throught PHP ( OS X, Apache1.34, PHP 5, mySQL 5, MX...
    2. External access IP Address
      I've set up my developer edition and can access it ok using http://127.0.0.1:8500/ prefix. If I wish to access from an external pc via the web I...
    3. providing diffrent interface for one webservice
      Hi I am facing some problem while i am trying to manage web services. Actually i need to provide some management functions inside the web service,...
    4. Get data from external site
      I have an account with a vendor that list my order info like below: Is there a way to connect to the site, logon & get the ordernumber & tracking,...
    5. [PHP-DEV] Patch providing new function apache_get_scoreboard()
      --------------020304030003010600010706 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Hello, ...
  3. #2

    Default Re: Providing external access to data

    I'd say you'd probably be best providing a periodic dump of XML data,
    say, updated every hour (or whatever)

    this is a pretty simple task which you could achieve in no time at all
    with :

    WSH
    a FOR XML query
    Windows Task Scheduler

    unless of course they also need update access.




    ________________________________________
    Atrax. MVP, IIS
    [url]http://rtfm.atrax.co.uk/[/url]

    newsflash : Atrax.Richedit 1.0 now released.
    [url]http://rtfm.atrax.co.uk/infinitemonkeys/components/Atrax.RichEdit/[/url]

    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Atrax Guest

  4. #3

    Default Re: Providing external access to data

    Here is a related idea you might want to consider:

    For a "quick and dirty" generic ASP solution to putting database tables
    on the Web that just requires setting up a configuration page for each
    table or query and uploading the database to the Web as long as you have
    an autonumber field in each table (and as a more advanced issue you'll
    probably sometime in the future want to create login capabilities),
    perhaps try something like this:
    GenericDB by Eli Robillard
    [url]http://www.genericdb.com[/url]

    Best regards,
    J. Paul Schmidt, Freelance ASP Web Developer
    [url]http://www.Bullschmidt.com[/url]
    ASP Design Tips, ASP Web Database Demo, Free ASP Bar Chart Tool...


    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Bullschmidt Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139