ASP.net interface with windows API

  • Thread starter Thread starter Michael Weyant
  • Start date Start date
M

Michael Weyant

Hey all,

I am looking for a method to have an ASP.net page perform remote
configuration of an embedded windows device..things like configuring TCP/IP
info, domain participation, computer name, proxy info, etc.

My intent was to have this device host an ASP page in IIS that would make
this possible by calling windows APIs...

First off, does this seem like a viable approach? And if so would one of you
be kind enough to point me in the right direction?

Michael
 
Michael Weyant said:
Hey all,

I am looking for a method to have an ASP.net page perform remote
configuration of an embedded windows device..things like configuring
TCP/IP info, domain participation, computer name, proxy info, etc.

My intent was to have this device host an ASP page in IIS that would make
this possible by calling windows APIs...

First off, does this seem like a viable approach? And if so would one of
you be kind enough to point me in the right direction?

I presume that the embedded device supports .NET? Does the device support
the entire framework?

I don't see any reason why this couldn't work.
 
Hey all,

I am looking for a method to have an ASP.net page perform remote
configuration of an embedded windows device..things like configuring
TCP/IP info, domain participation, computer name, proxy info, etc.

My intent was to have this device host an ASP page in IIS that would
make this possible by calling windows APIs...

Most embedded machines do not have IIS - but if they do, then this could be
done.
First off, does this seem like a viable approach? And if so would one
of you be kind enough to point me in the right direction?

You would call the APIs as if it were a desktop application - no difference
if it's ASP.NET or Windows Forms.

Perhaps some security setting changes to the account which runs IIS, but
those sort of issues won't become apparent until you start development.
 
Back
Top