views:

1035

answers:

3

Does someone know/have experience in showing Java web application generated UI in Sharepoint? We have a Java web application and are evaluating the possibilities to embed Java-generated web UI into Sharepoint. I don't think Sharepoint supports Java portlets, but it might support consuming WSRP?

A: 

SHarepoint does not support WSRP out of the box. However MS released a WSRP Toolkit. You can find more information here

Colin
Wrong, it's included in SharePoint Enterprise edition.
Nico
To the best of my knowledge it is available as a separate download, could be they included it in the enterprise edition. Anyway the toolkit can be downloaded from http://code.msdn.microsoft.com/WSRPToolkit
Colin
The toolkit is only to produce WSRP compatible webpart. The out of the box WSRP Consumer WebPart can be use the include WSRP Portlet into your portal.
Nico
+4  A: 

As previously mentioned, the SharePoint team released the WSRP toolkit a few months back. More details available here.

If that doesn't work out for you (I've never tried it so have no experience to share) depending on the UI requirements you can always use the simple route of the Page Viewer Web Part.

This essentially creates a mini-browser (I believe it uses an iFrame) within a SharePoint page. If you're portlet is simply a data entry/display method it may work out for you and it's definitely less work.

Mark
WSRP Toolkit allow to produce WSRP. Consume WSRP can be done out of the box.(BTW WSRP does not use IFrame, SharePoint kind of act as a proxy)
Nico
+2  A: 

WSRP consumer support is out of the box in SharePoint Enterprise. You can find a WSRP WebPart on your site if you've activated the Enterprise feature.

The WSRP toolkit allow SharePoint to produce WSRP compatible webpart.

Nico