how to add mashlet to a sharepoint site

joshua.zauderer
User offline. Last seen 2 years 41 weeks ago. Offline
Joined: 11/12/2008
Points: 10

Just created a mashup and would like to place as a web part on a sharepoint site, but unable to do so. Has anyone done this? If yes, how???

 

Thanks,

josh

0
Your rating: None
polly
User offline. Last seen 2 years 7 weeks ago. Offline
Joined: 02/12/2009
Points: 150

Was this answered? I'd be interested in how mashlets can be used in MOSS.

danmalks
danmalks's picture
User offline. Last seen 4 weeks 1 day ago. Offline
Joined: 09/22/2008
Points: 353

Hi Josh,

We're preparing a series of posts for MDC in the next few weeks that will provide info on some customer-driven work we've done in the area of mashing Sharepoint. We'll be answering your question in detail, including a discussion of how you can configure the XML Web Part to invoke and display any Presto Published Mashup within Sharepoint. In order to accomplish this, the XML Web Part must be configured with an XSL Stylesheet to transform the returned Mashup data and would be configured to use the rest URL of your Mashup.

Another option is to use the RSS Viewer Web Part, which we'll discuss in the upcoming series of posts, as well, which should be online on MDC in the next week or two.

Does this help get you started in the meantime?

VP App Platform Eng, JackBe dan@jackbe.com

joshua.zauderer
User offline. Last seen 2 years 41 weeks ago. Offline
Joined: 11/12/2008
Points: 10

Dan,

Thanks for the followup. I will wait till I see your posts on how this is done. I think that being able to add presto mashlets to a SharePoint web part will be very big, especially in the corporate world where SharePoint has become very popular.

 

josh

joshua.zauderer
User offline. Last seen 2 years 41 weeks ago. Offline
Joined: 11/12/2008
Points: 10

polly,

dan from Jackbe engineering said he will have a post on how to do this soon.

 

josh

chriswarner
chriswarner's picture
User offline. Last seen 5 days 22 hours ago. Offline
Joined: 08/22/2008
Points: 1377

Josh,

The 'Developer's Guide to Mashups and Microsoft Sharepoint' series is at http://www.jackbe.com/enterprise-mashup/blog/mashing-sharepoint-introduction.  I think you'll find the 1st post very helpful.

Chris 

chriswarner
chriswarner's picture
User offline. Last seen 5 days 22 hours ago. Offline
Joined: 08/22/2008
Points: 1377

Polly,

The 'Developer's Guide to Mashups and Microsoft Sharepoint' series is at http://www.jackbe.com/enterprise-mashup/blog/mashing-sharepoint-introduction.  I think you'll find the 1st post very helpful.  The rest of the series should be great too!

Chris 

joshua.zauderer
User offline. Last seen 2 years 41 weeks ago. Offline
Joined: 11/12/2008
Points: 10

Chris,

Thanks for your update, as i look at the documentation - "Sharepoint Consuming Mashlets" I notice that the mashlet url contains a "uwa-view" component, which I do not have and was unable to create, all i see is either the standalone url as per below or the html embed

http://153.7.162.36:8080/mashlets/standalone.jsp?mashlet=jztest3mashup.Mashlet 

<script src="http://153.7.162.36:8080/mashlets?mashlet=jztest3mashup.Mashlet"></script>
 
Any suggestions?
 
Thanks,
josh

jeremy.pitten
jeremy.pitten's picture
User offline. Last seen 2 weeks 6 days ago. Offline
Joined: 09/22/2008
Points: 275

hi Josh,

You dont need to create uwa-view.jsp, it is bundled with Presto, assuming you have Pretso deployed on Tomcat, you'll find it at

    <tomcat installed directory>/webapps/mashlets/uwa-view.jsp.

You should be able to test it by just entering something like this in your browser:

    http://<your ip address>/mashlets/uwa-view.jsp?mid=<Your Mashlet Name>&height=300

 This will display the mashlet in a similar manner to the way mashlets/standalone.jsp does but without the header and framing.

uwa-view.jsp expects to be used inside an iframe.

Hope this helps.

Jeremy

 

 

joshua.zauderer
User offline. Last seen 2 years 41 weeks ago. Offline
Joined: 11/12/2008
Points: 10

Jeremy,

Thanks! this is working!

 

josh

polly
User offline. Last seen 2 years 7 weeks ago. Offline
Joined: 02/12/2009
Points: 150

Cool, thanks.