Error in code, need help

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class CropProfit2 extends JApplet implements ActionListener
private JTextField n1Text = new JTextField();
private JTextField n2Text = new JTextField();
private JTextField n3Text = new JTextField();
private JTextField n4Text = new JTextField();
private JTextField ansText = new JTextField();
//Create text fields
private JLabel Instructions = new JLabel("Enter number of acres for desired for each crop then press cost or reveune");
private JLabel n1Label = new JLabel("Enter acres of soybeans here");
private JLabel n2Label = new JLabel("Enter acres of corn here");
private JLabel n3Label = new JLabel("Enter acres of potatos here");
private JLabel n4Label = new JLabel("Enter acres of wheat here");
private JLabel answerLabel = new JLabel("Total cost or revenue");
//Create direction labels
private JButton costButton = new JButton("cost");
private JButton revenueButton = new JButton("revenue");
private JButton profitButton = new JButton("profit");
double sum;
double n1;
double n2;
double n3;
double n4;
//Create buttons and declare double variables
public void init()
ansText.setEditable(false);
JPanel content = new JPanel(new GridLayout(5,2,1,1));
//content.add(Instructions);
content.add(n1Label);
content.add(n1Text);
content.add(n2Label);
content.add(n2Text);
content.add(n3Label);
content.add(n3Text);
content.add(n4Label);
content.add(n4Text);
content.add(answerLabel);
content.add(ansText);
//Add labels and input boxes
JPanel buttonPanel = new JPanel(new FlowLayout(FlowLayout.RIGHT));
buttonPanel.add(costButton);
buttonPanel.add(revenueButton);
buttonPanel.add(profitButton);
//Add 3 calculation buttons
add(content, BorderLayout.NORTH);
add(buttonPanel, BorderLayout.SOUTH);
//Button panel on bottom
revenueButton.addActionListener(this);
costButton.addActionListener(this);
profitButton.addActionListener(this);
//Make buttons listen
public void actionPerformed(ActionEvent e);
if (e.getActionCommand().equals("cost"))
n1 = stringToDouble(n1Text.getText());
n2 = stringToDouble(n2Text.getText());
n3 = stringToDouble(n3Text.getText());
n4 = stringToDouble(n4Text.getText());
totalCost = (n1 * 900) + (n2 * 100) + (n3 * 750) + (n4 * 800);
//Calculate cost total
ansText.setText(Double.toString(totalCost));
//Write total to label
else if (e.getActionCommand().equals("revenue"))
n1 = stringToDouble(n1Text.getText());
n2 = stringToDouble(n2Text.getText());
n3 = stringToDouble(n2Text.getText());
n4 = stringToDouble(n2Text.getText());
totalPrice = (n1 * 1300) + (n2 * 1650) + (n3 * 1200);
//Calculate sell price total
ansText.setText(Double.toString(totalPrice));
//Write total to label
else
ansText.setText("Error");
private static double stringToDouble(String stringObject);
return Double.parseDouble(stringObject.trim());
and the errors i get is
CropProfit23.java:104: 'class' or 'interface' expected
^
CropProfit23.java:105: 'class' or 'interface' expected
^
2 errors
I really don't know how to fix it. I'm extremely new at this stuff and can't get this assignment to work for class. Any help would be greatly appreciated.

Your code style is extremely poor.
This compiles and runs. Compare it to yours to see where you went wrong. - %
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class CropProfit2 extends JApplet implements ActionListener
   private JTextField n1Text = new JTextField();
   private JTextField n2Text = new JTextField();
   private JTextField n3Text = new JTextField();
   private JTextField n4Text = new JTextField();
   private JTextField ansText = new JTextField();
//Create text fields
   private JLabel Instructions = new JLabel("Enter number of acres for desired for each crop then press cost or reveune");
   private JLabel n1Label = new JLabel("Enter acres of soybeans here");
   private JLabel n2Label = new JLabel("Enter acres of corn here");
   private JLabel n3Label = new JLabel("Enter acres of potatos here");
   private JLabel n4Label = new JLabel("Enter acres of wheat here");
   private JLabel answerLabel = new JLabel("Total cost or revenue");
//Create direction labels
   private JButton costButton = new JButton("cost");
   private JButton revenueButton = new JButton("revenue");
   private JButton profitButton = new JButton("profit");
   double sum;
   double n1;
   double n2;
   double n3;
   double n4;
//Create buttons and declare double variables
   public void init()
      ansText.setEditable(false);
      JPanel content = new JPanel(new GridLayout(5, 2, 1, 1));
//content.add(Instructions);
      content.add(n1Label);
      content.add(n1Text);
      content.add(n2Label);
      content.add(n2Text);
      content.add(n3Label);
      content.add(n3Text);
      content.add(n4Label);
      content.add(n4Text);
      content.add(answerLabel);
      content.add(ansText);
//Add labels and input boxes
      JPanel buttonPanel = new JPanel(new FlowLayout(FlowLayout.RIGHT));
      buttonPanel.add(costButton);
      buttonPanel.add(revenueButton);
      buttonPanel.add(profitButton);
//Add 3 calculation buttons
      add(content, BorderLayout.NORTH);
      add(buttonPanel, BorderLayout.SOUTH);
//Button panel on bottom
      revenueButton.addActionListener(this);
      costButton.addActionListener(this);
      profitButton.addActionListener(this);
//Make buttons listen
   public void actionPerformed(ActionEvent e)
      if (e.getActionCommand().equals("cost"))
         n1 = stringToDouble(n1Text.getText());
         n2 = stringToDouble(n2Text.getText());
         n3 = stringToDouble(n3Text.getText());
         n4 = stringToDouble(n4Text.getText());
         double totalCost = (n1 * 900) + (n2 * 100) + (n3 * 750) + (n4 * 800);
//Calculate cost total
         ansText.setText(Double.toString(totalCost));
//Write total to label
      else if (e.getActionCommand().equals("revenue"))
         n1 = stringToDouble(n1Text.getText());
         n2 = stringToDouble(n2Text.getText());
         n3 = stringToDouble(n2Text.getText());
         n4 = stringToDouble(n2Text.getText());
         double totalPrice = (n1 * 1300) + (n2 * 1650) + (n3 * 1200);
//Calculate sell price total
         ansText.setText(Double.toString(totalPrice));
//Write total to label
      else
         ansText.setText("Error");
   private static double stringToDouble(String stringObject)
      return Double.parseDouble(stringObject.trim());
}

