Steve
Steve

Reputation: 4695

How would I/can I post a java web project from Netbeans to Sharepoint?

I have a java web application that I am developing in Netbeans (and running through Tomcat). Is there any way to put this application on Sharepoint?

This is my first time doing this. I've read that to post the application to a tomcat server you just have to copy the .war file over, but I haven't been able to find an easy solution for Sharepoint.

Upvotes: 1

Views: 234

Answers (2)

alf
alf

Reputation: 18550

That's not possible out of the box. SharePoint only runs ASP.NET applications, not java projects.

You can deploy the solution to a Tomcat server and then use the Page Viewer Web Part to show external content.

Upvotes: 2

Nate
Nate

Reputation: 16898

Sharepoint isn't a Java Application Server. You'll have to use Tomcat (or another Java Application Server) to host your application. If you need to interact with Sharepoint from your application, you'll have to use web services, a shared database or something else to communicate.

Upvotes: 3

Related Questions