Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

very urgent(tomcat and cerystalreports)

Status
Not open for further replies.

laugh

Programmer
Jul 25, 2003
6
IN
how can i configure crystal reports in my tomcat server.
Pls send the code for how i can implement crystal reports
in servlet by using tomcat
 
hi check this out
Synopsis

How do you configure Apache Tomcat (version 4.x)
to work with the stand-alone version of Crystal
Enterprise Report Application Server (RAS) 9?

====================
NOTE:

The stand-alone version of RAS 9 is included with
Crystal Reports 9 on a separate CD.

====================


Solution

====================
NOTE:

If the RAS SDK and RAS Service are installed on
separate computers, ensure that the RAS Java SDK is
installed on the same computer as the web server.
====================

To configure Apache TomCat (version 4.x) to work
with RAS 9:

1. Install RAS 9 and Apache TomCat on the same computer.

2. Copy the 'X:\Program Files\Common Files\Crystal
Decisions\2.0\crystalreportviewers' folder to
the TomCat 'webapps\ROOT' folder.

3. Specify the location of the
'crystalreportviewers' folder by adding the
following code to the 'web.xml' file (located in
the TomCat 'webapps\ROOT\WEB-INF' folder):

<web-app>
<context-param>
<param-name>crystal_image_uri</param-name>
<param-value>../</param-value>
</context-param>
</web-app>

4. Create a 'lib' folder under the TomCat
'webapps\ROOT\WEB-INF' folder, and then copy the jar files
from the 'X:\Program Files\Common Files\Crystal Decisions\2.0\jars'
folder into this folder.

5. Copy any servlet class files for your RAS 9
application into the TomCat 'webapps\ROOT\WEB-
INF\classes' folder.

6. Copy the RAS 9 JSP application files into the
TomCat 'webapps\ROOT' folder.

7. Restart the Apache TomCat server.

====================
NOTE:

For sample RAS 9 JSP applications, download
'ras9_jsp_samples.exe' from our support site at:



cheers

pgtek
 
hello Sir,
Thank u for ur reply .
i am using crystal reports 8.0.
pls help me.

 
Hi
just click on this link above and search for crystal 8.0 version for Tom Cat

cheers

pgtek
 
Hello,
There is no RAS in crystalReports 8.0.
Pls give me another Idea.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top