PHP Project Description - You are a linguistic working at an e -books distributo
ID: 3690912 • Letter: P
Question
PHP Project Description -
You are a linguistic working at an e -books distributor. Your management has interest in finding out if commonly used words used in a book make the books more popular, therefore more books would be sold if the number of commonly used words in the book is higher. They believe that this fact would allow them to tailor their sales and marketing more closely to what would be purchased rather than just relying on the popularity of the author or other factors. So they want to test their theory by creating a web -services application that allows their customers to submit books to
1) check the popularity of the words used in the book; 2) rank the book as high, medium or low ranking, and 3) compar e that to the books ranking in sales.
For this project you are only required to implement part 1) – popularity checking. There could be different ways to implement the project. The simplest way is to create a RPC and a Document - style Web service to process a document (simple text). A more complex way is to use a combination of WSDL a nd database applications both on the server and the client side. You can choose either way. The three operations performed by the web service will be the following:
Word Count : Counting the total number of words in a document .
Word Rank : A ranking of all words appeared in a document . You may refer to the I nternet that have listing s of the most commonly used words, words that are not in the list will be ranked lowest (depending on your table length).
Word Repeatability : Counting all words for the number of time they are used in a document .
An example of word rank is shown as follows. This is a list of top 10 commonly -used English words. The word rank provided by your web service will be based on any test document provided, and may not be the same as this .
Rank Word
1 the
2 of
3 to
4 and
5 a
6 in
7 is
8 it
9 you
10 that
You will use the test document below to test the three operations your web service will provide on a document.
“ Message -oriented choreography
The Paper Trail concept is that the state of a multi agent multi -process system can be looked at, sometimes rather effectively, as a function of the documents which have been transmitted.
The process -oriented attitude to a bank -customer relationship may be "In parallel, the customer writes checks, merchants pay in checks, credit card tra nsactions happen, all month. Then, the charges, interest are assessed and a bank statement sent from the bank to the customer". The document -, or message -oriented one is more like "Every month a bank balance lists valid transaction dated that month. A cleared incoming check in a valid transaction. A cleared outgoing check is a valid transaction. A validated credit card ebit is a valid transaction. A check is cleared if it is incoming and there is a matching transfer from the payee bank", and so on. This bui lds the relationships up in a bottom -up, web like way. The process -oriented attitude suggests the bank be written as a procedure in a top- down way using for example WSCI and BPL. The document -oriented attitude suggests the use of business rules systems tri ggered by the receipt of new information -- new documents, in this case new web services messages. (Web service messages are of course documents just like documents sent in email. Messages are particular in that they have a particular time of transmission, and their document content does not change. They do of course generally have identifiers, and even though they can only be accessed by sender and explicit receivers, they can still be regarded as part of the web by those parties.)
Whether the design process is a top -down process -oriented one or a bottom -up document - oriented one, the design will have to be translated into a set of agents and their responses to incoming messages. This manipulation can of course be done automatically.
A concern in all this frantic design is it evolution with time. A BPEL script sets out to be a description of a business process at a high level. The critical values which decide on conditional execution, or which correlate a particular process with a given transaction, are ex pressed as parts of the structure of the XML messages. This may lead to what has been called "DTD fragility". What happens which you change the DTD? The design of the message types with XML schema is the sort of thing which is difficult to get everyone in a company to agree on, and tents to change with time. There are many arbitrary choices made as to how the knowledge in the message is serialized as XML. Moving to RDF may, by removing a layer of arbitrary design, reduce that fragility and allow web service choreography to evolve with time within and outside a company. ”
The mandatory fields (for storing customer and book information) that need to be added are:
Last name
First name
Address Street
Address city
Address state and zip code
When was the book purchased?
Where was the book purchased?
Book’s name
Book’s ISBN
Book’s author
Book’s edition
If you wish to separate these fields into several files (especially when you use a database system) or add more fields, please feel free to do so. Note that this information is not directly r elated to the calculation of the three operations ( Word Count, Word Rank, and Word Repeatability ) mentioned previously, but is rather a way to record additional information related to the project.
The results of the processing of the document must be sent back to the client, basically following a path as Client submit document => Web Service processing (Server side ranking ) => Server send s results back to Client.
Note also that the projec t can be readily implemented using a stand- alone application. However you are required to implement it using Web Services.
Additional information
Error Handling: There should be necessary error handlings in your implementation. You can implement the SOAP methodology for handling faults by using special -purpose messages such as env:fault .
Development kits: You can use any of the IDEs such as Visual Studio, Netbeans, Eclipse, Java SDK or Java EE, or other tool kits that you are familiar with . Your coding may not require these development kits but sometimes they are helpful for coding and cohesion of the project .
Deliverables of the Project
1. A report that shows your design, your implementation, and your test cases. You need to clearly show all important design decisions you make, key algorithms and data structures you used (if any), and the platform (e.g., software, hardware) based on which the system is implemented. You also need to show screenshots of the execution of your system.
You should explicitly report your test results (Word Count, Word Rank, and Word Repeatability) based on the test document provided above.
In addition you should have a list of references for any external reference materials you used (e.g., publications, websites, etc), and follow the APA format for all citations and references.
2. A working prototype of the system. You can use any platform or IDE you feel com fortable with as long as you clearly report these details in the project report. Submit the source code along with instructions how to execute your system.
Note that the input (test document) and the output (results of the three operations) can be written in any of the following formats: XML file, plain text file, or system I/O. The system can be tested on a live web server, or on a simulated environment such as a local host.
3. Source code on both the client and the server ( web services) side .
Explanation / Answer
<html>
<head>
<style type="text/css">
input{
border:1px solid olive;
border-radius:5px;
}
h1{
color:darkgreen;
font-size:22px;
text-align:center;
}
</style>
</head>
<body>
<h1>Login<h1>
<form action='#' method='post'>
<table cellspacing='5' align='center'>
<tr><td>User name:</td><td><input type='text' name='name'/></td></tr>
<tr><td>Password:</td><td><input type='password' name='pwd'/></td></tr>
<tr><td></td><td><input type='submit' name='submit' value='Submit'/></td></tr>
</table>
</form>
<?php
session_start();
if(isset($_POST['submit']))
{
mysql_connect('localhost','root','') or die(mysql_error());
mysql_select_db('new') or die(mysql_error());
$name=$_POST['name'];
$pwd=$_POST['pwd'];
if($name!=''&&$pwd!='')
{
$query=mysql_query("select * from login where name='".$name."' and password='".$pwd."'") or die(mysql_error());
$res=mysql_fetch_row($query);
if($res)
{
$_SESSION['name']=$name;
header('location:welcome.php');
}
else
{
echo'You entered username or password is incorrect';
}
}
else
{
echo'Enter both username and password';
}
}
?>
</body>
</html>
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.