SlideShare a Scribd company logo
1 of 14
Download to read offline
IOSR Journal of Computer Engineering (IOSR-JCE)
e-ISSN: 2278-0661,p-ISSN: 2278-8727, Volume 17, Issue 3, Ver. VII (May – Jun. 2015), PP 25-38
www.iosrjournals.org
DOI: 10.9790/0661-17372538 www.iosrjournals.org 25 | Page
A Generic Open Source Framework for Auto Generation of Data
Manipulation Commands
Dr. Poornima.G. Naik1
, Dr. Kavita.S.Oza2
1
(Assistant Professor, Department of Computer Studies, CSIBER, Kolhapur, India.)
2
(Assistant Professor, Department of Computer Science, Shivaji University, Kolhapur, India)
Abstract: Free and open source technology has gained a tremendous importance in software development due
to its low cost and holds numerous other compelling advantages both from the perspective of software user and
software developer. J2EE and PHP technologies have availed a highest market share. All types of web sites
ranging from medium to large sized applications employing these technologies include ample master tables for
storing data which are subject to seldom changes. In application development, there is a lot of code repetition
in manipulation of data stored in these tables. Further, globalization demands thorough testing of web
applications for variety of web browsers depending on the client base. There is a monotonous sequence of tasks
involved, from the task of code generation, deployment, setting runtime environment to testing. Hence the
automation of these tasks enables a tremendous decrease in development time and cost. Further, customer
demands vary in choice of technology, web server and back end database management systems. Also, validation
is an integral part of any application which not only ensures that the data is present but also the valid data is
stored in the database. Any well written application should enable easy switching on and off of the validation
tests as per the requirements. To cater all these needs, in this paper, the authors have designed and implemented
a generic framework for automatic generation of data manipulation commands for variety of web servers, web
browsers and database management systems (DBMS). All the configuration information pertaining to backend
DBMS information, technology information, validation information is stored in an XML file which is parsed
using Microsoft XML Parser. Seven test cases are generated for testing the tool in various runtime environments
involving various cutting edge technologies. The model is generic and susceptible to future modifications for
incorporating new technologies.
Keywords:Open Source, JBOSS, Tomcat, JSP, Servlet, PHP, XML Parser.
I. Introduction
Software development is the core part of software engineering. It requires efficient planning for use of
technologies and human resources to enhance the quality. Software market is highly inhabited with new
technologies emerging every day. These technologies need different techniques and tools to be implemented.
Each technology has its own tool and implementation syntaxes. Thus organizations need to hire the expertise for
each technology, thus increasing the manpower and decreasing the profit. Sometimes it is the demand of the
client for particular technology thus increasing the overheads for the organizations.
Most of the technologies are used only for data manipulation and retrieval. Commonly used data
manipulation commands are viz. insert, update, delete , sort etc. These operations are vital part of any software
project development. Implementation for theses operations on the database changes as per the type of back end
being used. Same code with little syntactical changes is written for these operations causing redundancy of code.
Thus to reduce the code redundancy there is need for generic interface to databases which can provide access to
any web servers, web browsers and database management systems (DBMS) as per clients requirements. Here a
generic interface for data manipulation has been generated. which will provide the common platform for data
manipulation for different backend technologies.
Paper is organized as follows: Section 2 puts light on related work in the domain, section 3 discusses
the market position of different technologies, section 4 describes the proposed generic framework, Section 5
focuses on results and discussions and finally section 6 talks about conclusions and future work.
II. Literature Survey and Prior Art
Generic platform development is an emerging research topic . Not much work has been carried out in
this domain due to new technologies coming every fortnight. It is difficult to incorporate future technologies. A
generic data access layer for .Net called DALC4NET has been discussed by [1] It allows data access from
databases like SQL Server, Oracle, MySQL, Microsoft Access, and Microsoft Excel. A Model driven
engineering based framework has been proposed by [2]. They have provided information integration through
linked open data for systematic deployment and evaluation of different models. They have also discussed the
relationship between different models and software tools. A generic framework for modeling physical as well as
A Generic Open Source Framework for Auto Generation of Data Manipulation Commands
DOI: 10.9790/0661-17372538 www.iosrjournals.org 26 | Page
logical resources has been proposed by [3]. Standard means have been provided to transfer UML models to real
time systems. There are many user interface description languages. a detail analysis of the salient features of
these languages has been carried out by [4] to predict where they should be used. A user centric access control
approach based on annotation based avccess has been proposed by [5], to help users to select appropriate
contacts to grant access to resources for annotating collaborative relationships. [6] has described a generic
framework used in the MR based AMIRE (Authoring MixedReality) project. The proposed framework can be
used in every 3D based application for easy communication between the objects (game objects). Generic tool for
software quality assurance has been developed by [7], which can be used across multiple languages. Problems
and challenges faced during development of generic framework to enable design, modeling and simulation of
large scale heterogeneous systems is discussed by [8]. Design and implementation of Maltilda-based virtual
machines for distributed software development has been discussed in [9]. SimGrid framework which is based on
simulation for evaluating cluster, grid and P2P algorithms has been discussed by [10]. It also discusses the key
features and benefits of using SimGrid framework.
III. Technology in Market
A report by W3Techs shows usage statistics and market share data of PHP on web. According to their
survey, PHP version 5 has been used by 81.9% of all the websites for server-side programming.[11]. Fig. 1
shows the historical trend in the percentage of websites using PHP
Fig. 1 Historical Trend of Websites using PHP
IV. Market position
Fig. 2 shows the market position of PHP in terms of popularity and traffic compared to the most
popular server-side programming languages.Our dedicated market survey shows more server-side languages
market data.
Fig. 2 Market Position of Open Source Technologies
A Generic Open Source Framework for Auto Generation of Data Manipulation Commands
DOI: 10.9790/0661-17372538 www.iosrjournals.org 27 | Page
V. Proposed Method
5.1 Generic Application Framework
In the current work, the authors have designed and implemented a generic framework for automatic
generation of data manipulation commands for variety of web servers, web browsers and database management
systems (DBMS). All the configuration information pertaining to backend DBMS information, technology
information, validation information is stored in an XML file which is parsed using Microsoft XML Parser.The
technology information involves persentation tier technology used, web server and web browser employed etc.,
The end user can select among one of the presentation tier technologies JSP, Servlet or PHP. The choice of the
web server and web browser can be one of Tomcat, JBOSS or XAMP and Mozilla FireFox, Internet Explorer or
Google Chrome, respectively. Presently, we have explored only two database management systems, viz., MS-
Access and MySql. The user can either switch off validation tests or switch on client-side validations. Server-
side validations are currently not incorporated. The first iteration of the prototype only supports „RequiredField‟
and „Range‟ validation criteria. The HTML file is parsed using text parser to locate control information.
ResultSetMetaData class available in java.sql package is employed for locating column relatd information such
as column name and column type. The mapping information is generated on fly and stored in mapping.xml file.
To set up the runtime environment a batch file is generated dynamically in each case. Fig. 3 reveals a framework
for auto generation of data manipulation commands. The corresponding control flow logic is depicted in Fig. 4
a)-Fig. 4 d).
Fig.3 Generic Framework for Auto Generation of Data Manipulation Commands
A Generic Open Source Framework for Auto Generation of Data Manipulation Commands
DOI: 10.9790/0661-17372538 www.iosrjournals.org 28 | Page
5.2 Control Flow Logic
A Generic Open Source Framework for Auto Generation of Data Manipulation Commands
DOI: 10.9790/0661-17372538 www.iosrjournals.org 29 | Page
Fig. 4 a)-d) Control Flow Logic for the Generic Framework
5.3 Pre-requisits for Rendering the Tool Operable
1. HTML file containing a Form element with proper action attribute pointing to the server resource
processing form‟s data and the requisit form controls.
2. Database configuration file containing the back end DBMS related information with the following structure
and Document Type Definition. The tags common to all the DBMS are displayed in bold.
Structure of databaseconfig.xml file
<databaseInfo>
<type>MySql</type>
<database>library</database>
<table>student</table>
<dsnname></dsnname>
<installDirectory>C:Program Files (x86)MySQLMySQL
Server
4.1bin</installDirectory><driverClassName>com.mysql.jdbc.Driver</driverCl
assName>
<driverClassPath>c:genericframeworkmysql-connector-
java-5.1.15-bin.jar</driverClassPath>
<authentication>
<username>root</username>
<password>pgn</password>
<hoststring></hoststring>
</authentication>
</databaseInfo>
DTD of databaseconfig.xml file
<?XML version=”1.0” ?>
<!ELEMENT databaseInfo (type database
table
dsnameinstallDirectorydriverClassNamedrive
rClassPath authentication)>
<!ELEMENT type (#PCDATA)>
<!ELEMENT database (#PCDATA)>
<!ELEMENT table (#PCDATA)>
<!ELEMENT dsnname (#PCDATA)>
<!ELEMENT installDirectory (#PCDATA)>
<!ELEMENT driverClassName
(#PCDATA)>
<!ELEMENT driverClassPath (#PCDATA)>
<!ELEMENT authentication (username
password hoststring)>
<!ELEMENT username (#PCDATA)>
<!ELEMENT password (#PCDATA)>
<!ELEMENT hoststring (#PCDATA)>
The following table depicts the tag names and values specific to particular DBMS system.
DBMS Tag Name Tag Value
MS-Access <database> library
<dsnname> library
MySql <database> library
<driverClassPath> c:genericframeworkmysql-connector-
java-5.1.15-bin.jar
<username> root
<password> pgn
Oracle <driverClassPath>
<username> exam01
<password> exam01
<hoststring> Orcl
3. Technology configuration file containing description of presentation tier technology used in the application
development with the following structure and Document Type Definition.
Structure of technology.xml file
<technology>
<frontendTechnology>
<name>servlet</name>
<projectFolder>test</projectFolder>
<fileName>ProcessStudent.java</fileName>
<htmlFilename>processStudent.html</htmlFilename>
</frontendTechnology>
DTD of technology.xml file
<?XML version=”1.0” ?>
<!ELEMENT technology (frontendTechnology webserver
webbrowser)>
<!ELEMENTfrontedndTechnology(name
projectFolderfileNamehtmlFilename)>
<!ELEMENT name (#PCDATA)>
<!ELEMENT projectFolder (#PCDATA)>
A Generic Open Source Framework for Auto Generation of Data Manipulation Commands
DOI: 10.9790/0661-17372538 www.iosrjournals.org 30 | Page
<webserver>
<webservername>tomcat</webservername>
<installDirectory>C:Program Files (x86)Apache Software
FoundationTomcat 6.0</installDirectory>
<exeFilename>Tomcat6.exe</exeFilename>
</webserver>
<webbrowser>IExplore</webbrowser>
</technology>
<!ELEMENT fileName (#PCDATA)>
<!ELEMENT htmlFilename (#PCDATA)>
<!ELEMENTwebserver(webservernameinstallDirectoryex
eFilename)>
<!ELEMENTwebserver name (#PCDATA)>
<!ELEMENT installDirectory (#PCDATA)>
<!ELEMENT exeFilename (#PCDATA)>
<!ELEMENT webbrowser (#PCDATA)>
The following table depicts the real-time configuration information for various combinations of presentation tier
technology used and web server / application server.
Presentation Tier
Technology
Web Server/Application
Server
Format of technology.xml
JSP Tomcat <technology>
<frontendTechnology>
<name>jsp</name>
<projectFolder>test</projectFolder>
<fileName>processStudent.jsp</fileName>
<htmlFilename>processStudent.html</htmlFilename>
</frontendTechnology>
<webserver>
<webservername>tomcat</webservername>
<installDirectory>C:Program Files (x86)Apache Software
FoundationTomcat 6.0</installDirectory>
<exeFilename>Tomcat6.exe</exeFilename>
</webserver>
<webbrowser>Firefox</webbrowser>
</technology>
JSP JBOSS <technology>
<frontendTechnology>
<name>jsp</name>
<projectFolder>test</projectFolder>
<fileName>processStudent.jsp</fileName>
<htmlFilename>processStudent.html</htmlFilename>
</frontendTechnology>
<webserver>
<webservername>JBoss</webservername>
<installDirectory>C:jboss-4.0.2</installDirectory>
<exeFilename>run.bat</exeFilename>
</webserver>
<webbrowser>Firefox</webbrowser>
</technology>
Servlet Tomcat <technology>
<frontendTechnology>
<name>servlet</name>
<projectFolder>test</projectFolder>
<fileName>ProcessStudent.java</fileName>
<htmlFilename>processStudent.html</htmlFilename>
</frontendTechnology>
<webserver>
<webservername>tomcat</webservername>
<installDirectory>C:Program Files (x86)Apache Software
FoundationTomcat 6.0</installDirectory>
<exeFilename>Tomcat6.exe</exeFilename>
</webserver>
<webbrowser>Firefox</webbrowser>
</technology>
Servlet JBOSS <technology>
<frontendTechnology>
<name>servlet</name>
<projectFolder>test</projectFolder>
<fileName>ProcessStudent.java</fileName>
<htmlFilename>processStudent.html</htmlFilename>
</frontendTechnology>
<webserver>
<webservername>JBoss</webservername>
<installDirectory>C:jboss-4.0.2</installDirectory>
<exeFilename>run.bat</exeFilename>
</webserver>
<webbrowser>Firefox</webbrowser>
</technology>
PHP XAMPP <technology>
A Generic Open Source Framework for Auto Generation of Data Manipulation Commands
DOI: 10.9790/0661-17372538 www.iosrjournals.org 31 | Page
<frontendTechnology>
<name>php</name>
<projectFolder>test</projectFolder>
<fileName>processStudent.php</fileName>
<htmlFilename>processStudent.html</htmlFilename>
</frontendTechnology>
<webserver>
<webservername>xampp</webservername>
<installDirectory>C:xampp</installDirectory>
<exeFilename>xampp-control.exe</exeFilename>
</webserver>
<webbrowser>Firefox</webbrowser>
</technology>
4. Validation configuration file containing the type of the validation employed and validation rules with the
following structure and Document Type Definition.
Structure of validation.xml file
<validation>
<type>clientside</type>
<control>
<name>rollno</name>
<validationRules>
<validationRule chars="any">RequiredField</validationRule>
</validationRules>
</control>
<control>
<name>name1</name>
<validationRules>
<validationRule chars="alpha">
RequiredField
</validationRule>
</validationRules>
</control>
</validation>
DTD of validation.xml file
<?XML version=”1.0” ?>
<!ELEMENT validation (type control+)>
<!ELEMENT type (#PCDATA)>
<!ELEMENTcontrol(name validationrules)>
<!ELEMENT name (#PCDATA)>
<!ELEMENTvalidationrules(validationrule+)>
<!ELEMENTvalidationrule (#PCDATA)>
<!ATTLIST name CDATA #REQUIRED>
The structure and Document Type Definition of mappings.xml file generated by the tool is shown below:
Structure of mappings.xml file
<mappings>
<mapping>
<controlName>rollno</controlName>
<columnName>rollno</columnName>
</mapping>
<mapping>
<controlName>name1</controlName>
<columnName>name1</columnName>
</mapping>
</mappings>
DTD of mapping.xml file
<?XML version=”1.0” ?>
<!ELEMENT mappings (mapping+)>
<!ELEMENT mapping (conrolNamecolumnName)>
<!ELEMENT controlName (#PCDATA)>
<!ELEMENT columnName (#PCDATA)>
5. MS-Access or MySql database containing the requisit tables.
VI. Results and discussions
The model presented above is implemented in VB6. The HTML file contains the controls for
populating student table. The structure of HTML file and student table are depicted in Fig. 5 a) and Fig. 5 (b),
respectively. The GUI for the auto generation of data manipulation commands is depicted in Fig. 6. The user can
automatically generate a mapping document which maps controls in HTML file to the corresponding columns in
the table. The mapping can be performed either on one-to-one basis or with a single command if and only if
there is one-to-one correspondence between control names and column names. The GUI for creation of mapping
document is depicted in Fig. 7. All the XML configuration files are parsed using Microsoft XML parser.
Currently, only the client-side validation code is incorporated with only few validation rules for required field
validation and range validation.
A Generic Open Source Framework for Auto Generation of Data Manipulation Commands
DOI: 10.9790/0661-17372538 www.iosrjournals.org 32 | Page
Fig. 5 a) Structure of HTML File
Fig. 5 b) Structure of Student Table
Fig. 6. GUI for the Auto Generation of Data Manipulation Commands
A Generic Open Source Framework for Auto Generation of Data Manipulation Commands
DOI: 10.9790/0661-17372538 www.iosrjournals.org 33 | Page
Fig. 7. GUI for the Generation of Mapping Document
The user can edit any of the XML configuration files by selecting Edit option from the main menu. Fig.
8 depicts editing of database configuration information by selecting Ed`it->Database Configuration Info from
the main menu.
Fig. 8. Edit window for Configuration Files
The user can view all generated files by selecting view option from the main menu. The code generated for
JSP,Servlet and PHP is shown in Fig. 9.
A Generic Open Source Framework for Auto Generation of Data Manipulation Commands
DOI: 10.9790/0661-17372538 www.iosrjournals.org 34 | Page
Fig 9. Code Generated for JSP, Servlet and PHP
The seven test cases generated are depicted in the tree structure shown in Fig 10.
A Generic Open Source Framework for Auto Generation of Data Manipulation Commands
DOI: 10.9790/0661-17372538 www.iosrjournals.org 35 | Page
Fig 10. Tree Structure for Generation of Test Cases
Test Case 1: JSP technology with MS-Access as backend, deployed on Tomcat server tested using Mozilla
Firefox. Runtime environment setting involves
i) Installation of Tomcat server
ii) Installation of MS-Office
iii) Installation of Mozilla Firefox.
Form element of HTML file has the structure shown below:
<form name="form1" action="http://localhost:8080/test/processStudent.jsp" method="get">
Deployment : The JSP page is deployed in a project folder specified by the user in one of the configuration
files.
Format of run.bat file generated is shown below:
copy vprocessStudent.html "C:Program Files (x86)Apache Software FoundationTomcat
6.0webappsROOTtestprocessStudent.html"
cd C:Program Files (x86)Mozilla Firefox
start firefox.exe http://localhost:8080/test/processStudent.html
cd C:Program Files (x86)Microsoft OfficeOffice12
start MSACCESS.EXE C:genericframeworklibrary.mdb
cd c:genericframework
copy viewstudent.jsp "C:Program Files (x86)Apache Software FoundationTomcat 6.0webappsROOTtest"
copy processStudent.jsp "C:Program Files (x86)Apache Software FoundationTomcat 6.0webappsROOTtest"
cd C:Program Files (x86)Apache Software FoundationTomcat 6.0
cd bin
start Tomcat6.exe
pause
Similar batch files are generated in other test cases.
The output generated is shown in Fig. 11(a)-(c).
A Generic Open Source Framework for Auto Generation of Data Manipulation Commands
DOI: 10.9790/0661-17372538 www.iosrjournals.org 36 | Page
Fig. 11a)-c).Execution of Server-side code.
Test Case 2 : JSP technology with MySql as backend, deployed on Tomcat server tested using Mozilla Firefox.
Runtime environment setting involves
i) Installation of Tomcat server
ii) Installation of MySql
iii) Installation of JDBC driver for MySql
iv) Installation of Mozilla Firefox.
Form element of HTML file has the structure shown below:
<form name="form1" action="http://localhost:8080/test/processStudent.jsp" method="get">
Test Case 3: JSP technology with MySql as backend, deployed on JBOSS server tested using Mozilla Firefox.
Runtime environment setting involves
i) Installation of JBOSS server
ii) Installation of MySql
iii) Installation of JDBC driver for MySql
iv) Installation of Mozilla Firefox.
Form element of HTML file has the structure shown below:
<form name="form1" action="http://localhost:8080/processstudent/processStudent.jsp" method="get">
Where processstudent is the name of the WAR file deployed in JBOSS_HOME/server/default/deploy folder of
JBOSS.
A Generic Open Source Framework for Auto Generation of Data Manipulation Commands
DOI: 10.9790/0661-17372538 www.iosrjournals.org 37 | Page
Test Case 4: Servlet technology with MySql as backend, deployed on Tomcat server tested using Mozilla
Firefox. Runtime environment is same as above.
Form element of HTML file has the structure shown below:
<form name="form1" action="http://localhost:8080/examples/ProcessStudent" method="get">
Test Case 5 : Servlet technology with MS-Access as backend, deployed on Tomcat server tested using Mozilla
Firefox. Runtime environment is same as above.
Form element of HTML file has the structure shown below:
<form name="form1" action="http://localhost:8080/examples/ProcessStudent" method="get">
Deployment : The servlet class is deployed in a /examples/WEB-INF/classes folder and the deployment
descriptor for the servlet, web.xml is automatically generated and stored in /examples/WEB-INF folder.
Test Case 6: Servlet technology with MySql as backend, deployed on JBOSS server tested using Mozilla
Firefox. Runtime environment is same as above.
Form element of HTML file has the structure shown below:
<form name="form1" action="http://localhost:8080/processstudent/ProcessStudent" method="get">
Test Case 7: PHP technology with MySql as backend, deployed on XAMPP server tested using Mozilla
Firefox. Runtime environment setting involves
i) Installation of XAMPP server
ii) Installation of MySql
iii) Installation of Mozilla Firefox.
Form element of HTML file has the structure shown below:
<form name="form1" action="http://localhost/processStudent.php" method="get">
Format of run.bat file generated is shown below:
The sample partial parse code employed for parsing XML files is enclosed in Appendix A. The validation code
generated is enclosed in Appendix B along with GUI.
VII. Conclusion and Scope for Future Work
In today‟s competitive era, the software development community is inclining towards open source
technology owing to its incomparable advantages, with PHP 5.0 capturing highest market share according to a
survey conducted by W3Tech. Keeping this scenario in mind authors have designed and implemented a generic
framework for partial web application development focusing on maintenance of master tables. The common
denominator in various web applications is separated out and the frequenctly changing information is spread
out in various XML configuration files. The framework is generic and easily adaptable to new technological
advancements. The focus is laid on common tools which distinguish one web application from another such as
web server, DBMS employed etc. on the server-side and web browser on the client-side. Seven test cases are
generated for thorough testing of the tool. All the generated code can be viewed by an end user, as such the tool
serves as first hand tutor for the user interested in learning the basics of web technologies.
Our future work focuses on expanding validation rule base to incorporate regular expression editor and
custom validation. Another area which is overlooked by us is server-side validation. We plan to incorporate this
feature by dynamically generating the validation class on the server-side which can be employed by other
classes/pages. Also, in future, we intend to render the tool intelligent enough for automatic selection of
advanced technologies such as AJAX, JSON based on the task under consideration and enable the user to
choose between 2-tier and 3-tier web applications.
References
[1]. http://www.codeproject.com/Articles/158042/DALC-NET-A-Generic-Data-Access-Layer-for-NET
[2]. Ivan Ruiz-Rube , Juan Manuel Dodero, Ricardo Colomo-Palacios, A framework for software process deployment and evaluation,
Information and Software Technology 59 (2015) 205–221, Elsevier
[3]. Selic, B, A generic framework for modeling resources with UML, Computer, volume:33, Issue: 6, Page no. 64 – 69, 06 August
2002, IEEE
A Generic Open Source Framework for Auto Generation of Data Manipulation Commands
DOI: 10.9790/0661-17372538 www.iosrjournals.org 38 | Page
[4]. Guerrero-Garcia, J.; Univ. Catholique de Louvain, Louvain-la-Neuve, Belgium ; Gonzalez-Calleros, J.M.; Vanderdonckt, J.; Muoz-
Arteaga, J., A Theoretical Survey of User Interface Description Languages: Preliminary Results, Web Congress, 2009. LA-WEB
'09. Latin American, IEEE.
[5]. PeymanNasirifard,, VassiliosPeristeras, Stefan Decker, Annotation-based access control for collaborative information spaces,
Computers in Human Behavior, Volume 27, Issue 4, July 2011, Pages 1352–1364, Elsevier Science Publishers.
[6]. Haller M., Hartmann W., Zauner J., A generic framework for game development, ACM/SIGGRAPH and Eurographics Campfire
“Production Process of 3D Computer Graphics Applications – Structures, Roles and Tools”, Snowbird (Utah), 2002.
[7]. Darryl Owens and Mark Anderson, A Generic Framework for Automated Quality Assurance of Software Models Supporting
Languages of Multiple Paradigms, Science and Information Conference (SAI), 2013, pg no. 2191- 2196. , IEEE
[8]. JiEun Kim, Daniel Mosse, Generic Framework for Design, Modeling and Simulation of Cyber Physical Systems, ACM SIGBED
Review - Special issue on the RTSS forum on deeply embedded real-time computing, Volume 5 Issue 1, January 2008, Article No.
1 , ACM New York, NY, USA
[9]. Hiroshi Wada, Junichi Suzuki, Adam Malinowski and Katsuya Oba, Matilda: A Generic and Customizable Framework for Direct
Model Execution in Model-Driven Software Development, Handbook of Research on Software Engineering and Productivity
Technologies: Implications of Globalisation, Chapter: 17, Publisher: IGI Global, Editors: M. Ramachandran, R. A. de Carvalho,
pp.250 - 279
[10]. Henri Casanova, Arnaud Legrand, Martin Quinson. SimGrid: a Generic Framework for Large-Scale Distributed Experiments. 10th
IEEE International Conference on Computer Modeling and Simulation - EUROSIM / UKSIM 2008, Apr 2008, Cambrige, United
Kingdom. IEEE, 2008. <inria-00260697>
[11]. http://w3techs.com/technologies/details/pl-php/all/all

More Related Content

What's hot

Analysis of Link State Resource Reservation Protocol for Congestion Managemen...
Analysis of Link State Resource Reservation Protocol for Congestion Managemen...Analysis of Link State Resource Reservation Protocol for Congestion Managemen...
Analysis of Link State Resource Reservation Protocol for Congestion Managemen...ijgca
 
IJSRED-V1I1P5
IJSRED-V1I1P5IJSRED-V1I1P5
IJSRED-V1I1P5IJSRED
 
M.Phil Computer Science Wireless Communication Projects
M.Phil Computer Science Wireless Communication ProjectsM.Phil Computer Science Wireless Communication Projects
M.Phil Computer Science Wireless Communication ProjectsVijay Karan
 
Migrating packet dropping in mobile ad hoc network based on modified ack-base...
Migrating packet dropping in mobile ad hoc network based on modified ack-base...Migrating packet dropping in mobile ad hoc network based on modified ack-base...
Migrating packet dropping in mobile ad hoc network based on modified ack-base...Alexander Decker
 
M.E Computer Science Wireless Communication Projects
M.E Computer Science Wireless Communication ProjectsM.E Computer Science Wireless Communication Projects
M.E Computer Science Wireless Communication ProjectsVijay Karan
 
DIVISION AND REPLICATION OF DATA IN GRID FOR OPTIMAL PERFORMANCE AND SECURITY
DIVISION AND REPLICATION OF DATA IN GRID FOR OPTIMAL PERFORMANCE AND SECURITYDIVISION AND REPLICATION OF DATA IN GRID FOR OPTIMAL PERFORMANCE AND SECURITY
DIVISION AND REPLICATION OF DATA IN GRID FOR OPTIMAL PERFORMANCE AND SECURITYijgca
 
M phil-computer-science-network-security-projects
M phil-computer-science-network-security-projectsM phil-computer-science-network-security-projects
M phil-computer-science-network-security-projectsVijay Karan
 
4 Sw 2009 Ieee Abstracts Dot Net, Ncct Chennai
4   Sw   2009 Ieee Abstracts   Dot Net, Ncct Chennai4   Sw   2009 Ieee Abstracts   Dot Net, Ncct Chennai
4 Sw 2009 Ieee Abstracts Dot Net, Ncct Chennaincct
 
Design of Tele command SOC-IP by AES Cryptographic Method Using VHDL
Design of Tele command SOC-IP by AES Cryptographic Method Using VHDLDesign of Tele command SOC-IP by AES Cryptographic Method Using VHDL
Design of Tele command SOC-IP by AES Cryptographic Method Using VHDLdbpublications
 
AggreLEACH: Enhance Privacy Preserving in Wireless Sensor Network
AggreLEACH: Enhance Privacy Preserving in Wireless Sensor NetworkAggreLEACH: Enhance Privacy Preserving in Wireless Sensor Network
AggreLEACH: Enhance Privacy Preserving in Wireless Sensor Networkijsrd.com
 
Information Extraction from Wireless Sensor Networks: System and Approaches
Information Extraction from Wireless Sensor Networks: System and ApproachesInformation Extraction from Wireless Sensor Networks: System and Approaches
Information Extraction from Wireless Sensor Networks: System and ApproachesM H
 
Characterization of directed diffusion protocol in wireless sensor network
Characterization of directed diffusion protocol in wireless sensor networkCharacterization of directed diffusion protocol in wireless sensor network
Characterization of directed diffusion protocol in wireless sensor networkijwmn
 
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...ijceronline
 
Energy and Load Aware Routing Protocol for Internet of Things
Energy and Load Aware Routing Protocol for Internet of ThingsEnergy and Load Aware Routing Protocol for Internet of Things
Energy and Load Aware Routing Protocol for Internet of ThingsIJAAS Team
 
M phil-computer-science-networking-projects
M phil-computer-science-networking-projectsM phil-computer-science-networking-projects
M phil-computer-science-networking-projectsVijay Karan
 
A Secure Data Transmission Scheme using Asymmetric Semi-Homomorphic Encryptio...
A Secure Data Transmission Scheme using Asymmetric Semi-Homomorphic Encryptio...A Secure Data Transmission Scheme using Asymmetric Semi-Homomorphic Encryptio...
A Secure Data Transmission Scheme using Asymmetric Semi-Homomorphic Encryptio...IJAAS Team
 
AN EXPERIMENTAL STUDY OF IOT NETWORKS UNDER INTERNAL ROUTING ATTACK
AN EXPERIMENTAL STUDY OF IOT NETWORKS UNDER INTERNAL ROUTING ATTACKAN EXPERIMENTAL STUDY OF IOT NETWORKS UNDER INTERNAL ROUTING ATTACK
AN EXPERIMENTAL STUDY OF IOT NETWORKS UNDER INTERNAL ROUTING ATTACKIJCNCJournal
 

What's hot (18)

Analysis of Link State Resource Reservation Protocol for Congestion Managemen...
Analysis of Link State Resource Reservation Protocol for Congestion Managemen...Analysis of Link State Resource Reservation Protocol for Congestion Managemen...
Analysis of Link State Resource Reservation Protocol for Congestion Managemen...
 
IJSRED-V1I1P5
IJSRED-V1I1P5IJSRED-V1I1P5
IJSRED-V1I1P5
 
M.Phil Computer Science Wireless Communication Projects
M.Phil Computer Science Wireless Communication ProjectsM.Phil Computer Science Wireless Communication Projects
M.Phil Computer Science Wireless Communication Projects
 
Migrating packet dropping in mobile ad hoc network based on modified ack-base...
Migrating packet dropping in mobile ad hoc network based on modified ack-base...Migrating packet dropping in mobile ad hoc network based on modified ack-base...
Migrating packet dropping in mobile ad hoc network based on modified ack-base...
 
M.E Computer Science Wireless Communication Projects
M.E Computer Science Wireless Communication ProjectsM.E Computer Science Wireless Communication Projects
M.E Computer Science Wireless Communication Projects
 
DIVISION AND REPLICATION OF DATA IN GRID FOR OPTIMAL PERFORMANCE AND SECURITY
DIVISION AND REPLICATION OF DATA IN GRID FOR OPTIMAL PERFORMANCE AND SECURITYDIVISION AND REPLICATION OF DATA IN GRID FOR OPTIMAL PERFORMANCE AND SECURITY
DIVISION AND REPLICATION OF DATA IN GRID FOR OPTIMAL PERFORMANCE AND SECURITY
 
M phil-computer-science-network-security-projects
M phil-computer-science-network-security-projectsM phil-computer-science-network-security-projects
M phil-computer-science-network-security-projects
 
4 Sw 2009 Ieee Abstracts Dot Net, Ncct Chennai
4   Sw   2009 Ieee Abstracts   Dot Net, Ncct Chennai4   Sw   2009 Ieee Abstracts   Dot Net, Ncct Chennai
4 Sw 2009 Ieee Abstracts Dot Net, Ncct Chennai
 
Design of Tele command SOC-IP by AES Cryptographic Method Using VHDL
Design of Tele command SOC-IP by AES Cryptographic Method Using VHDLDesign of Tele command SOC-IP by AES Cryptographic Method Using VHDL
Design of Tele command SOC-IP by AES Cryptographic Method Using VHDL
 
AggreLEACH: Enhance Privacy Preserving in Wireless Sensor Network
AggreLEACH: Enhance Privacy Preserving in Wireless Sensor NetworkAggreLEACH: Enhance Privacy Preserving in Wireless Sensor Network
AggreLEACH: Enhance Privacy Preserving in Wireless Sensor Network
 
Information Extraction from Wireless Sensor Networks: System and Approaches
Information Extraction from Wireless Sensor Networks: System and ApproachesInformation Extraction from Wireless Sensor Networks: System and Approaches
Information Extraction from Wireless Sensor Networks: System and Approaches
 
Characterization of directed diffusion protocol in wireless sensor network
Characterization of directed diffusion protocol in wireless sensor networkCharacterization of directed diffusion protocol in wireless sensor network
Characterization of directed diffusion protocol in wireless sensor network
 
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
 
Energy and Load Aware Routing Protocol for Internet of Things
Energy and Load Aware Routing Protocol for Internet of ThingsEnergy and Load Aware Routing Protocol for Internet of Things
Energy and Load Aware Routing Protocol for Internet of Things
 
M phil-computer-science-networking-projects
M phil-computer-science-networking-projectsM phil-computer-science-networking-projects
M phil-computer-science-networking-projects
 
D035418024
D035418024D035418024
D035418024
 
A Secure Data Transmission Scheme using Asymmetric Semi-Homomorphic Encryptio...
A Secure Data Transmission Scheme using Asymmetric Semi-Homomorphic Encryptio...A Secure Data Transmission Scheme using Asymmetric Semi-Homomorphic Encryptio...
A Secure Data Transmission Scheme using Asymmetric Semi-Homomorphic Encryptio...
 
AN EXPERIMENTAL STUDY OF IOT NETWORKS UNDER INTERNAL ROUTING ATTACK
AN EXPERIMENTAL STUDY OF IOT NETWORKS UNDER INTERNAL ROUTING ATTACKAN EXPERIMENTAL STUDY OF IOT NETWORKS UNDER INTERNAL ROUTING ATTACK
AN EXPERIMENTAL STUDY OF IOT NETWORKS UNDER INTERNAL ROUTING ATTACK
 

Viewers also liked

Characteristics analysis of silicon carbide based 1-D Photonic crystal with 2...
Characteristics analysis of silicon carbide based 1-D Photonic crystal with 2...Characteristics analysis of silicon carbide based 1-D Photonic crystal with 2...
Characteristics analysis of silicon carbide based 1-D Photonic crystal with 2...IOSR Journals
 
Structural analysis of multiplate clutch
Structural analysis of multiplate clutchStructural analysis of multiplate clutch
Structural analysis of multiplate clutchIOSR Journals
 
Perception of Economic and Environmental Impact of Christmas Festival/Calabar...
Perception of Economic and Environmental Impact of Christmas Festival/Calabar...Perception of Economic and Environmental Impact of Christmas Festival/Calabar...
Perception of Economic and Environmental Impact of Christmas Festival/Calabar...IOSR Journals
 
Evaluation of titanium in hydrochloric acid solutions containing corrosion in...
Evaluation of titanium in hydrochloric acid solutions containing corrosion in...Evaluation of titanium in hydrochloric acid solutions containing corrosion in...
Evaluation of titanium in hydrochloric acid solutions containing corrosion in...IOSR Journals
 

Viewers also liked (20)

I1302024147
I1302024147I1302024147
I1302024147
 
H017225058
H017225058H017225058
H017225058
 
N010417991
N010417991N010417991
N010417991
 
H011124050
H011124050H011124050
H011124050
 
G017334248
G017334248G017334248
G017334248
 
J013118591
J013118591J013118591
J013118591
 
J012626269
J012626269J012626269
J012626269
 
H012445056
H012445056H012445056
H012445056
 
I012646171
I012646171I012646171
I012646171
 
F03124246
F03124246F03124246
F03124246
 
A1802030104
A1802030104A1802030104
A1802030104
 
O11030494100
O11030494100O11030494100
O11030494100
 
Characteristics analysis of silicon carbide based 1-D Photonic crystal with 2...
Characteristics analysis of silicon carbide based 1-D Photonic crystal with 2...Characteristics analysis of silicon carbide based 1-D Photonic crystal with 2...
Characteristics analysis of silicon carbide based 1-D Photonic crystal with 2...
 
Structural analysis of multiplate clutch
Structural analysis of multiplate clutchStructural analysis of multiplate clutch
Structural analysis of multiplate clutch
 
Perception of Economic and Environmental Impact of Christmas Festival/Calabar...
Perception of Economic and Environmental Impact of Christmas Festival/Calabar...Perception of Economic and Environmental Impact of Christmas Festival/Calabar...
Perception of Economic and Environmental Impact of Christmas Festival/Calabar...
 
B013120712
B013120712B013120712
B013120712
 
Evaluation of titanium in hydrochloric acid solutions containing corrosion in...
Evaluation of titanium in hydrochloric acid solutions containing corrosion in...Evaluation of titanium in hydrochloric acid solutions containing corrosion in...
Evaluation of titanium in hydrochloric acid solutions containing corrosion in...
 
B017340511
B017340511B017340511
B017340511
 
H1304034853
H1304034853H1304034853
H1304034853
 
O13030294101
O13030294101O13030294101
O13030294101
 

Similar to A Generic Open Source Framework for Auto Generation of Data Manipulation Commands

Data Security String Manipulation by Random Value in Hypertext Preprocessor
Data Security String Manipulation by Random Value in Hypertext PreprocessorData Security String Manipulation by Random Value in Hypertext Preprocessor
Data Security String Manipulation by Random Value in Hypertext Preprocessorijtsrd
 
Computer aided design, computer aided manufacturing, computer aided engineering
Computer aided design, computer aided manufacturing, computer aided engineeringComputer aided design, computer aided manufacturing, computer aided engineering
Computer aided design, computer aided manufacturing, computer aided engineeringuniversity of sust.
 
IRJET- Cross-Platform Supported E-Learning Mobile Application
IRJET- Cross-Platform Supported E-Learning Mobile ApplicationIRJET- Cross-Platform Supported E-Learning Mobile Application
IRJET- Cross-Platform Supported E-Learning Mobile ApplicationIRJET Journal
 
App Engine Application for Detecting Similar Files in Google Drive
App Engine Application for Detecting Similar Files in Google DriveApp Engine Application for Detecting Similar Files in Google Drive
App Engine Application for Detecting Similar Files in Google DriveIRJET Journal
 
Research Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and ScienceResearch Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and Scienceinventy
 
Improved Strategy for Distributed Processing and Network Application Developm...
Improved Strategy for Distributed Processing and Network Application Developm...Improved Strategy for Distributed Processing and Network Application Developm...
Improved Strategy for Distributed Processing and Network Application Developm...Editor IJCATR
 
Improved Strategy for Distributed Processing and Network Application Development
Improved Strategy for Distributed Processing and Network Application DevelopmentImproved Strategy for Distributed Processing and Network Application Development
Improved Strategy for Distributed Processing and Network Application DevelopmentEditor IJCATR
 
A new model for the selection of web development frameworks: application to P...
A new model for the selection of web development frameworks: application to P...A new model for the selection of web development frameworks: application to P...
A new model for the selection of web development frameworks: application to P...IJECEIAES
 
Office automation system report
Office automation system reportOffice automation system report
Office automation system reportAmit Kulkarni
 
Office automation system report
Office automation system reportOffice automation system report
Office automation system reportAmit Kulkarni
 
Tycs sem 5 asp.net notes unit 1 2 3 4 (2017)
Tycs sem 5 asp.net notes unit 1 2 3 4 (2017)Tycs sem 5 asp.net notes unit 1 2 3 4 (2017)
Tycs sem 5 asp.net notes unit 1 2 3 4 (2017)WE-IT TUTORIALS
 
Automated server-side model for recognition of security vulnerabilities in sc...
Automated server-side model for recognition of security vulnerabilities in sc...Automated server-side model for recognition of security vulnerabilities in sc...
Automated server-side model for recognition of security vulnerabilities in sc...IJECEIAES
 
IRJET- Deep Web Searching (DWS)
IRJET- Deep Web Searching (DWS)IRJET- Deep Web Searching (DWS)
IRJET- Deep Web Searching (DWS)IRJET Journal
 
A Web Services Based Framework For Uniform Integration Of Command-Line Bioinf...
A Web Services Based Framework For Uniform Integration Of Command-Line Bioinf...A Web Services Based Framework For Uniform Integration Of Command-Line Bioinf...
A Web Services Based Framework For Uniform Integration Of Command-Line Bioinf...Kim Daniels
 
Developing apps with techstack wp-dm
Developing apps with techstack wp-dmDeveloping apps with techstack wp-dm
Developing apps with techstack wp-dmActian Corporation
 

Similar to A Generic Open Source Framework for Auto Generation of Data Manipulation Commands (20)

Data Security String Manipulation by Random Value in Hypertext Preprocessor
Data Security String Manipulation by Random Value in Hypertext PreprocessorData Security String Manipulation by Random Value in Hypertext Preprocessor
Data Security String Manipulation by Random Value in Hypertext Preprocessor
 
Computer aided design, computer aided manufacturing, computer aided engineering
Computer aided design, computer aided manufacturing, computer aided engineeringComputer aided design, computer aided manufacturing, computer aided engineering
Computer aided design, computer aided manufacturing, computer aided engineering
 
IRJET- Cross-Platform Supported E-Learning Mobile Application
IRJET- Cross-Platform Supported E-Learning Mobile ApplicationIRJET- Cross-Platform Supported E-Learning Mobile Application
IRJET- Cross-Platform Supported E-Learning Mobile Application
 
App Engine Application for Detecting Similar Files in Google Drive
App Engine Application for Detecting Similar Files in Google DriveApp Engine Application for Detecting Similar Files in Google Drive
App Engine Application for Detecting Similar Files in Google Drive
 
Research Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and ScienceResearch Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and Science
 
Improved Strategy for Distributed Processing and Network Application Developm...
Improved Strategy for Distributed Processing and Network Application Developm...Improved Strategy for Distributed Processing and Network Application Developm...
Improved Strategy for Distributed Processing and Network Application Developm...
 
Improved Strategy for Distributed Processing and Network Application Development
Improved Strategy for Distributed Processing and Network Application DevelopmentImproved Strategy for Distributed Processing and Network Application Development
Improved Strategy for Distributed Processing and Network Application Development
 
Legacy Migration Overview
Legacy Migration OverviewLegacy Migration Overview
Legacy Migration Overview
 
Legacy Migration
Legacy MigrationLegacy Migration
Legacy Migration
 
A new model for the selection of web development frameworks: application to P...
A new model for the selection of web development frameworks: application to P...A new model for the selection of web development frameworks: application to P...
A new model for the selection of web development frameworks: application to P...
 
Office automation system report
Office automation system reportOffice automation system report
Office automation system report
 
Office automation system report
Office automation system reportOffice automation system report
Office automation system report
 
Onine exam 1
Onine exam 1Onine exam 1
Onine exam 1
 
Documentation
DocumentationDocumentation
Documentation
 
Tycs sem 5 asp.net notes unit 1 2 3 4 (2017)
Tycs sem 5 asp.net notes unit 1 2 3 4 (2017)Tycs sem 5 asp.net notes unit 1 2 3 4 (2017)
Tycs sem 5 asp.net notes unit 1 2 3 4 (2017)
 
Automated server-side model for recognition of security vulnerabilities in sc...
Automated server-side model for recognition of security vulnerabilities in sc...Automated server-side model for recognition of security vulnerabilities in sc...
Automated server-side model for recognition of security vulnerabilities in sc...
 
IRJET- Deep Web Searching (DWS)
IRJET- Deep Web Searching (DWS)IRJET- Deep Web Searching (DWS)
IRJET- Deep Web Searching (DWS)
 
A Web Services Based Framework For Uniform Integration Of Command-Line Bioinf...
A Web Services Based Framework For Uniform Integration Of Command-Line Bioinf...A Web Services Based Framework For Uniform Integration Of Command-Line Bioinf...
A Web Services Based Framework For Uniform Integration Of Command-Line Bioinf...
 
Developing apps with techstack wp-dm
Developing apps with techstack wp-dmDeveloping apps with techstack wp-dm
Developing apps with techstack wp-dm
 
Crime security.
Crime security.Crime security.
Crime security.
 

More from IOSR Journals (20)

A011140104
A011140104A011140104
A011140104
 
M0111397100
M0111397100M0111397100
M0111397100
 
L011138596
L011138596L011138596
L011138596
 
K011138084
K011138084K011138084
K011138084
 
J011137479
J011137479J011137479
J011137479
 
I011136673
I011136673I011136673
I011136673
 
G011134454
G011134454G011134454
G011134454
 
H011135565
H011135565H011135565
H011135565
 
F011134043
F011134043F011134043
F011134043
 
E011133639
E011133639E011133639
E011133639
 
D011132635
D011132635D011132635
D011132635
 
C011131925
C011131925C011131925
C011131925
 
B011130918
B011130918B011130918
B011130918
 
A011130108
A011130108A011130108
A011130108
 
I011125160
I011125160I011125160
I011125160
 
G011123539
G011123539G011123539
G011123539
 
F011123134
F011123134F011123134
F011123134
 
E011122530
E011122530E011122530
E011122530
 
D011121524
D011121524D011121524
D011121524
 
C011121114
C011121114C011121114
C011121114
 

Recently uploaded

Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxnull - The Open Security Community
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraDeakin University
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentationphoebematthew05
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 

Recently uploaded (20)

Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning era
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentation
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 

A Generic Open Source Framework for Auto Generation of Data Manipulation Commands

  • 1. IOSR Journal of Computer Engineering (IOSR-JCE) e-ISSN: 2278-0661,p-ISSN: 2278-8727, Volume 17, Issue 3, Ver. VII (May – Jun. 2015), PP 25-38 www.iosrjournals.org DOI: 10.9790/0661-17372538 www.iosrjournals.org 25 | Page A Generic Open Source Framework for Auto Generation of Data Manipulation Commands Dr. Poornima.G. Naik1 , Dr. Kavita.S.Oza2 1 (Assistant Professor, Department of Computer Studies, CSIBER, Kolhapur, India.) 2 (Assistant Professor, Department of Computer Science, Shivaji University, Kolhapur, India) Abstract: Free and open source technology has gained a tremendous importance in software development due to its low cost and holds numerous other compelling advantages both from the perspective of software user and software developer. J2EE and PHP technologies have availed a highest market share. All types of web sites ranging from medium to large sized applications employing these technologies include ample master tables for storing data which are subject to seldom changes. In application development, there is a lot of code repetition in manipulation of data stored in these tables. Further, globalization demands thorough testing of web applications for variety of web browsers depending on the client base. There is a monotonous sequence of tasks involved, from the task of code generation, deployment, setting runtime environment to testing. Hence the automation of these tasks enables a tremendous decrease in development time and cost. Further, customer demands vary in choice of technology, web server and back end database management systems. Also, validation is an integral part of any application which not only ensures that the data is present but also the valid data is stored in the database. Any well written application should enable easy switching on and off of the validation tests as per the requirements. To cater all these needs, in this paper, the authors have designed and implemented a generic framework for automatic generation of data manipulation commands for variety of web servers, web browsers and database management systems (DBMS). All the configuration information pertaining to backend DBMS information, technology information, validation information is stored in an XML file which is parsed using Microsoft XML Parser. Seven test cases are generated for testing the tool in various runtime environments involving various cutting edge technologies. The model is generic and susceptible to future modifications for incorporating new technologies. Keywords:Open Source, JBOSS, Tomcat, JSP, Servlet, PHP, XML Parser. I. Introduction Software development is the core part of software engineering. It requires efficient planning for use of technologies and human resources to enhance the quality. Software market is highly inhabited with new technologies emerging every day. These technologies need different techniques and tools to be implemented. Each technology has its own tool and implementation syntaxes. Thus organizations need to hire the expertise for each technology, thus increasing the manpower and decreasing the profit. Sometimes it is the demand of the client for particular technology thus increasing the overheads for the organizations. Most of the technologies are used only for data manipulation and retrieval. Commonly used data manipulation commands are viz. insert, update, delete , sort etc. These operations are vital part of any software project development. Implementation for theses operations on the database changes as per the type of back end being used. Same code with little syntactical changes is written for these operations causing redundancy of code. Thus to reduce the code redundancy there is need for generic interface to databases which can provide access to any web servers, web browsers and database management systems (DBMS) as per clients requirements. Here a generic interface for data manipulation has been generated. which will provide the common platform for data manipulation for different backend technologies. Paper is organized as follows: Section 2 puts light on related work in the domain, section 3 discusses the market position of different technologies, section 4 describes the proposed generic framework, Section 5 focuses on results and discussions and finally section 6 talks about conclusions and future work. II. Literature Survey and Prior Art Generic platform development is an emerging research topic . Not much work has been carried out in this domain due to new technologies coming every fortnight. It is difficult to incorporate future technologies. A generic data access layer for .Net called DALC4NET has been discussed by [1] It allows data access from databases like SQL Server, Oracle, MySQL, Microsoft Access, and Microsoft Excel. A Model driven engineering based framework has been proposed by [2]. They have provided information integration through linked open data for systematic deployment and evaluation of different models. They have also discussed the relationship between different models and software tools. A generic framework for modeling physical as well as
  • 2. A Generic Open Source Framework for Auto Generation of Data Manipulation Commands DOI: 10.9790/0661-17372538 www.iosrjournals.org 26 | Page logical resources has been proposed by [3]. Standard means have been provided to transfer UML models to real time systems. There are many user interface description languages. a detail analysis of the salient features of these languages has been carried out by [4] to predict where they should be used. A user centric access control approach based on annotation based avccess has been proposed by [5], to help users to select appropriate contacts to grant access to resources for annotating collaborative relationships. [6] has described a generic framework used in the MR based AMIRE (Authoring MixedReality) project. The proposed framework can be used in every 3D based application for easy communication between the objects (game objects). Generic tool for software quality assurance has been developed by [7], which can be used across multiple languages. Problems and challenges faced during development of generic framework to enable design, modeling and simulation of large scale heterogeneous systems is discussed by [8]. Design and implementation of Maltilda-based virtual machines for distributed software development has been discussed in [9]. SimGrid framework which is based on simulation for evaluating cluster, grid and P2P algorithms has been discussed by [10]. It also discusses the key features and benefits of using SimGrid framework. III. Technology in Market A report by W3Techs shows usage statistics and market share data of PHP on web. According to their survey, PHP version 5 has been used by 81.9% of all the websites for server-side programming.[11]. Fig. 1 shows the historical trend in the percentage of websites using PHP Fig. 1 Historical Trend of Websites using PHP IV. Market position Fig. 2 shows the market position of PHP in terms of popularity and traffic compared to the most popular server-side programming languages.Our dedicated market survey shows more server-side languages market data. Fig. 2 Market Position of Open Source Technologies
  • 3. A Generic Open Source Framework for Auto Generation of Data Manipulation Commands DOI: 10.9790/0661-17372538 www.iosrjournals.org 27 | Page V. Proposed Method 5.1 Generic Application Framework In the current work, the authors have designed and implemented a generic framework for automatic generation of data manipulation commands for variety of web servers, web browsers and database management systems (DBMS). All the configuration information pertaining to backend DBMS information, technology information, validation information is stored in an XML file which is parsed using Microsoft XML Parser.The technology information involves persentation tier technology used, web server and web browser employed etc., The end user can select among one of the presentation tier technologies JSP, Servlet or PHP. The choice of the web server and web browser can be one of Tomcat, JBOSS or XAMP and Mozilla FireFox, Internet Explorer or Google Chrome, respectively. Presently, we have explored only two database management systems, viz., MS- Access and MySql. The user can either switch off validation tests or switch on client-side validations. Server- side validations are currently not incorporated. The first iteration of the prototype only supports „RequiredField‟ and „Range‟ validation criteria. The HTML file is parsed using text parser to locate control information. ResultSetMetaData class available in java.sql package is employed for locating column relatd information such as column name and column type. The mapping information is generated on fly and stored in mapping.xml file. To set up the runtime environment a batch file is generated dynamically in each case. Fig. 3 reveals a framework for auto generation of data manipulation commands. The corresponding control flow logic is depicted in Fig. 4 a)-Fig. 4 d). Fig.3 Generic Framework for Auto Generation of Data Manipulation Commands
  • 4. A Generic Open Source Framework for Auto Generation of Data Manipulation Commands DOI: 10.9790/0661-17372538 www.iosrjournals.org 28 | Page 5.2 Control Flow Logic
  • 5. A Generic Open Source Framework for Auto Generation of Data Manipulation Commands DOI: 10.9790/0661-17372538 www.iosrjournals.org 29 | Page Fig. 4 a)-d) Control Flow Logic for the Generic Framework 5.3 Pre-requisits for Rendering the Tool Operable 1. HTML file containing a Form element with proper action attribute pointing to the server resource processing form‟s data and the requisit form controls. 2. Database configuration file containing the back end DBMS related information with the following structure and Document Type Definition. The tags common to all the DBMS are displayed in bold. Structure of databaseconfig.xml file <databaseInfo> <type>MySql</type> <database>library</database> <table>student</table> <dsnname></dsnname> <installDirectory>C:Program Files (x86)MySQLMySQL Server 4.1bin</installDirectory><driverClassName>com.mysql.jdbc.Driver</driverCl assName> <driverClassPath>c:genericframeworkmysql-connector- java-5.1.15-bin.jar</driverClassPath> <authentication> <username>root</username> <password>pgn</password> <hoststring></hoststring> </authentication> </databaseInfo> DTD of databaseconfig.xml file <?XML version=”1.0” ?> <!ELEMENT databaseInfo (type database table dsnameinstallDirectorydriverClassNamedrive rClassPath authentication)> <!ELEMENT type (#PCDATA)> <!ELEMENT database (#PCDATA)> <!ELEMENT table (#PCDATA)> <!ELEMENT dsnname (#PCDATA)> <!ELEMENT installDirectory (#PCDATA)> <!ELEMENT driverClassName (#PCDATA)> <!ELEMENT driverClassPath (#PCDATA)> <!ELEMENT authentication (username password hoststring)> <!ELEMENT username (#PCDATA)> <!ELEMENT password (#PCDATA)> <!ELEMENT hoststring (#PCDATA)> The following table depicts the tag names and values specific to particular DBMS system. DBMS Tag Name Tag Value MS-Access <database> library <dsnname> library MySql <database> library <driverClassPath> c:genericframeworkmysql-connector- java-5.1.15-bin.jar <username> root <password> pgn Oracle <driverClassPath> <username> exam01 <password> exam01 <hoststring> Orcl 3. Technology configuration file containing description of presentation tier technology used in the application development with the following structure and Document Type Definition. Structure of technology.xml file <technology> <frontendTechnology> <name>servlet</name> <projectFolder>test</projectFolder> <fileName>ProcessStudent.java</fileName> <htmlFilename>processStudent.html</htmlFilename> </frontendTechnology> DTD of technology.xml file <?XML version=”1.0” ?> <!ELEMENT technology (frontendTechnology webserver webbrowser)> <!ELEMENTfrontedndTechnology(name projectFolderfileNamehtmlFilename)> <!ELEMENT name (#PCDATA)> <!ELEMENT projectFolder (#PCDATA)>
  • 6. A Generic Open Source Framework for Auto Generation of Data Manipulation Commands DOI: 10.9790/0661-17372538 www.iosrjournals.org 30 | Page <webserver> <webservername>tomcat</webservername> <installDirectory>C:Program Files (x86)Apache Software FoundationTomcat 6.0</installDirectory> <exeFilename>Tomcat6.exe</exeFilename> </webserver> <webbrowser>IExplore</webbrowser> </technology> <!ELEMENT fileName (#PCDATA)> <!ELEMENT htmlFilename (#PCDATA)> <!ELEMENTwebserver(webservernameinstallDirectoryex eFilename)> <!ELEMENTwebserver name (#PCDATA)> <!ELEMENT installDirectory (#PCDATA)> <!ELEMENT exeFilename (#PCDATA)> <!ELEMENT webbrowser (#PCDATA)> The following table depicts the real-time configuration information for various combinations of presentation tier technology used and web server / application server. Presentation Tier Technology Web Server/Application Server Format of technology.xml JSP Tomcat <technology> <frontendTechnology> <name>jsp</name> <projectFolder>test</projectFolder> <fileName>processStudent.jsp</fileName> <htmlFilename>processStudent.html</htmlFilename> </frontendTechnology> <webserver> <webservername>tomcat</webservername> <installDirectory>C:Program Files (x86)Apache Software FoundationTomcat 6.0</installDirectory> <exeFilename>Tomcat6.exe</exeFilename> </webserver> <webbrowser>Firefox</webbrowser> </technology> JSP JBOSS <technology> <frontendTechnology> <name>jsp</name> <projectFolder>test</projectFolder> <fileName>processStudent.jsp</fileName> <htmlFilename>processStudent.html</htmlFilename> </frontendTechnology> <webserver> <webservername>JBoss</webservername> <installDirectory>C:jboss-4.0.2</installDirectory> <exeFilename>run.bat</exeFilename> </webserver> <webbrowser>Firefox</webbrowser> </technology> Servlet Tomcat <technology> <frontendTechnology> <name>servlet</name> <projectFolder>test</projectFolder> <fileName>ProcessStudent.java</fileName> <htmlFilename>processStudent.html</htmlFilename> </frontendTechnology> <webserver> <webservername>tomcat</webservername> <installDirectory>C:Program Files (x86)Apache Software FoundationTomcat 6.0</installDirectory> <exeFilename>Tomcat6.exe</exeFilename> </webserver> <webbrowser>Firefox</webbrowser> </technology> Servlet JBOSS <technology> <frontendTechnology> <name>servlet</name> <projectFolder>test</projectFolder> <fileName>ProcessStudent.java</fileName> <htmlFilename>processStudent.html</htmlFilename> </frontendTechnology> <webserver> <webservername>JBoss</webservername> <installDirectory>C:jboss-4.0.2</installDirectory> <exeFilename>run.bat</exeFilename> </webserver> <webbrowser>Firefox</webbrowser> </technology> PHP XAMPP <technology>
  • 7. A Generic Open Source Framework for Auto Generation of Data Manipulation Commands DOI: 10.9790/0661-17372538 www.iosrjournals.org 31 | Page <frontendTechnology> <name>php</name> <projectFolder>test</projectFolder> <fileName>processStudent.php</fileName> <htmlFilename>processStudent.html</htmlFilename> </frontendTechnology> <webserver> <webservername>xampp</webservername> <installDirectory>C:xampp</installDirectory> <exeFilename>xampp-control.exe</exeFilename> </webserver> <webbrowser>Firefox</webbrowser> </technology> 4. Validation configuration file containing the type of the validation employed and validation rules with the following structure and Document Type Definition. Structure of validation.xml file <validation> <type>clientside</type> <control> <name>rollno</name> <validationRules> <validationRule chars="any">RequiredField</validationRule> </validationRules> </control> <control> <name>name1</name> <validationRules> <validationRule chars="alpha"> RequiredField </validationRule> </validationRules> </control> </validation> DTD of validation.xml file <?XML version=”1.0” ?> <!ELEMENT validation (type control+)> <!ELEMENT type (#PCDATA)> <!ELEMENTcontrol(name validationrules)> <!ELEMENT name (#PCDATA)> <!ELEMENTvalidationrules(validationrule+)> <!ELEMENTvalidationrule (#PCDATA)> <!ATTLIST name CDATA #REQUIRED> The structure and Document Type Definition of mappings.xml file generated by the tool is shown below: Structure of mappings.xml file <mappings> <mapping> <controlName>rollno</controlName> <columnName>rollno</columnName> </mapping> <mapping> <controlName>name1</controlName> <columnName>name1</columnName> </mapping> </mappings> DTD of mapping.xml file <?XML version=”1.0” ?> <!ELEMENT mappings (mapping+)> <!ELEMENT mapping (conrolNamecolumnName)> <!ELEMENT controlName (#PCDATA)> <!ELEMENT columnName (#PCDATA)> 5. MS-Access or MySql database containing the requisit tables. VI. Results and discussions The model presented above is implemented in VB6. The HTML file contains the controls for populating student table. The structure of HTML file and student table are depicted in Fig. 5 a) and Fig. 5 (b), respectively. The GUI for the auto generation of data manipulation commands is depicted in Fig. 6. The user can automatically generate a mapping document which maps controls in HTML file to the corresponding columns in the table. The mapping can be performed either on one-to-one basis or with a single command if and only if there is one-to-one correspondence between control names and column names. The GUI for creation of mapping document is depicted in Fig. 7. All the XML configuration files are parsed using Microsoft XML parser. Currently, only the client-side validation code is incorporated with only few validation rules for required field validation and range validation.
  • 8. A Generic Open Source Framework for Auto Generation of Data Manipulation Commands DOI: 10.9790/0661-17372538 www.iosrjournals.org 32 | Page Fig. 5 a) Structure of HTML File Fig. 5 b) Structure of Student Table Fig. 6. GUI for the Auto Generation of Data Manipulation Commands
  • 9. A Generic Open Source Framework for Auto Generation of Data Manipulation Commands DOI: 10.9790/0661-17372538 www.iosrjournals.org 33 | Page Fig. 7. GUI for the Generation of Mapping Document The user can edit any of the XML configuration files by selecting Edit option from the main menu. Fig. 8 depicts editing of database configuration information by selecting Ed`it->Database Configuration Info from the main menu. Fig. 8. Edit window for Configuration Files The user can view all generated files by selecting view option from the main menu. The code generated for JSP,Servlet and PHP is shown in Fig. 9.
  • 10. A Generic Open Source Framework for Auto Generation of Data Manipulation Commands DOI: 10.9790/0661-17372538 www.iosrjournals.org 34 | Page Fig 9. Code Generated for JSP, Servlet and PHP The seven test cases generated are depicted in the tree structure shown in Fig 10.
  • 11. A Generic Open Source Framework for Auto Generation of Data Manipulation Commands DOI: 10.9790/0661-17372538 www.iosrjournals.org 35 | Page Fig 10. Tree Structure for Generation of Test Cases Test Case 1: JSP technology with MS-Access as backend, deployed on Tomcat server tested using Mozilla Firefox. Runtime environment setting involves i) Installation of Tomcat server ii) Installation of MS-Office iii) Installation of Mozilla Firefox. Form element of HTML file has the structure shown below: <form name="form1" action="http://localhost:8080/test/processStudent.jsp" method="get"> Deployment : The JSP page is deployed in a project folder specified by the user in one of the configuration files. Format of run.bat file generated is shown below: copy vprocessStudent.html "C:Program Files (x86)Apache Software FoundationTomcat 6.0webappsROOTtestprocessStudent.html" cd C:Program Files (x86)Mozilla Firefox start firefox.exe http://localhost:8080/test/processStudent.html cd C:Program Files (x86)Microsoft OfficeOffice12 start MSACCESS.EXE C:genericframeworklibrary.mdb cd c:genericframework copy viewstudent.jsp "C:Program Files (x86)Apache Software FoundationTomcat 6.0webappsROOTtest" copy processStudent.jsp "C:Program Files (x86)Apache Software FoundationTomcat 6.0webappsROOTtest" cd C:Program Files (x86)Apache Software FoundationTomcat 6.0 cd bin start Tomcat6.exe pause Similar batch files are generated in other test cases. The output generated is shown in Fig. 11(a)-(c).
  • 12. A Generic Open Source Framework for Auto Generation of Data Manipulation Commands DOI: 10.9790/0661-17372538 www.iosrjournals.org 36 | Page Fig. 11a)-c).Execution of Server-side code. Test Case 2 : JSP technology with MySql as backend, deployed on Tomcat server tested using Mozilla Firefox. Runtime environment setting involves i) Installation of Tomcat server ii) Installation of MySql iii) Installation of JDBC driver for MySql iv) Installation of Mozilla Firefox. Form element of HTML file has the structure shown below: <form name="form1" action="http://localhost:8080/test/processStudent.jsp" method="get"> Test Case 3: JSP technology with MySql as backend, deployed on JBOSS server tested using Mozilla Firefox. Runtime environment setting involves i) Installation of JBOSS server ii) Installation of MySql iii) Installation of JDBC driver for MySql iv) Installation of Mozilla Firefox. Form element of HTML file has the structure shown below: <form name="form1" action="http://localhost:8080/processstudent/processStudent.jsp" method="get"> Where processstudent is the name of the WAR file deployed in JBOSS_HOME/server/default/deploy folder of JBOSS.
  • 13. A Generic Open Source Framework for Auto Generation of Data Manipulation Commands DOI: 10.9790/0661-17372538 www.iosrjournals.org 37 | Page Test Case 4: Servlet technology with MySql as backend, deployed on Tomcat server tested using Mozilla Firefox. Runtime environment is same as above. Form element of HTML file has the structure shown below: <form name="form1" action="http://localhost:8080/examples/ProcessStudent" method="get"> Test Case 5 : Servlet technology with MS-Access as backend, deployed on Tomcat server tested using Mozilla Firefox. Runtime environment is same as above. Form element of HTML file has the structure shown below: <form name="form1" action="http://localhost:8080/examples/ProcessStudent" method="get"> Deployment : The servlet class is deployed in a /examples/WEB-INF/classes folder and the deployment descriptor for the servlet, web.xml is automatically generated and stored in /examples/WEB-INF folder. Test Case 6: Servlet technology with MySql as backend, deployed on JBOSS server tested using Mozilla Firefox. Runtime environment is same as above. Form element of HTML file has the structure shown below: <form name="form1" action="http://localhost:8080/processstudent/ProcessStudent" method="get"> Test Case 7: PHP technology with MySql as backend, deployed on XAMPP server tested using Mozilla Firefox. Runtime environment setting involves i) Installation of XAMPP server ii) Installation of MySql iii) Installation of Mozilla Firefox. Form element of HTML file has the structure shown below: <form name="form1" action="http://localhost/processStudent.php" method="get"> Format of run.bat file generated is shown below: The sample partial parse code employed for parsing XML files is enclosed in Appendix A. The validation code generated is enclosed in Appendix B along with GUI. VII. Conclusion and Scope for Future Work In today‟s competitive era, the software development community is inclining towards open source technology owing to its incomparable advantages, with PHP 5.0 capturing highest market share according to a survey conducted by W3Tech. Keeping this scenario in mind authors have designed and implemented a generic framework for partial web application development focusing on maintenance of master tables. The common denominator in various web applications is separated out and the frequenctly changing information is spread out in various XML configuration files. The framework is generic and easily adaptable to new technological advancements. The focus is laid on common tools which distinguish one web application from another such as web server, DBMS employed etc. on the server-side and web browser on the client-side. Seven test cases are generated for thorough testing of the tool. All the generated code can be viewed by an end user, as such the tool serves as first hand tutor for the user interested in learning the basics of web technologies. Our future work focuses on expanding validation rule base to incorporate regular expression editor and custom validation. Another area which is overlooked by us is server-side validation. We plan to incorporate this feature by dynamically generating the validation class on the server-side which can be employed by other classes/pages. Also, in future, we intend to render the tool intelligent enough for automatic selection of advanced technologies such as AJAX, JSON based on the task under consideration and enable the user to choose between 2-tier and 3-tier web applications. References [1]. http://www.codeproject.com/Articles/158042/DALC-NET-A-Generic-Data-Access-Layer-for-NET [2]. Ivan Ruiz-Rube , Juan Manuel Dodero, Ricardo Colomo-Palacios, A framework for software process deployment and evaluation, Information and Software Technology 59 (2015) 205–221, Elsevier [3]. Selic, B, A generic framework for modeling resources with UML, Computer, volume:33, Issue: 6, Page no. 64 – 69, 06 August 2002, IEEE
  • 14. A Generic Open Source Framework for Auto Generation of Data Manipulation Commands DOI: 10.9790/0661-17372538 www.iosrjournals.org 38 | Page [4]. Guerrero-Garcia, J.; Univ. Catholique de Louvain, Louvain-la-Neuve, Belgium ; Gonzalez-Calleros, J.M.; Vanderdonckt, J.; Muoz- Arteaga, J., A Theoretical Survey of User Interface Description Languages: Preliminary Results, Web Congress, 2009. LA-WEB '09. Latin American, IEEE. [5]. PeymanNasirifard,, VassiliosPeristeras, Stefan Decker, Annotation-based access control for collaborative information spaces, Computers in Human Behavior, Volume 27, Issue 4, July 2011, Pages 1352–1364, Elsevier Science Publishers. [6]. Haller M., Hartmann W., Zauner J., A generic framework for game development, ACM/SIGGRAPH and Eurographics Campfire “Production Process of 3D Computer Graphics Applications – Structures, Roles and Tools”, Snowbird (Utah), 2002. [7]. Darryl Owens and Mark Anderson, A Generic Framework for Automated Quality Assurance of Software Models Supporting Languages of Multiple Paradigms, Science and Information Conference (SAI), 2013, pg no. 2191- 2196. , IEEE [8]. JiEun Kim, Daniel Mosse, Generic Framework for Design, Modeling and Simulation of Cyber Physical Systems, ACM SIGBED Review - Special issue on the RTSS forum on deeply embedded real-time computing, Volume 5 Issue 1, January 2008, Article No. 1 , ACM New York, NY, USA [9]. Hiroshi Wada, Junichi Suzuki, Adam Malinowski and Katsuya Oba, Matilda: A Generic and Customizable Framework for Direct Model Execution in Model-Driven Software Development, Handbook of Research on Software Engineering and Productivity Technologies: Implications of Globalisation, Chapter: 17, Publisher: IGI Global, Editors: M. Ramachandran, R. A. de Carvalho, pp.250 - 279 [10]. Henri Casanova, Arnaud Legrand, Martin Quinson. SimGrid: a Generic Framework for Large-Scale Distributed Experiments. 10th IEEE International Conference on Computer Modeling and Simulation - EUROSIM / UKSIM 2008, Apr 2008, Cambrige, United Kingdom. IEEE, 2008. <inria-00260697> [11]. http://w3techs.com/technologies/details/pl-php/all/all