Failed Running Interest Example in JBoss

Hi there,
I try to create jar for this example using ANT, but the following mesg appears: How should i overcome this?
-------- Error building Interest example
D:\RereferenceJBoss\documentation-example\examples\build>ant intro-interest-jar
Buildfile: build.xml
validate-servlet:
BUILD FAILED
D:\RereferenceJBoss\documentation-example\examples\build\build.xml:36: Could not create task of type: path. Common solutions are to use taskdef to declare your task, or, if this is an optional task, to put the optional.jar in the lib directory of your ant instalation <ANT_HOME>.

This error appears if the jndi initial context is not being set properly. You can either set the initial context by passing a jndi.properties file containing the following:
java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
java.naming.provider.url=jnp://localhost:1099
java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
or you can also pass these parameters directly in the InterestClient itself by adding these lines to the starting of the class i.e before the try statement
* Created on Nov 26, 2003
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
import javax.rmi.PortableRemoteObject;
import javax.naming.*;
import src.*;
//import java.util.*;
* @author mazumdar
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
public class InterestClient {
     public static void main(String[] args) {
          try{
               System.setProperty(Context.INITIAL_CONTEXT_FACTORY,"org.jnp.interfaces.NamingContextFactory");
               System.setProperty(Context.PROVIDER_URL,"jnp://localhost:1099");
               System.setProperty("java.naming.factory.url.pkgs","org.jboss.naming:org.jnp.interfaces");
               InitialContext jndiContext = new InitialContext();
               System.out.println("Got Context");
               Object ref = jndiContext.lookup("src/Interest");
               System.out.println("Got Reference");
               InterestHome home = (InterestHome)PortableRemoteObject.narrow(ref,InterestHome.class);
               Interest interest = home.create();
               System.out.println("Interest on 1000 units, at 10% per period,for 2 years is: ");
               System.out.println(interest.calculateCompoundInterest(1000,0.10,2));
          catch(Exception e){
               System.out.println(e.toString());
The above is the complete source file of the InterestClient which I have successfully run on JBoss-3.2.2 and ant-1.6.
Just make sure that all the required client jars of JBoss are passed in the classpath during compiling and running the InterestClient using ant.
Hope this works answers your question. Happy coding....

Similar Messages

  • Error while running struts example on JBOSS

    Hi,
    In any application of struts wherever i am using formbeans, i am getting following error.
    If i remove <html:form> and all <html:...> types of tag, it will just show the jsp page.
    If anybody knows the solution please help me.
    Following are the details.
    After deploying application on jboss on index.jsp i am clicking on the link for DynaAddress.jsp it is giving following error
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Unable to compile class for JSP
    Generated servlet error:
    D:\jboss-3.2.7\server\default\work\jboss.web\localhost\ExampleDynaAction\org\apache\jsp\web\DynaAddress_jsp.java:113: jspxmeth_bean_message_0(javax.servlet.jsp.tagext.JspTag,javax.servlet.jsp.PageContext) in org.apache.jsp.web.DynaAddress_jsp cannot be applied to (org.apache.struts.taglib.html.HtmlTag,javax.servlet.jsp.PageContext)
    if (_jspx_meth_bean_message_0(_jspx_th_html_html_0, jspxpage_context))
    ^
    Generated servlet error:
    D:\jboss-3.2.7\server\default\work\jboss.web\localhost\ExampleDynaAction\org\apache\jsp\web\DynaAddress_jsp.java:116: jspxmeth_html_base_0(javax.servlet.jsp.tagext.JspTag,javax.servlet.jsp.PageContext) in org.apache.jsp.web.DynaAddress_jsp cannot be applied to (org.apache.struts.taglib.html.HtmlTag,javax.servlet.jsp.PageContext)
    if (_jspx_meth_html_base_0(_jspx_th_html_html_0, jspxpage_context))
    ^
    Generated servlet error:
    D:\jboss-3.2.7\server\default\work\jboss.web\localhost\ExampleDynaAction\org\apache\jsp\web\DynaAddress_jsp.java:121: jspxmeth_html_form_0(javax.servlet.jsp.tagext.JspTag,javax.servlet.jsp.PageContext) in org.apache.jsp.web.DynaAddress_jsp cannot be applied to (org.apache.struts.taglib.html.HtmlTag,javax.servlet.jsp.PageContext)
    if (_jspx_meth_html_form_0(_jspx_th_html_html_0, jspxpage_context))
    ^
    Generated servlet error:
    D:\jboss-3.2.7\server\default\work\jboss.web\localhost\ExampleDynaAction\org\apache\jsp\web\DynaAddress_jsp.java:190: jspxmeth_html_errors_0(javax.servlet.jsp.tagext.JspTag,javax.servlet.jsp.PageContext) in org.apache.jsp.web.DynaAddress_jsp cannot be applied to (org.apache.struts.taglib.html.FormTag,javax.servlet.jsp.PageContext)
    if (_jspx_meth_html_errors_0(_jspx_th_html_form_0, jspxpage_context))
    ^
    Generated servlet error:
    D:\jboss-3.2.7\server\default\work\jboss.web\localhost\ExampleDynaAction\org\apache\jsp\web\DynaAddress_jsp.java:200: jspxmeth_html_text_0(javax.servlet.jsp.tagext.JspTag,javax.servlet.jsp.PageContext) in org.apache.jsp.web.DynaAddress_jsp cannot be applied to (org.apache.struts.taglib.html.FormTag,javax.servlet.jsp.PageContext)
    if (_jspx_meth_html_text_0(_jspx_th_html_form_0, jspxpage_context))
    ^
    Generated servlet error:
    D:\jboss-3.2.7\server\default\work\jboss.web\localhost\ExampleDynaAction\org\apache\jsp\web\DynaAddress_jsp.java:210: jspxmeth_html_text_1(javax.servlet.jsp.tagext.JspTag,javax.servlet.jsp.PageContext) in org.apache.jsp.web.DynaAddress_jsp cannot be applied to (org.apache.struts.taglib.html.FormTag,javax.servlet.jsp.PageContext)
    if (_jspx_meth_html_text_1(_jspx_th_html_form_0, jspxpage_context))
    ^
    Generated servlet error:
    D:\jboss-3.2.7\server\default\work\jboss.web\localhost\ExampleDynaAction\org\apache\jsp\web\DynaAddress_jsp.java:221: jspxmeth_html_text_2(javax.servlet.jsp.tagext.JspTag,javax.servlet.jsp.PageContext) in org.apache.jsp.web.DynaAddress_jsp cannot be applied to (org.apache.struts.taglib.html.FormTag,javax.servlet.jsp.PageContext)
    if (_jspx_meth_html_text_2(_jspx_th_html_form_0, jspxpage_context))
    ^
    Generated servlet error:
    D:\jboss-3.2.7\server\default\work\jboss.web\localhost\ExampleDynaAction\org\apache\jsp\web\DynaAddress_jsp.java:229: jspxmeth_html_submit_0(javax.servlet.jsp.tagext.JspTag,javax.servlet.jsp.PageContext) in org.apache.jsp.web.DynaAddress_jsp cannot be applied to (org.apache.struts.taglib.html.FormTag,javax.servlet.jsp.PageContext)
    if (_jspx_meth_html_submit_0(_jspx_th_html_form_0, jspxpage_context))
    ^
    Generated servlet error:
    D:\jboss-3.2.7\server\default\work\jboss.web\localhost\ExampleDynaAction\org\apache\jsp\web\DynaAddress_jsp.java:234: jspxmeth_html_cancel_0(javax.servlet.jsp.tagext.JspTag,javax.servlet.jsp.PageContext) in org.apache.jsp.web.DynaAddress_jsp cannot be applied to (org.apache.struts.taglib.html.FormTag,javax.servlet.jsp.PageContext)
    if (_jspx_meth_html_cancel_0(_jspx_th_html_form_0, jspxpage_context))
    ^
    9 errors
         org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:84)
         org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:332)
         org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:437)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:497)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:476)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:464)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:511)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:295)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
         org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:75)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.0.30 logs.
    while clicking jsp for validator it is also ginig me the same error.
    f anybody knows the solution please help me,
    thanks,
    Message was edited by:
    myDisha

    Hi,
    Goto Project Properties:
    Search for the following in left pane:
    Oracle Applications -> Runtime Connection
    DBC file : Choose the correct dbc file from your local machine. You have to get it from your dba and paste it in this path: jdevhome\jdev\dbc_files\secure\*.dbc
    User Name: Application User Name
    Password : Application password
    Responsibilty Key:
    Goto Application Developer --> Responsibility --> Define -- >
    Query for the available responsibility for the given user. Say for example: "Order Management Super User"
    Application: Order Management
    Responsibilty Key: ORDER_MGMT_SUPER_USER
    Application Short Name:
    Goto Application Developer --> Application --> Register -- >
    Query for the given application " Order Management"
    Short Name: ONT
    Responsibility Key and Application Short Name depends upon the object you are developing.
    Regards.

  • I can't install Komplete Elements. I got the message Install Failed. The following install step failed: Run postflight script Kontakt 5 Content.

    When I tried to install the free copy of Komplete Elements that came with my Komplete Audio 6 Interface I got the message : Install failed. The following install step failed :Run postflight script 5 Content. I was able to insall the Audio 6 drivers but didn't choose to load Traktor or Cubase LE because I use Garageband.
    I have a Macbook. Running version 10.5.8. GHz Intel Core 2 Duo.
    I tried the url their tech support sent me but that didn't work either.
    If this is not the right forum please redirect me.

    Thanks for answering. The weird part is that I was able to install Audio 6 and record my bass but Elelements won't install at all. When I orginally ordered it the site said that Elements would run on 10.5.8 but I guess you're right. I am going to have someone check it out later today. I'll let you know what happens. If you only want the Audio 6 Interface they sell it for $229 at Music123. I shouldn't complain because Elelements was free but the more I looked into it the more I became interested.. Another strange thing is that I told Komplete tech support I had 10.5.8 and they never told me it wouldn't work.

  • Running weblogic examples and Jms configuration

    I am new to JMS. I configured the JMS server using the weblogic console page and i created JMS server under Services. I am having only one server. I am starting the console using http://localhost:7001/
              Now i want to run the examples of weblogic (QueueSend.java and QueueReceive.java).
              What are the changes i have to do in the given java files and how to run the examples.
              Please give the steps to configure JMS server and run the example and what are the parameters i have to pass to these file?
              Thank you

    Hello,
              I am having problem with WL. I use version 8.1 with multiple server.
              The Admin server works fine, but when I try to start other servers, I am getting the following errors.
              Aug 23, 2005 2:48:16 PM EDT> <Error> <NodeManager@*.*:5555> <SocketInputHandler: Command read failed 'Read channel closed.' on socket /127.0.0.1>
              <Aug 23, 2005 2:48:16 PM EDT> <Error> <NodeManager@*.*:5555> <Failed to write to socket Read channel closed., to /127.0.0.1>
              <Aug 23, 2005 2:48:16 PM EDT> <Error> <NodeManager@*.*:5555> <Failed to write to socket Write Channel Closed, possible SSL handshaking or trust failure, to /127.0.0.1>
              <Aug 23, 2005 2:48:20 PM EDT> <Info> <NodeManager@*.*:5555> <Starting Server devDomain::buyerserver1 ...>
              <Aug 23, 2005 2:48:21 PM EDT> <Info> <NodeManager@*.*:5555> <Server devDomain::buyerserver1 started, process id = 4,068>
              <Aug 23, 2005 2:49:33 PM EDT> <Info> <NodeManager@*.*:5555> <__COMMAND_DONE__>
              Can someone please help?
              Thank you.

  • I am trying to update my iTunes to 10.5.1 so that I can upgrade my 3GS phone but am getting the following error message when trying to install the itunes:Install step failed: Run pre upgrade script for apple mobile device support. Contact software manufac

    I am trying to update my iTunes to 10.5.1 so that I can upgrade my 3GS phone but am getting the following error message when trying to install the itunes: Install step failed: Run pre upgrade script for apple mobile device support. Contact software manufacturer for assistance. I am on a MacBook pro running 10.5.8 OS. Has anyone seen this before and how can I get it resolved.
    Thanks for your help in advance....

    Did you ever figure out the problem? "Contact Software Manufacturer"?? That sounds ominous... I've got the same issue and I'm pretty durn aggravated right about now....
    Thanks!

  • Install Failed:  The following install step failed: run preflight script

    I'm trying to reinstall Photoshop CS2 on an intel iMac, OS 10.5.5. I ran the install program, after a few seconds I get the following error message: 

