<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6236010528194495696</id><updated>2012-02-16T16:55:30.749-08:00</updated><category term='BizTalk BRE'/><category term='BizTalk'/><category term='XSD.exe'/><category term='terminated'/><category term='BizTalk 2010'/><category term='Adding nodes in BRE'/><category term='ImportTypes in XSD'/><category term='XMLHelper'/><category term='BizTalk 2009'/><category term='HttpService Instance'/><category term='Generating c# code from XSD with reuse types'/><title type='text'>Polaty collection of important stuff i came across</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://polatycollection.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://polatycollection.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>rajeshwar rao</name><uri>http://www.blogger.com/profile/06754954347940424327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>14</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6236010528194495696.post-9069917060157654094</id><published>2010-10-01T08:19:00.000-07:00</published><updated>2010-10-01T08:26:09.140-07:00</updated><title type='text'>ENTSSO service not starting up when .NET 4.0 is installed</title><content type='html'>When you get following errors with ENTSSO service after installing .Net 4.0 then you may need to apply the hotfix &lt;br /&gt;http://www.microsoft.com/downloads/en/details.aspx?FamilyID=46fa6c65-531a-4c9f-99f9-7af3fac098a6&amp;displaylang=en. &lt;br /&gt;&lt;br /&gt;Could not create SSOSQL. To fix the problem, reinstall SSO or try 'regasm SSOSQL.dll' from a Visual Studio command prompt.&lt;br /&gt; Error Code: 0x80131700&lt;br /&gt;&lt;br /&gt;or &lt;br /&gt;&lt;br /&gt;The SSO service failed to start.&lt;br /&gt; Error Code: 0x80131700&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6236010528194495696-9069917060157654094?l=polatycollection.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://polatycollection.blogspot.com/feeds/9069917060157654094/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6236010528194495696&amp;postID=9069917060157654094' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/9069917060157654094'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/9069917060157654094'/><link rel='alternate' type='text/html' href='http://polatycollection.blogspot.com/2010/10/entsso-service-not-starting-up-when-net.html' title='ENTSSO service not starting up when .NET 4.0 is installed'/><author><name>rajeshwar rao</name><uri>http://www.blogger.com/profile/06754954347940424327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6236010528194495696.post-787908096768608753</id><published>2010-08-10T12:01:00.000-07:00</published><updated>2010-08-10T13:15:38.531-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='XMLHelper'/><category scheme='http://www.blogger.com/atom/ns#' term='BizTalk 2010'/><category scheme='http://www.blogger.com/atom/ns#' term='BizTalk BRE'/><category scheme='http://www.blogger.com/atom/ns#' term='Adding nodes in BRE'/><category scheme='http://www.blogger.com/atom/ns#' term='BizTalk 2009'/><title type='text'>Adding a node usine Microsoft.RuleEngine.XMLHelper</title><content type='html'>Adding a node without a namespace in BRE using Microsoft.RuleEngine.XMLHelper can be done quite easily with AddNode method.&lt;br /&gt;For eg :&lt;br /&gt;Step 1. XmlHelper.AddNode(AcCanonicalSchemas.AcCommonPCTypes.MsgStatus:/MsgStatus, . ,ExtendedStatus)&lt;br /&gt;2. XmlHelper.AddNodeWithValue(AcCanonicalSchemas.AcCommonPCTypes.MsgStatus:/MsgStatus, ./ExtendedStatus[position()=last()], ExtendedStatusCd, Code added in this node through BRE)&lt;br /&gt;Step 1 adds a node to ExtendedStatus under MsgStatus TypedXMLDocument.&lt;br /&gt;Step 2 adds a node ExtendedStatusCd and its value under ExtendedStatus node.&lt;br /&gt;&lt;br /&gt;This is fine untill the TypedXMLDocument MsgStatus is without any namespace. If MsgStatus has a namespace for eg http://AcCanonicalSchemas.PANDC then the above code with addnode will generate xml as&lt;br /&gt;&lt;br /&gt;&amp;lt;MsgStatus xmlns="http://AcCanonicalSchemas.PANDC"&amp;gt;&amp;lt;ExtendedStatus xmlns=""&amp;gt;&amp;lt;ExtendedStatusCd&amp;gt;Code added in this node through BRE&amp;lt;/ExtendedStatusCd&amp;gt;&amp;lt;/ExtendedStatus&amp;gt;&amp;lt;/MsgStatus&amp;gt;&lt;br /&gt;&lt;br /&gt;Which cannot be validated. To add a node with the same namespace, use the Xpath as below in .&lt;br /&gt;Step 1&lt;br /&gt;XmlHelper.AddNode(AcCanonicalSchemas.AcCommonPCTypes.MsgStatus:/MsgStatus, . ,ExtendedStatus, http://AcCanonicalSchemas.PANDC)&lt;br /&gt;2. XmlHelper.AddNodeWithValue(AcCanonicalSchemas.AcCommonPCTypes.MsgStatus:/MsgStatus, ./*[local-name()='ExtendedStatus' and namespace-uri()=http://AcCanonicalSchemas.PANDC'][position()=last()], ExtendedStatusCd, Code added in this node through BRE)&lt;br /&gt;&lt;br /&gt;This will generate Xml as&lt;br /&gt;&lt;br /&gt; &amp;lt;MsgStatus xmlns="http://AcCanonicalSchemas.PANDC"&amp;gt;&amp;lt;extendedstatus&amp;gt;&amp;lt;ExtendedStatusCd&amp;gt;Code added in this node through BRE&amp;lt;/ExtendedStatusCd&amp;gt;&amp;lt;/ExtendedStatus&amp;gt;&amp;lt;/MsgStatus&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This will make sure all nodes are under the same namespace.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6236010528194495696-787908096768608753?l=polatycollection.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://polatycollection.blogspot.com/feeds/787908096768608753/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6236010528194495696&amp;postID=787908096768608753' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/787908096768608753'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/787908096768608753'/><link rel='alternate' type='text/html' href='http://polatycollection.blogspot.com/2010/08/adding-node-usine-microsoftruleenginexm.html' title='Adding a node usine Microsoft.RuleEngine.XMLHelper'/><author><name>rajeshwar rao</name><uri>http://www.blogger.com/profile/06754954347940424327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6236010528194495696.post-2003866749937467915</id><published>2010-08-03T11:37:00.000-07:00</published><updated>2010-08-10T12:29:17.819-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ImportTypes in XSD'/><category scheme='http://www.blogger.com/atom/ns#' term='Generating c# code from XSD with reuse types'/><category scheme='http://www.blogger.com/atom/ns#' term='XSD.exe'/><title type='text'>XSD.exe not able to generate C# classes when the schema uses imports</title><content type='html'>XSD.Exe is unable to generate C# classes when an import function is used to use the existing types from another schema. It throws a warning like&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Schema could not be validated. Class generation may fail or may produce incorrect results.&lt;/span&gt;&lt;br /&gt;Solution : Copy the imported schema(Schema with reuse types) to the same folder as the schema which is using its types and also don't use the reference when importing to get to the reusable types instead use the schema which is copied to the local folder and then execute the following command.&lt;br /&gt;&lt;br /&gt;Xsd.exe  NewSchema.xsd  SchemaWithReuseTypes.xsd /c this should generate the corresponding c# class.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6236010528194495696-2003866749937467915?l=polatycollection.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://polatycollection.blogspot.com/feeds/2003866749937467915/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6236010528194495696&amp;postID=2003866749937467915' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/2003866749937467915'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/2003866749937467915'/><link rel='alternate' type='text/html' href='http://polatycollection.blogspot.com/2010/08/xsdexe-not-able-to-generate-c-classes.html' title='XSD.exe not able to generate C# classes when the schema uses imports'/><author><name>rajeshwar rao</name><uri>http://www.blogger.com/profile/06754954347940424327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6236010528194495696.post-4101924261054055740</id><published>2009-12-09T08:21:00.000-08:00</published><updated>2009-12-09T08:29:03.996-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='terminated'/><category scheme='http://www.blogger.com/atom/ns#' term='BizTalk'/><category scheme='http://www.blogger.com/atom/ns#' term='HttpService Instance'/><title type='text'>BizTalk HttpServiceInstances not getting terminated</title><content type='html'>Execute the below query against BizTalk messagebox database.&lt;br /&gt;&lt;br /&gt;Declare @out int&lt;br /&gt;Begin transaction&lt;br /&gt;exec dbo.int_AdminTerminateInstance_BizTalkHttpHost '3ae6ac2f-9b24-407a-a072-63733bc84254', '3ae6ac2f-9b24-407a-a072-63733bc84254', @out&lt;br /&gt;Commit&lt;br /&gt;&lt;br /&gt;where BizTalkHttpHost is the host name of the active instance&lt;br /&gt;First GUID value is the service instance id and second GUID is service type id.&lt;br /&gt;&lt;br /&gt;Remember this is provided as is with no gurantee.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6236010528194495696-4101924261054055740?l=polatycollection.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://polatycollection.blogspot.com/feeds/4101924261054055740/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6236010528194495696&amp;postID=4101924261054055740' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/4101924261054055740'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/4101924261054055740'/><link rel='alternate' type='text/html' href='http://polatycollection.blogspot.com/2009/12/biztalk-httpserviceinstances-not.html' title='BizTalk HttpServiceInstances not getting terminated'/><author><name>rajeshwar rao</name><uri>http://www.blogger.com/profile/06754954347940424327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6236010528194495696.post-6563010060826945189</id><published>2009-06-04T07:16:00.000-07:00</published><updated>2009-12-09T08:31:09.836-08:00</updated><title type='text'>User account issues while accessing BAM</title><content type='html'>BAM Web Services and SQL Server mixed mode authentication&lt;br /&gt;This is an issue I see every once in while so let's see what causes it and how to diagnose and fix it.&lt;br /&gt;You have created and deployed a BAM definition with some BAM views in it but when you hit the BAM Portal with IE all you see in the "My Views" pane on the left is an error message "Views or Activites may be missing because one or more database(s) could not be contacted." followed by "No view to display" message. Now what?&lt;br /&gt;Your first step to troubleshooting such issues is the Windows Event Log on the machine hosting the IIS server running the BAM Portal and the BAM web services. The BAM event log entries will be in the Application event log. You can filter on event source equal to "BAM Portal" or "BAM Web Service". I will usually look at the last few errors from "BAM Web Service".&lt;br /&gt;So you open the Windows Event Viewer and you see one error from "BAM Web Service" with event ID 12033. Double-click on it and the description says:&lt;br /&gt;Referenced database 'BAMPrimaryImport' on server 'SERVERNAME' is not accessible. The error is:&lt;br /&gt;System.NullReferenceException: Object reference not set to an instance of an object.at Microsoft.BizTalk.Bam.WebServices.AsyncResult.End(AsyncResult asyncResult)at Microsoft.BizTalk.Bam.WebServices.Management.GetViewSummaryAsyncResult.End(IAsyncResult result)at Microsoft.BizTalk.Bam.WebServices.Management.BamManagementService.EndGetViewSummaryForDatabase(IAsyncResult result)at Microsoft.BizTalk.Bam.WebServices.Management.BamManagementService.GetViewSummaryForCurrentUser().&lt;br /&gt;Now what?&lt;br /&gt;The second step to troubleshooting BAM Web Services issues is to... enable tracing. To turn on tracing go to the "Program Files\Microsoft BizTalk Server 2006\BAMPortal\BAMManagementService" directory (or "...\BAMQueryService") and open the web.config file with notepad. Uncomment the &lt;system.diagnostics&gt;element towards the end of the file. By default the traces will be saved in "C:\temp\BamManagementServiceTrace.log" or "C:\temp\BamQueryServiceTrace.log". Make sure that the IIS worker process user account (usually Network Service or ASPNET) and the BAM web service user have write permissions for the trace log file directory (C:\temp by default).&lt;br /&gt;Turn on tracing for the BAM Management Web Service and refresh the BAM Portal home page in IE. Now open the trace file "C:\temp\BamManagementServiceTrace.log" and search for the string "Error" from the top of the file to find the first error. In this case the first error is:&lt;br /&gt;&lt;biztalk2006&gt;06/13/2006 17:00:36 6 Microsoft.BizTalk.Bam.WebServices.TraceHelper ThrowHelperSoapException Error 11007 Cannot determine the SID for the user.&lt;br /&gt;Bingo! This is the root cause of the problem.&lt;br /&gt;Now some history behind this problem. The BAM Web Services authenticate all users using Windows authentication and authorize them based on their Windows identity. But there is a special case - DBO. DBO is a special account which has permissions to all BAM views. So the BAM Web Services will try to find the Windows identity for the DBO user for the BAM Primary Import database and they will fail if this is a SQL account.&lt;br /&gt;BAM does not support anything other than Windows authentication for SQL Server. If everything else seems to work, there is no guarantee that it actually does and it will continue to work in the future. True, the error is not intuitive but it is correct.&lt;br /&gt;How to resolve the problem now that we have identified it? It is really easy indeed. Just change the DBO accounts for all BAM databases to Windows accounts. You can do this using the sp_changedbowner system stored procedure.&lt;br /&gt;To set DBO to the "domain\user" account run:&lt;br /&gt;use BAMPrimaryImportgosp_changedbowner 'domain\user'go&lt;br /&gt;Navigate to the BAM Portal and verify that you see all BAM views and no errors in the left pane on the home page.&lt;br /&gt;There is a pretty nice &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=B273269C-97E0-411D-8849-5A8070698E4A&amp;amp;displaylang=en"&gt;BizTalk Installation Guide&lt;/a&gt;, which you can use the next time you setup BizTalk Server to avoid such issues.&lt;br /&gt;Filed under: &lt;a href="http://blogs.msdn.com/tihot/archive/tags/BAM/default.aspx" rel="tag"&gt;BAM&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6236010528194495696-6563010060826945189?l=polatycollection.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://polatycollection.blogspot.com/feeds/6563010060826945189/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6236010528194495696&amp;postID=6563010060826945189' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/6563010060826945189'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/6563010060826945189'/><link rel='alternate' type='text/html' href='http://polatycollection.blogspot.com/2009/06/user-account-issues-while-accessing-bam.html' title='User account issues while accessing BAM'/><author><name>rajeshwar rao</name><uri>http://www.blogger.com/profile/06754954347940424327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6236010528194495696.post-7296392964625432406</id><published>2008-09-13T09:32:00.001-07:00</published><updated>2008-09-13T09:36:02.669-07:00</updated><title type='text'>SQL server 2005 installation issues</title><content type='html'>SQL server 2005 installation issues.Menu options in Start Programs  not being dispalyed for SQL server 2005 after installation.&lt;br /&gt;&lt;br /&gt;Solution.&lt;br /&gt;&lt;br /&gt;Client components are not installed properly. You may need to uninstall workstation components and reinstall them from Disk1.&lt;br /&gt;Follow the article &lt;a href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;909953"&gt;http://support.microsoft.com/default.aspx?scid=kb;EN-US;909953&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6236010528194495696-7296392964625432406?l=polatycollection.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://polatycollection.blogspot.com/feeds/7296392964625432406/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6236010528194495696&amp;postID=7296392964625432406' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/7296392964625432406'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/7296392964625432406'/><link rel='alternate' type='text/html' href='http://polatycollection.blogspot.com/2008/09/sql-server-2005-installation-issues.html' title='SQL server 2005 installation issues'/><author><name>rajeshwar rao</name><uri>http://www.blogger.com/profile/06754954347940424327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6236010528194495696.post-7501026878917348172</id><published>2008-03-22T07:22:00.000-07:00</published><updated>2008-03-22T07:29:10.712-07:00</updated><title type='text'>Could not configure BAM Portal in BizTalk 2006</title><content type='html'>When configuring BAM Portal you may come across a situation where in you cannot select users and groups in the BAP Portal configuration page in BizTalk configuration window.&lt;br /&gt;This may happen due to various reasons and one of them is as below.&lt;br /&gt;- If you have already configured BAM Portal but removed the portal from the website. Hence the configuration information remained in the BAM Config tables and is not removed from there.&lt;br /&gt;&lt;br /&gt;To clear the config information stored earlier, use the BM.EXE and export the config file into a xml and removed the &lt;globalproperty name="BAMVRoot"&gt;http://ServerName:80/BAM&lt;/globalproperty&gt; and reimport the config file using BM.EXE.&lt;br /&gt;Now you should be able to configure the BAM portal from BizTalk Configuration window.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6236010528194495696-7501026878917348172?l=polatycollection.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://polatycollection.blogspot.com/feeds/7501026878917348172/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6236010528194495696&amp;postID=7501026878917348172' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/7501026878917348172'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/7501026878917348172'/><link rel='alternate' type='text/html' href='http://polatycollection.blogspot.com/2008/03/could-not-configure-bam-portal.html' title='Could not configure BAM Portal in BizTalk 2006'/><author><name>rajeshwar rao</name><uri>http://www.blogger.com/profile/06754954347940424327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6236010528194495696.post-9067248411317556218</id><published>2008-03-05T16:58:00.000-08:00</published><updated>2008-03-05T17:06:00.142-08:00</updated><title type='text'>Wireless over DSL with fixed IP</title><content type='html'>First connect the DSL modem directly to the computer using which you are configuring the DSL connection. Setup the internet connection by using the login /password and the fixed IP given. Remember to notedown the details are these are required while configuring the wireless. Also notedown the Primary DNS. Once the internet connection is established using a wired connection between DSL and Computer then just open the browser and by default the DSL modem home page should appear. And now go to connection setting page and change the connection PPPOE to bridge connection save and exit which will restart the DSL modem. Now connect the wireless router to DSL modem and login to the home page of wireless router where you can set the  configuration setting and select PPPOE  and  enter the details  (like login, pswd, IP address given by ISP and the DNS) properties of WAN. Now save these settings and you are good to go.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6236010528194495696-9067248411317556218?l=polatycollection.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://polatycollection.blogspot.com/feeds/9067248411317556218/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6236010528194495696&amp;postID=9067248411317556218' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/9067248411317556218'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/9067248411317556218'/><link rel='alternate' type='text/html' href='http://polatycollection.blogspot.com/2008/03/wireless-over-dsl-with-fixed-ip.html' title='Wireless over DSL with fixed IP'/><author><name>rajeshwar rao</name><uri>http://www.blogger.com/profile/06754954347940424327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6236010528194495696.post-5681442500817432946</id><published>2008-02-29T22:01:00.000-08:00</published><updated>2008-02-29T22:02:20.008-08:00</updated><title type='text'>Removing SourceSafe dependencies from a solution/project</title><content type='html'>Situation:Your buddy has created a cool VB.NET application that you want to use.  He sends you the source code and it consists of a solution (MySolution) containing a single project (MyProject).  You attempt to open the solution and find that it has SourceSafe dependencies.  You need to remove all the VSS stuff from the solution/project files.&lt;br /&gt;Solution:&lt;br /&gt;1 - Go to the folder containing the solution files and delete the following:          mssccprj.scc          MyProject.vssscc          vssver.scc&lt;br /&gt;2 - Open MyProject.sln in your favorite text editor and remove the following section:          GlobalSection(SourceCodeControl) = preSolution                     ...          EndGlobalSection&lt;br /&gt;3 - Go to the folder containing the project files and delete the following:          MyProject.vbproj.vspscc          mssccprj.scc          vssver.scc&lt;br /&gt;4 - Open MyProject.vbproj in your text editor and remove the following lines:          SccProjectName = "SAK"          SccLocalPath = "SAK"          SccAuxPath = "SAK"          SccProvider = "SAK"&lt;br /&gt;Now you can open the solution/project with no source control errors.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6236010528194495696-5681442500817432946?l=polatycollection.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://polatycollection.blogspot.com/feeds/5681442500817432946/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6236010528194495696&amp;postID=5681442500817432946' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/5681442500817432946'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/5681442500817432946'/><link rel='alternate' type='text/html' href='http://polatycollection.blogspot.com/2008/02/removing-sourcesafe-dependencies-from.html' title='Removing SourceSafe dependencies from a solution/project'/><author><name>rajeshwar rao</name><uri>http://www.blogger.com/profile/06754954347940424327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6236010528194495696.post-6693264405288032092</id><published>2007-10-04T12:36:00.000-07:00</published><updated>2007-10-22T13:21:58.206-07:00</updated><title type='text'>Configuring IIS  for BTSHTTPReceive.dll</title><content type='html'>&lt;a id="ctl00___ctl00___Month___postlist___EntryItems_ctl02_PostTitle" href="http://geekswithblogs.net/bcorazza/archive/2006/05/30/80129.aspx"&gt;How to configure IIS for a BizTalk 2006 HTTP Receive Location&lt;/a&gt;&lt;br /&gt;First thing you need to do is to make sure that IIS's security is not going to be blocking your calls to the BTSHTTPReceive.dll. To do this goto your IIS manager and click on the Web Service Extension node and right click it and 'Add a new Web Service Extension'. Now browse to the location of BTSHTTPReceive.dll (by default installation its in &lt;drive&gt;:\Program Files\Microsoft BizTalk Server 2006\HttpReceive\ folder). Also remember to check the 'Set extension status to Allowed' checkbox. It is also a good idea to create a new application pool for your application to run in. When creating one make sure that the user account used is a member of the BizTalk Isolated Hosts group and the IIS_WPG group.&lt;br /&gt;Now your going to create a new virtual directory in IIS under Default Web Site. Make sure you link the location of BTSHTTPReceive.dll in the content directory. Also make sure you use the new application pool you just setup. Make sure that both Read and Execute permissions are selected, and that Execute permissions are set to Scripts and Executables. After this you should be all set to start setting up your HTTP Receive Location within BizTalk Explorer&lt;br /&gt;Note: Make sure websites are refreshed.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6236010528194495696-6693264405288032092?l=polatycollection.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://polatycollection.blogspot.com/feeds/6693264405288032092/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6236010528194495696&amp;postID=6693264405288032092' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/6693264405288032092'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/6693264405288032092'/><link rel='alternate' type='text/html' href='http://polatycollection.blogspot.com/2007/10/configuring-iis-for-btshttpreceivedll.html' title='Configuring IIS  for BTSHTTPReceive.dll'/><author><name>rajeshwar rao</name><uri>http://www.blogger.com/profile/06754954347940424327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6236010528194495696.post-3424192071659643992</id><published>2007-09-21T07:55:00.000-07:00</published><updated>2007-09-21T08:01:10.320-07:00</updated><title type='text'>Zombie identification in Biztalk 2006</title><content type='html'>Zombies can be identified in Biztalk server 2006 by using the following query in the messagebox database.&lt;br /&gt;&lt;br /&gt;SELECT  *  FROM  &lt;u&gt;HostName&lt;/u&gt;Q_Suspended  where nErrorCategory = 4&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;In the above query HostName should be replaced with corresponding host name in which you want to identify the Zombies. If  the above query return any rows then it indicates that there are Zombies present.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6236010528194495696-3424192071659643992?l=polatycollection.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://polatycollection.blogspot.com/feeds/3424192071659643992/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6236010528194495696&amp;postID=3424192071659643992' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/3424192071659643992'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/3424192071659643992'/><link rel='alternate' type='text/html' href='http://polatycollection.blogspot.com/2007/09/zombie-identification-in-biztalk-2006.html' title='Zombie identification in Biztalk 2006'/><author><name>rajeshwar rao</name><uri>http://www.blogger.com/profile/06754954347940424327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6236010528194495696.post-1929839567752345618</id><published>2007-08-30T06:56:00.000-07:00</published><updated>2007-08-30T06:58:11.145-07:00</updated><title type='text'>BizTalk DW Reporting Faulting application btsntsvc.exe, version 3.5.1602.0</title><content type='html'>BizTalk DW Reporting Faulting application btsntsvc.exe, version 3.5.1602.0&lt;br /&gt;If you are seeing this error in application log,&lt;br /&gt;Set the value of&lt;br /&gt;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\BizTalk Server\3.0\DW\TracingEnabled  to 0. Default is 1.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6236010528194495696-1929839567752345618?l=polatycollection.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://polatycollection.blogspot.com/feeds/1929839567752345618/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6236010528194495696&amp;postID=1929839567752345618' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/1929839567752345618'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/1929839567752345618'/><link rel='alternate' type='text/html' href='http://polatycollection.blogspot.com/2007/08/biztalk-dw-reporting-faulting.html' title='BizTalk DW Reporting Faulting application btsntsvc.exe, version 3.5.1602.0'/><author><name>rajeshwar rao</name><uri>http://www.blogger.com/profile/06754954347940424327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6236010528194495696.post-349504947007725134</id><published>2007-08-23T12:57:00.000-07:00</published><updated>2007-08-23T13:00:12.596-07:00</updated><title type='text'>New transaction cannot enlist in the specified transaction coordinator</title><content type='html'>The "SQL" adapter is suspending an outbound message going to destination &lt;a href="http://www.blogger.com/"&gt;http://www.blogger.com/&lt;/a&gt; servername/DBName/". Details:"New transaction cannot enlist in the specified transaction coordinator. ".&lt;br /&gt;&lt;br /&gt;The problem was resolved when I changed :&lt;br /&gt;Administrative Tools \ Component Services \ My Computer \ Properties \ MSDTC \ Security Configuration \ Transaction Manager Communication \ "Mutual Authentication Required" --&gt; and check "Incoming Caller Authentication Required"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6236010528194495696-349504947007725134?l=polatycollection.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://polatycollection.blogspot.com/feeds/349504947007725134/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6236010528194495696&amp;postID=349504947007725134' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/349504947007725134'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/349504947007725134'/><link rel='alternate' type='text/html' href='http://polatycollection.blogspot.com/2007/08/sql-adapter-is-suspending-outbound.html' title='New transaction cannot enlist in the specified transaction coordinator'/><author><name>rajeshwar rao</name><uri>http://www.blogger.com/profile/06754954347940424327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6236010528194495696.post-8603959337168002022</id><published>2007-05-16T07:16:00.000-07:00</published><updated>2007-05-16T08:51:54.698-07:00</updated><title type='text'>USB device not showing up in windows explorer</title><content type='html'>If your USB device is not showing up in windows explorer  when connected to your system. Do the following.&lt;br /&gt;- Go to Start - Control panel - Hardware - Device Manager&lt;br /&gt;- Identify the device instance id by going to properties of the corresponding device.&lt;br /&gt;- Go to registry HKLM - System - Enum - USB - and the corresponding device instance id.&lt;br /&gt;- Change the registry value for  PortableDeviceNameSpaceExcludeFromShell to "0" (value Zero)&lt;br /&gt;- Connect the USB and the device should be detected now.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6236010528194495696-8603959337168002022?l=polatycollection.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://polatycollection.blogspot.com/feeds/8603959337168002022/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6236010528194495696&amp;postID=8603959337168002022' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/8603959337168002022'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6236010528194495696/posts/default/8603959337168002022'/><link rel='alternate' type='text/html' href='http://polatycollection.blogspot.com/2007/05/usb-device-not-showing-up-in-windows.html' title='USB device not showing up in windows explorer'/><author><name>rajeshwar rao</name><uri>http://www.blogger.com/profile/06754954347940424327</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
