Here's our scenario:
We've created a sharepoint 2007 calendar on our intranet site
We want to run a daily job to export a subset of the events to an rss file
Another job will move the rss file to our public web site
We have some funny restrictions where we can't simply publish the rss feed to the public. We have to go this export route.
I'm not clear on how to accomplish step 2. Ideally, we wouldn't have to write a lot of custom code to accomplish this.
Thanks.
And the answer is - Use SQL Server Integration Services with the SharePoint List Source and Destination widget from CodePlex
Hope this helps someone else out there.
Related
I'm working on a web site using Forge Design Automation for AutoCAD, and I'd like to have a .zip file returned. Does the .zip file have to go back to a URL (folder) located in site, or can it be downloaded directly to my view (MVC) through the controller? And, if it can come back to the view, how do provide arguments to my workitem?
Thank you.
The Design Automation will want to PUT/POST the resulting zip file somewhere. So you must supply a resource (URL) that can be operated on by one of those verbs.
Your website then can offer up the same resource to download to your clients. Clients cannot download directly from Design Automation as there's no HTTP resource that they could GET.
We can take advantage of the Forge OSS signed resource with read/write permission, so that Design Automation API will put the file to the Forge OSS bucket, and we can use the sample link to download the file. Please check my sample here. Although it's a Revit sample, the signed resource part can be applied to Design Automation API for AutoCAD, too.
https://github.com/yiskang/forge-revit-fbx-export-bim360/blob/master/routes/da4revit.js#L92
https://github.com/yiskang/forge-revit-fbx-export-bim360/blob/master/routes/da4revit.js#L216
https://github.com/yiskang/forge-revit-fbx-export-bim360/blob/master/public/js/ForgeDesignAutomation.js#L58
https://github.com/yiskang/forge-revit-fbx-export-bim360/blob/master/public/js/ForgeDesignAutomation.js#L220
I am new to Sharepoint 2007 and I have done some google to find guid of a list which I want to use for outlook synchronization of my sharepoint project using stssync.
Can somebody please help me finding out guid of a list in sharepoint 2007.
Thanks in advance.
The simplest way is to go the list settings.
The id of the list will be in the url.
For example:
https://someserver/sites/somesite/_layouts/15/listedit.aspx?List=%7B263FE49C%2D7FB3%2D4247%2D93CD%2D4AAB9770EF97%7D
Extract the list argument:
%7B263FE49C%2D7FB3%2D4247%2D93CD%2D4AAB9770EF97%7D
And then url decode it:
{263FE49C-7FB3-4247-93CD-4AAB9770EF97}
That's easy, and works with all version of SharePoint (actually, no SP2007 to test, but I'm confident)
Tired of doing this in notepad, just paste URL into here:
List ID Calculator, View ID Calculator
http://www.surfpointtech.com/2013/10/14/sharepoint-list-id-and-view-id-calculator/
You can use Sharepoint Manager 2007 to find GUID via GUI
Download here http://spm.codeplex.com/releases/view/22762
I am investigating if the functionality of some CGI scripts written in Perl that we run on a web server can be migrated to our Sharepoint 2007 server (MOSS).
The CGI scripts are not complicated. Basically they display and process contents of files that resides in the network file system.
For instance one script just displays the contents of small text files that are being added to a specific folder.
These files are part of a production process and cannot be moved into a Sharepoint document archive.
The CGI scripts are being used to give an overview on what is "new in the queue" for this production process.
When the production process has finished, it removes the files from the folder. But new files may arrive to the folder at any time.
I have done some investigations and found that using a "Data View" web part would give possibilities of displaying the data in a good way.
The files need to be transformed from text to XML format, before some xslt could make it look good in a Data View WP. I guess that could be done by some kind of server-side script?
But how and where do I add such a script to Sharepoint?
Would it be a good idea implementing this as an RSS feed instead? But an RSS feed would also require a server-side script, wouldn't it?
I am new to Sharepoint development and would appreciate any useful advice.
Why not just write a Custom WebPart to read the content of those text files and display them. This way you wont be making changes to those text files.
Note : The link to custom Web Part is my blog. There are tonnes of other articles in the net :)
Should this be as easy as Trace.WriteInformation() in a C# file that is in a class library in the GAC?
Related to your question:
SharePoint's Unified Logging Service (ULS) log files are not that easy to read. There is a browser-based viewer available over at the CodePlex Features project. This adds a new link to the Central Administration Operations page that lets you pick & filter the log files.
use:
Microsoft.Office.Server.Diagnostics.PortalLog.LogString("*** bmw 1 ***");
As of now the workflow is something like, I import an SVN or a CVS repository and then compile a document locally on my machine to get either a ps or a pdf file. But I was wondering if there is a Web front-end to do all the stuff, like for instance, an editor using which you can edit the file online and then download just the pdf file by compiling it?
Any suggestions?
http://www.scribtex.com/pages/index
http://code.google.com/p/latex-lab/
latex-lab will build on top of the google apps editor base...
scribtex is hosted only it looks like.
Another to add to the list is TeXonWeb.
If you mean online LaTeX compilers, then there are two I know of - at baywifi.com (to PDF) and at ScienceSoft (to several formats). Haven't seen any full editors, though.
There is a CMS based on Latex out there at www.osreviews.net.
The best site I found to produce PDF from LaTeX online is PC Shows.
Verbosus offers an Online LaTeX Editor that supports PDF preview, HTTPS, syntax highlighting, code completion, templates, etc. (Additionally it offers an editor for Octave/Matlab)
This is less of a web-based interface than a simple drag-and-drop cgi script that converts latex syntax to a graphic... www.forkosh.com/mimetex.html
latex-online is a simple open source web service that compiles latex sources/public git repos and returns pdf's. It has both a simplistic web front-end and a command-line tool for interacting with the service - you might find it interesting.
One rather new possibility is https://texlive.net/
You can either interactively edit your documents or you can pass your document via the url to it. E.g. a simple hello world document can be constructed as
https://texlive.net/run?%5Cdocumentclass%7Barticle%7D%0A%5Cusepackage%7Bamsmath%7D%0A%5Cbegin%7Bdocument%7D%0AHello%20world!%0A%5Cend%7Bdocument%7D