"Install Failed: The following install step failed: run preflight script for Adobe Photoshop CS2. Contact the software manufacturer
for assistance." (I did contact adobe, but they no longer support CS2) Originally, I had installed PS CS2 when I was using OS 10.4.X, then I upgraded to 10.5.x. PS CS2 was working fine on my system. Then I accidentally deleted the program, now I'm having trouble reinstalling. I'd appreciate any help that you can give me.

    I encountered the exact same problem - I had upgraded to CS2 from a previous version of Photoshop, back
    when I was using OSX 10.3.9. Later, I upgraded my OS from 10.3.9, to Leopard (10.5.8.)
    CS2 always ran flawlessly, through all those systems.
    Then I had occasion to reformat my HD and reinstall Leopard 10.5.8.
    That's when the CS2 installer failed, with the same message mentioned above.
    When I called in, they basically said, buzz off....we won't help you.
    First, this shows that their software is flawed. 
    They managed to allow this problem to occur due to inept programming.
    Now they are either incapable, or unwilling, to write a programming fix for this problem.
    It reeks olf ineptitude, plus colossal, inexcusable arrogance and disrespect for their customer base.
    Just my humble opinion of course...and I've been a Photoshop user since 1990.

  • Can it be easier when running  simple examples in jmstutor

    Hi, I'm a new user of java. when I tried to use Simple examples in jms_tutorials, such as SimpleQueueSender.java, I found I had to type a long command:
    java -Djms.properites=%J2EE_HOME%\config\jms_client.properties SimpleQueueSender MyQueue 3
    It seems a little inconvienent.
    Can I first set the properties, then run the programe?
    How?
    Thanks a lot!

    You could put the command in a script and run it that way. But you do need to pass that -D option to the java command at J2EE 1.3.1.
    You could move to J2EE 1.4 Beta and use the J2EE Tutorial Addendum, which simplifies running the examples by providing Ant build scripts.
    Kim Haase
    Technical Writer
    Sun Microsystems, Inc.

  • Is anyone know how to run the examples in 3d user interfaces with java 3d

    hi dear ,
    I am trying to run the examples in 3d user interfaces with java 3d.
    I hope i can load the library in jcreator. but the libarary for this book are classes files , it do not have jar file for it . the jcreator do not read these classes . i do not know why ? i am wonder if there any one run these code before can give me some idear .
    thanks so much .
    the code u can get from this link.
    http://www.manning.com/books/barrilleaux/source
    thank you for u to have a look for me .
    regards
    xiaocui

    <h2>{color:red}CROSS POSTED{color}</h2>
    [t-5289810]
    Cross posting is rude.
    db

  • Running VC example applications

    I'm trying to learn VC with the examples provided by VC Modeling Resource Center (Visual Composer Modeling Resource Center [original link is broken]).
    I downloaded an example and it comes with two files (gml and sql). I tried to follow the tutorial "How to run VC applications" (https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/60e62459-7975-2910-64a2-8a61b0c83208) but on beggining of tutorial says about SQL Server Enterprise Manager. Isn't that a Microsoft apllication ? I dont have that software because my server is Unix. So the begging of that tutorial don't work for me.
    Can anyone help me please ?
    Thanks

    Hi Vitor,
    I'm afraid you need an SQL DB in order to run this example.
    You can find good examples for learning Visual Composer (using R3 or BI systems) in the Modeler's guide - https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/63f2052e-0c01-0010-b9a2-e1f7457a7fbe - in the "Go and Create" chapter.
    Good Luck,
    Dafna

  • Install step failed: run preinstall script for DeveloperTools

    During install of option install, I received the install failed for DeveloperTools. I am juts starting to use a mac for development and was trying to install all the development tools. How can I get this install successfully?
    Full Log entry follows:
    Oct 31 23:34:33 Macintosh Installer[1534]: DeveloperTools Installation Log
    Oct 31 23:34:33 Macintosh Installer[1534]: Opened from: /Volumes/Mac OS X Install DVD/Optional Installs/Xcode Tools/Packages/DeveloperTools.pkg
    Oct 31 23:34:36 Macintosh Installer[1534]: fileURLForURL = x-disc://Mac%20OS%20X%20Install%20DVD/Optional%20Installs/Xcode%20Tools/Package s/DeveloperTools.pkg
    Oct 31 23:34:36 Macintosh Installer[1534]: fileURLForURL = file://localhost/Volumes/Mac%20OS%20X%20Install%20DVD/Optional%20Installs/Xcode% 20Tools/Packages/DeveloperTools.pkg
    Oct 31 23:34:49 Macintosh Installer[1534]: Install: "DeveloperTools"
    Oct 31 23:34:49 Macintosh Installer[1534]: DeveloperTools.pkg : com.apple.pkg.DeveloperToolsLeo : 4.0.0.9000000000.1.1192168948
    Oct 31 23:34:49 Macintosh Installer[1534]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Mac%20OS%20X%20Install%20DVD/Optional%20Installs/Xcode% 20Tools/Packages/DeveloperTools.pkg
    Oct 31 23:34:50 Macintosh Installer[1534]: Create temporary directory "/private/tmp/DeveloperTools.pkg.1534N7IixP"
    Oct 31 23:34:50 Macintosh Installer[1534]: Processing DeveloperTools:
    Oct 31 23:34:50 Macintosh Installer[1534]: It took 0.60 seconds to create the install plan for DeveloperTools.
    Oct 31 23:34:50 Macintosh Installer[1534]: run preinstall script for DeveloperTools
    Oct 31 23:34:51 Macintosh Installer[1534]: Install failed: The following install step failed: run preinstall script for DeveloperTools. Contact the software manufacturer for assistance.
    Oct 31 23:34:51 Macintosh Installer[1534]: 'Install Failed' UI displayed message:'The following install step failed: run preinstall script for DeveloperTools. Contact the software manufacturer for assistance.'.

    "Create the folder "Developer" on your hard-disk."
    I already had the Developer folder at the top level of the disk. What did work for me was to not let the install location default, but to actively select the Developer folder. (You may have to modify some permissions for this.) The install was a success and I've confirmed the tools are working.
    Good luck!
    Mark

  • Trying to run the example "rf record and playback reference application"

    http://zone.ni.com/devzone/cda/epd/p/id/5894   trying to run this example but a lot of files are not being found.  I'm using Labview 8.5 with version 4 of the sound and vibration toolkit.  I suspect the problem is the old toolkit version.  Can someone confirm? Can't find any info on upgrading to toolkit so I suppose it would mean a new purchase?  thanks

    Hello Mike,
    This example is designed for our RF Hardware platform.  You need the RFSG driver, RFSA driver, Spectral Measurements Toolkit, Modulation Toolkit, and the advanced signal processing toolkit for the example to run.  You should be able to see this under the software requirements at the bottom of the page.  The two drivers should be available for download on our website, but the toolkits must be purchased and they aren't generally available with the dev suite.
    I hope this helps,
    Paul C
    Message Edited by Paul C. on 03-11-2010 12:28 PM

  • Cant upgrade itunesThe following install step failed: run preupgrade script

    The following install step failed: run preupgrade script for AppleMobileDeviceSupport. Contact the software manufacturer for assistance

    Try clicking on the Apple icon, upper left corner and going to "Forced Quit"
    Click in iTunes and then do a Forced Quit.
    Try install again.  That worked for me.
    Gary from Sandy

  • I keep getting this message when wanting to download latest itunes software update :The following install step failed: run preupgrade script for AppleMobileDeviceSupport. Contact the software manufacturer for assistance. what can i do to download?

    The following install step failed: run preupgrade script for AppleMobileDeviceSupport. Contact the software manufacturer for assistance. what can i do to download software when the above message keeps popping up...not allowing me to download

    I had the same problem this weekend.  The iphone 4s needed Itunes10.5 to sync to her Asus Windows 7 Laptop.  When I tried to download from the Apple website I got the error that the windows installer was missings files or something like that.  I uninstalled itunes and tried again but that didn't work.  Then I redownloaded itunes 10.3 just to have a working version in case I gave up.  Then I found site that suggested I update Windows by going through the start menu and while doing that I found an update Apple itunes file. 
    Goto Start and type Widows Update in the seach window.  Click on check for updates (I already was current with all updates but I suggest you download the updates if there are some available.
    Goto start and this time just type update in the search window.  Look for the Apple itunes update link and click on it.  It found there were updates for itunes 10.5, Quick time, Safari, and Icloud.  I checked all the updates except for Safari, since we don't use it (yet).
    The install started then seemed to stall at one spot for ~3min but then completed successfully.  I open itunes and had her synced with Outlook Contact, Email, Calender, and Notes in 5 minutes.  I did already configure Outlook by going to tools and Trust Center.
    I hope this works.

  • When I try to install an iTunes upgrade I get this message: The following install step failed: run preupgrade script for AppleMobileDevice Support.

    When I try to install upgrades for itunes on my Mac, I get the following message: The following install step failed: run preupgrade script for AppleMobileDevice Support.  When this happened before I trashed itunes and started over, but I don't want to have to do that everytime i install an upgrade.

    C,
    I ran into the same issue. Make sure your apple device in disconnected from the computer. It interrupts the itunes download. Disconnect and make sure itunes is closed, then try installing again. Remember that even though you close of itunes, it is often still running in the background. To make sure it's closed, click and hold the mouse on the itunes icon and select quit from the drop down menu. Then try installing the updated itunes.
    Hope that helps.
    SoEreal

  • The following install step failed: run preupgrade script for AppleMobileDeviceSupport. Contact the software manufacturer for assistance.

    Just upgraded software. When system prompts to update itunes and in the middle of the system's attempt to complete the upgrade, the message, "The following install step failed: run preupgrade script for AppleMobileDeviceSupport. Contact the software manufacturer for assistance" appears.
    I don't understand what "preupgrade" needs to be done.
    Anyone else experience this?
    Suggestions?

    -= Pre Upgrade Script Error with iTunes =-
    Do a general web search and you will discover there are many answers, none definitive.
    iTunes: How to remove and reinstall the Apple Mobile Device Service on Mac OS X 10.6.8 or Earlier - http://support.apple.com/kb/ht1747
    scarier:
    https://discussions.apple.com/message/10464515#10464515

Maybe you are looking for

  • How can I deactivate when Acrobat Pro XI wont load?

    I installed a purchased upgrade of Acrobat Pro XI on this computer but all I now get is a screen headed 'Sign in Required' inviting me to register my trial version but providing no links to do so. Much of Acrobat XI Pro did not work.properly but Adob

  • How do I use a second computer as a monitor?

    Hi, I have an iMac and a MacBook Pro. I want to primarily use my iMac and use my macbook as a monitor. I'm a musician and I want to run Ableton on one screen and maschine on another. For some reason I can't find any forums explaining this, unless I'm

  • Option-click icon in dock to hide app?

    this has been a standard dock feature up until mavericks. i know that option clicking a *different* open app icon in the dock will hide the focused app and bring the target app to the foreground, but no longer can you just click the foreground app ic

  • Very simple XML question

    1. I have a simple table with a clob to store an unlimited number of contacts as follows .... CREATE TABLE MY_CONTACT (USER_id NUMBER, All_Contacts SYS.XMLTYPE ); 2. I inserted 1 user with 2 contacts as follows : INSERT INTO MY_CONTACT VALUES(1, sys.

  • Error installing j2SDK 1.3.1_02 on Windos XP

    When I try installing J2 SDK 1.3.1_02 on XP, it returns an error when it starts "Setting up JAVA 2 Runtime Environment. This is the erro: "JAVA 2 Runtime Environment Setup failed with a return code -1" Any ideas what this is and how to fix it. Thanks