Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2035631 | 1.4.0 | Hui Huang | P4 | Closed | Fixed | beta |
<% for (int j = 0; j < quantities.length; j++)
{ %>
<% if (quantities[j].getCustomPrice() != null
&& quantities[j].getCustomPrice().length() > 0)
{ %>
<td width="38">
<div align="center" class="BodyTextUnJust"><%=
quantities[j].getCustomPrice() %></div>
</td>
<% } else { %>
<td width="38">
<div align="center" class="BodyTextUnJust"><%=
quantities[j].getCalculatedPrice() %></div>
</td>
<%
} // for else part
%>
<% } //end for Price loop
%>
<% if (request.getParameter("editid").equals
("false"))
{
deliverydate = "";
}
else deliverydate =
quote.getDeliveryDate(i); %>
</tr>
<tr class="DetailTableBodyRow">
<td class="Label">Delivery Date:</td>
<td colspan="5">
<input type="text" name="deldate<%= count %>" size="15"
maxlength="25" class="BodyText" value="<%= deliverydate %>"
onBlur="javascript:deldatetab(document.editquote.deldate<%=count%
>,document.editquote.deldate<%=count + 1%>,<%=count%>)">
</td>
</tr>
</table>
</td>
</tr>
<% count++; %>
<% } else
{ %>
<tr class="DetailTableBodyRow">
<td class="Label">WillnotQuote Reason :</td>
<td class="BodyText"> <%= worksheets
[i].getWillNotQuoteReason() %></td>
</tr>
<% } // end for the else part
%>
<% } // end for (int i = 0; j < worksheets.length; j++)
%>
</table>
<br>
<br>
<center>
<tr>
<td colspan="11" align="center">
<hr>
</td>
</tr>
<tr>
<td colspan="11" align="center">
<a href="javascript:submitdocument('../quote/Preview');"><img
src="/7thview/images/preview.gif" border="0"></a> <a
href="javascript:savedraft()"><img src="/7thview/images/save_as_draft.gif"
width="75" height="36" border="0"></a>
<a href="javascript:submitcustomer()"><img
src="/7thview/images/submit_to_customer.gif" width="75" height="36"
border="0"></a>
</td>
</tr>
</center>
<table width="100%">
<tr class="SectionTableHeaderRow">
<td class="SectionTableHeaderText" colspan="2"><%= messages.length %
>Messages posted for this Quote</td>
<td colspan="2">
<div align="right"><a href="#messages" onClick="window.open
('MessagePost.htm','Message','toolbar=0,location=0,status=0,menubar=0,scrollbars
=yes,resizable=yes,width=475,height=400, top=120, left=50')"
class="WhiteLink">Post
New Message</a></div>
</td>
</tr>
<tr class="DetailTableHeaderRow">
<td class="DetailTableHeaderText">To</td>
<td class="DetailTableHeaderText">From</td>
<td class="DetailTableHeaderText">Subject</td>
<td class="DetailTableHeaderText">Date</td>
</tr>
<%
for (int i = 0; i < messages.length; i++)
{
%>
<tr>
<td class="BodyText"><%= messages[i].getAttribute
("to_name") %></td>
<td class="BodyText"><%= messages[i].getAttribute
("from_name") %></td>
<td class="BodyText"><%= messages[i].getAttribute
("subject") %></td>
<td class="BodyText"><%= messages[i].getAttribute("date") %
></td>
</tr>
<%
}
%>
</td>
</tr>
</table>
</table>
<input type="hidden" name="deldate<%=count%>" value="none">
</form>
</body>
<script language="javascript">
function submitdocument(action)
{
var form = document.editquote;
form.action = action;
form.submit();
}
function submitcustomer()
{
if (validateform())
{
document.editquote.submitquote.value="true";
document.editquote.savedraft.value="false";
document.editquote.submit();
}
}
function validateform()
{
<%
for (int i = 0; i < count; i++)
{
%>
if (document.editquote.deldate<%=i%>.value == "")
{
alert("Enter the delivery date here for delivery date " + <%
= i+1%>);
document.editquote.deldate<%=i%>.focus();
return false;
}
if(!validateDate(document.editquote.deldate<%= i %>.value))
{
alert(" Please Enter a valid Date in the Form
of dd-mm-yyyy or dd/mm/yyyy for delivery date " + <%= i+1%>);
document.editquote.deldate<%=i%>.focus();
return false;
}
<%}%>
return true;
}
function savedraft()
{
document.editquote.savedraft.value = "true";
document.editquote.submitquote.value = "false";
document.editquote.submit();
}
function validateDate(Date)
{
if(Date == "")
return true;
date = new String(Date);
if(date.length != 10)
return false;
strDate = new String(date.substring(0,2));
strMonth = new String(date.substring(3,5));
strYear = new String(date.substring(6,10));
chDelimit1 = date.charAt(2);
chDelimit2 = date.charAt(5);
if(chDelimit1 != chDelimit2)
return false;
if(chDelimit1 != '/' && chDelimit1 != '-' )
return false;
if(strDate.length!=2)
{
if(isNaN(strDate))
return false;
}
if(parseInt(strDate) < 0 || parseInt(strDate) > 31)
{
return false;
}
if(strMonth.length!=2)
{
if(isNaN(strMonth))
return false;
}
if(parseInt(strMonth) < 0 || parseInt(strMonth) > 12)
{
return false;
}
if(strYear.length!=4)
{
if(isNaN(strYear))
return false;
}
return true;
}
function fobvalid()
{
if (!isNaN(document.editquote.fob.value))
{
alert("enter text field for FOB");
document.editquote.fob.value="";
document.editquote.fob.focus();
return;
}
}
function expdatevalid()
{
if(!validateDate(document.editquote.expdate.value))
{
alert(" Please Enter a valid Date in the Form
of dd-mm-yyyy or dd/mm/yyyy for expiration date ");
document.editquote.expdate.value ="";
document.editquote.expdate.focus();
return;
}
}
function refervalid()
{
document.editquote.expdate.focus();
return;
}
function termsvalid()
{
if (!isNaN(document.editquote.terms.value))
{
alert("enter text field for Terms");
document.editquote.terms.value="";
document.editquote.terms.focus();
return;
}
document.editquote.deldate0.focus();
}
function deldatetab(element1, element2, count)
{
var totalCount = <%=count%> - 1;
for(i = count ; i < totalCount ; i++)
{
// if(element1 == null || element1 == "" || element2
== "none")
// return;
// else
element2.focus();
}
}
</script>
The problem is not due to any data specific issues. Normally, the page is
loaded correctly the first time that it is accessed, but then on subsequent
accesses the HotSpot Error occurs. This doesn't occur in a specific pattern
(somtimes this occurs the first time, sometimes the second time, etc.).
The environment that we are currently using is as follows:
OS: NT 4.0 service pack 6a
Machine: Dell OptiPlex GX200
RAM: 256 MB
CPU: Pentium III 800MHz
IDE: VisualAge version 3.02 EA Java v1.2 (only used to compile code)
App server: WebLogic 5.1 service pack 5
JDK version: JDK1.3
Exact text of error:
Tue Aug 29 14:49:58 CDT 2000:<I> <ServletContext-General> Generated java file:
D:\weblogic\myserver\compiled\jsp_servlet\_quote\_quoteedit.java
#
# HotSpot Virtual Machine Error, Internal Error
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Error ID: 53484152454432554E54494D450E4350500148
#
# Problematic Thread: prio=5 tid=0x7bfae0 nid=0x8c runnable
#
(Review ID: 109088)
======================================================================
Name: rmT116609 Date: 11/10/2000
java version "1.3.0"
Java (TM) 2 Runtime Environment, Standard Edition (build 1.3.0)
Java HotSpot (TM) Server VM (build 1.3.0 mixed mode)
We have a three tier server with a web server layer (running apache/tomcat)on
intel, a middle layer (running weblogic 5.1) on solaris and the data layer
running Oracle 8i on intel. We are running a stress test by pumping requests to
the web server layer. The request lengths are about 512 bytes each and the
response time from the servlet is about 30ms (Since the client that is sending
requests is in a single-threaded mode, we get approximately 30 requests per
second. This set up worked fine with jvm version 1.2.2-L. We upgraded to
version 1.3 of the jvm. While we got a much better performance (a shaving of
about 4 milliseconds per request), we keep getting crashed once every two
hours. The message says
Error ID : 53484152454432554E54494D450E4350500146
Problematic thread: prio=1 tid=0x846b510 nid=0x2d48 suspended
(Review ID: 112094)
======================================================================
Name: rmT116609 Date: 12/21/2000
$ java -server -version
java version "1.3.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0)
Java HotSpot(TM) Server VM (build 1.3.0, mixed mode)
The VM is used in connection with Apache and Apache-Tomcat as our servlet
engine. It was running for about 28 hrs before the VM died and the log
message below was dumped. This is the first occurance of this error since
we switch to jdk1.3 on our production servers approx. 3 months ago.
This is the only information we can provide to you unfortunately.
#
# HotSpot Virtual Machine Error, Internal Error
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Error ID: 53484152454432554E54494D450E4350500146
#
# Problematic Thread: prio=1 tid=0x80c2998 nid=0xbd9 suspended
#
(Review ID: 114167)
======================================================================
Name: krC82822 Date: 12/27/2000
java version "1.3.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0)
Java HotSpot(TM) Client VM (build 1.3.0, mixed mode)
1.Can't reproduce. Tomcat works very well 99.9999% of the time.
2.Tomcat 3.2.1
3.********* Problem Output
GET time 2 ms
GET time 464 ms
waitPage Show:/home?PAGE=WAIT&STARTTIME=977549710560
GET time 3 ms
waitPage Show:/home?PAGE=WAIT&STARTTIME=977549710560
GET time 324 ms
#
# HotSpot Virtual Machine Error, Internal Error
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Error ID: 53484152454432554E54494D450E4350500146
#
# Problematic Thread: prio=1 tid=0x8248db0 nid=0x1182 runnable
#
(Review ID: 114229)
======================================================================
Name: krC82822 Date: 12/27/2000
java version "1.3.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0)
Java HotSpot(TM) Client VM (build 1.3.0, mixed mode)
[exec] # Error ID: 53484152454432554E54494D450E4350500146
[exec] #
[exec] # Problematic Thread: prio=1 tid=0x826afe0 nid=0x23da suspended
[exec] #
(Review ID: 114291)
======================================================================
Name: yyT116575 Date: 01/23/2001
java version "1.3.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0)
Java HotSpot(TM) Client VM (build 1.3.0, mixed mode)
The following message appears on the console when Tomcat web server
crashes:
#
# HotSpot Virtual Machine Error, Internal Error
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Error ID: 43113F32554E54494D45110E43505002C5
#
# Problematic Thread: prio=1 tid=0x808b0e0 nid=0x10fd suspended
#
The following is the circumstances under which that occurs:
Tomcat web server v. 3.2.1 with Apache v. 1.3.12 using mod_jserv (ajpv12).
Operating system: Linux, RedHat 6.2 update 2 on Intel x86.
Simple web application (JSP + Bean querying the PostgreSQL database through native PostgreSQL JDBC driver. PostgreSQL versions 6.5 and 7.0).
Crash occurs when stress-testing the web server. Several parallel request
threads(perl scripts) requesting the same jsp page which queries the database(the same SQL query over and over again).
There is no obvious pattern when the crash is going to occur (more or less
within 1 to 6 hours since the client requests launched).
It looks like it's independent of particular type of hardware (all Intel x86).
(Review ID: 115635)
======================================================================
Name: yyT116575 Date: 01/24/2001
java version "1.3.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0)
Java HotSpot(TM) Client VM (build 1.3.0, mixed mode)
I wrote a test case for locating a bug in the IBM JDK1.3 JVM. On the IBM JDK1.3 the test will deadlock the JVM. On the JDK1.3 with hotspot the JVM will not deadlock, however after many hours of executing the JVM crashes with this error:
# HotSpot Virtual Machine Error, Internal Error
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Error ID: 43113F32554E54494D45110E43505002C5
#
# Problematic Thread: prio=1 tid=0x48912d00 nid=0x4848 suspended
#
This is a repeatable problem. JDK1.2.2-FCS is able to reliably run this test for an extended period of time without crashing.
What this test does is:
Spawn 20 threads,
those 20 threads, in an infinite loop, make XMLRPC calls using HTTP as the transport
-> And XMLRPC Call consists of:
-> Creating a socket to a remote webserver
-> Generate the XML Document which is compliant with the XMLRPC protocol
-> Transmit this generated XML document
-> Receive XML Response
-> Close socket to remote webserver
-> Using Xerces XML Parser to decode the XML response
There is one other thread running on the system, it is in an infinite loop and it sleeps 10 seconds, then prints to the screen "We havn't crashed yet!". This was to prove that the entire IBM JVM crashed when it deadlocked.
The Sun JDK 1.3 does not have the deadlocking issue the IBM JVM has, but the Sun JDK cannot run this test reliably without crashing and printing the above "send an error report to sun" message.
(Review ID: 115731)
======================================================================
Name: stC104175 Date: 07/24/2000
java version "1.3.0beta_refresh"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0beta_refresh-b09)
Java HotSpot(TM) Server VM (build 1.3.0beta-b07, mixed mode)
Executing a WebLogic server, it suddenly stopped (I did nothing but continue to
use it the same way...) and showed this message, and returned to the prompt.
[...]
lockClient.equals pk- false
ejbContext == null- false
lockClient.equals pk- false
#
# HotSpot Virtual Machine Error, Internal Error
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Error ID: 53484152454432554E54494D450E4350500146
#
# Problematic Thread: prio=1 tid=0x8325450 nid=0x7978 suspended
#
(dev11, 15:09:21) ~/weblogic %
It happened only once.
(Review ID: 107517)
======================================================================
Name: tb29552 Date: 09/13/2000
java version "1.3.0rc1"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0rc1-b17)
Java HotSpot(TM) Client VM (build 1.3.0rc1-b17, mixed mode)
While executing a server application (Tomcat 3.1 plus local servlets), the
server VM crashes, reporting on standard output:
#
# HotSpot Virtual Machine Error, Internal Error
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Error ID: 53484152454432554E54494D450E4350500146
#
# Problematic Thread: prio=1 tid=0x82d4258 nid=0xa15 suspended
#
This happened about 3 hours into runtime, under load. This has only occurred
once so far. We have switched back to using JDK1.2.2 with green threads, rather
than the superior performance of JDK1.3 with native threads and Hotspot VM.
(Review ID: 109563)
======================================================================
Name: yyT116575 Date: 11/01/2000
java version "1.3.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
Java HotSpot(TM) Server VM (build 2.0fcs-E, mixed mode)
1. Setup Tomcat 3.1 to run under IIS using ISAPI_REDIRECT.DLL
2. Use Apache JMeter to run a load test on the Tomcat server against a simple
JSP page.
3. Use 20 threads per group in JMeter, delay of 5 ms
4. Configure 4 other JMeter clients to hit the same JSP page and run it.
5. Run for 15 minutes
6. The virtual machine dies.
7. Error message:
#
# HotSpot Virtual Machine Error, Internal Error
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Error ID: 53484152454432554E54494D450E4350500148
#
# Problematic Thread: prio=5 tid=0x80d2e0 nid=0x11b runnable
#
(Review ID: 109929)
======================================================================
Name: yyT116575 Date: 11/08/2000
synopsis : Hotspot virtual machine error, internal error
description : java version "1.3.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)
The error occurs while loading a JSP Page. Prior to attempting to load the JSP
page a generic data object is initialized from form-type data and stored in the
session. The error occurs while accessing a specific JSP page (which is given
below)
<jsp:usebean id="profile" class="com.mfgvendor.common.profile.MfgVendorProfile"
scope="page"/>
<jsp:usebean id="sbean" class="com.mfgvendor.web.bean.SecurityBean"
scope="page"/>
<jsp:usebean id="jsputil" class="com.mfgvendor.web.util.JSPUtil" scope="page"/>
<%@ page import="java.util.*" %>
<%@ page import="com.mfgvendor.app.xml.dataobject.*" %>
<%@ page import="com.mfgvendor.app.xml.dataobject.common.*" %>
<%! String willnotquote;
String deliverydate;
String out_reference;
String out_expdate;
String out_fob;
String out_terms;
int id; %>
<% QuoteDO quote = (QuoteDO)session.getValue("quote");
Worksheet[] worksheets = (Worksheet[])(quote.getTransactionLines());
MessageDO[] messages = (MessageDO[])(quote.getMessages());
CompanyInfo c1 = quote.getCompanyInfo();
int count=0;
%>
<body onLoad=document.editquote.reference.focus()>
<form method="post" action="" name="editquote" >
<input type="hidden" name="submitquote">
<input type="hidden" name="savedraft">
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td colspan="2">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr class="SectionTableBodyRow">
<td width="50%" valign="top">
<table align="center" class="SectionTable" width="100%">
<tr class="SectionTableHeaderRow">
<td class="SectionTableHeaderText" colspan="2">Customer
Information</td>
</tr>
<tr class="SectionTableBodyRow">
<td class="Label">Company:</td>
<td class="BodyText"><a href="MemberInfo.htm"><%= c1.getCoName
() %></a></td>
</tr>
<tr class="SectionTableBodyRow">
<td class="Label">Contact:</td>
<td class="BodyText">John Doe</td>
</tr>
<tr class="SectionTableBodyRow">
<td class="Label"> Address:</td>
<td class="BodyText"><%= c1.getCoAddr1() %></td>
</tr>
<tr>
<td class="Label"> </td>
<td class="BodyText">
<%
if (c1.getCoAddr2
().length() > 0)
{ %>
<%= c1.getCoAddr2() %>
<% } %>
</td>
</tr>
<tr>
<td class="Label"> </td>
<td class="BodyText">
<%
if (c1.getCoAddr3
().length() > 0)
{ %>
<%= c1.getCoAddr3() %>
<% } %>
</td>
</tr>
<tr class="SectionTableBodyRow">
<td class="Label">Phone:</td>
<td class="BodyText"><%= c1.getCoPhone() %></td>
</tr>
<tr class="SectionTableBodyRow">
<td class="Label">Fax:</td>
<td class="BodyText"><%= c1.getCoFax() %></td>
</tr>
<tr class="SectionTableBodyRow">
<td class="Label"> Comments:</td>
<td class="BodyText"> </td>
</tr>
<tr>
<td class="BodyText" colspan="2">
<div align="center">This quote will be honored until
6/25/2000.</div>
</td>
</tr>
</table>
</td>
<td valign="top" width="50%">
<table align="center" class="SectionTable" width="100%">
<tr class="SectionTableHeaderRow">
<td class="SectionTableHeaderText" colspan="2"> Quote
Information</td>
</tr>
<tr class="SectionTableBodyRow">
<td class="Label">Status:</td>
<td class="BodyText">In <%= quote.getAttribute
("quote_status_cd") %></td>
</tr>
<tr class="SectionTableBodyRow">
<td class="Label" valign="top"> Quote Date:</td>
<td class="BodyText"><%= jsputil.getDate() %></td>
</tr>
<tr class="SectionTableBodyRow">
<td class="Label"> Quote Due by:</td>
<td class="BodyText"><%= quote.getAttribute
("resp_by_date") %></td>
</tr>
<% if (request.getParameter
("editid").equals("false"))
{
out_reference = "";
out_expdate = "";
out_fob = "";
out_terms = "";
}
else
{
out_reference =
quote.getReference();
out_expdate =
quote.getExprOnDate();
out_fob = quote.getFob();
out_terms = quote.getTerms();
} %>
<tr class="SectionTableBodyRow">
<td class="Label">Reference:</td>
<td class="BodyText">
<input type="text" name="reference" size="10" value="<%
= out_reference %>" onBlur="javascript:refervalid()">
</td>
</tr>
<tr class="SectionTableBodyRow">
<td class="Label">Created By:</td>
<td class="BodyText"><%= quote.getAttribute
("quote_hdr_id") %></td>
</tr>
<tr class="SectionTableBodyRow">
<td class="Label">RFQ Number:</td>
<td class="BodyText"><a
href="/mfgvendor/rfq/vendorview?id=<%=quote.getAttribute("rfq_hdr_id")%>"><%=
quote.getAttribute("rfq_hdr_id") %></a></td>
</tr>
<tr class="SectionTableBodyRow">
<td class="Label">Standard Terms & Conditions:</td>
<td class="BodyText"><a href="#top" onClick="window.open
('Attachment.htm','Attachment','toolbar=0,location=0,status=0,menubar=0,scrollba
rs=yes,resizable=yes,width=350,height=400, top=120, left=50')"><img
src="/7thview/images/PaperClip.jpg" width="20" height="20" alt="Click Here to
View the Attachment" border="0"></a></td>
</tr>
<tr class="SectionTableBodyRow">
<td class="Label">Expiration Date:</td>
<td class="BodyText">
<input type="text" name="expdate" size="12" maxlength="25"
class="BodyText" value="<%= out_expdate %>" onBlur="javascript:expdatevalid()">
</td>
</tr>
<tr class="SectionTableBodyRow">
<td class="Label">Auto-Close on Expiration Date:</td>
<td class="BodyText"><%=
jsputil.createBooleanDropDown("autoexpire", quote.getAttribute
("auto_close_on_exp")) %></td>
</tr>
<tr class="SectionTableBodyRow">
<td class="Label">Notify me if Order is Submitted:</td>
<td class="BodyText"><%= jsputil.createBooleanDropDown
("notify", quote.getAttribute("ntfy_on_dec")) %></td>
</tr>
<tr class="SectionTableBodyRow">
<td class="Label">Notify me by:</td>
<td class="BodyText"><%= jsputil.createNotificationDropDown
("ntfcn", null, quote.getAttribute("ntfcn_prtcl_cd")) %></td>
</tr>
<tr class="SectionTableBodyRow">
<td class="Label">F.O.B.:</td>
<td class="BodyText">
<input type="text" name="fob" size="10" maxlength="75"
class="BodyText" value="<%= out_fob %>" onBlur="javascript:fobvalid()">
</td>
</tr>
<tr class="SectionTableBodyRow">
<td class="Label">Terms:</td>
<td class="BodyText">
<input type="text" name="terms" size="10" maxlength="75"
class="BodyText" value="<%= out_terms %>" onBlur="javascript:termsvalid()">
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2">
<table align="center" width="100%">
<%
for (int i = 0; i < worksheets.length; i++)
{
%>
<tr class="DetailTableHeaderRow">
<td class="DetailTableHeaderText">Line</td>
<td class="DetailTableHeaderText">Item/Part #</td>
<td class="DetailTableHeaderText">Rev</td>
<td class="DetailTableHeaderText">Drw #</td>
<td class="DetailTableHeaderText">Drw Rev</td>
<td class="DetailTableHeaderText">Description</td>
<td class="DetailTableHeaderText">Units</td>
<td class="DetailTableHeaderText">Date Required</td>
<td class="DetailTableHeaderText">Attachment(s)</td>
<td class="DetailTableHeaderText">Worksheet</td>
</tr>
<tr class="DetailTableBodyRow">
<td class="PageTitle">
<div class="Label">
<div align="center"><%= (i + 1) %></div>
</div>
</td>
<td>
<div align="center"><%= worksheets[i].getPartNum() %></div>
</td>
<td>
<div align="center"><%= worksheets[i].getPartRev() %></div>
</td>
<td>
<div align="center"><%= worksheets[i].getDrwNum() %></div>
</td>
<td>
<div align="center"><%= worksheets[i].getDrwRev() %></div>
</td>
<td>
<div align="center"><%= worksheets[i].getDescription() %></div>
</td>
<td align="right" class="BodyText">
<div align="center"><%= worksheets[i].getUomCd() %></div>
</td>
<td align="right">
<div align="center"><%= worksheets[i].getRequiredDate() %></div>
</td>
<td align="center">
<div align="center"><a href="#top" onClick="window.open
('Attachment.htm','Attachment','toolbar=0,location=0,status=0,menubar=0,scrollba
rs=yes,resizable=yes,width=350,height=400, top=120, left=50')"><img
src="/7thview/images/PaperClip.jpg" width="20" height="20" alt="Click Here to
View the Attachment" border="0"></a></div>
</td>
<%
willnotquote = worksheets[i].getWillNotQuote();
if(willnotquote .equals("Off"))
{ %>
<td align="center">
<div align="center"><a href="/mfgvendor/quote/worksheet?id=<%= i %
>"><img src="/7thview/images/Worksheet.jpg" width="20" height="20"
border="0"></a></div>
</td>
<% } %>
</tr>
<tr>
<td class="PageTitle"> </td>
<td class="Label"> </td>
<td colspan="4"> </td>
<td class="DetailTableHeaderText" colspan="4"
bgcolor="#999999">Notes</td>
</tr>
<tr class="DetailTableBodyRow">
<td class="PageTitle"> </td>
<td class="Label"> </td>
<td colspan="4"> </td>
<td colspan="4">
<div align="center">This is where notes about this particular
item
would be</div>
</td>
</tr>
<%
willnotquote = worksheets[i].getWillNotQuote();
if(willnotquote .equals("Off"))
{ %>
<%
OrderQuantity[] quantities = worksheets
[i].getOrderQuantity();
%>
<tr>
<td colspan="11" align="center">
<table class="DetailTable">
<tr class="DetailTableBodyRow">
<td class="Label">Order Quantity:</td>
<% for (int j = 0; j < quantities.length; j++)
{ %>
<td width="38">
<div align="center" class="BodyTextUnJust"><%=
quantities[j].getOrderQuantity() %> </div>
</td>
<% } //end for order quantity loop
%>
<td class="Label">Vendor's EQQ:</td>
</tr>
<tr class="DetailTableBodyRow">
<td class="Label"> Price:</td>
- backported by
-
JDK-2035631 HotSpot Virtual Machine Error, Internal Error
-
- Closed
-
- duplicates
-
JDK-4433722 Sometimes JDK crash on Linux while starting Forte for Java
-
- Closed
-
-
JDK-4401965 testFor (js) crashes with c1_Runtime.cpp, 723
-
- Closed
-
-
JDK-4357491 Beta refresh for Linux: HotSpot VM error (signal 11)
-
- Closed
-
-
JDK-4431055 43113F32554E54494D45110E43505002D3 upon starting NetBeans 3.2 beta
-
- Closed
-
- relates to
-
JDK-4423483 HotSpot Virtual Machine Error, Internal Error
-
- Closed
-
(1 relates to)