1 / 21

ColdFusion & SharePoint

Sponsored by:. (No, not really). “Two Great Tastes that Taste Great Together!”. ColdFusion & SharePoint. PRESENTED BY: . David Wilson Brown. Lead Web Developer, Europa Sports Products. Major Abbreviations Used. CF = ColdFusion CF9 = ColdFusion 9 (released October 5th 2009)

giolla
Télécharger la présentation

ColdFusion & SharePoint

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Sponsored by: (No, not really) “Two Great Tastes that Taste Great Together!” ColdFusion & SharePoint PRESENTED BY: David Wilson Brown Lead Web Developer, Europa Sports Products

  2. Major Abbreviations Used CF = ColdFusion CF9 = ColdFusion 9 (released October 5th 2009) SP = SharePoint SP 2010 = SharePoint 2010 (to be released late 2009) SSO = Single Sign-On

  3. Agenda Intro: Why CF & SP together? Pre-CF9 Page Viewer Web Parts CF9 <cfsharepoint> Single Sign-On access SP 2010? • Basic • Intermediate • Advanced • Pure Speculation

  4. Why CF & SP together? ColdFusion is a rapid application development platform whose language, CFML is comparable to ASP, JSP & PHP, but more closely resembles HTML in syntax. ColdFusion is most often used for data-driven web sites, but can also be used to generate remote services such as SOAP web services or Flash remoting. SharePoint is becoming the ubiquitous corporate team collaboration tool, often times used as a company’s Intranet.

  5. Why CF & SP together? Many companies use ColdFusion for their external websites and some for their Intranet. The growth of SharePoint is such that many companies with current ColdFusion development are bringing SharePoint in-house as well.

  6. Why CF & SP together? So a big request has been how to save the long developed ColdFusion apps with the move to a SharePoint based Intranet (for example) We were one of those requesting…

  7. Ben Forta’s Blog(Adobe’s Director of Platform Evangelism) 3/18/08 - What Would You Want From ColdFusion Microsoft SharePoint Integration? “We are a ColdFusion house. Our external website will always be ColdFusion (I hope!), but I have gotten my team to use WSS for several years and we are now looking to upgrade to MOSS 2007 within the month. We will then begin the process of changing our corporate intranet (which is now CF based) to a SharePoint portal. Being in that situation, I would love to see:1. A ColdFusion web part for SharePoint where ColdFusion applications can act normally within SharePoint structure. I would love to save some of our current CF applications and utilize them within SharePoint. 2. A CF tag that would help add a list item to a list in SharePoint. I think the big stumbling block to adding a list item is some proprietary code (GUID) that MS puts into a list item record. Determining the appropriate value for the code would be the main thing necessary, I think.Thanks Ben. I am excited to see an interest in what I thought was a fairly unique situation that we were in.” – Me 3/24/08

  8. Assumptions going forward • You have some knowledge of CF • You have some knowledge of SharePoint • You care to hear more about this topic • You generally like me, at least from what you’ve seen of me thus far

  9. Pre-ColdFusion 9 Stone Chisel

  10. Page Viewer Web Parts • Add Page Viewer web part to any page • Point the web part to a ColdFusion template via URL • Resize the web part to fit the content • Voilà

  11. Adding Web Part w/ ColdFusion From the SharePoint Server page, click Modify Shared Page. Select Add Web Part. Click Browse from the pop-up menu. The Web Parts list appears. Select Page Viewer Web Part. Click Add. The Page Viewer Web Part loads. Click the Open the Tools Pane link. Specify the URL of the ColdFusion application in the URL text field. The ColdFusion application loads within the Web Part. EXAMPLE

  12. ColdFusion 9 Hal 9000

  13. <cfsharepoint> • Could it be any more obvious? • Allows your ColdFusion server to communicate to and from your SharePoint instance. • The following is an Adobe example.

  14. <cfsharepoint • action="addlist" domain=“<your domain>” • userName=“<your user name>” • password=“<your password>”params="#{ listname ="getpics", description="This a picture library list", templateId= "109 " }#"/> • <! --- Creates a folder within the picture library list ---> <cfsharepoint action ="create new folder" domain=“<your domain>” • userName=“<your user name>” • password=“<your password>” name="collection1" params="#{strListName="getpics", strParentFolder=""}#"/>

  15. <!--- Uploads pictures to the folder that you created ---> <cfscript> myimage = filereadbinary(expandpath("Bird.jpg")); //convert the image into byte array to pass as input for "upload" action. </cfscript> • <cfsharepoint action="upload" • domain=“<your domain>” • userName=“<your user name>” • password=“<your password>” params="#{strListName="testpics", strfolder="Collection1", bytes="#myimage#", filename="bird.jpg", fOverwriteifexist=true}#"/>

  16. Single Sign-On • Allows your ColdFusion app to utilize the AD login from SharePoint. • CF9 ships with SSO Web Part (CF9SSOWebPart.wsp) • Deploy to your MOSS • Benefit is to capitalize on SharePoint Permission Hierarchies to limit what a user can do.

  17. Taking it to the Next Level • You have the SP Page Viewer web part • So why not build a Flex App… • To run with a CF9 backend… • Which would be able to affect SharePoint list items! • EXAMPLE (sort of)

  18. Features in SP 2010 • Server software 64-bit ONLY • Menu interface change • If SharePoint 2007 = Office XP, then SharePoint 2010 = Office 2007 • Silverlight web parts • Holographic Laser Shows (just kidding) • No word yet on how SP 2010 will effect CF9 integration

  19. ME davidwilsonbrown@gmail.com davidwilsonbrown.wordpress.com @davidwbrown /davidwilsonbrown/ David Wilson Brown

  20. Links • Ben Forta’s SharePoint in CF9 announcement: http://forta.com/blog/index.cfm/2009/7/10/ColdFusion-SharePoint-Integration • CF9 SharePoint integration: http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSE4D1ED62-0267-445f-8A3B-4642F3F26383.html • CF9 Beta Hosting: http://hostek.com/hosting/coldfusion/coldfusion9-hosting.asp • Good Blog with CFSharepoint contenthttp://www.singularityconcepts.com

More Related