Accessing .Net web application from UNIX

T

Tony Baker

Hi, being a Windows developer and not having anything to do with
UNIX/Solaris, I have a few questions about accessing .Net Web
Applications from such environments.

If a client has a UNIX/Solaris environment, is it possible to put a
Windows 2000 box on the network which hosts a .Net web application and
access it from other UNIX machines on the network (via Netscape or
whatever)?
Is this as straight forward as plugging a network cable in to the back
of a windows box and directing any machines Browser on the network to
the web site on the win machine?

What issues would we face? Any handy web sites to help me through
this?!

Cheers,

Tony.
 
M

Michael Giagnocavo [MVP]

Sure, you just need to configure the TCP/IP settings so that the
machines can see each other (nothing out of the ordinary). You won't
be able to take advantage of Windows-specific IIS features, but if you
keep it simple (Netscape's not so hot when it comes to HTML), you
shouldn't have any problems.

-mike
MVP
 
R

Richard Burte

It shouldn't be a problem. I am not sure what type of application you are
publishing - and that will affect which approach you take.

HTML application
- Just use ASP.NET and make sure that the HTML you emit is appropriate for
your client browsers.
- If you are using authentication, use Forms-based or Basic/(prefereably
with SSL)

Web Services over HTTP
- Use standard ASMX infrastructure
- Make sure that the types you are exposing are usable from the client
platform. Avoid the dataset etc.

Sockets
- Use the sockets classes in the Framework System.Net.Sockets
-
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/
frlrfsystemnetsockets.asp

Hope this helps.

Richard Burte
Technical Product Manager
Microsoft Corporation

--------------------
 

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

Members online

Forum statistics

Threads
473,731
Messages
2,569,432
Members
44,832
Latest member
GlennSmall

Latest Threads

Top