Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.480.055 Times

Perl Xml Create Xsd freeware
Filter: All | Freeware | Demo
 

Perl Xml Create Xsd

1 2 3 4 5 > 
Released: July 16, 2012  |  Added: July 16, 2012 | Visits: 525

Chilkat Perl XML Library Perl XML library for parsing and creating XML. Advanced API for XML compression, XML encryption, and handling XML binary content. Fully internationalized to handle any language / character encoding. Platforms: Windows

License: Freeware Size: 1.91 MB Download (49): Chilkat Perl XML Library Download

Added: May 13, 2010 | Visits: 1.147

XML::DOM::Lite XML::DOM::Lite is a Lite Pure Perl XML DOM Parser Kit. SYNOPSIS # Parser use XML::DOM::Lite qw(Parser :constants); $parser = Parser->new( %options ); $doc = Parser->parse($xmlstr); $doc = Parser->parseFile(/path/to/file.xml); # strip whitespace (can be about 30% faster) $doc =... Platforms: *nix

License: Freeware Size: 30.72 KB Download (97): XML::DOM::Lite Download

Added: January 10, 2010 | Visits: 1.239

XML::ApacheFOP XML::ApacheFOP is a Perl module that can access Apache FOP from Perl to create PDF files using XSL-FO. SYNOPSIS use XML::ApacheFOP; my $Fop = XML::ApacheFOP->new(); # create a PDF using a xml/xsl tranformation $Fop->fop(xml=>"foo.xml", xsl=>"bar.xsl", outfile=>"temp1.pdf") || die "cannot... Platforms: *nix

License: Freeware Size: 7.17 KB Download (100): XML::ApacheFOP Download

Added: January 09, 2010 | Visits: 997

XML::Mini XML::Mini is a Perl implementation of the XML::Mini XML create/parse interface. SYNOPSIS use XML::Mini::Document; use Data::Dumper; ###### PARSING XML ####### # create a new object my $xmlDoc = XML::Mini::Document->new(); # init the doc from an XML string... Platforms: *nix

License: Freeware Size: 34.82 KB Download (95): XML::Mini Download

Added: March 16, 2010 | Visits: 882

XML::SAX::Intro XML::SAX::Intro is an Introduction to SAX Parsing with Perl. XML::SAX is a new way to work with XML Parsers in Perl. In this article well discuss why you should be using SAX, why you should be using XML::SAX, and well see some of the finer implementation details. The text below assumes some... Platforms: *nix

License: Freeware Size: 58.37 KB Download (101): XML::SAX::Intro Download

Released: October 18, 2007  |  Added: October 28, 2007 | Visits: 6.169

Liquid XML Studio Liquid XML Studio is a FREE XML Schema Editor, and much more. Simple enough for new users to pick up quickly and comprehensive enough for experienced users deal with the advanced features of the XSD standard. A fully featured XML Development Studio:- - Graphical and Text based XML... Platforms: Windows

License: Freeware Size: 9.4 MB Download (968): Liquid XML Studio Download

Released: December 18, 2012  |  Added: December 18, 2012 | Visits: 452

XML Access Generator The aim of this Project is to generate JAVA source code out of a xml shema(xsd) to access a xml file which is conform to the used shema. We also provide a GUI (Graphical User Interface) to offer an easy to use tool. Platforms: Windows, Mac, Linux

License: Freeware Size: 43.85 KB Download (48): XML Access Generator Download

Added: March 16, 2010 | Visits: 1.606

QOF Generator QOF Generator is a project that generates C object source code from HTML/PHP or Perl/XML. Generating new objects for the Query Object Framework is repetitive, tedious, and time consuming. Qof Generator automates this process in PHP to build a working test program linked against QOF. Objects... Platforms: *nix

License: Freeware Size: 17.41 KB Download (151): QOF Generator Download

Released: July 05, 2012  |  Added: July 05, 2012 | Visits: 696

Flat-File Forum Flat-File Forum (FFF) is a project being written in perl to create a forum-like messaging system without the need of a database (using flat, text files). Platforms: Windows, Mac, Linux

License: Freeware Size: 11.89 KB Download (48): Flat-File Forum Download

Added: January 18, 2010 | Visits: 1.601

XML::Writer::Simple XML::Writer::Simple is a Perl module to create XML files easily! SYNOPSIS use XML::Writer::Simple dtd => "file.dtd"; print para("foo",b("bar"),"zbr"); USAGE This module takes some ideas from CGI to make easier the life for those who need to generated XML code. You can use the module in... Platforms: *nix

License: Freeware Size: 4.1 KB Download (97): XML::Writer::Simple Download

Added: January 10, 2010 | Visits: 949

