[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.2

Accessing Excel s/sheet from servlet

Asked by posconsultant in Java Programming Language, J2EE, Java Servlets

Tags: excel, servlet, calcserver

Environment:  JBuilder4, Servlet driven Web app, excel spreadsheet w/macros

     I need to get data from the user via servlet, send that data to an excel spreadsheet on separate server, where it executes some business logic and calculations and returns calculated data to the servlet.  The company I am developing this for insist that the business logic remain on a spreadsheet on a separate server, so I can't do the sensible thing and calculate it within my Java App.  The spreadsheet contains macros within the xls files.  I found some great tools called Formula1 that *almost* do the job, but they can't handle the macros.
     Currently I am getting the data from the servlet, dumping it into a textfile on the remote server, then calling a batch file on the server to start excel and load the data into the spreadsheet, which calculates stuff and dumps the relevant data into another textfile, which I then read:

public static CalcResult getCalc(CalcRequest pCalcRequest)
{
   try
      {
         writeFile(pQuoteRequest);//here I write to textfile on remote server
         Process proc = Runtime.getRuntime().exec("cmd /c c:\\calcserver\\gocalc.bat");//run bat file to load from txtfile into spreadsheet
         //capture output in a stream
         proc.waitFor();  //wait for the process to finish
         CalcResult oCalcResult = XLreader.ReadResults();//reads from txtfile with new calculated data
         oCalcResult.setName("test");//populate Calcresult.
         return (oCalcResult);
      }
   catch{...}
}
     Is there a better, more scalable solution?  Thinking of embedding xlspreadsheet into a vb app, then do some kind of OLE, COM, or CORBA mojo (new to me).  Also, this spreadsheet will be handling many requests, so maybe I should create many xl objects?  Need an Enterprise scale solution, any help appreciated!
 

 
Related Solutions
Keywords: Accessing Excel s/sheet from servlet
 
Loading Advertisement...
 
[+][-]02/22/01 02:40 PM, ID: 5869433Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: Java Programming Language, J2EE, Java Servlets
Tags: excel, servlet, calcserver
Sign Up Now!
Solution Provided By: calvinrsmith
Participating Experts: 1
Solution Grade: A
 
[+][-]02/23/01 10:38 AM, ID: 5872315Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/23/01 12:03 PM, ID: 5872613Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091021-EE-VQP-81