Posts

Showing posts from 2012

Nintex + InfoPath 2010 Conditional Formatting Issue

The InfoPath 2010 web enabled task forms are served by nintex under /_layouts/NintexWorkflow/WrkTaskIP.aspx. The nomal infopath form is served via /_layouts/WrkTaskIP.aspx the /layouts folder is a directory shared by all web applications locaed under the 14 Hive at c:\program files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS\. This page inherits from Nintex.Workflow.ApplicationPages.WrkTaskIPPage which is not part of SharePoint. The re-interpretation by the Nintex of InfoPath forms has consequently caused formatting rules to become an unsupported feature. Should I create normal SharePoint workflows with standard InfoPath forms the same form and rules will be functional (tested). If you require Nintex Workflow and conditional formatting support you may wish to consider upgrading to the November 2012 release of Nintex forms which "supports" conditional formatting in the future, albiet this support has arrived somewhat late for those of us implement...

Nintex Update Multiple Items Null Reference Exception

A brief post to capture the fact that you may get ambigous exception using the update multiple item activity. Setting fields to current list item fields which have no value. Or setting no value on the field will effectively throw a null reference exception. I wanted to create a single activity to set all the fields to the parent item fields but this failed as the step continues to throw null reference exceptions. If the user inputs no value into the field this can also trigger the exception, even if the field is an optional field. The trick is to only set fields you have recieved data for.

Windbg SOS CheatSheets

A Couple of Cheatsheets (reference: http://geekswithblogs.net/.NETonMyMind/archive/2006/03/14/72262.aspx  and http://blogs.msdn.com/b/alejacma/archive/2009/06/30/sos-cheat-sheet-net-2-0-3-0-3-5.aspx ): Cheatsheet #1 Starting, Attaching, Executing and Exiting Start -> All Programs -> Debugging Tools for Windows -> WinDbg F6 attach to process Ctrl-Break interrupt debugee .detach detach from a process g continue debugee execution q exit WinDbg Getting Help ? help on commands that affect the debugee .help help on commands that affect the debugger .hh command view the on line help file !help help on the extension dll at the top of the chain (e. g., SOS) Issuing Commands up arrow, down arrow, enter scroll through command history Right mouse button paste into command window Examining the Unmanaged Environment lmf list loaded modules with full path lmt list loaded modules w...

SPSolutionExport Exception SecurityTokenService.Issue()

In trying to save a site using the Site Settings -> Save as Template, I received the following error: 11/15/2012 15:57:26.84  w3wp.exe (0x1A64)                        0x1944 SharePoint Foundation          General                        c42u Monitorable SPSolutionExporter: System.InvalidOperationException: The Writer is closed or in error state.     at System.Xml.XmlWellFormedWriter.AdvanceState(Token token)     at System.Xml.XmlWellFormedWriter.WriteEndElement()     at Microsoft.SharePoint.ScopedXmlWriterElement.Closer(XmlWriter writer, ScopedObjectUsage`1 wrapper)     at Microsoft.SharePoint.ScopedObjectUsage`1....