XML::FOAFKnows::FromvCard XML::FOAFKnows::FromvCard is a Perl module to create simple foaf:knows records from vCards. SYNOPSIS use XML::FOAFKnows::FromvCard; # read a vCard file into $data my $formatter = XML::FOAFKnows::FromvCard->format($data); print $formatter->fragment; The foafvcard script in the... Platforms: *nix

License: Freeware Size: 10.24 KB Download (100): XML::FOAFKnows::FromvCard Download

Added: August 19, 2008 | Visits: 1.620

Freeware XMLFox XML/XSD Editor RustemSoft presents Freeware XML editing and validation tool XMLFox is a freeware editor for creating valid well-formed XML documents and/or XSD Schema. Robust XML editing and validation tool XMLFox is a freeware editor for creating valid well-formed XML documents and/or XSD Schema. XMLFox schema... Platforms: Windows

License: Freeware Size: 936 KB Download (145): Freeware XMLFox XML/XSD Editor Download

Added: June 20, 2010 | Visits: 1.143

XML::Descent XML::Descent is a Perl module for recursive descent XML parsing. SYNOPSIS use XML::Descent; # Create parser my $p = XML::Descent->new({ Input => $xml }); # Setup handlers $p->on(folder => sub { my ($elem, $attr) = @_; $p->on(url => sub { my ($elem, $attr) = @_; my $link = { name... Platforms: *nix

License: Freeware Size: 9.22 KB Download (93): XML::Descent Download

Added: July 07, 2010 | Visits: 891

XML::Namespace XML::Namespace is a Perl module with simple support for XML Namespaces. SYNOPSIS Example 1: using XML::Namespace objects use XML::Namespace; my $xsd = XML::Namespace->new(http://www.w3.org/2001/XMLSchema#); # explicit access via the uri() method print $xsd->uri(); #... Platforms: *nix

License: Freeware Size: 4.1 KB Download (94): XML::Namespace Download

Added: January 08, 2010 | Visits: 1.032

XML::Mini::Document XML::Mini::Document is a Perl implementation of the XML::Mini Document API. SYNOPSIS use XML::Mini::Document; use Data::Dumper; ###### PARSING XML ####### # create a new object my $xmlDoc = XML::Mini::Document->new(); # init the doc from an XML string $xmlDoc->parse($XMLString);... Platforms: *nix

License: Freeware Size: 34.82 KB Download (92): XML::Mini::Document Download

Released: March 28, 2012  |  Added: April 09, 2012 | Visits: 1.724

Freeware XMLFox XML Editor RustemSoft presents Freeware XML editing and validation tool XMLFox is a freeware editor for creating valid well-formed XML documents and/or XSD Schema. New version 5.0 of XMLFox issued. It converts XML files into latest versions of MS Office file formats now. XML conversion capabilities have... Platforms: Windows

License: Freeware Size: 1.71 MB Download (121): Freeware XMLFox XML Editor Download

Released: May 08, 2014  |  Added: June 26, 2014 | Visits: 1.823

Freeware XML Editor Freeware XMLFox XML Editor now comes in four editions. XMLFox is free for non-commercial environments and can be downloaded without registration. Robust XML editing and validation tool XMLFox is a freeware editor for creating valid well-formed XML documents and/or XSD Schema. XMLFox schema editor... Platforms: Windows

License: Freeware Size: 914.06 KB Download (57): Freeware XML Editor Download

Added: January 18, 2010 | Visits: 1.558

XML::Generator::vCard::RDF XML::Generator::vCard::RDF is a Perl module that can generate RDF/XML SAX2 events for vCard 3.0 SYNOPSIS use XML::SAX::Writer; use XML::Generator::vCard::RDF; my $writer = XML::SAX::Writer->new(); my $driver = XML::Generator::vCard::RDF->new(Handler=>$writer);... Platforms: *nix

License: Freeware Size: 9.22 KB Download (173): XML::Generator::vCard::RDF Download

Added: January 18, 2010 | Visits: 1.344

Data::Phrasebook::Loader::XML Data::Phrasebook::Loader::XML Perl module can abstract your phrases with XML. SYNOPSIS use Data::Phrasebook; my $q = Data::Phrasebook->new( class => Fnerk, loader => XML, file => phrases.xml, dict => Dictionary, # optional ); OR my $q = Data::Phrasebook->new( class => Fnerk,... Platforms: *nix

License: Freeware Size: 17.41 KB Download (120): Data::Phrasebook::Loader::XML Download

Added: January 18, 2010 | Visits: 944

XML::DocStats XML::DocStats is a Perl module to produce a simple analysis of an XML document. SYNOPSIS Analyze the xml document on STDIN, the STDOUT output format is html: use XML::DocStats; my $parse = XML::DocStats->new; $parse->analyze; Analyze in-memory xml document: use XML::DocStats; my... Platforms: *nix

License: Freeware Size: 27.65 KB Download (88): XML::DocStats Download

1 2 3 4 5 >