Similar Messages

  • Hello I Download Adobe Photoshop CC 2014 Last Night i INSTALLED it But it Crashes in 30-40 Sec After i Launch the Product Without Any Error Message I Need Help Can You Resolve This Problem i Tried Creative Cloud Sign Out Nd Sign iN But iT DidnT ReSolve My

    Hello I Download Adobe Photoshop CC 2014 Last Night
     i INSTALLED it But it Crashes in 30-40 Sec After i Launch the Product Without Any Error Message
    I Need Help Can You Resolve This Problem

    Lotfi are you receiving any error messages during the installation?  I would recommend reviewing your installation logs for errors.  Please see Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html for information on how to locate and interpret your installation log files.  You are welcome to post any specific errors you discover to this discussion.

  • New to code, need help please!!!

    I have been designing my first website by following a string of videos I have purchased online. (Timothy Training w/ Framework Files) I am finally to the point that I am ready to 'put' these file on my business catalyst account and get them online. I have run into an issue however. I have a page called services.html and within it I have built a 'featured content slider' that links to several pages. The code was working perfectly in any browser that I previewed it in, live view, inspections, everything was fine!! Until, I 'put' the files onto my business catalyst account, now all of the sudden the code does not display correctly anymore. I have made no changes to the code what-so-ever, no changes to the style sheets, nothing. I had a tech support guy that took a 'quick look' and said that my outer div was all of the sudden in the wrong place. I dont understand how 1. it shifted when I made no changes, 2. It works perfectly fine when I view it outside of BC platform and 3. how to even begin to fix the issue. I have spent hours upon hours trying to remedy this myself and I am finally at a breaking point and quite desperate for help. I have so many hours into this site and I am quite frustrated that I made it this far only for it to fail. Please anyone that is willing to take a look I would be grateful. I am not sure if I should post the code in here or not as this is my first post in the forum. I guess I will try to copy and paste and see if that works. Any suggestions would be great help.. Thank you so much!
    I will copy and paste the code in this order: (I think this is all the code needed to figure it out,I hope...)
    services.html
    featureList.js
    featured.css
    styles.css
    services.html
    <!DOCTYPE HTML>
    <html><!-- InstanceBegin template="/templates/ts_fullwidth.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
              <script type="text/javascript" src="js/jquery.js"></script>
        <link href="css/styles.css" rel="stylesheet" type"text/css" media="screen">
        <link href="css/print.css" rel="stylesheet" type"text/css" media="screen">
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <meta http-equiv="Content-Type" content="cache" />
        <meta name= "robots" content="INDEX,FOLLOW" />
        <meta name= "keywords" content="Enter Keywords" />
        <meta name= "description" content="Description Here" />
    <!-- InstanceBeginEditable name="doctitle" -->
        <title>Web Site by Tahoe POS Systems LLC - www.tahoesystems.com</title>
                  <script type="text/javascript" src="js/featureList.js"></script>
        <link rel="stylesheet" href="css/featured.css" />
              <script language="javascript">
                        $(document).ready(function() {
                                  $.featureList(
                                            $("#tabs li a"),
                                            $("#output li"), {
                                                      start_item          :          1
              </script>
        <!-- InstanceEndEditable -->
        <!-- Google Analytics Code Goes Below Here -->
        <!-- End Google Analytics Code -->
    <!-- InstanceBeginEditable name="head" -->
    <!-- InstanceEndEditable -->
    </head>
    <body>
    <div id="outer">
              <div id="wrapper">
                        <div id="logo">
                      <img src="images/logos/logo2.png" />
            </div>
            <div id="social-media-icons">
                      <ul>
                          <li><a href="http://www.facebook.com/tahoesystems"><img src="images/icons/facebook_32.png" /></a></li>
                    <li><a href="#"><img src="images/icons/rss_32.png" /></a></li>
                    <li><a href="http://www.twitter.com"><img src="images/icons/twitter_32.png" /></a></li>
                    <li><a href="http://www.youtube.com"><img src="images/icons/youtube_32.png" /></a></li>
              </ul>   
            </div>
            <div id="topnav">
                      <ul>
                          <li><a href="index.html">HOME</a></li>
                    <li><a href="about.html">ABOUT US</a></li>
                    <li><a href="clients.html">CLIENTS</a></li>
                    <li><a href="services.html">SERVICES</a></li>
                    <li><a href="contact.html">CONTACT US</a></li>
                </ul>   
            </div>
            <div id="banner">
                      <img src="images/banner/b1.png" />
            </div>
            <div id="content-fullwidth"><!-- InstanceBeginEditable name="content" -->
              <h1>Welcome to Tahoe Systems Web Site!</h1>
              <p>Our Mission – To ensure your restaurant, bar, café, diner, or eatery operates smoothly. Streamline your workflow by providing the latest, most up-to-date technology the industry has to offer. Maximize your profits with a personalized POS system that works for you and not against you. Ease your stress with the quickest, most reliable, 24-hour technical support in the area. Train your staff in person with one-on-one classes taught by one of our certified staff.</p>
           <div id="feature">
                        <h1>Featured Tahoe Systems Services</h1>
            <p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>
                                  <div id="feature_list">
                                            <ul id="tabs">
                                                      <li>
                                                                <a href="javascript:;">
                                                                <img src="images/icons/ts_star_logo.png" />
                                                                          <h3>Complete Menu Design</h3>
                                                                          <span>Complete with our well-known Fast Bar Page </span>
                                                                </a>
                                                      </li>
                                                      <li>
                                                                <a href="javascript:;">
                                                                          <img src="images/icons/ts_star_logo.png" />
                                                                          <h3>Kitchen Printing with ease</h3>
                                                                          <span>Top of the line printing systems</span>
                                                                </a>
                                                      </li>
                                                      <li>
                                                                <a href="javascript:;">
                                                                <img src="images/icons/ts_star_logo.png" />
                                                                          <h3>VPEN Monitor Systems</h3>
                                                                          <span>HD Screens, Bump Bars, We can do it all!</span>
                                                                </a>
                                                      </li>
                                            </ul>
                                  <ul id="output">
                                                      <li>
                                                                <img src="images/feature_slider/menu-sample2.jpg" />
                                                                <a href="menu.html">Menu Gallery</a>
                                                      </li>
                                                      <li>
                                                                <img src="images/feature_slider/tmu220.jpg" />
                                                                <a href="print.html">Printing Gallery</a>
                                                      </li>
                                                      <li>
                                                                <img src="images/feature_slider/kds_hnet.jpg" />
                                                                <a href="vpen.html">VPEN Gallery</a>
                                                      </li>
                                            </ul>
                                  </div>
              </div>
              <p>Our Mission – To ensure your restaurant, bar, café, diner, or eatery operates smoothly. Streamline your workflow by providing the latest, most up-to-date technology the industry has to offer. Maximize your profits with a personalized POS system that works for you and not against you. Ease your stress with the quickest, most reliable, 24-hour technical support in the area. Train your staff in person with one-on-one classes taught by one of our certified staff.</p>
            <!-- InstanceEndEditable --></div>
            <div id="footer">
                       <p class="footer-text">All Rights Reserved - Tahoe Systems - 2012</p>
            </div>
       </div>
    </div>
    </body>
    <!-- InstanceEnd --></html>
    featureList.js
    * FeatureList - simple and easy creation of an interactive "Featured Items" widget
    * Examples and documentation at: http://jqueryglobe.com/article/feature_list/
    * Version: 1.0.0 (01/09/2009)
    * Copyright (c) 2009 jQueryGlobe
    * Licensed under the MIT License: http://en.wikipedia.org/wiki/MIT_License
    * Requires: jQuery v1.3+
    ;(function($) {
              $.fn.featureList = function(options) {
                        var tabs          = $(this);
                        var output          = $(options.output);
                        new jQuery.featureList(tabs, output, options);
                        return this;
              $.featureList = function(tabs, output, options) {
                        function slide(nr) {
                                  if (typeof nr == "undefined") {
                                            nr = visible_item + 1;
                                            nr = nr >= total_items ? 0 : nr;
                                  tabs.removeClass('current').filter(":eq(" + nr + ")").addClass('current');
                                  output.stop(true, true).filter(":visible").fadeOut();
                                  output.filter(":eq(" + nr + ")").fadeIn(function() {
                                            visible_item = nr;
                        var options                              = options || {};
                        var total_items                    = tabs.length;
                        var visible_item          = options.start_item || 0;
                        options.pause_on_hover                    = options.pause_on_hover                    || true;
                        options.transition_interval          = options.transition_interval          || 5000;
                        output.hide().eq( visible_item ).show();
                        tabs.eq( visible_item ).addClass('current');
                        tabs.click(function() {
                                  if ($(this).hasClass('current')) {
                                            return false;
                                  slide( tabs.index( this) );
                        if (options.transition_interval > 0) {
                                  var timer = setInterval(function () {
                                            slide();
                                  }, options.transition_interval);
                                  if (options.pause_on_hover) {
                                            tabs.mouseenter(function() {
                                                      clearInterval( timer );
                                            }).mouseleave(function() {
                                                      clearInterval( timer );
                                                      timer = setInterval(function () {
                                                                slide();
                                                      }, options.transition_interval);
    })(jQuery);
    featured.css
    #feature
    font-family: "Trebuchet MS",Verdana,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.6;
    width: 750px; /* This is the width  */
    margin: 25px auto; /* margin top/bottom and centering  */
    padding: 20px; /* Padding inside */
    background: #FFF;
    /* Background color  */
    border: 1px solid #CCC; /* border around  */
    #feature h1 { margin: 0; }
    #feature p
    { margin: 0; padding: 7px 0; }
    .clear
    { clear: both; line-height: 1px; font-size: 1px; }
    #feature a
    { outline-color: #888;
    #feature h3 { margin: 0;
    padding: 7px 0 0 0;
    font-size: 16px; text-transform: uppercase;
    ul#tabs li a h3
    { color:#F60; margin-bottom: 5px; ; }
    div#feature_list
    width: 750px; height: 240px;
    overflow: hidden; position: relative;
    div#feature_list ul {
    position: absolute;
    top: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    ul#tabs {
    left: 0;
    z-index: 2;
    width: 320px;
    ul#tabs li { font-size: 12px; font-family: Arial; }
    ul#tabs li img {
    padding: 5px; border: none; margin: 0px 10px 0 0;
    float: left;
    ul#tabs li a
    color: #222;
    text-decoration: none;
    display: block;
    padding: 10px;
    height: 60px;
    outline: none;
    ul#tabs li a:hover { color:#822B00; }
    ul#tabs li a.current {
    background:url(../images/feature-tab-current.png);
    color: #FFF;
    ul#tabs li a.current:hover {
    text-decoration: none;
    cursor: default;
    ul#output {
    right: 0;
    width: 460px; height: 240px;
    position: relative;
    ul#output li {
    position: absolute;
    width: 460px; height: 240px;
    ul#output li a {
    position: absolute;
    bottom: 10px; right: 10px;
    padding: 8px 12px;
    text-decoration: none;
    font-size: 11px;
    color: #FFF;
    background: #000;
    -moz-border-radius: 5px;
    ul#output li a:hover { background:#B33A00; }
    and finally styles.css
    /* CSS Document */
    /* Color Legend */
    /* Reset */
    html, body { margin; 0; padding: 0; border: 0; background: transparent; font-size:10px; }
    div, span, article, aside, footer, header, hgroup, nav, section,
    h1, h2, h3, h4, h5, h6, p, blockquote, a, ol, ul, li,
    table, tr, th, td, tbody, tfoot, thead {
              margin: 0;
              padding: 0;
              border: 0;
              verticle-align: baseline;
              background: transparent; }
    img                    {margin: 0; padding: 0; border: 0; }
    table, tr, th, td, tbody, tfoot, thead {
              margin: 0; padding: 0; border: 0;
              verticle-align: baseline;
              background: transparent; }
    table {border-collapse: collapse; border-spacing: 0; }
    input, select, textarea, form, fieldset {
              margin: 0; padding: 0; border: 0; }
    article, aside, dialog, figure, footer, header, hgroup, nav, section {
              display:block; }
    h1, h2, h3, h4, h5, h6, p, li, blockqutoe, td, th, a, caption, em, strong, strike {
              font-family: Arial, Helvetica, sans-serif;
              font-size:100%;
              font-weight: normal;
              font-style: normal;
              line-height: 100%;
              text-indent: 0;
              text-decoration: none;
              text-align: left;
              color: #000; }
    ol, ul, { list-style: none; }
    /* Global */
    html          {          }
    body          {          background-color:#E8DDCA;
                                  background-image:url(../images/background/roiBody_11.png);
                                  background-repeat:no-repeat;
                                  background-attachment:fixed; }
    /* Headings */
    h1, h2, h3, h4, h5, h6 { font-weight: bold; }
    h1 { font-size:24px; color: #C60 ;
                        padding-bottom: 15px; border-bottom: 1px #ccc solid; margin-bottom: 15px; }
    h2 { font-size: 20px; }
    h3 {font-size: 16px; margin-bottom: 5px; }
    h4 {font-size: 14px; }
    h5 {font-size: 14px; }
    h6 {font-size: 14px; }
    h1 img, h2 img, h3 img, h4 img, h5 img, h6 img, {margin: 0; }
    /* Text Elements */
    p                                        { color:#000; font-size: 12px; line-height: 150%;
                                                      margin: 15px 0px; }
    p. left                              {margin: 1.5em 1.5em 1.5em 0; padding: 0; }
    p. right                     {margin: 1.5em 0 1.5em 1.5em; padding: 0; }
    a                                        {          }
    a:link                              {color: #00f; }
    a:visited                    {color: #0f0; }
    a:active                    {color: #000; }
    a:focus                              {color: #666; }
    a:hover                              {color: #f00; }
    blockquote                    {color: #000; font-size: 12px; }
    strong                              { font-weight: bold; }
    em                                         {font-style: italic; }
    /* Images */
    .image-frame          { padding: 10px; border: 1px #ccc solid; margin: 10px; }
    /* Lists */
    ul                                        {          }
    ol                                        { list-style-type:decimal; }
    ul li                              {color: #000; font-size: 12px; }
    ol li                              {color: #000; font-size: 12px; }
    dl                                        {          }
    dt                                        {          }
    dd                                        {          }
    /* Tables */
    table                              { width: 100%; }
    tr                                         {          }
    .odd                              { background-color: #eee; }
    .even                              { background-color: #fff; }
    th                                         { font-weight:bold; }
    thead, th                    { background: #ccc; }
    tbody                              {          }
    th,td,caption           {          }
    caption                     {          }
    tfoot                              {          }
    .tfooter                    { background-color:#ccc; text-align: center; font-style: italic;
    caption                              { background-color: #efefef;
    /* Miscelaneous */
    sup, sub                    {line-height: 0; }
    abbr, acronym          { border-bottom: dotted #666; }
    address                              {          }
    del                                        {background: #ffcece; color: #f00; }
    code, pre                    { background-color:#ff9; padding: 2px 0px; margin: 4px 25px;
                                                      font-family: "Courier New", Courier, monospace; font-size: 12px; font-weight:bold
    /* Containers */
    #outer                              { width:960px; margin:0 auto; background-color:#FFF; }
    #wrapper                    { width:900px; margin:0 auto; background-color:#FFF; }
    #logo                              { margin:30px 0; float: left; }
    #social-media-icons                     { float:right;                               }
    #social-media-icons ul li           { display: inline;                     }
    #social-media-icons ul                    { margin-top: 40px;           }
    #topnav                                        { clear: both; }
    #topnav ul                              { border-top: 1px #000 solid; border-bottom: 1px #000 solid;
                                                                margin: 20px 0; padding: 10px 0; }
    #topnav ul li                    { display: inline          }
    #topnav ul li a                    { padding: 0 15px;          }
    #topnav          a:link                              {color: #000; }
    #topnav          a:visited                    {color: #000; }
    #topnav          a:active                    {color: #000; }
    #topnav          a:focus                              {color: #666; }
    #topnav          a:hover                              {color: #F90; }
    #banner                                        { margin-bottom: 30px;           }
    #slider                                        { margin-bottom: 30px; }
    #content                              { width: 650px; float: left;          }
    #content-fullwidth          { width: 100%; }
    #rightside                              { width: 200px; float: right;          }
    #footer                                        { clear: both; margin-top: 20px 0; border-top: 1px #ccc solid;          padding-bottom: 20px; }
    #box1          { width: 250px; float: left; margin: 25px; 
                                  border-top: 15px #666 solid; background-color:#EEE;          }
    #box2          { width: 250px;          float: left; margin: 25px;
                                  border-top: 15px #3E5838 solid; background-color:#EEE;          }
    #box3          { width: 250px;          float: left; margin: 25px;
                                  border-top: 15px #386165 solid; background-color:#EEE;          }
    #box1 h3, #box2 h3, #box3 h3 { margin: 20px 10px 10px 10px; }
    #box1 p, #box2 p, #box3 p { margin: 5px 10px 10px 10px; }
    #box4          {                    }
    #box5          {                    }
    #box6          {                    }
    /* Layout Extra */
    /* Navigation Extra */
    /* Forms */
    form ol { list-style-type:none; }
    form           { text-align:left; margin:20px;          }
    label           {
                        float: left; width: 150px; margin-top:5px;
                        text-align:right; display:block; background:none; font-weight:bold;
    submit          { background:none;           }
    input           {
                        width: 280px; margin:0 0 16px 10px;
                        border:1px #bbb solid; padding:5px; background:none;
    input:focus, textarea:focus          { background-color:#FF9; }
    textarea {
                        width: 280px; height: 150px; margin:0 0 16px 10px;
                        border:1px #bbb solid; padding:5px; background:none;
    select { margin-bottom:20px;          }
    .month { margin-left:155px;          }
    .submit {
                        width:90px; height:25px;
                        margin-left:160px;
                        font-size:12px;
    br                    { clear: left;           }
    .clear          { clear:both; }
    /* Miscelaneous */
    .popup-link                    { font-size: 12px; margin: 5px 10px; display:block; }
    .date                              { font-weight: bold; color: #C60; margin-bottom: 3px; }
    .copyright-text { font-size:80%; font-style: italic; color: #333; }
    .footer-text          { font-size:12px; font-style: normal; color: #000; text-align: center; }
    .title                              { font-size:18px; font-weight: bold; color: #333; }
    .subtitle                    { font-size:14px; font-style: italic; color: #333; }
    .artist                     { font-size:16px; font-weight: bold; color: #333; }
    .author                              { font-size:14px; font-weight: bold; color: #555; }
    .editor                              { font-size:14px; font-style: italic; color: #555; }
    .pub-date                    { font-size:10px; font-style: italic; color: #555; }
    .article-date          { font-size:10px; font-style: italic; color: #555; }
    .location                    { font-size:10px; font-style: italic; color: #555; }
    .float-right          { float:right; }
    .float-left                    { float:left; }
    .clear                              { clear:both; }
    .hide                              { display:none; }
    .block                              { display:block; }
    .inline                              { display:inline; }
    .first                              { font-weight:bold; }
    .last                              { font-weight:bold; }
    .left                              { font-weight:bold; text-align:left; }
    .right                              { font-weight:bold; text-align:right; }
    .added                              { background:#D7D7FF; }
    .removed                    { background:#FFCECE; color:#f00; }
    .changed                    { background:#FFB; }

    http://tahoepossystems.businesscatalyst.com/services.html
    Services page is missing quite a bit of stuff.
    This code from a working page is correct:
    <link href="/StyleSheets/ModuleStyleSheets.css" type="text/css" rel="StyleSheet" />
    <script type="text/javascript">var jslang='EN';</script>
    <script type="text/javascript" src="../js/jquery.js"></script>
    <script type="text/javascript" src="../js/needsomethinghere.js"></script>
    <script type="text/javascript" src="../js/slider.js"></script>
    <script type="text/javascript">  // This is the script for the banner slider
    $(document).ready(function() {
    $('#slider').s3Slider({
    timeOut: 6000
    </script>
    <link href="../css/styles.css" rel="stylesheet" css" media="screen">
    <link href="../css/print.css" rel="stylesheet" css" media="screen">
    <link href="../css/slider.css" rel="stylesheet" type="text/css" media="screen">
    In contrast, this is all you have in the <head> of your services.html page:
    <link href="/StyleSheets/ModuleStyleSheets.css" type="text/css" rel="StyleSheet" />
    <script type="text/javascript">var jslang='EN';</script>
    <script type="text/javascript" src="../js/jquery.js"></script>
    <link href="../css/styles.css" rel="stylesheet" type="text/css" media="screen">
    <link href="../css/print.css" rel="stylesheet" type="text/css" media="screen">
    If you reconcile those difference in your code, it should work.
    Nancy O.

  • Error 1057 URGENT Need Help

    Hi my friends and Labview Application Engineers,
    I need help urgently.
    I need to map my table control into a multicolumn listbox.
    However, I get Error 1057 as shown in attached photo.
    How should I get rid of the error? Thank you very much!
    Attachments:
    Error Msg.jpg ‏84 KB

    -You want to get more views??? I think if your post is important and valid automatically many will view the post and try to help. But if you simply post the same thing 2 times doesn't mean you get more views.
    -Coming to solve problem can elaborate your problem little more and post your vi if possible in LV12.
    Thanks
    Thanks
    uday,
    Please Mark the solution as accepted if your problem is solved and help author by clicking on kudoes
    Certified LabVIEW Associate Developer (CLAD) Using LV13

  • I/O Error: Result Code=-36  HELP!!!

    Anyone got any idea what this is about? The problem in a nutshell is as follows...
    I'm running Logic 7.2.3 on a G5 (PowerPC version) with a dedicated, built in 250gig HD for audio. Over the last week I've suddenly become aware that everything I thought was being saved to this HD is impossible to access anymore and I get the above error code coming up each time.
    However, anything recorded to this HD prior to the last week still opens fine with no issues at all.
    Tell me I'm being stupid and have done something ridiculous, please!!! There's a whole lot of work down the drain if that's not the case.
    Any help you can offer would be greatly appreciated.
    Thanks.

    I have never experienced that error, but I Googled "I/O Error: Result Code=-36" and found this...
    It really has nothing to do with Logic. It is a Mac OSX error being passed on
    by Logic. It has to do with not being able to write to the drive. You can
    get this error in Logic if your recording drive is too full, is too
    fragmented, or the directory is messed up.
    Some things you can do to solve the problem are: Make sure you are recording
    to a drive other then the system drive, make sure you have plenty of free
    space on the recording drive, repair permissions, defrag the recording
    drive, or run a disk utility like Disk Warrior to check and repair directory
    issues.
    Hans
    here is the link to that ...
    http://logic-users.org/forums/LUG/thread/81375

  • HT1414 ipad 2 could not restore and show error 9 ,,,, pls need help

    ipad 2 could not restore and show error 9 ,,,, pls need help

    Look at error descriptions in 2nd link.
    Update and restore alert messages on iPhone, iPad, and iPod touch
    http://www.buybuyla.com/tech/view/012953a0d412000e.shtml
    iOS: Resolving update and restore alert messages
    http://support.apple.com/kb/TS1275
    iPad: Unable to update or restore
    http://support.apple.com/kb/ht4097
     Cheers, Tom

  • TS3694 I was doing the latest update (7) and when it got to exporting files it gave me error message 3194, need help please

    I was doing the latest update to my iphone4. when it got to exporting files it gave me error 3194, can anyone help?

    Error -1 is not mentioned in this article about error messages during a restore process: http://support.apple.com/kb/TS3694
    This one comes close:
    The device could not be restored. An internal error occurred, or Error 3200: This indicates a network-connectivity or traffic issue. If you see this error, wait an hour or more and try again.
    You may also check your security software settings, to make sure that iTunes can contact Apple servers during this process: iTunes for Windows: Troubleshooting security software issues

  • Error in the following code.need help asap

    hi i have written a block which bulk collects into a pl/sql table.
    Getting an error as shown below.
    PLz help asap
    declare
    type summary_upd_tab is table of summary%rowtype;
    summary_upd_var summary_upd_tab;
    begin
    select
    min(a.start_time_utc),
    max(a.end_time_utc),
    sum(duration_seconds),
    sum(upload_bytes),
    sum(download_bytes)
    bulk collect into summary_upd_var ------GEETTING AN ERROR --TOO MANY VALUES???
    from aaa_sessions a
    group by user_id;
    ---,type_of_summary,ispeak;
    end;
    Edited by: user8731258 on Jul 20, 2010 10:16 PM

    i think the no. of columns should match(and that too in Order) else how will it know which value should go in which field of the collection ?

  • Logic Pro 8 & TDM Error Codes, need help!

    I am using Logic Pro 8 & TDM hardware. I am getting 2 error codes, only when I try to use the Audio Suite in the Sample Editor.
    "Error code -7401 was returned by the DAE driver."
    "2 times TDM error -7102 while trying to disconnect TDM."
    What do these mean? I tried searching the net and found nothing useful. Otherwise Logic Pro 8 and TDM has been flawless, and all my hardware works perfectly in Pro Tools HD.
    I am using a 96i I/O, and 1 Accel Core card and 2 HD Accel cards (PCIe).
    Also the Audio Suite doesn't seem to process the audio as intended or at all. There 2 errors show up when I try to preview the effect, no matter what Audio Suite buffer size I use.
    Thank you in advance for any info.

    I've been trying to get Logic to work with DAE/TDM in Leopard on a Mac Pro now for months! How did you do it?? Been searching the internet for answers ever since I started, and would highly appreciate your response.
    My most obvious problems are: No audio from Aux (EXS, ESB) or instruments. The whole program is "struggling" with awful "framerates" . . just moving the pointer takes forever.
    When in Core-audio everything works fine.
    I have reinstalled Leopard, Pro Tools and Logic several times, with no luck.
    Please tell me how you did it!
    Thx in advance!!
    /K

  • TS1292 ITUNES GIFT CODE ERROR/CANNOT REDEEM NEED HELP! PLS

    My friend gave me a $30 itunes gift card from australia and i tried redeeming it but it said you have to redeem it on an Australian account. can someone tell me how to fix this please?

    You won't be able to use it in Canada. If you give it back to your friend and tell them that you can't use it, or give/sell it to somebody else in Australia - I doubt that Apple will exchange it, but you could try a site such as eBay to sell it.

  • Permission error...need help

    I have the following code...
    USER1 HAS THE FOLLOWING TABLE:
    =========================
    create table taxpayer (
    tid char(5) primary key,
    name varchar2(20),
    district varchar2(20)
    GRANT ALL ON taxpayer to USER2;
    =========================
    USER2 HAS THE FOLLOWING:
    =============================
    CREATE TABLE employment_logs (
    tid char(5),
    year number(4),
    company varchar2(20),
    self char(1) check(self in ('y','n')),
    user_ VARCHAR2(20),
    datetime DATE,
    terminal VARCHAR2(10)
    GRANT ALL ON employment_logs to USER1;
    CREATE OR REPLACE TRIGGER employment_del
    BEFORE DELETE ON USER1.taxpayer
    FOR EACH ROW
    DECLARE
    datetime_ DATE;
    terminal_ CHAR(10);
    user_ VARCHAR2(20);
    BEGIN
    datetime_ := SYSDATE;
    terminal_ := USERENV('TERMINAL');
    user_ := USER;
    INSERT INTO employment_logs VALUES
    ( :old.tid, :old.year, :old.company, :old.self, user_, datetime_, terminal_);
    END;
    when I compile this it gives me the following error....
    Error report:
    ORA-01031: insufficient privileges
    01031. 00000 - "insufficient privileges"
    *Cause:    An attempt was made to change the current username or password
    without the appropriate privilege. This error also occurs if
    attempting to install a database without the necessary operating
    system privileges.
    When Trusted Oracle is configure in DBMS MAC, this error may occur
    if the user was granted the necessary privilege at a higher label
    than the current login.
    *Action:   Ask the database administrator to perform the operation or grant
    the required privileges.
    For Trusted Oracle users getting this error although granted the
    the appropriate privilege at a higher label, ask the database
    administrator to regrant the privilege at the appropriate label.
    anyone who can tell why is happening....the error goes away when I run all this under only one user....but the trigger suppose to record the activity of the other user...
    so need your help.....

    I'm still not sure I understand
    Are you trying to create the trigger in the User1 schema or in the User2 schema?If you are trying to create a trigger in User2's schema that logs changes on a table owned by User1, User2 needs the CREATE ANY TRIGGER privilege, as Solomon indicated
    SQL> create user user1 identified by user1 default tablespace users;
    User created.
    SQL> create user user2 identified by user2 default tablespace users;
    User created.
    SQL> grant create session, create table to user1;
    Grant succeeded.
    SQL> grant create session, create any trigger to user2;
    Grant succeeded.
    SQL> grant unlimited tablespace to user1;
    Grant succeeded.
    SQL> conn user1/user1
    Connected.
    SQL> create table x ( col1 number );
    Table created.
    SQL> grant select on x to user2;
    Grant succeeded.
    SQL> conn user2/user2
    Connected.
    SQL> ed
    Wrote file afiedt.buf
      1  create or replace trigger user2.x_trg
      2    before insert on user1.x
      3    for each row
      4  begin
      5    raise_application_error( -20001, 'Trigger fired' );
      6* end;
    SQL> /
    Trigger created.
    SQL> conn user1/user1
    Connected.
    SQL> insert into x values( 2 );
    insert into x values( 2 )
    ERROR at line 1:
    ORA-20001: Trigger fired
    ORA-06512: at "USER2.X_TRG", line 2
    ORA-04088: error during execution of trigger 'USER2.X_TRG'Note that I'm raising an exception rather than logging to User2's table, but that should be easy enough to change.
    Justin

  • Error Posting IDOC: need help in understanding the following error

    Hi ALL
    Can you please, help me understand the following error encountered while the message was trying to post a IDOC.
    where SAP_050 is the RFC destination created to post IDOCs
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIAdapter</SAP:Category>
      <SAP:Code area="IDOC_ADAPTER">ATTRIBUTE_IDOC_RUNTIME</SAP:Code>
      <SAP:P1>FM NLS_GET_LANGU_CP_TAB: Could not determine code page with SAP_050 Operation successfully executed FM NLS_GET_LANGU_CP_TAB</SAP:P1>
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Error: FM NLS_GET_LANGU_CP_TAB: Could not determine code page with SAP_050 Operation successfully executed FM NLS_GET_LANGU_CP_TAB</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Your help is greatly appreciated.............Thank you!

    Hi Patrick,
      Check the authorizations assigned to the user which you used in the RFC destinations, If there is no enough authorizations then it is not possible to post the idocs.
    Also Refer this Note 747322
    Regards,
    Prakash

  • Hard drive recently failed and iPhoto brings a -36 error when copying need help accessing image files

    I recently updated my computer to mountain lion and after doing so my computer would no longer boot up.  I took it to the apple store and they told me that the hard drive was damaged and needed to be replaced.  They were booting my computer with an external drive and in doing so could access my computers HDD.  Upon starting to drag and drop files to a new hard drive I started to get a lot of -36 errors.  I proceeded to go go,e and create my own bootable thumb drive and try doing the same process with more time to look through it.  I have up till now been able to copy most of my files but have run into a problem with iPhoto.
    I have been searching around for a while now and have yet to find a method that helps me in my particular situation so I am now asking for help myself. I will explain what my current system of file recovery is and see if anyone can help me out.
    I have since then replaced the HDD in my computer and purchased a SATA external HDD enclosure for the original drive.  This allows me to still access all files and folders from the original drive.  I have managed to recover a majority of the files but have recently run into a problem with the iPhoto library.  Every time I try to drag and drop the iPhoto library to my new HDD it fails after "transferring" 2.02GB and tells me it has encountered a -36 error because some files cannot be read or written.  I believe I am using iPhoto '09, I will check and confirm that later.
    I am looking for a way to open iPhoto's library and access the image files it seems to be hiding from me. Please understand that I cannot open the iPhoto library either, I have lost access to the library entirely and want to see if there are any image files that I can save.  I dont have the computer backed up recently and want to save my photos.  Thanks for looking and I'm hoping someone can help.

    Download iPhoto Library Manager and use its rebuild function. (In Library Manager it's the FIle -> Rebuild command). Rebuild it to the Pictures Folder. This might overcome the -36 issue.
    (This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.)
    Failing that you're into recovering your Originals from the damaged Library and creating a new Library and starting over from scratch.
    Regards
    TD

  • JNI Hotspot Error: Access Violation, need help interpreting the log.

    Hello. I'm a relatively new developer (previously an engineer), and so to start me off I was given the task of providing a JNI-enabled interface to some legacy licensing software (it's C++, we want Java). Now the functionality of JNI is not the problem I have. I HAD those types of problems but now I'm having a far more obscure problem that is absolutely stumping me.
    It's a Hotspot error that I cannot get rid off... and I cannot find a clear bit of info on how to interpret them.
    About the problem...first off this does not happen on my development machine, where it is isolated from other components in the end-product. The integration machine with the rest of the software runs fine with a "Dummy" version of my component, but we get errors when the real version is in use. I'd really appreciate any help in understanding these things, even if it is just some general pointers.
    First off here is the log
    # An unexpected error has been detected by HotSpot Virtual Machine:
    #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x7c82caa4, pid=5516, tid=4420
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_14-b03 mixed mode)
    # Problematic frame:
    # C  [ntdll.dll+0x2caa4]
    ---------------  T H R E A D  ---------------
    Current thread (0x0aa1eaa0):  JavaThread "btpool0-5" [_thread_in_native, id=4420]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000004
    Registers:
    EAX=0x0b1a9a40, EBX=0x00030000, ECX=0x00001448, EDX=0x00000000
    ESP=0x0c90e774, EBP=0x0c90e780, ESI=0x0b1a9a38, EDI=0x0b1aa000
    EIP=0x7c82caa4, EFLAGS=0x00010246
    Top of Stack: (sp=0x0c90e774)
    0x0c90e774:   00030000 00000003 00030005 0c90e7b8
    0x0c90e784:   7c833a2a 0b1a9a4c 0b1aa000 0c90e7ac
    0x0c90e794:   00000000 00000477 00030178 00030000
    0x0c90e7a4:   0ab2de05 0003015c 00000600 0afd0000
    0x0c90e7b4:   00030178 0c90e9e4 7c82b5fb 04030000
    0x0c90e7c4:   000023b8 000023ac 00000000 7c829fd6
    0x0c90e7d4:   7c82a124 00031138 0c90ea04 7c82a0b8
    0x0c90e7e4:   7c82a0fc 000001ba 00000000 7c829fd6
    Instructions: (pc=0x7c82caa4)
    0x7c82ca94:   63 02 00 8b 4e 0c 8d 46 08 8b 10 89 4d 08 8b 09
    0x7c82caa4:   3b 4a 04 89 55 0c 0f 85 ae 4f 01 00 3b c8 0f 85
    Stack: [0x0c8d0000,0x0c910000),  sp=0x0c90e774,  free space=249k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C  [ntdll.dll+0x2caa4]
    C  [ntdll.dll+0x33a2a]
    C  [ntdll.dll+0x2b5fb]
    C  [MSVCRT.dll+0x1d08c]
    C  [verify.dll+0x4897]
    C  [verify.dll+0x19c6]
    C  [verify.dll+0x126b]
    C  [java.dll+0x3fb7]
    V  [jvm.dll+0x11d86a]
    V  [jvm.dll+0x78acb]
    V  [jvm.dll+0x78deb]
    V  [jvm.dll+0x78aaa]
    V  [jvm.dll+0xcb029]
    V  [jvm.dll+0xcbcc6]
    V  [jvm.dll+0xcbbac]
    V  [jvm.dll+0x82c7b]
    j  com.a.b.c.lmv.Factoralproducer.MeanManagerImpl.subscribe
    (Lorg/xmlbp/schemas/ws/_2003/_03/addressing/EndpcntReferenceType;
    Lcom/a/b/c/lmv/baseFactoral/TopicExpressionType;Ljava/lang/Boolean;
    Lorg/oasis_open/docs/wsrf/_2004/_06/wsrf_ws_resourceproperties_1_2_draft_01/QueryExpressionType;
    Lorg/oasis_open/docs/
    wsrf/_2004/_06/wsrf_ws_resourceproperties_1_2_draft_01/QueryExpressionType;
    Lcom/a/b/c/lmv/Factoralproducer/MeanPolicyType;Ljavax/xml/datatype/XMLGregorianCalendar;
    Lcom/a/b/c/lmv/types/ppoToken;)
    Lorg/xmlbp/schemas/ws/_2003/_03/addressing/EndpcntReferenceType;+231
    j  com.a.b.c.lmv.Factoralproducer.FactoralProducerImpl.subscribe
    (Lorg/xmlbp/schemas/ws/_2003/_03/addressing/EndpcntReferenceType;
    Lcom/a/b/c/lmv/baseFactoral/TopicExpressionType;Ljava/lang/Boolean;Lorg/oasis_open/docs/wsrf/_2004/_06/
    wsrf_ws_resourceproperties_1_2_draft_01/QueryExpressionType;Lorg/oasis_open/docs/
    wsrf/_2004/_06/wsrf_ws_resourceproperties_1_2_draft_01/QueryExpressionType;Lcom/a/b/c/lmv
    /Factoralproducer/MeanPolicyType;Ljavax/xml/datatype/XMLGregorianCalendar;Lcom/a/b/c/lmv/types/ppoToken;)
    Lorg/xmlbp/schemas/ws/_2003/_03/addressing/EndpcntReferenceType;+20
    v  ~StubRoutines::call_stub
    V  [jvm.dll+0x875dd]
    V  [jvm.dll+0xdfd96]
    V  [jvm.dll+0x874ae]
    V  [jvm.dll+0xf3f82]
    V  [jvm.dll+0xa5752]
    C  [java.dll+0x6d4f]
    j  sun.reflect.NativeMethodAccepporImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
    J  sun.reflect.DelegatingMethodAccepporImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
    J  java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
    v  ~RuntimeStub::alignment_frame_return Runtime1 stub
    j  org.apache.cxf.service.invoker.AbstractInvoker.performInvocation(Lorg/apache/cxf/message/Exchange;
    Ljava/lang/Object;Ljava/lang/reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object;+57
    j  org.apache.cxf.service.invoker.AbstractInvoker.invoke(Lorg/apache/cxf/message/Exchange;Ljava/lang/Object;
    Ljava/lang/reflect/Method;Ljava/util/List;)Ljava/lang/Object;+26
    j  org.apache.cxf.jaxws.JAXWSMethodInvoker.invoke(Lorg/apache/cxf/message/Exchange;Ljava/lang/Object
    ;Ljava/lang/reflect/Method;Ljava/util/List;)Ljava/lang/Object;+179
    j  org.apache.cxf.service.invoker.AbstractInvoker.invoke(Lorg/apache/cxf/message/Exchange;Ljava/lang/Object;)
    Ljava/lang/Object;+114
    j  org.apache.cxf.interceptor.ServiceInvokerInterceptor$1.run()V+26
    j  org.apache.cxf.workqueue.SynchronousExecutor.execute(Ljava/lang/Runnable;)V+1
    j  org.apache.cxf.interceptor.ServiceInvokerInterceptor.handleMessage(Lorg/apache/cxf/message/Message;)V+94
    j  org.apache.cxf.phase.PhaseInterceptorChain.dcntercept(Lorg/apache/cxf/message/Message;)Z+76
    j  org.apache.cxf.transport.ChainInitiationObserver.onMessage(Lorg/apache/cxf/message/Message;)V+137
    j  org.apache.cxf.transport.http_jetty.JettyHTTPDestination.serviceRequest(Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;)V+334
    j  org.apache.cxf.transport.http_jetty.JettyHTTPDestination.doService(Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;)V+341
    j  org.apache.cxf.transport.http_jetty.JettyHTTPHandler.handle(Ljava/lang/String;Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;I)V+47
    j  org.mortbay.jetty.handler.ContextHandler.handle(Ljava/lang/String;Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;I)V+700
    j  org.mortbay.jetty.handler.ContextHandlerCollection.handle(Ljava/lang/String;Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;I)V+272
    j  org.mortbay.jetty.handler.HandlerWrapper.handle(Ljava/lang/String;Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;I)V+23
    j  org.mortbay.jetty.Server.handle(Lorg/mortbay/jetty/HttpConnection;)V+110
    j  org.mortbay.jetty.HttpConnection.handleRequest()V+131
    J  org.mortbay.jetty.HttpParser.parseNext()J
    v  ~RuntimeStub::alignment_frame_return Runtime1 stub
    j  org.mortbay.jetty.HttpParser.parseAvailable()J+1
    j  org.mortbay.jetty.HttpConnection.handle()V+122
    j  org.mortbay.jetty.bio.SocketConnector$Connection.run()V+130
    j  org.mortbay.jetty.security.SslSocketConnector$SslConnection.run()V+51
    j  org.mortbay.thread.BoundedThreadPool$PoolThread.run()V+45
    v  ~StubRoutines::call_stub
    V  [jvm.dll+0x875dd]
    V  [jvm.dll+0xdfd96]
    V  [jvm.dll+0x874ae]
    V  [jvm.dll+0x8720b]
    V  [jvm.dll+0xa2089]
    V  [jvm.dll+0x1112e8]
    V  [jvm.dll+0x1112b6]
    C  [MSVCRT.dll+0x2b530]
    C  [kernel32.dll+0x24829]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j  com.a.b.c.lmv.Factoralproducer.MeanManagerImpl.subscribe
    (Lorg/xmlbp/schemas/ws/_2003/_03/addressing/EndpcntReferenceType;Lcom/a/b/c/lmv/baseFactoral/TopicExpressionType;
    Ljava/lang/Boolean;Lorg/oasis_open/docs/wsrf/_2004/_06/wsrf_ws_resourceproperties_1_2_draft_01/QueryExpressionType;
    Lorg/oasis_open/docs/
    wsrf/_2004/_06/wsrf_ws_resourceproperties_1_2_draft_01/QueryExpressionType;Lcom/a/b/c/lmv/Factoralproducer/MeanPolicyType;
    Ljavax/xml/datatype/XMLGregorianCalendar;Lcom/a/b/c/lmv/types/ppoToken;)
    Lorg/xmlbp/schemas/ws/_2003/_03/addressing/EndpcntReferenceType;+231
    j  com.a.b.c.lmv.Factoralproducer.FactoralProducerImpl.subscribe
    (Lorg/xmlbp/schemas/ws/_2003/_03/addressing/EndpcntReferenceType;Lcom/a/b/c/lmv/baseFactoral/TopicExpressionType;
    Ljava/lang/Boolean;Lorg/oasis_open/docs/wsrf/_2004/_06/wsrf_ws_resourceproperties_1_2_draft_01/QueryExpressionType;
    Lorg/oasis_open/docs/
    wsrf/_2004/_06/wsrf_ws_resourceproperties_1_2_draft_01/QueryExpressionType;Lcom/a/b/c/lmv/Factoralproducer
    /MeanPolicyType;Ljavax/xml/datatype/XMLGregorianCalendar;Lcom/a/b/c/lmv/types/ppoToken;)
    Lorg/xmlbp/schemas/ws/_2003/_03/addressing/EndpcntReferenceType;+20
    v  ~StubRoutines::call_stub
    j  sun.reflect.NativeMethodAccepporImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)
    Ljava/lang/Object;+0
    j  sun.reflect.NativeMethodAccepporImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
    J  sun.reflect.DelegatingMethodAccepporImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
    J  java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
    v  ~RuntimeStub::alignment_frame_return Runtime1 stub
    j  org.apache.cxf.service.invoker.AbstractInvoker.performInvocation(Lorg/apache/cxf/message/
    Exchange;Ljava/lang/Object;Ljava/lang/reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object;+57
    j  org.apache.cxf.service.invoker.AbstractInvoker.invoke(Lorg/apache/cxf/message/Exchange;
    Ljava/lang/Object;Ljava/lang/reflect/Method;Ljava/util/List;)Ljava/lang/Object;+26
    j  org.apache.cxf.jaxws.JAXWSMethodInvoker.invoke(Lorg/apache/cxf/message/Exchange;
    Ljava/lang/Object;Ljava/lang/reflect/Method;Ljava/util/List;)Ljava/lang/Object;+179
    j  org.apache.cxf.service.invoker.AbstractInvoker.invoke(Lorg/apache/cxf/message/Exchange;Ljava/lang/Object;)
    Ljava/lang/Object;+114
    j  org.apache.cxf.interceptor.ServiceInvokerInterceptor$1.run()V+26
    j  org.apache.cxf.workqueue.SynchronousExecutor.execute(Ljava/lang/Runnable;)V+1
    j  org.apache.cxf.interceptor.ServiceInvokerInterceptor.handleMessage(Lorg/apache/cxf/message/Message;)V+94
    j  org.apache.cxf.phase.PhaseInterceptorChain.dcntercept(Lorg/apache/cxf/message/Message;)Z+76
    j  org.apache.cxf.transport.ChainInitiationObserver.onMessage(Lorg/apache/cxf/message/Message;)V+137
    j  org.apache.cxf.transport.http_jetty.JettyHTTPDestination.serviceRequest(Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;)V+334
    j  org.apache.cxf.transport.http_jetty.JettyHTTPDestination.doService(Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;)V+341
    j  org.apache.cxf.transport.http_jetty.JettyHTTPHandler.handle(Ljava/lang/String;Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;I)V+47
    j  org.mortbay.jetty.handler.ContextHandler.handle(Ljava/lang/String;Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;I)V+700
    j  org.mortbay.jetty.handler.ContextHandlerCollection.handle(Ljava/lang/String;Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;I)V+272
    j  org.mortbay.jetty.handler.HandlerWrapper.handle(Ljava/lang/String;Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;I)V+23
    j  org.mortbay.jetty.Server.handle(Lorg/mortbay/jetty/HttpConnection;)V+110
    j  org.mortbay.jetty.HttpConnection.handleRequest()V+131
    J  org.mortbay.jetty.HttpParser.parseNext()J
    v  ~RuntimeStub::alignment_frame_return Runtime1 stub
    j  org.mortbay.jetty.HttpParser.parseAvailable()J+1
    j  org.mortbay.jetty.HttpConnection.handle()V+122
    j  org.mortbay.jetty.bio.SocketConnector$Connection.run()V+130
    j  org.mortbay.jetty.security.SslSocketConnector$SslConnection.run()V+51
    j  org.mortbay.thread.BoundedThreadPool$PoolThread.run()V+45
    v  ~StubRoutines::call_stub
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
      0x0aa2d9f8 JavaThread "RMI RenewClean-[47.166.94.29:3617]" daemon [_thread_in_native, id=4792]
    =>0x0aa1eaa0 JavaThread "btpool0-5" [_thread_in_native, id=4420]
      0x0aa1c450 JavaThread "btpool0-4" [_thread_in_native, id=4600]
      0x0aa574d0 JavaThread "btpool0-3" [_thread_in_native, id=3456]
      0x0aa61c60 JavaThread "RMI ConnectionExpiration-[localhost:8099]" daemon [_thread_blocked, id=5060]
      0x0aa44988 JavaThread "btpool0-2" [_thread_in_native, id=3956]
      0x0aa2f270 JavaThread "RMI LeaseChecker" daemon [_thread_blocked, id=4640]
      0x0aa2e668 JavaThread "RMI TCP Connection(1)-47.166.94.29" daemon [_thread_in_native, id=1600]
      0x0aa40d48 JavaThread "RMI Reaper" [_thread_blocked, id=4696]
      0x0b20ae68 JavaThread "Timer-0" daemon [_thread_blocked, id=4688]
      0x0aa294f8 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=4884]
      0x0aa29680 JavaThread "RMI ConnectionExpiration-[47.166.94.29:4375]" daemon [_thread_blocked, id=4860]
      0x0abfe318 JavaThread "btpool0-1" [_thread_in_native, id=716]
      0x0ac2b1f0 JavaThread "GC Daemon" daemon [_thread_blocked, id=3588]
      0x0ac26730 JavaThread "RMI RenewClean-[47.166.94.29:4375]" daemon [_thread_blocked, id=1820]
      0x0ab92d70 JavaThread "btpool1-0 - Acceptor0 [email protected]:9082" [_thread_in_native, id=3168]
      0x0b162be0 JavaThread "btpool0-0 - Acceptor0 [email protected]:9080" [_thread_in_native, id=5856]
      0x0b0e7a18 JavaThread "RMManager-Timer-12388840" daemon [_thread_blocked, id=4328]
      0x00035088 JavaThread "DestroyJavaVM" [_thread_blocked, id=4780]
      0x0afc6460 JavaThread "Thread-1" [_thread_blocked, id=440]
      0x0afd6768 JavaThread "Thread-0" daemon [_thread_blocked, id=4840]
      0x00814cc8 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3076]
      0x00813950 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3248]
      0x00812cc8 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=5140]
      0x00809bf8 JavaThread "Finalizer" daemon [_thread_blocked, id=3704]
      0x00808780 JavaThread "Reference Handler" daemon [_thread_blocked, id=5196]
    Other Threads:
      0x00804530 VMThread [id=736]
      0x00816058 WatcherThread [id=4436]
    VM state:not at safepcnt (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation   total 1984K, used 1897K [0x02850000, 0x02a70000, 0x02d30000)
    *eden space 1792K,  95% used [0x02850000, 0x029fa418, 0x02a10000)*
    * from space 192K, 100% used [0x02a40000, 0x02a70000, 0x02a70000)*
      to   space 192K,   0% used [0x02a10000, 0x02a10000, 0x02a40000)
    tenured generation   total 25896K, used 18178K [0x02d30000, 0x0467a000, 0x06850000)
       the space 25896K,  70% used [0x02d30000, 0x03ef0b60, 0x03ef0c00, 0x0467a000)
    compacting perm gen  total 22784K, used 22721K [0x06850000, 0x07e90000, 0x0a850000)
      * the space 22784K,  99% used [0x06850000, 0x07e806c8, 0x07e80800, 0x07e90000)*
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040d000      D:\apps\Java\jre1.5.0_14\bin\java.exe
    0x7c800000 - 0x7c8c0000      C:\WINDOWS\system32\ntdll.dll
    0x77e40000 - 0x77f42000      C:\WINDOWS\system32\kernel32.dll
    0x77f50000 - 0x77feb000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77c50000 - 0x77cef000      C:\WINDOWS\system32\RPCRT4.dll
    0x76f50000 - 0x76f63000      C:\WINDOWS\system32\Secur32.dll
    0x77ba0000 - 0x77bfa000      C:\WINDOWS\system32\MSVCRT.dll
    0x6d640000 - 0x6d7de000      D:\apps\Java\jre1.5.0_14\bin\client\jvm.dll
    0x77380000 - 0x77411000      C:\WINDOWS\system32\USER32.dll
    0x77c00000 - 0x77c48000      C:\WINDOWS\system32\GDI32.dll
    0x76aa0000 - 0x76acd000      C:\WINDOWS\system32\WINMM.dll
    0x71bc0000 - 0x71bc8000      C:\WINDOWS\system32\rdpsnd.dll
    0x771f0000 - 0x77201000      C:\WINDOWS\system32\WINSTA.dll
    0x71c40000 - 0x71c97000      C:\WINDOWS\system32\NETAPI32.dll
    0x76b70000 - 0x76b7b000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d290000 - 0x6d298000      D:\apps\Java\jre1.5.0_14\bin\hpi.dll
    0x6d610000 - 0x6d61c000      D:\apps\Java\jre1.5.0_14\bin\verify.dll
    0x6d310000 - 0x6d32d000      D:\apps\Java\jre1.5.0_14\bin\java.dll
    0x6d630000 - 0x6d63f000      D:\apps\Java\jre1.5.0_14\bin\zip.dll
    0x68000000 - 0x68035000      C:\WINDOWS\system32\rsaenh.dll
    0x7c8d0000 - 0x7d0cf000      C:\WINDOWS\system32\SHELL32.dll
    0x77da0000 - 0x77df2000      C:\WINDOWS\system32\SHLWAPI.dll
    0x77420000 - 0x77523000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls
                                           _6595b64144ccf1df_6.0.3790.3959_x-ww_D8713E55\comctl32.dll
    0x6d4d0000 - 0x6d4e3000      D:\apps\Java\jre1.5.0_14\bin\net.dll
    0x71c00000 - 0x71c17000      C:\WINDOWS\system32\WS2_32.dll
    0x71bf0000 - 0x71bf8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71b20000 - 0x71b61000      C:\WINDOWS\System32\mswsock.dll
    0x76ed0000 - 0x76efa000      C:\WINDOWS\system32\DNSAPI.dll
    0x76f70000 - 0x76f77000      C:\WINDOWS\System32\winrnr.dll
    0x76f10000 - 0x76f3e000      C:\WINDOWS\system32\WLDAP32.dll
    0x76f80000 - 0x76f85000      C:\WINDOWS\system32\rasadhlp.dll
    0x5f270000 - 0x5f2ca000      C:\WINDOWS\system32\hnetcfg.dll
    0x71ae0000 - 0x71ae8000      C:\WINDOWS\System32\wshtcpip.dll
    0x6d4f0000 - 0x6d4f9000      D:\apps\Java\jre1.5.0_14\bin\nio.dll
    0x6d5f0000 - 0x6d5f6000      D:\apps\Java\jre1.5.0_14\bin\rmi.dll
    0x10000000 - 0x10006000      C:\Program Files\a\lmv\punix.dll
    0x71f50000 - 0x71f58000      C:\WINDOWS\system32\snmpapi.dll
    0x0bb90000 - 0x0bb98000      C:\Program Files\a\lmv\periwin.dll
    0x0bba0000 - 0x0bbab000      C:\Program Files\a\lmv\vas.dll
    0x0bbb0000 - 0x0bbd0000      C:\Program Files\a\lmv\nilm.dll
    0x48890000 - 0x488cd000      C:\WINDOWS\system32\ODBC32.dll
    0x77530000 - 0x775c7000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls
                                            _6595b64144ccf1df_5.82.3790.3959_x-ww_78FCF8D0\COMCTL32.dll
    0x762b0000 - 0x762f9000      C:\WINDOWS\system32\comdlg32.dll
    0x76cf0000 - 0x76d0a000      C:\WINDOWS\system32\iphlpapi.dll
    0x7f010000 - 0x7f134000      C:\WINDOWS\system32\MFC42u.DLL
    0x77670000 - 0x777a9000      C:\WINDOWS\system32\ole32.dll
    0x77d00000 - 0x77d8b000      C:\WINDOWS\system32\OLEAUT32.dll
    0x77210000 - 0x772bb000      C:\WINDOWS\system32\WININET.dll
    0x761b0000 - 0x76243000      C:\WINDOWS\system32\CRYPT32.dll
    0x76190000 - 0x761a2000      C:\WINDOWS\system32\MSASN1.dll
    0x71bb0000 - 0x71bb9000      C:\WINDOWS\system32\WSOCK32.dll
    0x0bda0000 - 0x0bdb7000      C:\WINDOWS\system32\odbcint.dll
    0x0bf20000 - 0x0bf61000      C:\Program Files\a\lmv\JniLib.dll
    0x76cd0000 - 0x76ce9000      C:\WINDOWS\system32\MPRAPI.dll
    0x76df0000 - 0x76e24000      C:\WINDOWS\system32\ACTIVEDS.dll
    0x76dc0000 - 0x76de8000      C:\WINDOWS\system32\adsldpc.dll
    0x76b80000 - 0x76bae000      C:\WINDOWS\system32\credui.dll
    0x76a80000 - 0x76a98000      C:\WINDOWS\system32\ATL.DLL
    0x76e30000 - 0x76e3c000      C:\WINDOWS\system32\rtutils.dll
    0x7e020000 - 0x7e02f000      C:\WINDOWS\system32\SAMLIB.dll
    0x770e0000 - 0x771e8000      C:\WINDOWS\system32\SETUPAPI.dll
    0x77840000 - 0x77882000      C:\WINDOWS\system32\netman.dll
    0x76300000 - 0x764c0000      C:\WINDOWS\system32\netshell.dll
    0x74de0000 - 0x74df2000      C:\WINDOWS\system32\CLUSAPI.dll
    0x76e90000 - 0x76ecf000      C:\WINDOWS\system32\RASAPI32.dll
    0x76e40000 - 0x76e52000      C:\WINDOWS\system32\rasman.dll
    0x76e60000 - 0x76e8f000      C:\WINDOWS\system32\TAPI32.dll
    0x7fcf0000 - 0x7fd7e000      C:\WINDOWS\system32\WZCSvc.DLL
    0x76cc0000 - 0x76cc5000      C:\WINDOWS\system32\WMI.dll
    0x76d10000 - 0x76d2f000      C:\WINDOWS\system32\DHCPCSVC.DLL
    0x76f00000 - 0x76f08000      C:\WINDOWS\system32\WTSAPI32.dll
    0x4b180000 - 0x4b284000      C:\WINDOWS\system32\ESENT.dll
    0x730a0000 - 0x730ae000      C:\WINDOWS\system32\WZCSAPI.DLL
    VM Arguments:
    java_command: C:\Program Files\a\lmv\CDF\b_c_lmv.jar C:\Program Files\a\lmv\CDF
    Launcher Type: SUN_STANDARD
    Environment Variables:
    CLASSPATH=D:\a\Contact Center\Common Components\Cache\lib
    PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;
    C:\Program Files\Rational\ClearCase\bin;C:\Program Files\Rational\common;
    C:\a\Cache\CacheSys\Mgr\a\DLL;C:\Program Files\a\lmv\TAPI;C:\Program Files\a\lmv\
    OS=Windows_NT
    PROCEppoR_IDENTIFIER=x86 Family 6 Model 15 Stepping 11, GenuineIntel
    ---------------  S Y S T E M  ---------------
    OS: Windows Server 2003 family Build 3790 Service Pack 2
    CPU:total 4 (cores per cpu 4, threads per core 1) family 6 model 15 stepping 11, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 2097151k(2097151k free), swap 4194303k(3537076k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_14-b03) for windows-x86, built on Oct  5 2007 01:21:52 by "java_re" with MS VC++ 6.0
    {code}
    Sorry it's so long.
    Anyways my dll is Jni_interface.dll. It loads legacy.dll, and its dependents. Other code also uses these libraries.
    *So question 1* :
    I load the jni_interface.dll (and also the legacy.dll and its dependents) library at the start of execution in a static class and so it is never unloaded. I do this because the legacy.dll will be calling functions in my Jni_Interface.dll, which are propagated into the Java class on top of it all. Does this stop other code from loading the legacy.dll or from using its functionality?
    *On to question 2*:
    Here is the logged output from my library, immediately before the crash:
    {code:java}
          ***     JNI INTERFACE LIB - LOG 21 Jul 08 19:11:35.682     *** Log Level = DEBUG
    21 Jul 08 19:11:35.698 - Level[ info ] -          Thread[ 716 ]     :: initRegistry     Registry initialisation ok
    21 Jul 08 19:11:35.760 - Level[ info ] -          Thread[ 716 ]     :: vPersistData     vPersistData() called
    21 Jul 08 19:11:35.823 - Level[ debug ] -     Thread[ 716 ]     :: doVoidCallback() [ persistDataHandler ]       Signature  = (I)V
    21 Jul 08 19:11:35.823 - Level[ debug ] -     Thread[ 716 ]     :: doVoidCallback() [ setMaxUsageHandler ]       Signature  = (I)V
    21 Jul 08 19:11:35.838 - Level[ info ] -          Thread[ 716 ]     :: Constructor     _instance is instantiated
    21 Jul 08 19:11:35.838 - Level[ info ] -          Thread[ 716 ]     :: initiateLegacy()     JniManager initialisation successful
    21 Jul 08 19:11:35.838 - Level[ info ] -          Thread[ 716 ]     :: initiateLegacy()     Initial state is NORMAL
    21 Jul 08 19:11:35.838 - Level[ debug ] -     Thread[ 716 ]     :: getLicense()     Get request
    21 Jul 08 19:11:36.010 - Level[ debug ] -     Thread[ 716 ]     :: getLicense()     Get request
    {code}
    Now notice that the current thread in the Hotspot output is NOT the thread in my library. Thread 716 is a java thread by the way. This log appears absolutely fine according to me. Also note that in the hotspot log there is no mention of my java component  (the "boss" class), which is called LegacyLM. So does that mean that is in not to do with my code even though the problem only occurs when my component is included? Or is this just the cryptic nature of these problems?
    *Question 3*:
    If you see the heap section of the report, there are 3 items that I have highlighted that seem like very high values. Is this a possible cause of a crash? Or would I have received an "Out of space" error instead?
    In terms of actual code, I cannot post much, but I can tell you what I have done to try to solve the problem:
    (i) I have added mutex synchronisation to most of my shared variables.
    (ii) I have used monitorEnter and MonitorExit to control callback access to my java class.
    (iii) I have re-organised my code and replaced nearly every occurance of non-string character arrays with string equivalents.
    (iv) I changed how I attach and detach my threads so that I only attach/detach ones that previously were not (i.e. I leave java threads alone)
    As I said at the start, I am utterly confused and I don't have much of an idea about how to proceed. I'd really really appreciate a pointer or two.
    Thanks in advance.
    D
    Edited by: Diom1982 on Jul 21, 2008 12:35 PM
    Edited by: Diom1982 on Jul 21, 2008 12:40 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                

    For those of you who might be interested, I found a solution to this problem (my version, at least). In my situation, this was caused by attempting to access the fields of a ActionEvent object in VC++ by casting a variant to a BSTR. While the cast "worked", it somehow caused the state of the Java plugin or the AxBridge DLL to get flummoxed, causing the VM dump far downstream.
    The takehome message?
    When seeing problems like this in the plugin / ActiveX bridge, do not assume that the causative error is occuring in the location noted in the stack trace. Visual C++, in all of its gory unprotected glory, gives full memory access to the DLL interface and you can do a serious fandango on the VM core. that won't necessarily bite you until later.
    PS -- Sun gurus ... does this present a security violation in the Java paradigm?

  • App error 205 reset- NEED HELP

    Hi, so I have a Blackberry  Cuve 8900. I was downloading something and than my usb connection accidently resetted on my laptop portable. I then unplugged my usb cable from my laptop while it is updating. Then I get this screen saying, "APP ERROR 205 Reset". What do I do?
    Solved!
    Go to Solution.

    Try this first, before anything more complicated:
    See the link below, for the download and simple installation instructions.
    First locate your carrier and the OS file you wish to use.
    http://na.blackberry.com/eng/support/downloads/download_sites.jsp
    1. Download the OS file to the PC then install it to the PC by running (double clicking) the file you downloaded.
    2. Go to c:\program files\common files\research in motion\apploader and delete the file named "vendor.xml."
    3. Plug in BB and double click on "Loader.exe." It's located in the same place as the above vendor.xml file.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • How to use dual monitor display in windows 7 using MSTSC command.......??????

    how to use dual monitor display in windows 7 using MSTSC command ....?????

  • New messages not visible in Mail

    I use Mail for all of my gmail accounts. Recently I noticed that there were no new messages appearing in the Inbox for my principle, general purpose gmail account. Furthermore, the circular array of 'rotating' grey rectangles at the right hand side o

  • Mix reactions with N8 - Solutions needed

    Hi, I have been using the N8 now for the last 20 days. The journey has been mostly pleasing but I found some nagging issues, when I was travelling in the US and Germany: 1. Data connectivity works perfectly in Finland, did not work in Germany and the

  • Skip Lot  inspection

    My client wants to automatically subject every 10th lot received from a vendor to go into Quality inspection lot. It is vendor specific i.e if we receive 10th lot from a vendor ,system should flag that it is to be taken into Quality insoection stock

  • CRMXIF_PRODUCT_MATERIAL_SAVE - update Product Category

    Hello, i'm trying to update, in CRM, the Product  Category using bapi CRMXIF_PRODUCT_MATERIAL_SAVE. Can anyone help me to use this function? Thank