WareSeeker Search Software

xml


Sponsored Links
Collapse All
Software Name Software Type Category Price
1

XML DataDesk


script XML Free
View Detail
Download XML DataDeskDownload XML DataDesk
Features: Create an XSLT Map that converts source to a Result XML; Convert Relational DB schema to XML; Automatically convert SQL query to XML schema; Visually map Database to XML; Visually map XML to XML; Generate Result XML by applying XSLT Map; Based on W3C XSLT standard; Organized views for interactive mapping.
Tags:
2

eZ xml


script PHP Free
View Detail
Download eZ xmlDownload eZ xml
eZ xml is a DOM XML parser written in 100% PHP that is compatible with the libXml DOM parser. eZ xml will parse well formed XML and return an object tree. It will report errors if the XML is not well formed.
Tags:
3

GB-XML


script PHP Free Additional Info: Copyright noticions have to remain intact
View Detail
Download GB-XMLDownload GB-XML
GB-XML is a guestbook package using XML instead of a database. It features an admin area and an installer.
Tags:
4

XML.getElementsByTagName()


script Flash Free
View Detail
Download XML.getElementsByTagName()Download XML.getElementsByTagName()
This prototype extends the built-in XML object and allows you to search for a set of nodes within an XML tree. A list of nodes is returned from the method in a manner analogous to the W3C definition of getElementsByTagName.
Tags:
5

XML - Editors, Tutorials, Training, Database, XML Tools


script XML Free
View Detail
Download XML - Editors, Tutorials, Training, Database, XML ToolsDownload XML - Editors, Tutorials, Training, Database, XML Tools
One stop for XML, XML editors, XML tutorials, XML formats, define XML, XML Training, XML Databases, XML Tools, XML writers, learn XML, XML spy, XML Schema, Voice XML, XML Parsers.
Tags:
6

XML-Guestbook


script PHP Free
View Detail
Download XML-GuestbookDownload XML-Guestbook
XML-Guestbook is a tiny, light but nice & full-featured guestbook. It has a pager for large number of messages, it supports smiley images & hyperlinks within messages and uses CSS styles. When posting, malicious characters are automatically removed from messages and data can be e-mailed to administrator. It can be used more than once in a website either as a standalone page or included into another page. Messages are stored in a text file in XML format including IP, time, country & other info. Very easy installation & configuration.
Tags:
7

XML Tutorials, XMl Ebooks, XML Articles


script XML Free
View Detail
Download XML Tutorials, XMl Ebooks, XML ArticlesDownload XML Tutorials, XMl Ebooks, XML Articles
GeekArticles Database of Technology with over 1000 XML Tutorials, XMl Ebooks, XML Articles covering the similer subjects like 3G Articles, 802.11 Articles,Action Script Articles, XML Articles, ebXML Articles,Imode Articles,RSS Articles,SAX Articles, Soap Articles, UDDI Articles, VoiceXML Articles, WAP Articles, Wi-Max Articles, WML Articles, WSDL Articles and XML Ebooks.
Tags:
8

XML::All 0.02


linux Programming->Libraries Free
View Detail
Download XML::All 0.02Download XML::All 0.02
0.025 MB
XML::All is a Perl module that contains overloaded XML objects.

SYNOPSIS

use XML::All;
Â
my $xml = < < a href=/ >1 < b >2< /b > < em >3< /em >< /a > >;
Â
print $$xml; # a
print join ", ", @$xml; # 1, < b >2< /b >, < em >3< /em >
print join ", ", %$xml; # href, /
Â
print $xml->b(); # < b >2< /b >
print $xml->b() * 10; # 20
print $xml->(); # 1
Â
$$xml = link;
print $xml; # < link href=/ >...< /link >
Â
my $em = $xml->em + < hr/ >;
print $em; # < em >3< hr / >< /em >

$xml -= < em/ >;
print $xml; # < link href=/ >1 < b >2/b > < /link >

$xml->( b => sub { $$_ = em } );
print $xml; # < link href=/ >1 < em >2/em> < /link >

This module provides a handy wrapper around XML::Twig and XML::Literal to provide easy accessors to the XML structures.

Tags:
9

XML Tutorial


script XML Free Additional Info: Website
View Detail
Download XML TutorialDownload XML Tutorial
Learn how to create an XML document from scratch and find out why XML is becoming so important. Topics covered include: popular XML editors, basic XML syntax, how to properly nest your XML tags, and much more.
Tags:
10

XML::MyXML 0.03


linux Programming->Libraries Free
View Detail
Download XML::MyXML 0.03Download XML::MyXML 0.03
0.005 MB
XML::MyXML is a simple XML module.

SYNOPSIS

use XML::MyXML qw(tidy_xml xml_to_object);

my $xml = "< item >< name >Table< /name >< price >< usd >10.00< /usd >< eur >8.50< /eur >< /price >< /item >";
print tidy_xml($xml);

my $obj = xml_to_object($xml);
print "Price in Euros = " . $obj->path(price/eur)->value;

EXPORT

tidy_xml, object_to_xml, xml_to_object, simple_to_xml

FUNCTIONS

tidy_xml($rawxml)

Returns the XML string in a tidy format (with tabs & newlines)

xml_to_object($rawxml)

Creates an XML::MyXML::Object object from the raw XML provided


Tags:
11

XML Converter


