<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>Microsoft SQL Server Community Samples: Integration Services</title><link>http://sqlsrvintegrationsrv.codeplex.com/project/feeds/rss</link><description>Samples for use with SQL Server Integration Services samples created by the Integration Services product team.</description><item><title>New Post: Binary code in the script is not found</title><link>http://sqlsrvintegrationsrv.codeplex.com/discussions/444451</link><description>&lt;div style="line-height: normal;"&gt;Hi all,&lt;br /&gt;
&lt;br /&gt;
I am trying to use the new EzScript component. My C# code looks like this:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;        EzScript BuildNaturalKey = new EzScript(DataFlowTask1);
        BuildNaturalKey.ScriptLanguage = &amp;quot;CSharp&amp;quot;;
        BuildNaturalKey.ReadOnlyVars = &amp;quot;User::NaturalKey&amp;quot;;
        BuildNaturalKey.AttachTo(LoggingInfo);
        Console.Write(&amp;quot;Script Input - &amp;quot; + BuildNaturalKey.InputCount.ToString());
        BuildNaturalKey.LinkAllInputsToOutputs();
        BuildNaturalKey.InitNewScript();
        BuildNaturalKey.PutSourceFile(&amp;quot;main.cs&amp;quot;, codeString);
       BuildNaturalKey.InsertOutputColumn(&amp;quot;NaturalKey&amp;quot;);
        BuildNaturalKey.SetOutputColumnDataTypeProperties(&amp;quot;NaturalKey&amp;quot;, DataType.DT_WSTR , 700, 0, 0, 0);
        BuildNaturalKey.Build();
&lt;/code&gt;&lt;/pre&gt;

Everything works fine, code runs, package is generated, but when I open it in BIDS I get the error &amp;quot;Binary code for the scriptis not found.&amp;quot; When I open the script editor, the code I placed in main.cs is there, and when I simply close the window and hit okay, the script compiles.&lt;br /&gt;
&lt;br /&gt;
The key difference, of course, is now the BinaryCode element of the script task's XML in the package has the binary code in it, when the original generated package is blank.&lt;br /&gt;
&lt;br /&gt;
I thought the Build() command generated the BinaryCode? I see the thing in there with the BinaryCodeIndexer, but I have no how idea how to use this, and well, you guys aren't the best about documentation : ) &lt;br /&gt;
&lt;/div&gt;</description><author>kthejoker</author><pubDate>Tue, 21 May 2013 16:03:01 GMT</pubDate><guid isPermaLink="false">New Post: Binary code in the script is not found 20130521040301P</guid></item><item><title>New Post: Error: Invalid Hyperlink value in the data being updated.</title><link>http://sqlsrvintegrationsrv.codeplex.com/discussions/444277</link><description>&lt;div style="line-height: normal;"&gt;I am using SSDT and running a package locally connecting to my DEV DB server.&lt;br /&gt;
 I am trying to update SharePoint List Destination and insert into the same list from OLEBD Source which is running a SQL command selecting all the columns.&lt;br /&gt;
 For both insert and update I am getting error &amp;quot;Error: Error on row ID=&amp;quot;1&amp;quot;: 0x81020020 - Invalid Hyperlink value in the data being updated.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
 Detailed error for Insert:&lt;br /&gt;
 Error: Error on row ID=&amp;quot;1&amp;quot;: 0x81020020 - Invalid Hyperlink value in the data being updated. &lt;br /&gt;
 Error: Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.PipelineProcessException: Errors detected in this component - see SSIS Errors&lt;br /&gt;
 at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListDestination.ProcessInput(Int32 inputID, PipelineBuffer buffer)&lt;br /&gt;
 at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostProcessInput(IDTSManagedComponentWrapper100 wrapper, Int32 inputID, IDTSBuffer100 pDTSBuffer, IntPtr bufferWirePacket)&lt;br /&gt;
 [SSIS.Pipeline] Error: SSIS Error Code DTS_E_PROCESSINPUTFAILED. The ProcessInput method on component XXXXX failed with error code 0x80131500 while processing input &amp;quot;Component Input&amp;quot; (276). The identified component returned an error from the ProcessInput method. The error is specific to the component, but the error is fatal and will cause the Data Flow task to stop running. There may be error messages posted before this with more information about the failure.&lt;br /&gt;
