Can I run windows database application online?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In the book, I read that we can call a C# exe from Internet Explorer. I tried
with a small program. It worked. But when I tried with a database program,
which works when I call it directly. It didn't work. I got an IO exception. I
guess it is because the application has to access SEL server. But it is
regarded as external program when called from IE so that it does not work(I
might be wrong). So my question is that: Is it possible to run database
application throught internet? If yes, how to access the SQL server?

Thanks,

Kai
 
Karl,

When you execute an application that is accessed from a site (not the
local machine), it runs with a different security policy, one which is
probably prohibiting the database from establishing its connections. You
will have to go to the .NET Framework administration tool and change the
security policy for your app so that it has the permissions it needs to run.

Hope this helps.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top