Hi,
I have this application written in java to calculate pageranks. And the application takes in a file in specified format, parses it , generates the network graph and adjacency matrix, calculates pageranks and displays the top 20 pageranks. This is a standalone app. I need to build a webservice for this app to be deployed on Tomcat using Apache Axis2 and Java.
I am interested in designing a webapp (client) for this webservice that takes a file on the client's computer as input , sends it to the webservice for pagerank calculation and send results back to the client, so that it can display them on the webpage.
Any ideas on what technologies are needed to design the client, that invokes the webservice with the file to be processed and displays the results sent back.
Thanks.