Prolog and XML Programming as a Tool for Web Search

Page 1

IJIRST –International Journal for Innovative Research in Science & Technology| Volume 3 | Issue 09 | February 2017 ISSN (online): 2349-6010

Prolog and XML Programming as a Tool for Web Search Suraj Indiver M. Tech. Scholar Department of Computer Science & Engineering Sachdeva Institute of Technology, Mathura, India. Dr. A.P.J. AKTU, Lucknow, India

Abstract In this paper we discuss prolog and xml as a tool for web search. An XML is the standard for document data interchange and storage now-a-days. Several libraries for XML processing like SAX and DOM are available for many programming languages. Prolog permits to program either declaratively or procedurally. The basis of prolog is formed with first order predicate logic (FOPL). First order predicate logic is expresses with a set of predicate symbols and with a set of connectives. A restricted version of the clausal form which is based on FOPL is used in Prolog. PLXML is a tool in which a module called xml.pl is used to parse XML document with prolog. This module provides the prolog applications an interface to XML document with a Document Value Model. Keywords: Prolog, PLXML, XML, XML Parser, XML Element _______________________________________________________________________________________________________ I.

INTRODUCTION

An XML is the standard for document data interchange and storage now-a-days. Several libraries for XML processing like SAX and DOM are available for many programming languages.XML processing specific programming languages are established. It is observed that XML data is normally described by tree structures and logic programming deals with trees naturally as terms. This property provides a strong belief that XML processing could be performed naturally in logic programming. The objective is to improve XML processing for web search by using the logic programming paradigm by exploring the link between the tree representation and unification. Prolog is used as a logic programming tool in the model. Logic program could also be used to create the dynamic web pages based on the queries. In this chapter the basic introduction for XML, logic programming, Prolog (logic Programming tool) is discussed first. Then it is followed by a method that could be used for the translation of the XML document to Prolog. This chapter also describes how the query is processed with such prolog language with the given XML document. Logic programming is useful for searching the XML document for the given query and for creating dynamic web pages based on the user needs (Hosoya 2003). XML An XML is a domain specific language for processing the structured documents. Now a day’s XML becomes the standard data interchange format by variety of applications even though it is mainly used in publishing industry. XML documents are considered as a tree structure whose nodes are the elements. The content of the XML document is classified into two basic types and they are listed as elements (XML tags) and plain text. Every element in XML is consisting of two tags called as a start tag and an end tag. Every element may be nested to any number of levels by other elements. Nesting of elements could be done at any number of levels in XML. All XML documents contain a unique top level element called root which encloses all other XML elements. The XML document given below is used as specific Contact book application (Jorge Coelho and Mario 2003). <Contact> <Firstname>Jegan</Firstname> <Localaddress>Delhi</Localaddress> <phonenumber> <homephone>12345678</homephone> <mobilenumber>87654321</mobilenumber> </phonenumber> <emailId>jegan@mailserver.in</emailId> <Firstname>Sita</Firstname> <Localaddress>Calcutta</Localaddress> <Localaddress>Howra</Localaddress> <phonenumber> <homephone>12457834</homephone> </phonenumber>

All rights reserved by www.ijirst.org

4


Turn static files into dynamic content formats.

Create a flipbook
Issuu converts static files into: digital portfolios, online yearbooks, online catalogs, digital photo albums and more. Sign up and create your flipbook.