[development-axapta] XML file parsing

2008-08-28 Thread James Flavell
Hi everyone, I am needing to kick start some investigation into reading in an XML file to AX can anyone direct me to code or any web site with useful information. I understand XML and the schema etc but wondering is there any parsing engine and examples to get me started in AX? Thanks James

Re: [development-axapta] XML XSLT Formating in Excel 2007

2008-02-10 Thread Aji Sarosa
Hi, It seems like you are facing leading zeros problem. Please check the following links for further suggestions: http://support.microsoft.com/kb/214233 http://support.microsoft.com/kb/81518 http://pubs.logicalexpressions.com/pub0009/LPMArticle.asp?ID=146 I hope your file will look more

[development-axapta] XML XSLT Formating in Excel 2007

2008-02-08 Thread tavocol2002
Hi. A few weeks ago i started to use XML to generate massive data, because the use of COM Excel was too slow. Now i'm generating the same data result 10 times faster than COM Excel. The Question :D I'm generating an XML file trough AX, i have the XSD and XSLT to visualize the file in a beauty

[development-axapta] XML Document parse which is on web

2006-11-28 Thread Ramazan G�RG�N
Hi all, I want to directly load and parse XML document which is on web and get data from it. Can I use XMLDocument Class for this. I know we can use this class files which our local computer. How can I do this ? Ramazan [Non-text portions of this message have been removed]

[development-axapta] XML / WebService

2006-06-02 Thread Mike Savage
I am trying to pass some XML to a webservice and keep getting the following message: ?xml version=1.0 encoding=utf-8? soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/ xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance xmlns:xsd=http://www.w3.org/2001/XMLSchema soap:Body

[development-axapta] XML invoice

2006-04-07 Thread sherif
Hi everybody, does anyone knows how to setup axapta to send invoices with xml. May be there is some kind of documentation ? best regards, YAHOO! GROUPS LINKS Visit your group "development-axapta" on the web. To unsubscribe from this group, send an email

[development-axapta] XML from Axapta..Urgent

2006-02-17 Thread Sandhya Varshini
Hi Everybody, I am new to axapta.But my client asked me to create a XML file from Axapta.Actually in a form, when a check a control, during that time the record should update and generate a xml file and store in a table.Can anybody tell me how to proceed with.I have an idea to write the

Re: [development-axapta] XML generation when combo value changes..

2006-02-17 Thread Matrish Mangal
Hi Manoj, can you tell me what is the structure of XML file. Is there any specific client defined format of XML file. A simple XML file can be generated for any table using method xml of that that table. for that you have to use following code segment tableName.xml(); If you want to generate

[development-axapta] XML generation when combo value changes..

2006-02-15 Thread manojkumar_asp
Hi all, I got a requirement like this.when the item status changed to Sell-only,where item status is a combo, then a XML file shud be generated during record updating.Anybody have worked in xml generation from axapta? Please help regards, Manoj SPONSORED

RE: [development-axapta] XML in Axapta

2006-02-13 Thread Bruno Max Sørensen
To: development-axapta@yahoogroups.com Subject: [development-axapta] XML in Axapta I try to create the following XML-file from Axapta: ?xml version=1.0 encoding=ISO-8859-1? Root/Root My problem is how to create the first line of the file. I miss the method XMLDocument.createXMLDeclaration in Axapta which

Re: [development-axapta] XML in Axapta

2006-02-09 Thread LarsBMikkelsen
XMLDocument XMLDocument = new XMLDocument(); XMLDocument.appendChild(XMLDocument.createProcessingInstruction(xml,'version=1.0 encoding=ISO-8859-1')); XMLDocument.appendChild(XMLDocument.createElement('Root')); XMLDocument.save(test.xml);

[development-axapta] XML - XPath Axes

2005-11-30 Thread Morten Aasheim
I'm working on a XML project in Ax 3.0. I'm having problems with querying the document. This works fine: return xmlNode.selectSingleNode(strFmt('[EMAIL PROTECTED]'%1\']',_fld)).text(); But if I try ex: return xmlNode.selectSingleNode('child::node()').text(); or return

[development-axapta] XML - digitally signed

2005-10-29 Thread drescher_r
Hi! I'm working on an export functionality, which exports invoice data from axapta to an xml file. The result is a valid xml. Now, Austrian law states, that electronically transmitted invoices have to wear a digital certificate. I looked for digitally signed XML data and found a document

RE: [development-axapta] XML

2005-04-06 Thread Lars Mikkelsen
for samples of using MSXML. It should be pretty easy to translate VB samples if you can't find any Axapta samples. _ From: Sandeep Kr. Shukla [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 05, 2005 8:49 AM To: development-axapta@yahoogroups.com Subject: RE: [development-axapta] XML

RE: [development-axapta] XML

2005-04-06 Thread LarsBMikkelsen
-Original Message- From: studlee15 [mailto:[EMAIL PROTECTED] Sent: Monday, April 04, 2005 7:04 PM To: development-axapta@yahoogroups.com Subject: [development-axapta] XML I have the task of importing data using an XML file. I have done this before at me previous job, but I cannot recall quite

RE: [development-axapta] XML

2005-04-05 Thread Sandeep Kr. Shukla
: [development-axapta] XML I have the task of importing data using an XML file. I have done this before at me previous job, but I cannot recall quite how I did it. Does anyone of any example of how to read through an XML file? Thanks. Yahoo! Groups Links

[development-axapta] XML

2005-04-04 Thread studlee15
I have the task of importing data using an XML file. I have done this before at me previous job, but I cannot recall quite how I did it. Does anyone of any example of how to read through an XML file? Thanks. Yahoo! Groups Links To visit your group on the web, go

[development-axapta] XML file filled with Axapta data

2004-08-10 Thread ax
Hello, I have i little problem here and i'd like you to give me some suggestions how to solve it... I have xml file generated from some program and i need to fill this file with data, taken from Axapta. How could i do that??? One method is to read this file as a text, split it into static

[development-axapta] xml namespace

2004-07-20 Thread byteway_so
Hi all, Has anyone of you have a clue on how to adjust the namespace tag when creating a XML File? Here is the code to create a XML Node, this node is then added to an xmlDocument instance. xmlNode = xmlDoc.createNode (XMLNodeType::ELEMENT,#XMLTagMacro,'xsi=http://www.w3.org/2001/XMLSch

RE: [development-axapta] XML problems

2004-05-25 Thread Holger K. Pedersen
Gateway works, by looking at the xCBL classes etc. in Axapta AOT. look at http://www.xcbl.org/ for more details. I hope this helps to your understanding ;-) From: ddjy [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [development-axapta] XML problems Date: Wed

[development-axapta] XML problems

2004-05-18 Thread ddjy
Hi all I tryed to include a scema (AxaptaOrder.xml from distributive disk\Import Data\Commerce Gateway\Document Definiton) to C# project... VS.NET refused to recognize this file as a schema. Ok, I created an XML file with test PO and tried to include it in the project and to create a