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.299.005 Times

Php Xml Parser Example Xmlrpc Php freeware
Filter: All | Freeware | Demo
 

Php Xml Parser Example Xmlrpc Php

1 2 3 4 5 > 
Added: May 10, 2013 | Visits: 536

GSA Simple XML Parser GSA Simple XML Parser is a XML DOM style parser class written in PHP. This class can inport XML data using expat or regex.



Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (63): GSA Simple XML Parser Download

Added: July 13, 2010 | Visits: 2.072

XML::Parser::YahooRESTGeocode SYNOPPSIS use LWP::Simple use XML::Parser; use XML::Parser::YahooRESTGeocode; #connect to yahoo geocode service my $url = http://api.local.yahoo.com/MapsService/V1/geocode; my $get = appid=YahooDemo&street=701+First+Street&city=Sunnyvale&state=CA; #call yahoo geocode service my $xml =...





Platforms: *nix

License: Freeware Size: 4.1 KB Download (116): XML::Parser::YahooRESTGeocode Download

Added: February 12, 2010 | Visits: 1.118

XML::Parser::Style::Stream XML::Parser::Style::Stream is a Stream style for XML::Parser. SYNOPSIS use XML::Parser; my $p = XML::Parser->new(Style => Stream, Pkg => MySubs); $p->parsefile(foo.xml); { package MySubs; sub StartTag { my ($e, $name) = @_; # do something with start tags } sub EndTag { my ($e,...


Platforms: *nix

License: Freeware Size: 225.28 KB Download (105): XML::Parser::Style::Stream Download

Added: January 25, 2010 | Visits: 971

XML::Parser::EasyTree XML::Parser::EasyTree is an easier tree style for XML::Parser. SYNOPSIS use XML::Parser; use XML::Parser::EasyTree; $XML::Parser::Easytree::Noempty=1; my $p=new XML::Parser(Style=>EasyTree); my $tree=$p->parsefile(something.xml); XML::Parser::EasyTree adds a new "built-in" style called...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (96): XML::Parser::EasyTree Download

Added: March 23, 2010 | Visits: 870

Polymorphic XML Parser Polymorphic XML Parser is a validating XML parser for the programming language Objective Caml. In October, 1999, I started writing a validating XML parser for OCaml; the first published versions have been called "Markup" (simply because the package name was "markup"). After this parser had some...


Platforms: *nix

License: Freeware Size: 614.4 KB Download (91): Polymorphic XML Parser Download

Added: November 15, 2010 | Visits: 978

XML::Parser::PerlSAX XML::Parser::PerlSAX is a Perl SAX parser using XML::Parser. SYNOPSIS use XML::Parser::PerlSAX; $parser = XML::Parser::PerlSAX->new( [OPTIONS] ); $result = $parser->parse( [OPTIONS] ); $result = $parser->parse($string); XML::Parser::PerlSAX is a PerlSAX parser using the XML::Parser...


Platforms: *nix

License: Freeware Size: 64.51 KB Download (107): XML::Parser::PerlSAX Download

Added: November 24, 2010 | Visits: 871

XML::Parser XML::Parser is a perl module for parsing XML documents. SYNOPSIS use XML::Parser; $p1 = new XML::Parser(Style => Debug); $p1->parsefile(REC-xml-19980210.xml); $p1->parse( Hello World ); # Alternative $p2 = new XML::Parser(Handlers => {Start => &handle_start, End => &handle_end,...


Platforms: *nix

License: Freeware Size: 225.28 KB Download (92): XML::Parser Download

Added: August 10, 2013 | Visits: 489

Apache Xerces C++ XML Parser Xerces-C++ is a validating XML parser written in a portable subset of C++. Xerces-C++ makes it easy to give your application the ability to read and write XML data. A shared library is provided for parsing, generating, manipulating, and validating XML documents using the DOM, SAX, and SAX2 APIs....


Platforms: C and C plus plus

License: Freeware Size: 7.1 MB Download (51): Apache Xerces C++ XML Parser Download

Added: May 29, 2013 | Visits: 607

GSA Simple XML Parser for XML Tools GSA Simple XML Parser is a XML DOM style parser class written in PHP. This class can inport XML data using expat or regex.


Platforms: PHP

License: Freeware Size: 10 KB Download (40): GSA Simple XML Parser for XML Tools Download

Released: June 12, 2012  |  Added: June 12, 2012 | Visits: 681

Chilkat Xml Parser Component Chilkat XML offers a high-performance alternative to the standard XML DOM for creating, navigating, and manipulating XML documents. The Chilkat XML parser is faster and less memory intensive, and the API is much simpler. There is only one interface, which represents a single node in a parsed XML...


Platforms: Windows

License: Freeware Size: 972.8 KB Download (436): Chilkat Xml Parser Component Download

Added: August 18, 2008 | Visits: 1.663

ASP XML Parser Component A super-fast, low-memory usage, XML parser specifically designed to be used server-side in ASP scripts. This DOM based parser is many times faster than MSXML, and consumes far less memory. Great for handling large XML data files. Also includes international character codeset conversion capability.


Platforms: Windows

License: Freeware Size: 231 KB Download (537): ASP XML Parser Component Download

Released: December 25, 2012  |  Added: December 25, 2012 | Visits: 517

Lightweight Java XML parser and classes Small footprint, fast Java XML parser. Parses to an easily manipulable nested class structure which can be converted back to formatted or unformatted XML with a single call. Uses and creates straight XML, no DTDs necessary or used.


Platforms: Windows, Mac, Linux

License: Freeware Size: 56.22 KB Download (51): Lightweight Java XML parser and classes Download

Released: June 01, 2012  |  Added: June 01, 2012 | Visits: 349

DOMIT! - A DOM XML Parser for PHP DOMIT! is a Document Object Model (DOM) XML parser for PHP, written purely in PHP. It is mostly compliant with the DOM Level 2 specification.


Platforms: Windows, Mac, Linux

License: Freeware Size: 154.6 KB Download (52): DOMIT! - A DOM XML Parser for PHP Download

Added: May 10, 2013 | Visits: 397

KXParse KXParse is a PHP-based, light-weight XML parser. This is a useful tool for you when you deal with XML files. It is compatible with all modern web browsers.


Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (65): KXParse Download

Added: June 05, 2010 | Visits: 1.112

XML::Checker::Parser XML::Checker::Parser is an XML::Parser that validates at parse time. SYNOPSIS use XML::Checker::Parser; my %expat_options = (KeepCDATA => 1, Handlers => [ Unparsed => &my_Unparsed_handler ]); my $parser = new XML::Checker::Parser (%expat_options); eval { local $XML::Checker::FAIL =...


Platforms: *nix

License: Freeware Size: 368.64 KB Download (104): XML::Checker::Parser Download

Added: July 19, 2010 | Visits: 1.020

Parsifal XML Parser Parsifal is a validating XML 1.0 parser written in ANSI C. Parsifal API is based on SAX2. Parsifal can be used for parsing XML based messages (such as REST and RSS) and for application specific data processing e.g. config files, data files etc. Parsifal can also be used for document-oriented...


Platforms: *nix

License: Freeware Size: 757.76 KB Download (103): Parsifal XML Parser Download

Added: February 21, 2010 | Visits: 858

XML::Bare XML::Bare is a minimal XML parser implemented via a C state engine. SYNOPSIS use XML::Bare; my $xml = new XML::Bare( text => Bob ); # Parse the xml into a hash tree my $root = $xml->parse(); # Print the content of the name node print $root->{xml}->{name}->{value}; #...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (88): XML::Bare Download

Added: May 10, 2013 | Visits: 468

xml parser and generator Sometimes one needs a quick and dirty solution for parsing and generating xml. This script uses only the python parser itself for the parsing of xml. xml code is translated to valid python code and then evaluated. The generated objects can then be manipluated within python itself and treated as...


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (55): xml parser and generator Download

Added: April 14, 2010 | Visits: 847

Bare XML Bare XML project is a XML parser with all primary parsing done via a simple state engine with about 20 or so different states. A tree structure is created during parsing, with all node names and values linked via pointers directly into the original text buffer. As such, Bare XML is extremely...


Platforms: *nix

License: Freeware Size: 24.58 KB Download (88): Bare XML Download

Added: June 06, 2010 | Visits: 1.221

SVG::Parser SVG::Parser is a Perl module with XML Parser for SVG documents. SYNOPSIS #!/usr/bin/perl -w use strict; use SVG::Parser; die "Usage: $0 n" unless @ARGV; my $xml; { local $/=undef; $xml=<>; } my $parser=new SVG::Parser(-debug => 1); my $svg=$parser->parse($xml); print...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (146): SVG::Parser Download

1 2 3 4 5 >