From: <vb...@us...> - 2002-09-04 13:37:01
|
Update of /cvsroot/webnotes/webnotes/sample In directory usw-pr-cvs1:/tmp/cvs-serv6169/sample Added Files: webservices.php xml.php Log Message: - Fixed a typo in a variable name in all localisation files. - Clean up of variables before saving to the database. - The directory separators were not handled correctly when passed on the url. - Changed some "&" to "& a m p ;" - Renamed a configuration variable ($p_notes_order) to ($g_notes_order). - Changed the contents of the note to be preformatted when displayed. - Added a directory with two sample files, to be used for demonstration / testing. --- NEW FILE: webservices.php --- <html> <head> <title>Web services (from Webopedia)</title> </head> <body> <h1>Web services</h1> <p>The term Web services describes a standardized way of integrating Web-based applications using the XML, SOAP, WSDL and UDDI open standards over an Internet protocol backbone. XML is used to tag the data, SOAP is used to transfer the data, WSDL is used for describing the services available and UDDI is used for listing what services are available. Used primarily as a means for businesses to communicate with each other and with clients, Web services allow organizations to communicate data without intimate knowledge of each other's IT systems behind the firewall.</p> <p>Unlike traditional client/server models, such as a Web server/Web page system, Web services do not provide the user with a GUI. Web services instead share business logic, data and processes through a programmatic interface across a network. The applications interface, not the users. Developers can then add the Web service to a GUI (such as a Web page or an executable program) to offer specific functionality to users.</p> <p>Web services allow different applications from different sources to communicate with each other without time-consuming custom coding, and because all communication is in XML, Web services are not tied to any one operating system or programming language. For example, Java can talk with Perl, Windows applications can talk with UNIX applications.</p> <p>Web services do not require the use of browsers or HTML.</p> <p>Web services are sometimes called application services.</p> <p>The above definition was copied from <a href="http://www.webopedia.com">Webopedia</a>.</p> <?php include("../core/api.php"); # replace with actual path print_web_notes( __FILE__, $PHP_SELF ); ?> </body> </html> --- NEW FILE: xml.php --- <html> <head> <title>XML (from Webopedia)</title> </head> <body> <h1>XML</h1> <p>Short for Extensible Markup Language, a specification developed by the W3C. XML is a pared-down version of SGML, designed especially for Web documents. It allows designers to create their own customized tags, enabling the definition, transmission, validation, and interpretation of data between applications and between organizations.</p> <p>The above definition was copied from <a href="http://www.webopedia.com">Webopedia</a>.</p> <?php include("../core/api.php"); # replace with actual path print_web_notes( __FILE__, $PHP_SELF ); ?> </body> </html> |