&lt;br /&gt;
 Detailed error for Update:&lt;br /&gt;
 Error: Error on row ID=&amp;quot;1&amp;quot;: 0x81020020 - Invalid Hyperlink value in the data being updated. (SP ID=7868)&lt;br /&gt;
 Error: Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.PipelineProcessException: Errors detected in this component - see SSIS Errors&lt;br /&gt;
 at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListDestination.ProcessInput(Int32 inputID, PipelineBuffer buffer)&lt;br /&gt;
 at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostProcessInput(IDTSManagedComponentWrapper100 wrapper, Int32 inputID, IDTSBuffer100 pDTSBuffer, IntPtr bufferWirePacket)&lt;br /&gt;
 [SSIS.Pipeline] Error: SSIS Error Code DTS_E_PROCESSINPUTFAILED. The ProcessInput method on component XXXX failed with error code 0x80131500 while processing input &amp;quot;Component Input&amp;quot; (676). The identified component returned an error from the ProcessInput method. The error is specific to the component, but the error is fatal and will cause the Data Flow task to stop running. There may be error messages posted before this with more information about the failure.&lt;br /&gt;
&lt;br /&gt;
 I have tried to process a single row by changing the SQL command in the Source but it is throwing the same error.&lt;br /&gt;
 I have analyzed the data and made sure that 1 row does not contain any invalid hyperlink in it.&lt;br /&gt;
&lt;br /&gt;
 Please help.&lt;br /&gt;
&lt;br /&gt;
 Thanks&lt;br /&gt;
 Soumyadeb&lt;br /&gt;
