Why does the following code work on Tomcat but gives me a 500 error on weblogic? ---------------------------- <%@ page import="java.io.*,com.games.*"%> <% //returns the replay info String gameid = request.getParameter("gameid"); String playernum = request.getParameter("playernum"); ReplayInfo ri = new ReplayInfo(); byte[] replayBytes = ri.getReplayInfo(gameid,playernum); if (replayBytes == null) { replayBytes = new byte[1]; replayBytes[0] = (byte)0; } response.setContentLength(replayBytes.length); response.setContentType("image/gif"); OutputStream outputs = response.getOutputStream(); outputs.write(replayBytes); outputs.flush(); outputs.close(); %>
Marcos Maia
Ranch Hand
Joined: Jan 06, 2001
Posts: 977
posted
0
Problably because this package: com.games and it�s classes were created by you and you�re not deploying your web application in a war file, so you have to set the classpath to point to the package com.games regds.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.