<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Art Of Creation - Dynamics AX Blog &#187; Error</title>
	<atom:link href="http://www.artofcreation.be/tag/error/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.artofcreation.be</link>
	<description>The everyday life of a Dynamics AX developer</description>
	<lastBuildDate>Fri, 23 Jul 2010 16:29:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>AllowDuplicates Yes: Illegal property value</title>
		<link>http://www.artofcreation.be/2010/05/17/allowduplicates-yes-illegal-property-value/</link>
		<comments>http://www.artofcreation.be/2010/05/17/allowduplicates-yes-illegal-property-value/#comments</comments>
		<pubDate>Mon, 17 May 2010 16:06:22 +0000</pubDate>
		<dc:creator>Klaas Deforche</dc:creator>
				<category><![CDATA[Dynamics AX]]></category>
		<category><![CDATA[Error]]></category>

		<guid isPermaLink="false">http://www.artofcreation.be/?p=716</guid>
		<description><![CDATA[When changing the property AllowDuplicates on a table index from No to Yes, the following error can be thrown at you: Illegal property Value This is because on your table, the property PrimaryIndex is set to the index you are trying to change.]]></description>
			<content:encoded><![CDATA[<p>When changing the property AllowDuplicates on a table index from No to Yes, the following error can be thrown at you:</p>
<blockquote><p>Illegal property Value</p></blockquote>
<p>This is because on your table, the property PrimaryIndex is set to the index you are trying to change. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.artofcreation.be/2010/05/17/allowduplicates-yes-illegal-property-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AIF: &#8216;EndElement&#8217; is an invalid XmlNodeType</title>
		<link>http://www.artofcreation.be/2010/04/20/aif-endelement-is-an-invalid-xmlnodetype/</link>
		<comments>http://www.artofcreation.be/2010/04/20/aif-endelement-is-an-invalid-xmlnodetype/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 09:31:08 +0000</pubDate>
		<dc:creator>Klaas Deforche</dc:creator>
				<category><![CDATA[AIF]]></category>
		<category><![CDATA[Dynamics AX]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Error]]></category>

		<guid isPermaLink="false">http://www.artofcreation.be/?p=698</guid>
		<description><![CDATA[Hi all. I got this error when developing a C# .NET application that consumed a AIF web service, and couldn&#8217;t find a solution online so let me share mine :-). The problem was that I initialised my queryCriteria wrong: CriteriaElement ace = new CriteriaElement&#40;&#41;; ace.FieldName = &#34;AccountNum&#34;; ace.Value1 = &#34;000001&#34;; I forgot the specify the [...]]]></description>
			<content:encoded><![CDATA[<p>Hi all. </p>
<p>I got this error when developing a C# .NET application that consumed a AIF web service, and couldn&#8217;t find a solution online so let me share mine :-). </p>
<p>The problem was that I initialised my queryCriteria wrong:</p>
<div class="codecolorer-container csharp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="csharp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">CriteriaElement ace <span style="color: #008000;">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> CriteriaElement<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
ace<span style="color: #008000;">.</span><span style="color: #0000FF;">FieldName</span> <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;AccountNum&quot;</span><span style="color: #008000;">;</span><br />
ace<span style="color: #008000;">.</span><span style="color: #0000FF;">Value1</span> <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;000001&quot;</span><span style="color: #008000;">;</span></div></div>
<p>I forgot the specify the datasourcename and operation:</p>
<div class="codecolorer-container csharp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="csharp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">CriteriaElement ace <span style="color: #008000;">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> CriteriaElement<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
ace<span style="color: #008000;">.</span><span style="color: #0000FF;">FieldName</span> <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;AccountNum&quot;</span><span style="color: #008000;">;</span><br />
ace<span style="color: #008000;">.</span><span style="color: #0000FF;">Value1</span> <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;000001&quot;</span><span style="color: #008000;">;</span><br />
ace<span style="color: #008000;">.</span><span style="color: #0000FF;">DataSourceName</span> <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;VendTable&quot;</span><span style="color: #008000;">;</span><br />
ace<span style="color: #008000;">.</span><span style="color: #0600FF; font-weight: bold;">Operator</span> <span style="color: #008000;">=</span> <span style="color: #0600FF; font-weight: bold;">Operator</span><span style="color: #008000;">.</span><span style="color: #0000FF;">Equal</span><span style="color: #008000;">;</span></div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.artofcreation.be/2010/04/20/aif-endelement-is-an-invalid-xmlnodetype/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AIF: HTTP Error 404.3 &#8211; Not Found</title>
		<link>http://www.artofcreation.be/2010/04/19/aif-http-error-404-3-not-found/</link>
		<comments>http://www.artofcreation.be/2010/04/19/aif-http-error-404-3-not-found/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 14:34:24 +0000</pubDate>
		<dc:creator>Klaas Deforche</dc:creator>
				<category><![CDATA[AIF]]></category>
		<category><![CDATA[Dynamics AX]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">http://www.artofcreation.be/?p=688</guid>
		<description><![CDATA[After installing an AIF web server and deploying services on it, I got an error when I tried to browse my web service http://myhost:82/MicrosoftDynamicsAXAif50/itemservice.svc. The error was: HTTP Error 404.3 &#8211; Not Found When I tried to add a web reference the svc in visual studio .NET, I got a similar error: HTTP Error 404 [...]]]></description>
			<content:encoded><![CDATA[<p>After installing an AIF web server and deploying services on it, I got an error when I tried to browse my web service http://myhost:82/MicrosoftDynamicsAXAif50/itemservice.svc.<br />
The error was:</p>
<blockquote><p>HTTP Error 404.3 &#8211; Not Found</p></blockquote>
<p>When I tried to add a web reference the svc in visual studio .NET, I got a similar error:</p>
<blockquote><p>HTTP Error 404 &#8211; Not Found</p></blockquote>
<p>I solved it by using the method described on the AIF blog:<br />
<a href="http://blogs.msdn.com/aif/archive/2008/12/12/http-error-404-3-is-received-when-calling-a-web-service.aspx">http://blogs.msdn.com/aif/archive/2008/12/12/http-error-404-3-is-received-when-calling-a-web-service.aspx</a></p>
<p>Basically, execute the following command on your web server:</p>
<div class="codecolorer-container dos default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="dos codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">ServiceModelReg.exe -i -x</div></div>
<p>After that, everything worked fine. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.artofcreation.be/2010/04/19/aif-http-error-404-3-not-found/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AIF: The path %1 does not exist or is not accessible from an AOS server. Always use a UNC path.</title>
		<link>http://www.artofcreation.be/2009/12/08/aif-the-path-1-does-not-exist-or-is-not-accessible-from-an-aos-server-always-use-a-unc-path/</link>
		<comments>http://www.artofcreation.be/2009/12/08/aif-the-path-1-does-not-exist-or-is-not-accessible-from-an-aos-server-always-use-a-unc-path/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 17:03:27 +0000</pubDate>
		<dc:creator>Klaas Deforche</dc:creator>
				<category><![CDATA[AIF]]></category>
		<category><![CDATA[Dynamics AX]]></category>
		<category><![CDATA[Error]]></category>

		<guid isPermaLink="false">http://www.artofcreation.be/?p=350</guid>
		<description><![CDATA[Hi guys, It seems like I&#8217;m going to be doing a lot of AIF in the future, so I&#8217;d like to share the first AIF error I came across: The path C:\AIF does not exist or is not accessible from an AOS server. Always use a UNC path. You can get this error when setting [...]]]></description>
			<content:encoded><![CDATA[<p>Hi guys,</p>
<p>It seems like I&#8217;m going to be doing a lot of AIF in the future, so I&#8217;d like to share the first AIF error I came across:</p>
<blockquote><p>The path C:\AIF does not exist or is not accessible from an AOS server. Always use a UNC path.</p></blockquote>
<p>You can get this error when setting up channels.<br />
While I immediately know what the problem was (you have to use shares), my less technical-minded colleague didn&#8217;t know what to do. </p>
<p>This is what Wikipedia has to say about &#8216;UNC path&#8217;:</p>
<blockquote><p>The Microsoft Windows UNC, short for Universal Naming Convention or Uniform Naming Convention, specifies a common syntax to describe the location of a network resource, such as a shared file, directory, or printer. The UNC syntax for Windows systems has the generic form:</p>
<p>\\ComputerName\SharedFolder\Resource</p></blockquote>
<p>So there you have it, you have to use a shared folder in stead of a local folder.<br />
This is logical, as AIF runs on server, and the AOS can not access your local folders.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.artofcreation.be/2009/12/08/aif-the-path-1-does-not-exist-or-is-not-accessible-from-an-aos-server-always-use-a-unc-path/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error code 122 while exporting xpo</title>
		<link>http://www.artofcreation.be/2009/06/05/error-code-122-while-exporting-xpo/</link>
		<comments>http://www.artofcreation.be/2009/06/05/error-code-122-while-exporting-xpo/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 13:12:45 +0000</pubDate>
		<dc:creator>Klaas Deforche</dc:creator>
				<category><![CDATA[Dynamics AX]]></category>
		<category><![CDATA[Error]]></category>

		<guid isPermaLink="false">http://www.artofcreation.be/?p=119</guid>
		<description><![CDATA[While exporting code from Dynamics Ax to an xpo file, I received the following error: Error in file: C\DOCUME~1\SRV_TR~1\LOCALS~1\Temp\$tmp00040005$ while writing in record = D8AA0 Windows error: = Error code: 112 = Unknown Error Error code 122 means (msdn): ERROR_DISK_FULL: There is not enough space on the disk. The problem here is that the AOS [...]]]></description>
			<content:encoded><![CDATA[<p>While exporting code from Dynamics Ax to an xpo file, I received the following error:</p>
<blockquote><p>
Error in file: C\DOCUME~1\SRV_TR~1\LOCALS~1\Temp\$tmp00040005$ while writing in record = D8AA0<br />
Windows error: =<br />
Error code: 112 = Unknown Error
</p></blockquote>
<p>Error code 122 means (<a href="http://msdn.microsoft.com/en-us/library/ms681382(VS.85).aspx">msdn</a>):</p>
<blockquote><p>ERROR_DISK_FULL: There is not enough space on the disk.
</p></blockquote>
<p>The problem here is that the AOS is trying to create a file, but there is not enough space on the hard disk to do that.<br />
You can solve this problem by freeing up disk space on the AOS. After you did that, exporting will work again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.artofcreation.be/2009/06/05/error-code-122-while-exporting-xpo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
