Sign in
MSDN Blogs
Microsoft Blog Images
More ...
Florian's weblog
My first experience with Microsoft Dynamics AX, BC.Net and the Enterprise Portal at Microsoft.
RSS for posts
Search
Tags
AIF
Ax2009
Ax4
Ax-Client
AxToolbox
Ax-Troubleshooting
BC.Net
C#
EP
Fun
MS CSS support
Programming
The CLR for X++ programmers
Thoughts
Troubleshooting
X++
Archives
Archives
July 2010
(1)
June 2010
(3)
February 2010
(1)
January 2010
(3)
November 2009
(1)
August 2009
(9)
May 2009
(1)
March 2009
(2)
February 2009
(1)
January 2009
(4)
December 2008
(8)
November 2008
(8)
October 2008
(4)
September 2008
(4)
August 2008
(10)
July 2008
(8)
Common Tasks
Blog Home
Email Blog Author
About
RSS for comments
RSS for posts
Atom
MSDN Blogs
>
Florian's weblog
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Florian's weblog
Limitations of the Dynamics Ax service references
Posted
over 3 years ago
by
flo2005
0
Comments
The article about service-references limitations is available on my new blog.
Florian's weblog
Cross domain access to AIF Web Services (Dynamics Ax 2009)
Posted
over 3 years ago
by
flo2005
0
Comments
I published the new article on my new blog .
Florian's weblog
.net programming for Dynamics AX developers slides
Posted
over 3 years ago
by
flo2005
0
Comments
I published the slides from my last years presentation on my new blog . This is has been the working draft, but it contains much more slides as the final version, so I’m publishing this one.
Florian's weblog
Installing the COM Business Connector
Posted
over 3 years ago
by
flo2005
0
Comments
I published the new article on my new blog .
Florian's weblog
My blog is Moving
Posted
over 3 years ago
by
flo2005
0
Comments
I’m moving to Blogger since I’m writing these articles for personal purposes and I want to have as much control as possible on my postings. So Please be aware that I will will publish my next articles on the new blog .
Florian's weblog
Enterprise Portal license required for workflows with dynamics Ax 2009
Posted
over 3 years ago
by
flo2005
2
Comments
Dynamics Ax workflow does require the Enterprise Portal (EP) license. License changes since Dynamics Ax 4 can be found here . Please double-check that the EP license is well configured when the BC.Net throws the following exception (can be found in the...
Florian's weblog
Delete TEMP files when sending mails with attached files
Posted
over 3 years ago
by
flo2005
0
Comments
Attaching Documents is a frequently used functionality in Ax (PDF is just an example, but it is true for any attached file): That is why tmp-files, that are generated each time you are using this, might consume quickly an important part of your hard disk...
Florian's weblog
Working with Images (BLOBS) between Dynamics Ax and external applications (UPDATED: 06/01/2010)
Posted
over 3 years ago
by
flo2005
5
Comments
(updated the 05/01/2010 and 06/01/2010) The idea Whenever you need to transfer data in a platform specific format (like Images), the easiest way of doing this is to create an envelope (in Xml) and put the data in an encoded format in this envelope. Here...
Florian's weblog
Memory leaks and profiling with .Net
Posted
over 4 years ago
by
flo2005
0
Comments
I wrote some moths ago an article about the GC and highlighted some particularities (unsafe and unmanaged code, disposing and finalizing, etc). When you are developing with .Net you will be sometimes faced to memory or resource leaks. Especially if...
Florian's weblog
IDynamicsAXExpressionBuilder returned error code 0x80131509 - reloaded
Posted
over 4 years ago
by
flo2005
0
Comments
As I already wrote it in the update of that blog entry in my first posing about this issue: The origin of this issue can be found in the method ' buildEnumerationXml ' of the class ' SysExpression ': Currently, a loop iterates until the last element:...
Florian's weblog
Importing Leads and Contacts
Posted
over 4 years ago
by
flo2005
0
Comments
You can find a very good description on our team blog (EMEA Dynamics AX Support) how to import leads and contact Xml files with Dynamics Ax 2009 here . The problem you will be faced by using this is, that you can’t import data with non Ascii characters...
Florian's weblog
Template Wizard does create SheetNames with more than 30 characters
Posted
over 4 years ago
by
flo2005
0
Comments
The Template Wizard (Administration/Periodic/Data export/import/Excel spreadsheets/Template Wizard) creates unfortunately SheetNames that might exceed 30 characters, which is not allowed by Excel and results in annoying message boxes that are requesting...
Florian's weblog
Large Xml-documents with an AIF-WebService.
Posted
over 4 years ago
by
flo2005
1
Comments
If you are faced to 'large' Xml-documents with AIF-WebServices, you might be faced to difficulties for Inbound and OutBound services. The following two points should be applied for the client app.config, if the client uses the WCF for communicating with...
Florian's weblog
‘0’-values don’t appear in Xml files generated by the AIF
Posted
over 4 years ago
by
flo2005
0
Comments
Numeric values that are 0 (not null) are not serialized and don't appear in the Xml file. The reason for this is, that the numeric types in Dynamics Ax are not nullable (must have a value) and do interpret the value 0 as a "null value" (0 as...
Florian's weblog
AIF-service call with COM and .Net Business Connector
Posted
over 4 years ago
by
flo2005
0
Comments
When executing an AIF-service with the COM and .Net Business Connector the client will not be notified about exceptions during the execution. The reason for this is, that AIF-services are always executed within a transaction ( ttslevel = 1) even when...
Florian's weblog
Request for the permission of type 'SecurityPermission' failed
Posted
over 4 years ago
by
flo2005
3
Comments
When you get the following exception while executing a report on the SSRS or within Ax: System.Security.SecurityException was unhandled Message=" Request for the permission of type 'System.Security.Permissions.SecurityPermission, mscorlib, Version...
Florian's weblog
base64Encode() of the kernel class ‘Image’ does return an empty string
Posted
over 4 years ago
by
flo2005
0
Comments
A partner asked me why the base64Encode method of the Image class does always return an empty string. In the following example: 1: Image image; 2: str sBase64Encode; 3: ; 4: image = new Image(); 5: image.loadImage(@ 'C:\sample.bmp...
Florian's weblog
Gender information in Employees-form and the Global Address Book (GAB)
Posted
over 4 years ago
by
flo2005
0
Comments
You can open the information about employees with the Global Address Book (Basic/Global Address Book) and with the Employees form (Basic/Employees). Normally it is no problem to modify data in both forms, but unfortunately this is not true for the...
Florian's weblog
IDynamicsAXExpressionBuilder returned error code 0x80131509
Posted
over 4 years ago
by
flo2005
4
Comments
In forms that are using the ActiveX-control ExpressionBuilder (like TrvPolicyForm) you might be faced to the following error message: Method 'initialize' in COM object of class 'IDynamicsAXExpressionBuilder' returned error code 0x80131509 (<unknown>...
Florian's weblog
Webcast: .Net for X++ programmers
Posted
over 4 years ago
by
flo2005
5
Comments
I will do a short Webcast about .Net basics for X++ developers which is based on the articles I posted here recently. During 1 hour I’ll talk about the basics of .Net and how to do’s. If you are a X++ programmer and you are new to .Net, this Webcast might...
Florian's weblog
Some links to IIS 7 information
Posted
over 4 years ago
by
flo2005
2
Comments
IIS 7 changed fundamentally since IIS 6. Here are some links that might help you when you feel lost with all these changes ;-) IIS 7 Links: http://technet.microsoft.com/en-us/library/cc732976.aspx ( IIS 7.0: Operations Gui de) http://www.iis.net/ConfigReference...
Florian's weblog
Deploying service references with Dynamics Ax 2009
Posted
over 4 years ago
by
flo2005
2
Comments
Service references are are great feature in Dynamics Ax 2009 and using WCF with Ax is now really easy. But unfortunately it is not easy to deploy this service reference. If you now need to deploy a service reference from the development environment to...
Florian's weblog
RPC error 1702 when calling a WinAPI method from a batch job
Posted
over 4 years ago
by
flo2005
4
Comments
You probably already noticed that error messages are sometimes not really helpful when you are trying to understand a problem. The following code creates such misleading error message: 1: public void run() 2: { 3: ; 4: if (WinApi::folderExists...
Florian's weblog
AxUpdatePortal Utility
Posted
over 4 years ago
by
flo2005
1
Comments
I just want to remind the existence of this nice little tool , which is be very useful for any deployment or redeployment of your WebParts and EP-sites. Basically it is a simple .Net command-line executable which calls the same method as the AxSetup does...
Florian's weblog
Internet Explorer 8 RC1
Posted
over 4 years ago
by
flo2005
1
Comments
Because I blogged about Google Chrome when it was getting beta, I’m doing this with the IE 8, too. You can now install the RC1 of this version, which is very close the the final version. This version is available here . The key features of this version...
Page 1 of 3 (68 items)
1
2
3