ASP.NET and Java

  • Thread starter Thread starter Tracey
  • Start date Start date
T

Tracey

It's a urgent problem. Any advice would be appreciated
greatly.

My project set up Java processing code and MySQL database
server in a Linux machine. I want to implement
client/server functionality so that user input query
and get result in his browser.

My question is that is it possible to use an extra
windows server as IIS and communicate with the Java code ?
 
Not knowing how your java code is implemented I would guess that you would
probably need to implement web service methods in front of the selected java
code that you need to access, and call those methods in a webservice chain
from asp.net. The asp.net stuff is easy - for the java stuff you have lots
more work to do. Look at something like Java Glue to front the methods, or
look at an appropriate j2ee to .net java bridge.

--
Regards

John Timney (Microsoft ASP.NET MVP)
----------------------------------------------
<shameless_author_plug>
Professional .NET for Java Developers with C#
ISBN:1-861007-91-4
Professional Windows Forms
ISBN: 1861005547
Professional JSP 2nd Edition
ISBN: 1861004958
Professional JSP
ISBN: 1861003625
Beginning JSP Web Development
ISBN: 1861002092
</shameless_author_plug>
 
Back
Top