![]() |
| | #2 (permalink) |
| Junior Member Casual Browser | Hmmm, I'm not really sure how to answer your question because I don't actually use it much but You can use XML to store coded data. You could even use php or asp.net to generate xml log files that are then retrieved. I'm not sure how you'd do that or choose that over using a database but I've used xml to create playlists for media players. an ASX file, which is used by Windows media player, is an xml file structure. AIML, Artificial intelligence markup language, is an example of an xml file as well. SALT uses an xml structure also. So what can you do with XML? Lots. Do I know how to code an XML parser though? No. |
| | |
| | #3 (permalink) |
| Administrator Disciple | XML stands for extensible markup language. it is a simplified SGML. To put it simple it works sort of like css. u can create ur own document type definitions with it that are called entities. in that document type u can create ur own tag something like <.bighshit> that would allow u to take a shortcut instead of using 5 different HTML tags to create text that shows up bold, underlined, italic, blue, or whatever. I'm gonna use <bighshit> in my doc type definition and <.bighshit> is always gonna be a shortcut for me instead of using all them tags. This was a really broad explanation and i hope explaining it that way helped a little. check out http://www.xml.com/pub/a/98/10/guide1.htmlfor more info.
__________________ To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. - A list of resources for 3D Developers To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. - A list of resources for design in motion with Adobe After Effects To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. - Usefully resources for freelance web developers To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. - Tips and discussion about search engine optimization To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. - Tutorials submitted by ny-dev members |
| | |
| | #4 (permalink) | |
| PHP Guru Casual Browser | * correction to above link - http://www.xml.com/pub/a/98/10/guide1.html * Quote:
Some more useful links for you: XML in 10 Points - http://www.w3.org/XML/1999/XML-in-10-points XML Activity Sheet - http://www.w3.org/XML/ and of course our friend google http://www.google.co.uk/search?sourc...what+is+xml%22 | |
| | |
| | #5 (permalink) |
| Junior Member Casual Browser Join Date: Mar 2003 Age: 26
Posts: 23
![]() | Some Definitions. XML is a subset of SGML, like HTML. You can use it in many different ways & forms, it all depends on your creative genius. :D You can use it like a storage medium, a database that stores data or you can use it to make your Website, doing away with HTML. I mean that whoever says that you need to use HTML to make a webpage is a fool. You can make a webpage in XML too & style it with CSS. I wouldn't suggest using XSL b'coz XSL uses HTML for styling. So, there are two types of stylesheets that can be used with XML, CSS & XSL. If you want to start out in XML, a good free online resource is W3Schools.
__________________ Amit To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. ~~ To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. |
| | |
| | #7 (permalink) |
| Administrator Disciple | As we all should know by now, I am the webmaster here, but really only handle the GFX end of our designs. Before a few months back I would really only get into still GFX, but with changing times I?ve had to get hip with it and learn flash. Flash is unfortunately for me, an art that carries a few coding languages with it that you must learn in order to really perfect your flash "GURUNESS" XML was one of those languages.
__________________ To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. - A list of resources for 3D Developers To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. - A list of resources for design in motion with Adobe After Effects To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. - Usefully resources for freelance web developers To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. - Tips and discussion about search engine optimization To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. - Tutorials submitted by ny-dev members |
| | |
| | #9 (permalink) |
| Senior Member Fanatic Join Date: Mar 2006 Age: 33
Posts: 414
![]() ![]() | You guys want the truth on XML...simply put..XML doesnt do anything at all. Its not like CSS, but XSL would be more like CSS. XML became popluar because it unified data transfers between platforms and languages. With XML, a windows based program can talk to a unix based program, assuming they can both parse XML... @adobe_fan - You have to learn XML or any other language to use Flash. I'm not a big fan of XML/Flash combo. Flash takes too long to parse XML..I'd rather load data from a PHP or ASP script and use Style Sheets to format it. With Flash Remoting, you can use C#, Java, etc and do some hardcore stuff. |
| | |
| | #12 (permalink) |
| Senior Member Fanatic | Another thing about XML is that it allows multiple languages to speak to each other. A way to look at this is with webservices, which are built in just about any language, and whose methods can be utilized from any language that allows you to send and recieve xml data over http.
__________________ Actionscript Developer :P ...Dope... To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. <--- yeah I'm a nooob, so what |
| | |
| | #13 (permalink) |
| Junior Member Newb Join Date: Mar 2006 Age: 34
Posts: 6
![]() | Props to Cota... He knows his stuff Just a note about why XML is used as storage... Let's say you have a database of information for a website. You may have tables of users with all of their information, or tables with forum threads and replies. This data is represented well using XML. For example... Code: <useraccounts><user></useraccounts><firstname>Bobo</firstname> <lastname>Clown</firstname></user> <user><firstname>Felix</firstname> <lastname>Cat</firstname></user> If I want to retrieve XML data, I usually use a database server like MSSQL. MSSQL and other database servers allow you to return the result of a query AS XML instead of a record object. This can be very handy when creating web services and apps, because you get the XML output with the performance of a traditional database server. My two cents anyway... Actually two cents may be a bit pricey...
__________________ Don't blame math it didn't do anything to you! To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. Last edited by danielmichel; 04-25-2006 at 11:15 AM. |
| | |
| | #14 (permalink) |
| Senior Member Fanatic | Going along with what Matt said, XML allows you to abstract how the data is stored. You can make a simple application that uses XML as it's way of reading information in, that XML file could easily be hard-coded, or it can be generated from a database or server side language.
__________________ Actionscript Developer :P ...Dope... To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. <--- yeah I'm a nooob, so what |
| | |
| | #17 (permalink) |
| Administrator Disciple | They do dont they..... They do. They work wonders with it. The products and Plugins. I love it.
__________________ To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. - A list of resources for 3D Developers To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. - A list of resources for design in motion with Adobe After Effects To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. - Usefully resources for freelance web developers To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. - Tips and discussion about search engine optimization To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. - Tutorials submitted by ny-dev members |
| | |
| | #18 (permalink) |
| Junior Member Casual Browser Join Date: Apr 2006 Age: 39
Posts: 23
![]() | I use XML every day and I love it - repeat: LOVE IT. XML allows me to define a human readable and understandable hierarchical model of anything whatsoever. I work with a fair number of companies in different market verticals and XML is just about the best way to transfer data. Essentially one partner accepts another partners document schema and builds a translation layer. Sometimes multiple partners can all agree on a standard XML structure and everyone is happy. XML allows me to further seperate the data layer from the presentation layer. SQL Server allows me to query data and return it as an XML document ready to go, meaning I needn't build a function to create XML out of recordset data. Heck, SQL Server even allows me to insert data across multiple tables direct from an XML document which I can validate with an XSD. XSL allows me to blend CSS and control flow logic. XML allows me to have disparate systems speak to one another. The one drawback to XML is weight - it CAN get heavy. But if you are working in encapsulated code and well thought out design principles then XML is great. In fact if you like slick interface design then look into AJAX - the X in AJAX is also XML. |
| | |
| | #19 (permalink) | |
| Administrator Disciple | Quote:
__________________ To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. - A list of resources for 3D Developers To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. - A list of resources for design in motion with Adobe After Effects To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. - Usefully resources for freelance web developers To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. - Tips and discussion about search engine optimization To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. - Tutorials submitted by ny-dev members | |
| | |