• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Calling java from ASP

 
Ranch Hand
Posts: 31
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

How to integrate java code with ASP? If this is done using webservices.Then is creating webservice in IIS server is similiar to crearing webservice in jboss?

with regards,
Yathish
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Where does the Java code run that you want to integrate with ASP? On a client? On a different server? On the same server?

A web service is a web service - if it uses standards like SOAP and WSDL it shouldn't matter whether it's hosted on JBoss or IIS. Of course, on IIS you won't be able to use toolkits like Axis, but you already knew that.
 
yathish Gatty
Ranch Hand
Posts: 31
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I want to run java code in same server as ASP(client code) is running i.e IIS server.
Could you suggest how to create webservice to run in IIS.

Thanks,

Yathish
 
Ulf Dittmer
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I believe ASP.NET includes a web services platform, probably SOAP and WSDL.
 
reply
    Bookmark Topic Watch Topic
  • New Topic