&lt;/div&gt;</description><author>SoumyadebG</author><pubDate>Mon, 20 May 2013 13:03:35 GMT</pubDate><guid isPermaLink="false">New Post: Error: Invalid Hyperlink value in the data being updated. 20130520010335P</guid></item><item><title>Created Unassigned: Error:  Invalid Hyperlink value in the data being updated. [19735]</title><link>http://sqlsrvintegrationsrv.codeplex.com/workitem/19735</link><description>I am using SSDT and running a package locally connecting to my DEV DB server.&lt;br /&gt;I am trying to update SharePoint List Destination and insert into the same list from OLEBD Source which is running a SQL command selecting all the columns.&lt;br /&gt;For both insert and update I am getting error &amp;#34;Error&amp;#58; Error on row ID&amp;#61;&amp;#34;1&amp;#34;&amp;#58; 0x81020020 - Invalid Hyperlink value in the data being updated.&amp;#34;&lt;br /&gt;&lt;br /&gt;Detailed error for Insert&amp;#58;&lt;br /&gt;Error&amp;#58; Error on row ID&amp;#61;&amp;#34;1&amp;#34;&amp;#58; 0x81020020 - Invalid Hyperlink value in the data being updated. &lt;br /&gt;Error&amp;#58; Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.PipelineProcessException&amp;#58; Errors detected in this component - see SSIS Errors&lt;br /&gt;   at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListDestination.ProcessInput&amp;#40;Int32 inputID, PipelineBuffer buffer&amp;#41;&lt;br /&gt;   at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostProcessInput&amp;#40;IDTSManagedComponentWrapper100 wrapper, Int32 inputID, IDTSBuffer100 pDTSBuffer, IntPtr bufferWirePacket&amp;#41;&lt;br /&gt;&amp;#91;SSIS.Pipeline&amp;#93; Error&amp;#58; SSIS Error Code DTS_E_PROCESSINPUTFAILED.  The ProcessInput method on component XXXXX failed with error code 0x80131500 while processing input &amp;#34;Component Input&amp;#34; &amp;#40;276&amp;#41;. The identified component returned an error from the ProcessInput method. The error is specific to the component, but the error is fatal and will cause the Data Flow task to stop running.  There may be error messages posted before this with more information about the failure.&lt;br /&gt;&lt;br /&gt;Detailed error for Update&amp;#58;&lt;br /&gt;Error&amp;#58; Error on row ID&amp;#61;&amp;#34;1&amp;#34;&amp;#58; 0x81020020 - Invalid Hyperlink value in the data being updated. &amp;#40;SP ID&amp;#61;7868&amp;#41;&lt;br /&gt;Error&amp;#58; Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.PipelineProcessException&amp;#58; Errors detected in this component - see SSIS Errors&lt;br /&gt;   at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListDestination.ProcessInput&amp;#40;Int32 inputID, PipelineBuffer buffer&amp;#41;&lt;br /&gt;   at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostProcessInput&amp;#40;IDTSManagedComponentWrapper100 wrapper, Int32 inputID, IDTSBuffer100 pDTSBuffer, IntPtr bufferWirePacket&amp;#41;&lt;br /&gt;&amp;#91;SSIS.Pipeline&amp;#93; Error&amp;#58; SSIS Error Code DTS_E_PROCESSINPUTFAILED.  The ProcessInput method on component XXXX failed with error code 0x80131500 while processing input &amp;#34;Component Input&amp;#34; &amp;#40;676&amp;#41;. The identified component returned an error from the ProcessInput method. The error is specific to the component, but the error is fatal and will cause the Data Flow task to stop running.  There may be error messages posted before this with more information about the failure.&lt;br /&gt;&lt;br /&gt;I have tried to process a single row by changing the SQL command in the Source but it is throwing the same error.&lt;br /&gt;I have analyzed the data and made sure that 1 row does not contain any invalid hyperlink in it.&lt;br /&gt;&lt;br /&gt;Please help.&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;Soumyadeb&lt;br /&gt;</description><author>SoumyadebG</author><pubDate>Mon, 20 May 2013 08:57:31 GMT</pubDate><guid isPermaLink="false">Created Unassigned: Error:  Invalid Hyperlink value in the data being updated. [19735] 20130520085731A</guid></item><item><title>Closed Issue: Potential metadata corruption [19239]</title><link>http://sqlsrvintegrationsrv.codeplex.com/workitem/19239</link><description>__SharePointListAdaptersSetup - 2013-01 Beta__&lt;br /&gt;&lt;br /&gt;gives the following error on SSDT2012 against SP2013&amp;#58;&lt;br /&gt;&lt;br /&gt;Title&amp;#58; Editing Component&lt;br /&gt;&lt;br /&gt;The component has detected potential metadata corruption during validation.&lt;br /&gt;Error at Data Flow Task 1 &amp;#91;SharePoint List Source &amp;#91;1&amp;#93;&amp;#93;&amp;#58; System.NullReferenceException&amp;#58; Object reference not set to an instance of an object.&lt;br /&gt;   at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ListsAdapter.ResetConnection&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ListsAdapter.InitializeObject&amp;#40;Uri sharepointUri, NetworkCredential credential&amp;#41;&lt;br /&gt;   at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListServiceUtility.GetFields&amp;#40;Uri sharepointUri, NetworkCredential credentials, String listName, String viewName&amp;#41;&lt;br /&gt;   at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.GetAccessibleSharePointColumns&amp;#40;String sharepointUrl, String listName, String viewName&amp;#41;&lt;br /&gt;   at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.ValidateSharePointColumns&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.Validate&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostValidate&amp;#40;IDTSManagedComponentWrapper100 wrapper&amp;#41;&lt;br /&gt;</description><author>ErikBo</author><pubDate>Thu, 16 May 2013 11:44:57 GMT</pubDate><guid isPermaLink="false">Closed Issue: Potential metadata corruption [19239] 20130516114457A</guid></item><item><title>Reviewed: SharePoint List Source and Destination (May 15, 2013)</title><link>https://sqlsrvintegrationsrv.codeplex.com/releases/view/17652#ReviewBy-RonSteinhauser</link><description>Rated 1 Stars &amp;#40;out of 5&amp;#41; - Why has this not been updated to work with SQL Server Data Tools and SQL Server 2012&amp;#63; All of the fixes I have been able to find involve tabs that don&amp;#39;t exist in the Tool any more. This is totally inadequate. I told my people that there was a Sharepoint solution and now I have to walk that back because it doesn&amp;#39;t even install correctly.</description><author>RonSteinhauser</author><pubDate>Wed, 15 May 2013 16:30:39 GMT</pubDate><guid isPermaLink="false">Reviewed: SharePoint List Source and Destination (May 15, 2013) 20130515043039P</guid></item><item><title>New Post: Using the SSISMSBUILD extention</title><link>http://sqlsrvintegrationsrv.codeplex.com/discussions/439952</link><description>&lt;div style="line-height: normal;"&gt;I've found my own solution and decided to share.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://social.msdn.microsoft.com/Forums/en-US/tfsbuild/thread/37398f4f-530e-4561-8d1b-79cd303fdbd2/" rel="nofollow"&gt;http://social.msdn.microsoft.com/Forums/en-US/tfsbuild/thread/37398f4f-530e-4561-8d1b-79cd303fdbd2/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
DS19 provides a solution that works well for me&lt;br /&gt;
&lt;br /&gt;
~~~~&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;&lt;strong&gt;~~~&lt;br /&gt;
So I renounced to build it with devenv.exe command and now I'm investigating the MSBuild path: the tasks are from &lt;a href="http://sqlsrvintegrationsrv.codeplex.com/" rel="nofollow"&gt;http://sqlsrvintegrationsrv.codeplex.com/&lt;/a&gt; (main/SSISMSBuild), the build script is from &lt;a href="http://pastebin.com/kbj8tRUz" rel="nofollow"&gt;http://pastebin.com/kbj8tRUz&lt;/a&gt; and the build command looks like below:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MSBuild SSISMSBuildDemo.msbuild /t:SSISBuild,SSISDeploy /p:SSISProj=&amp;quot;fooProj&amp;quot;,Configuration=&amp;quot;Development&amp;quot;,ProtectionLevel=&amp;quot;EncryptSensitiveWithPassword&amp;quot;, ProjectPassword=&amp;quot;fooPass&amp;quot;,SSISServer=&amp;quot;fooServer&amp;quot;,ProjectName=&amp;quot;fooProjFolder&amp;quot;&lt;br /&gt;
~~~~&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;~~~&lt;br /&gt;
&lt;/div&gt;</description><author>o0ollo0o</author><pubDate>Fri, 10 May 2013 17:28:49 GMT</pubDate><guid isPermaLink="false">New Post: Using the SSISMSBUILD extention 20130510052849P</guid></item><item><title>New Post: SharePoint List Adapter with SQL Proxy</title><link>http://sqlsrvintegrationsrv.codeplex.com/discussions/442998</link><description>&lt;div style="line-height: normal;"&gt;The error I'm getting is:&lt;br /&gt;
&lt;br /&gt;
[SharePoint List Source [133]] Error: System.ServiceModel.Security.MessageSecurityException: The HTTP request is unauthorized with client authentication scheme 'Ntlm'.  The authentication header received from the server was 'NTLM'. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[SSIS.Pipeline] Error:  SharePoint List Source failed validation and returned error cod 0x80131501&lt;br /&gt;
&lt;/div&gt;</description><author>Kep</author><pubDate>Wed, 08 May 2013 19:16:08 GMT</pubDate><guid isPermaLink="false">New Post: SharePoint List Adapter with SQL Proxy 20130508071608P</guid></item><item><title>New Post: SharePoint List Adapter with SQL Proxy</title><link>http://sqlsrvintegrationsrv.codeplex.com/discussions/442998</link><description>&lt;div style="line-height: normal;"&gt;I believe my situation is unique and I'm not quite sure how to approach at this time.&lt;br /&gt;
&lt;br /&gt;
My SharePoint sites are housed by a separate server than the SQL server.  They are also on two different domains and they aren't linked in any way at all.  When I log into my computer, I log into it using the same credentials that are used for the SharePoint sites, but when I log into SQL I have a SQL user ID and password that I use and I access the SQL server from an IP Address internally.&lt;br /&gt;
&lt;br /&gt;
If I run my package on my local computer it runs beautifully, however, I want to set up the package to run as a Job Server SSIS Package.  The Job Server requires my SQL Log in information and is not linked in any way to the SharePoint list.&lt;br /&gt;
&lt;br /&gt;
I've tried setting up a proxy SSIS Package Execution, but I'm not able to use Credentials for the SharePoint site as Credentials.  It's stating an error of &amp;quot;Directory\User.Name&amp;quot; is not a valid Windows user, but it wouldn't be a Windows user.&lt;br /&gt;
&lt;br /&gt;
Any direction would be appreciated...this noob is getting frustrated.&lt;br /&gt;
&lt;/div&gt;</description><author>Kep</author><pubDate>Wed, 08 May 2013 18:52:25 GMT</pubDate><guid isPermaLink="false">New Post: SharePoint List Adapter with SQL Proxy 20130508065225P</guid></item><item><title>New Post: SharePoint List Adapter on SP 2013 and SQL 2012 Execution Failure</title><link>http://sqlsrvintegrationsrv.codeplex.com/discussions/442875</link><description>&lt;div style="line-height: normal;"&gt;When executing the SSIS package from SQL 2012 Management Studio I get the following error: &amp;quot;...sharepoint credential is not recognized as a valid connection manager type...&amp;quot;&lt;br /&gt;
&lt;br /&gt;
We have packages running successfully on SQL 2008R2 using Custom Credentials (domain) and setting ProtectionLevel to EncryptAllWithPassword&lt;br /&gt;
&lt;br /&gt;
SQL 2012 Setup:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;SharePointListAdaptersSetup-Beta-2012-01-28.msi installed on the SQL 2012 server&lt;/li&gt;
&lt;li&gt;VS 2012 with SQL Data Tools also installed on SQL server (for issue resolution)&lt;/li&gt;
&lt;li&gt;Package built with VS 2012 with SharePoint List Source adapter (simple SP 2013 list)&lt;/li&gt;
&lt;li&gt;Package executes inside VS 2012 (on the SQL Server) w/o issues&lt;/li&gt;
&lt;li&gt;Deploy using VS to SSIS Catalog&lt;/li&gt;
&lt;li&gt;Errors during manual execution of the Package.dtsx&lt;/li&gt;
&lt;li&gt;Verified SharePointListAdapters.dll in C:\Program Files (x86)\Microsoft SQL Server\110\DTS\PipelineComponents&lt;/li&gt;
&lt;li&gt;
Verified SharePointUtility in GAC&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
On SharePoint 2013:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Everyone has Full Access rights&lt;/li&gt;
&lt;li&gt;
The service account we use for Agent job proxy has Full Access rights&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
Also tried:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Using Credentials of Existing Process and a scheduled Job with Proxy&lt;/li&gt;
&lt;li&gt;
Using Custom Credentials (domain) and setting ProtectionLevel to EncryptAllWithPassword&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
Any help will be greatly appreciated!&lt;br /&gt;
&lt;/div&gt;</description><author>66Stang</author><pubDate>Tue, 07 May 2013 21:42:14 GMT</pubDate><guid isPermaLink="false">New Post: SharePoint List Adapter on SP 2013 and SQL 2012 Execution Failure 20130507094214P</guid></item><item><title>New Post: The HTTP request is unauthorized with client authentication scheme 'Ntlm'</title><link>http://sqlsrvintegrationsrv.codeplex.com/discussions/435845</link><description>&lt;div style="line-height: normal;"&gt;I'm getting the same kind of errors on a system where I don't have admin access for troubleshooting  or even to view logs.  I need to tell my SharePoint admins what needs to be changed but don't have a way to verify which permisions or which systems, IE or SP, need the fix.&lt;br /&gt;
&lt;/div&gt;</description><author>ltandy</author><pubDate>Thu, 02 May 2013 04:50:42 GMT</pubDate><guid isPermaLink="false">New Post: The HTTP request is unauthorized with client authentication scheme 'Ntlm' 20130502045042A</guid></item><item><title>New Post: List Rows are filtered</title><link>http://sqlsrvintegrationsrv.codeplex.com/discussions/441341</link><description>&lt;div style="line-height: normal;"&gt;I have list with 75 items. My data flow source has no filter on it, yet 14 items are omitted. The 14 missing rows originally all correlated to two particular values in a lookup column. Wondering if the issue was related to those values, though, I created additional values and new rows that are tied to the new values, and the rows are still missing in the output.&lt;br /&gt;
&lt;br /&gt;
It's a calendar, and each entry has a start/end date, a person, and a team. The original set of missing rows are associated with two particular teams. I created new teams in the team lookup list, and created new rows in the calendar for the same people with the same start/end dates but associated with the new teams. Those new rows are also omitted by the SSIS data source. I created a new row for a different person associated with one of the new team rows. That row comes through fine. So the problem isn't the team value, and the probably isn't the person, because those people have other rows for other teams that are not omitted in the output.&lt;br /&gt;
&lt;br /&gt;
Clear as mud? It doesn't make any sense to me either, but I could sure use a straw to grasp.&lt;br /&gt;
&lt;/div&gt;</description><author>KarenWallace</author><pubDate>Tue, 23 Apr 2013 19:22:59 GMT</pubDate><guid isPermaLink="false">New Post: List Rows are filtered 20130423072259P</guid></item><item><title>Commented Issue: Getting Error while trying to configuere the site URL: The HTTP request is unauthorized with client authentication scheme 'Negotiate'. [19265]</title><link>http://sqlsrvintegrationsrv.codeplex.com/workitem/19265</link><description>I&amp;#39;m using a SharePoint List Destination in SQL Server Integration Services. When I try to configure the site URL, via the advanced editor, I get the message see below.&lt;br /&gt;I can access the Sharepoint via Browser or with the HTTP Connection Manager for HTTP Connections without any problems. Visual Studio is running as an Administrator. All Our Servers are running with NTLM authentification, i don&amp;#39;T know why the package is trying to establish a &amp;#39;Negotiate&amp;#39; Connection. I&amp;#39;m looked in to the server with my AD-Account.&lt;br /&gt;&lt;br /&gt;Any Ideas so solve this Issue&amp;#63;&lt;br /&gt;&lt;br /&gt;Error at Data Flow Task &amp;#91;SharePoint List Source &amp;#91;1&amp;#93;&amp;#93;&amp;#58; System.ServiceModel.Security.MessageSecurityException&amp;#58; The HTTP request is unauthorized with client authentication scheme &amp;#39;Negotiate&amp;#39;. The authentication header received from the server was &amp;#39;NTLM&amp;#39;. ---&amp;#62; System.Net.WebException&amp;#58; The remote server returned an error&amp;#58; &amp;#40;401&amp;#41; Unauthorized.&lt;br /&gt;   at System.Net.HttpWebRequest.GetResponse&amp;#40;&amp;#41;&lt;br /&gt;   at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply&amp;#40;TimeSpan timeout&amp;#41;&lt;br /&gt;   --- End of inner exception stack trace ---&lt;br /&gt;&lt;br /&gt;Server stack trace&amp;#58; &lt;br /&gt;   at System.ServiceModel.Channels.HttpChannelUtilities.ValidateAuthentication&amp;#40;HttpWebRequest request, HttpWebResponse response, WebException responseException, HttpChannelFactory factory&amp;#41;&lt;br /&gt;   at System.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse&amp;#40;HttpWebRequest request, HttpWebResponse response, HttpChannelFactory factory, WebException responseException, ChannelBinding channelBinding&amp;#41;&lt;br /&gt;   at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply&amp;#40;TimeSpan timeout&amp;#41;&lt;br /&gt;   at System.ServiceModel.Channels.RequestChannel.Request&amp;#40;Message message, TimeSpan timeout&amp;#41;&lt;br /&gt;   at System.ServiceModel.Dispatcher.RequestChannelBinder.Request&amp;#40;Message message, TimeSpan timeout&amp;#41;&lt;br /&gt;   at System.ServiceModel.Channels.ServiceChannel.Call&amp;#40;String action, Boolean oneway, ProxyOperationRuntime operation, Object&amp;#91;&amp;#93; ins, Object&amp;#91;&amp;#93; outs, TimeSpan timeout&amp;#41;&lt;br /&gt;   at System.ServiceModel.Channels.ServiceChannel.Call&amp;#40;String action, Boolean oneway, ProxyOperationRuntime operation, Object&amp;#91;&amp;#93; ins, Object&amp;#91;&amp;#93; outs&amp;#41;&lt;br /&gt;   at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService&amp;#40;IMethodCallMessage methodCall, ProxyOperationRuntime operation&amp;#41;&lt;br /&gt;   at System.ServiceModel.Channels.ServiceChannelProxy.Invoke&amp;#40;IMessage message&amp;#41;&lt;br /&gt;&lt;br /&gt;Exception rethrown at &amp;#91;0&amp;#93;&amp;#58; &lt;br /&gt;   at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage&amp;#40;IMessage reqMsg, IMessage retMsg&amp;#41;&lt;br /&gt;   at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke&amp;#40;MessageData msgData, Int32 type&amp;#41;&lt;br /&gt;   at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListsService.ListsSoap.GetListAndView&amp;#40;GetListAndViewRequest request&amp;#41;&lt;br /&gt;   at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListsService.ListsSoapClient.ListsService_ListsSoap_GetListAndView&amp;#40;GetListAndViewRequest request&amp;#41;&lt;br /&gt;   at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListsService.ListsSoapClient.GetListAndView&amp;#40;String listName, String viewName&amp;#41;&lt;br /&gt;   at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ListsAdapter.GetSharePointList&amp;#40;String listName, String viewId&amp;#41;&lt;br /&gt;   at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.Adapter.ListsAdapter.GetSharePointFields&amp;#40;String listName, String viewId&amp;#41;&lt;br /&gt;   at Microsoft.Samples.SqlServer.SSIS.SharePointUtility.ListServiceUtility.GetFields&amp;#40;Uri sharepointUri, NetworkCredential credentials, String listName, String viewName&amp;#41;&lt;br /&gt;   at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.GetAccessibleSharePointColumns&amp;#40;String sharepointUrl, String listName, String viewName&amp;#41;&lt;br /&gt;   at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.CreateExternalMetaDataColumns&amp;#40;IDTSOutput100 output, String sharepointUrl, String listName, String viewName, Dictionary&amp;#96;2 existingColumnData&amp;#41;&lt;br /&gt;   at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.LoadDataSourceInformation&amp;#40;IDTSOutput100 output, Dictionary&amp;#96;2 existingColumnData&amp;#41;&lt;br /&gt;   at Microsoft.Samples.SqlServer.SSIS.SharePointListAdapters.SharePointListSource.ReinitializeMetaData&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostReinitializeMetaData&amp;#40;IDTSManagedComponentWrapper100 wrapper&amp;#41;&lt;br /&gt;Comments: ** Comment from web user: paddyprash ** &lt;p&gt;I am getting this error even when we start building the data flow. Any solutions found?&lt;/p&gt;</description><author>paddyprash</author><pubDate>Wed, 17 Apr 2013 15:34:10 GMT</pubDate><guid isPermaLink="false">Commented Issue: Getting Error while trying to configuere the site URL: The HTTP request is unauthorized with client authentication scheme 'Negotiate'. [19265] 20130417033410P</guid></item><item><title>New Post: Using the SSISMSBUILD extention</title><link>http://sqlsrvintegrationsrv.codeplex.com/discussions/439952</link><description>&lt;div style="line-height: normal;"&gt;I'm trying to setup a build server on my local machine using the TFS Build in visual studio 2010. The build will be using a XAML file (company standard). &lt;br /&gt;
&lt;br /&gt;
I'm at point where I can build a normal c# project and have my build controller, agent and definition setup correctly. &lt;br /&gt;
&lt;br /&gt;
When I try to build a SSIS solution, I get the following error.&lt;br /&gt;
C:\Builds\10\Something.dtproj.metaproj: The project file &amp;quot;Something.dtproj&amp;quot; is not supported by MSBuild and cannot be built.&lt;br /&gt;
&lt;br /&gt;
It seems that the SSISMSBUILD project in the code can resolve my issue. I'm not sure how to include it in MSBUILD and SSIS solution.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I can build the dlls with the  Microsoft.SqlServer.IntegrationServices.Build.csproj file. How do I include it in MSBUILD and/or SSIS solution?&lt;br /&gt;
&lt;br /&gt;
Any suggestions or advice would be appreciated.&lt;br /&gt;
&lt;/div&gt;</description><author>o0ollo0o</author><pubDate>Thu, 11 Apr 2013 15:38:12 GMT</pubDate><guid isPermaLink="false">New Post: Using the SSISMSBUILD extention 20130411033812P</guid></item><item><title>Commented Issue: SharePoint List Adapters: Support SQL 2012 Release Version [19218]</title><link>http://sqlsrvintegrationsrv.codeplex.com/workitem/19218</link><description>Hi&lt;br /&gt;&lt;br /&gt;We are migrating from 2008 R2 to 2012. We have made extensive use of the SharePoint List adapters to get data in an out of SharePoint lists with SSIS. Now with Data Tools I cannot get the components installed. With 2008 R2 there were tabs for Data Flow components when adding items to the toolbox. Gone in Data Tools. I have seen a few posts with people having the same problem. Has anyone got this working and if so share please. I believe the same .msi file can be used for 2012 as was used in 2008 R2. I have not attempted a reinstall as I dont want to mess up the existing 2008 packages until they get migrated. &lt;br /&gt;&lt;br /&gt;Help&amp;#33;&amp;#33;&amp;#33;&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;Trevor&lt;br /&gt;Comments: ** Comment from web user: siraj098 ** &lt;p&gt;I am having hard time using the Source List control in SSIS 2012 integration service.&lt;br&gt;Few things&lt;br&gt;No Expression Builder&lt;br&gt;No CAMLQuery . not working properly as you can only add one line.&lt;br&gt;No Field Selection&lt;br&gt;Not Working with Views.&lt;/p&gt;&lt;p&gt;Any help will be highly appreciated. I dont think its ready for SQL 2012&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><author>siraj098</author><pubDate>Mon, 08 Apr 2013 23:20:40 GMT</pubDate><guid isPermaLink="false">Commented Issue: SharePoint List Adapters: Support SQL 2012 Release Version [19218] 20130408112040P</guid></item><item><title>Reviewed: EzAPI - Package Generation API (SQL 2012) (abr 04, 2013)</title><link>http://sqlsrvintegrationsrv.codeplex.com/releases/view/82369#ReviewBy-jackh_1</link><description>Rated 4 Stars &amp;#40;out of 5&amp;#41; - i want learn to generate pakage, thaks</description><author>jackh_1</author><pubDate>Thu, 04 Apr 2013 16:38:25 GMT</pubDate><guid isPermaLink="false">Reviewed: EzAPI - Package Generation API (SQL 2012) (abr 04, 2013) 20130404043825P</guid></item><item><title>New Post: Enable Forms Based Authentication when using the SharePoint List Source with Integration Project</title><link>http://sqlsrvintegrationsrv.codeplex.com/discussions/439112</link><description>&lt;div style="line-height: normal;"&gt;The site I am trying to get the list data from is only setup for Form's Based Authentication and when I work with the List Control in a Visual Studio Integration Project I am getting the following:&lt;br /&gt;
The HTTP request was forbidden with client authentication scheme 'Ntlm'. ---&amp;gt; System.Net.WebException: The remote server returned an error: (403) Forbidden.&lt;br /&gt;
&lt;br /&gt;
Is there a way to tell the ConnectionManager not to use NTLM and use Forms Based Authentication?&lt;br /&gt;
&lt;br /&gt;
Any help is appreciated.&lt;br /&gt;
Steve&lt;br /&gt;
&lt;/div&gt;</description><author>smoro</author><pubDate>Thu, 04 Apr 2013 15:28:30 GMT</pubDate><guid isPermaLink="false">New Post: Enable Forms Based Authentication when using the SharePoint List Source with Integration Project 20130404032830P</guid></item><item><title>New Post: Any way to import from multiple SharePoint sites in a loop?</title><link>http://sqlsrvintegrationsrv.codeplex.com/discussions/437463</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
&lt;br /&gt;
I've got a number of SharePoint sites, all with the same list definition inside; I'd like to use SSIS to consolidate the data from all those sites;&lt;br /&gt;
&lt;br /&gt;
&lt;img src="http://www.stevecooper.org/codeplex/import-multiple-sharepoint-sites.JPG" alt="Importing multiple sharepoint sites" /&gt;&lt;br /&gt;
&lt;br /&gt;
I'm struggling to see if you can vary the 'SiteUrl' property of the SharePoint List Source inside the ForEach loop. I would normally expect to see an 'Expressions' property and do something like &amp;quot;SiteUrl : @User::sharepointUrl&amp;quot; but there doesn't seem to be anything like that.&lt;br /&gt;
&lt;br /&gt;
Any ideas?&lt;br /&gt;
&lt;/div&gt;</description><author>stevecooperor</author><pubDate>Thu, 21 Mar 2013 10:00:18 GMT</pubDate><guid isPermaLink="false">New Post: Any way to import from multiple SharePoint sites in a loop? 20130321100018A</guid></item><item><title>New Post: SharePoint List Adapter on 2012</title><link>http://sqlsrvintegrationsrv.codeplex.com/discussions/430373</link><description>&lt;div style="line-height: normal;"&gt;I had this adapter previously installed with VS 2008, and had issues making it work by simply Upgrading/Repairing the List Adapter. VS2010 would not even be able to upgrade the SSIS Package: The wizard would fail and the package would be unusable.&lt;br /&gt;
&lt;br /&gt;
I had to completely remove the List Adapter from Add/Remove programs, and re-install it. Then I was able to run successfully the Upgrade Wizard on the SSIS Packages and work with them.&lt;br /&gt;
&lt;br /&gt;
P.S. Love the adapter btw ;)&lt;br /&gt;
&lt;/div&gt;</description><author>Qucho</author><pubDate>Tue, 19 Mar 2013 01:27:15 GMT</pubDate><guid isPermaLink="false">New Post: SharePoint List Adapter on 2012 20130319012715A</guid></item><item><title>New Post: XML Destination</title><link>http://sqlsrvintegrationsrv.codeplex.com/discussions/436145</link><description>&lt;div style="line-height: normal;"&gt;The xmldest.dll works fine in sql server 2012, but I needed another encoding.&lt;br /&gt;
I've changed the encoding to unicode in 'xmldest.cs' in project xmlDest_SQL2012 and now I receive the following errors below:&lt;br /&gt;
&lt;br /&gt;
Error: 0xC004801F at Data Flow Task, SSIS.Pipeline: The component metadata for &amp;quot;XML Destination, clsid {874F7595-FB5F-40FF-96AF-FBFF8250E3EF}&amp;quot; could not be upgraded to the newer version of the component. The PerformUpgrade method failed.&lt;br /&gt;
Information: 0x4004300A at Data Flow Task, SSIS.Pipeline: Validation phase is beginning.&lt;br /&gt;
Error: 0xC0048021 at Data Flow Task, XML Destination [47]: The component is missing, not registered, not upgradeable, or missing required interfaces. The contact information for this component is &amp;quot;&amp;quot;.&lt;br /&gt;
Error: 0xC0047017 at Data Flow Task, SSIS.Pipeline: XML Destination failed validation and returned error code 0xC0048021.&lt;br /&gt;
Error: 0xC004700C at Data Flow Task, SSIS.Pipeline: One or more component failed validation.&lt;br /&gt;
Error: 0xC0024107 at Data Flow Task: There were errors during task validation.&lt;br /&gt;
&lt;br /&gt;
Does anyone know what to do?&lt;br /&gt;
&lt;/div&gt;</description><author>jasmindejong</author><pubDate>Mon, 11 Mar 2013 13:53:34 GMT</pubDate><guid isPermaLink="false">New Post: XML Destination 20130311015334P</guid></item><item><title>New Post: How do I import Large Lists with SharePoint List Source adapter?</title><link>http://sqlsrvintegrationsrv.codeplex.com/discussions/433690</link><description>&lt;div style="line-height: normal;"&gt;Thanks David,&lt;br /&gt;
How did you do it?  can you step through the steps?  Did you require a loop or use CAML query to set limits?&lt;br /&gt;
Could it be that you have no limit restrictions on your SharePoint list?  is it 2010? and could you have god mode special permission to allow you to bypaas the 5000k limit?    I can get it to work for list less then 5000K no problem.&lt;br /&gt;
&lt;/div&gt;</description><author>Randy_D</author><pubDate>Fri, 08 Mar 2013 23:03:07 GMT</pubDate><guid isPermaLink="false">New Post: How do I import Large Lists with SharePoint List Source adapter? 20130308110307P</guid></item></channel></rss>