script XML $100.00 Additional Info: no limitations
View Detail
Download XML ConverterDownload XML Converter
XML Converter is a data conversion software tool lets to interactively create XML data transformation. XML Converter unites data from ODBC, MS SQL Server, Oracle, MySQL databases, or from MS Office files into XML documents. It gives you ability to predefine XML transformation template scenario to create an XML with your particular multilevel tagged tree structure from a specially formatted data source.(Excel to XML, mdb to XML, csv to XML)
Tags:
12

XML Registry


script XML Free
View Detail
Download XML RegistryDownload XML Registry
The IBM XML Registry/Repository (XRR) is a data management system that manages and provides services for XML artifacts including schemes (DTD, XSD), stylesheets (XSL) and instance documents (WSDL). User can use XRR to obtain an XML artifact automatically, search or browse for an XML artifact, deposit an XML artifact with or without related data, and register an XML artifact without deposit.
Tags:
13

XML Parser


script PHP Free Additional Info: MIT
View Detail
Download XML ParserDownload XML Parser
This can be seen as XML SAX parser framework. With it, you can easily create parsers for your custom XML tags.
Tags:
14

Liquid Xml Validator


script XML Free
View Detail
Download Liquid Xml ValidatorDownload Liquid Xml Validator
Tool that validates XML documents against their schema. It uses all installed version MSXML to validate the XML document, and reports its findings. This is a useful tool when developing XML applications.
Tags:
15

XML::DT 0.45


linux Programming->Libraries Free
View Detail
Download XML::DT 0.45Download XML::DT 0.45
0.028 MB
XML::DT is a package for down translation of XML files.

SYNOPSIS

use XML::DT;

%xml=( music => sub{"Music from: $cn"},
lyrics => sub{"Lyrics from: $v{name}n"},
title => sub{ uc($c) },
-default => sub{"$q:$c"} );

print dt($filename,%xml);

ABSTRACT

This module is a XML down processor. It maps tag (element) names to functions to process that element and respective contents.

This module processes XML files with an approach similar to OMNIMARK. As XML parser it uses XML::Parser or XML::LibXML module in an independent way. At configure stage, you should choose one of the back-ends.


Tags:
16

XML? Bible


script XML Free
View Detail
Download XML? BibleDownload XML? Bible
This book takes you step by step through everything you need to know to put XML to work, from the fundamentals of the XML language to document construction and simple XML-based solutions for specialized markup problems. Numerous examples, specifications, and addresses for relevant Web sites leave no questions unanswered. Topics covered: XML background, example XML applications, type definitions (DTDs), style languages, Xlinks, Xpointers, Namespaces, application planning, and XML 1.0 specification.
Tags:
17

XML/SWF Charts


script XML Free
View Detail
Download XML/SWF ChartsDownload XML/SWF Charts
XML/SWF Charts is a simple, yet powerful tool to create attractive web charts from dynamic XML data. Create an XML source to describe a chart, then pass it to this tools flash file to generate the chart. The same tool also accepts PHP sources. XML/SWF Charts makes the best of both the XML and SWF worlds. XML provides flexible data generation, and Flash provides the best display quality.
Tags:
18

XML Viewer


script XML Free
View Detail
Download XML ViewerDownload XML Viewer
XML Viewer is used to examine the contents of an XML file in an easy-to-use environment. In addition you can make modification to the XML such as inserting and deleting items as well as adding and deleting properties to existing items.
Tags:
19

VisualScript XML 1.2


windows Software Development->File Editors $495
View Detail
Download VisualScript XML 1.2Download VisualScript XML 1.2
30.6 MB
VisualScript XML is the first visual scripting tool for XML.

Visual scripting allows you to program XML statements into graphical symbols, then simply "drag and drop" the symbols to sketch the flow of a business process.

Then the software translates that sketch into an XML script! VisualScript is a "must have" for every XML developers toolbox.

It allows you to
(1) define and propagate XML standards,
(2) rapidly prototype and demonstrate XML solutions,
(3) represent real-world hierarchy and conditional relationships in ways impossible with forms, and
(4) help business users translate their process knowledge into XML. VisualScript is to XML what FrontPage was to HTML.

VisualScript XML provides the following features and benefits: -"Intelligent" connectors help you quickly create diagrams;

- Save your own libraries of re-usable, programmed symbols; - Works with any variety of XML (or any other scripting language); - Generate XML in any number of different languages from the same diagram; - Easily add your own custom models to the user interface; - Support for external include files; - Automatic statement ordering, including hierarchy; - Automatically validate your XML scripts for proper syntax and correspondence with schema; - Includes thousands of built-in symbols ready to be programmed with your XML code, making it simple to generate XML from virtually any type of diagram.

Download the free 30-day trial of VisualScript XML today.

Tags:
20

XML::Genx 0.21


linux Programming->Libraries Free
View Detail
Download XML::Genx 0.21Download XML::Genx 0.21
0.037 MB
XML::Genx is a simple, correct XML writer.

SYNOPSIS

use XML::Genx;
my $w = XML::Genx->new;
eval {
# < foo >bar< /foo >
$w->StartDocFile( *STDOUT );
$w->StartElementLiteral( foo );
$w->AddText( bar );
$w->EndElement;
$w->EndDocument;
};
die "Writing XML failed: $@" if $@;

This class is used for generating XML. The underlying library (genx) ensures that the output is well formed, canonical XML. That is, all characters are correctly encoded, namespaces are handled properly and so on. If you manage to generate non-well-formed XML using XML::Genx, please submit a bug report.

The API is mostly a wrapper over the original C library. Consult the genx documentation for the fine detail. This code is based on genx beta5.


Tags:

My Software


You have not saved any software. Click "Save" next to each software to save it to your software basket