Exception!! help me : (

Hi,
my program keeps on throwing a java.net.ConnectException
meaning...Signals that an error occurred while attempting to connect a socket to a remote address and port. Typically, the connection was refused remotely (e.g., no process is listening on the remote address/port).
but im trying to run my program (A server) on my PC and ive passed 127.0.0.1 (home) to it as arguments
Could someone please help me : ) thank you

Hi,
Im trying to run the server, here is the code for the server main method:
public class AuctionServer
     public static void main(String[] args)
          try
               // create and initialize the ORB
               ORB orb = ORB.init(args, null);
               // get reference to rootpoa & activate the POAManager
               POA rootpoa = POAHelper.narrow(orb.resolve_initial_references("RootPOA"));
               rootpoa.the_POAManager().activate();
               // create servant and register it with the ORB
               ParticipantImp partImp = new ParticipantImp();
               partImp.setORB(orb);
               CoordinatorImp coorImp = new CoordinatorImp();
               coorImp.setORB(orb);
               // get object reference from the servant
               org.omg.CORBA.Object refP = rootpoa.servant_to_reference(partImp);
               Participant hrefP = ParticipantHelper.narrow(refP);
               org.omg.CORBA.Object refC = rootpoa.servant_to_reference(coorImp);
               Coordinator hrefC = CoordinatorHelper.narrow(refC);
               // get the root naming context
               org.omg.CORBA.Object objRef = orb.resolve_initial_references("NameService");
              // Use NamingContextExt which is part of the Interoperable
              // Naming Service (INS) specification.
              NamingContextExt ncRef = NamingContextExtHelper.narrow(objRef);
              // Bind the object reference in naming
              NameComponent pathP[] = ncRef.to_name("AuctionParticipant");
              ncRef.rebind(pathP, hrefP);
              NameComponent pathC[] = ncRef.to_name("AuctionCoordinator");
              ncRef.rebind(pathC, hrefC);
               System.out.println("Auction Server ready and waiting...");
              // wait for invocations from clients
              orb.run();
          catch(Exception e)
               System.out.println("ERROR: " + e);
}any help would greatly help, thanks again : )

Similar Messages

  • Invalid Cursor state Exception  -  Help required

    Hi,
    I'm having a web page(JSP), which is making use of 3 ResultSet objects. Using the first two, i'll populate two different Drop down list, with values from database(Access) while loading the page for first time.
    Now if the user select any value from any (or both) of drop down list and clicks submit, i need to display all values in database, meeting the criteria from first & second drop down list. For this selection, i'm using the third ResultSet variable. While executing the query, i'm sure that 3rd ResultSet is returning some value. But when i try to retrieve the value to a string variable, i'm getting the Invalid cursor state exception.
    Throughout the page, i haven't closed any of the ResultSet. When i closed the first and second ResultSets in the third function(where 3rd ResultSet is used), i'm not getting any value. Its returning like ResultSet closed.
    Please help me to get this solved. It's very urgent because without this, i cannot proceed further. Please share your ideas.
    Thanks in advace for your valuable help

    If you open a new resultset within the same statement, all previously opened will be closed.
    Read the API docs, luke.

  • Catching an exception (help)!!!

    Hi everyone, the problem i have is when the user enters a number that is out of bounds (higher or lower than the excepted values it should prompt the program to write to the screen "out of range, try again" or something along those lines.
    However, it instead just prints "error - program terminated" which is the message that should be printed when there is a different problem within the program.
    Can anyone help me get the program to print the correct messages, you can see what i mean from the code:
    import java.io.*;
    import java.util.ArrayList;
    public class FlatCost { 
        ArrayList floors = new ArrayList();
        public FlatCost(String filename)  {   
            try    {     
                readDataFromFile(filename);
                BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
                int floor;
                int rooms;     
                String another = "y";     
                while(another.equalsIgnoreCase("y"))      {
                    System.out.print("\nEnter floor number (0 for ground): ");
                    floor = Integer.parseInt(in.readLine());      
                    if(floor < 0 || floor > floors.size())        {
                    System.out.println("floor out of range, try again");       
                else        {
                    System.out.print("\nEnter no. rooms: ");
                    rooms = Integer.parseInt(in.readLine());         
                    if(rooms < 0 || rooms > ((String[])floors.get(floor)).length)          {
                        System.out.println("rooms out of range, try again");         
                    else          {
                        System.out.println("\nThe cost of a "+rooms+"-room flat on floor "+floor+" is "+                                  
                        ((String[])floors.get(floor))[rooms+1]+" per month");
                        System.out.print("\nAnother? (y/n): ");
                        another = in.readLine();         
            catch(Exception e){
                System.out.println("error - program terminated");
    public void readDataFromFile(String filename)throws Exception {
    BufferedReader br = new BufferedReader(new FileReader(filename));
    String line = "";
    while((line = br.readLine()) != null)
    floors.add(line.split(" "));
    br.close();
    public static void main(String args[])throws IOException{
    new FlatCost(args[0]);
    }any help is appreciated
    thanks
    Sarah x

    I barely know where to begin.
    Start by printing out the stack trace when you catch an exception. That'll give you more information than the message you're printing out. You know the program is terminating - you need to know why.
    You're writing in a VERY procedural style. There's little or nothing object-oriented about what you're doing.
    You've got a bunch of stuff in that constructor that really doesn't belong there. You shouldn't have code to continuously ask a client for a floor and room number in a constructor. That really belongs in an application that drives the object, like the main method that you wrote.
    Your FlatCost can read in a file that contains floor/room/price information, but if I were writing the application I'd read it in and store it in the ArrayList as you've done. Then I'd have a getCost() method that would take floor and room count as parameters and return the total cost.
    Learning how to program is learning how to debug. I'd rewrite things a little bit and put System.out.println() statements into the code to narrow down exactly where the error was occurring and why. It won't take you long to figure it out. You don't even need a fancy debugger or IDE.

  • Weblogic Server exception help

     

    It means that your ejb timed out waiting for a database connection from the
    pool.
    Follow-ups to weblogic.developer.interest.jdbc.
    -- Rob
    Rob Woollen
    Software Engineer
    BEA WebLogic
    [email protected]
    Atish Ray wrote:
    I have come across this exceptio a no of times (infrequently). Happens
    during loadtests. Used WL server 4.03
    Pleas help.
    Wed Sep 01 22:55:39 EDT 1999:<I> <EJB> Exception in postInvoke:
    javax.jts.TransactionRolledbackException: Transaction TxC (468430596, xid =
    936239392129_107110, timeout = 60, txState = Rolledback, root = null has
    been rolled back.Reason: Transaction rolled back due to beforeCompletion
    exception
    .Nested exception : java.sql.SQLException: Exception raised by connection
    pool :weblogic.common.ResourceException: None available
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at weblogic.common.ResourceException.<init>(Compiled Code)
    at weblogic.common.internal.ResourceAllocator.reserve(Compiled Code)
    at weblogic.common.internal.ResourceAllocator.reserve(Compiled Code)
    at weblogic.common.internal.ResourceAllocator.reserveWaitSecs(Compiled
    Code)
    at weblogic.jdbc.common.internal.ConnectionPool.reserve(Compiled Code)
    at weblogic.jdbc.common.internal.ConnectionPool.reserveWaitSecs(Compiled
    Code)
    at weblogic.jdbc.jts.Connection.openConnectionIfNecessary(Compiled Code)
    at weblogic.jdbc.jts.Connection.prepareStatement(Compiled Code)
    at com.att.cm.ejb.entity.session.UserSessionPSJDBC.update(Compiled Code)
    at weblogic.ejb.internal.EJBObjectImpl.updatePstoreIfNecessary(Compiled
    Code)
    at weblogic.ejb.internal.EJBObjectImpl.preSuccessfulFinish(Compiled Code)
    at weblogic.ejb.internal.EJBObjectImpl.beforeCompletion(Compiled Code)
    at weblogic.jts.internal.CoordinatorImpl.notifyBefore(Compiled Code)
    at weblogic.jts.internal.CoordinatorImpl.prepare(Compiled Code)
    at weblogic.jts.internal.CoordinatorImpl.commit(Compiled Code)
    at weblogic.jts.internal.TxContext.commit(Compiled Code)
    at weblogic.ejb.internal.EJBObjectImpl.postInvoke(Compiled Code)
    at
    com.att.cm.ejb.entity.session.UserSessionBeanEOImpl.getValidationData(Compil
    ed Code)
    at com.att.cm.ejb.service.sm.SessionManagerBean.validateSession(Compiled
    Code)
    at
    com.att.cm.ejb.service.sm.SessionManagerBeanEOImpl.validateSession(Compiled
    Code)
    at
    com.att.cm.ejb.service.sm.SessionManagerBeanEOImpl_ServiceStub.validateSessi
    on(Compiled Code)
    at com.att.cm.helper.SessionManagerUtil.validateSession(Compiled Code)
    at com.att.cm.servlet.VSServlet.processRequest(Compiled Code)
    at com.att.cm.servlet.SessionServlet.service(Compiled Code)
    at javax.servlet.http.HttpServlet.service(Compiled Code)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled Code)
    at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled
    Code)
    at weblogic.socket.MuxableSocketHTTP.invokeServlet(Compiled Code)
    at weblogic.socket.MuxableSocketHTTP.execute(Compiled Code)
    at weblogic.t3.srvr.ExecuteThread.run(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.sql.SQLException.<init>(Compiled Code)
    at weblogic.jdbc.jts.Connection.openConnectionIfNecessary(Compiled Code)
    at weblogic.jdbc.jts.Connection.prepareStatement(Compiled Code)
    at com.att.cm.ejb.entity.session.UserSessionPSJDBC.update(Compiled Code)
    at weblogic.ejb.internal.EJBObjectImpl.updatePstoreIfNecessary(Compiled
    Code)
    at weblogic.ejb.internal.EJBObjectImpl.preSuccessfulFinish(Compiled Code)
    at weblogic.ejb.internal.EJBObjectImpl.beforeCompletion(Compiled Code)
    at weblogic.jts.internal.CoordinatorImpl.notifyBefore(Compiled Code)
    at weblogic.jts.internal.CoordinatorImpl.prepare(Compiled Code)
    at weblogic.jts.internal.CoordinatorImpl.commit(Compiled Code)
    at weblogic.jts.internal.TxContext.commit(Compiled Code)
    at weblogic.ejb.internal.EJBObjectImpl.postInvoke(Compiled Code)
    at
    com.att.cm.ejb.entity.session.UserSessionBeanEOImpl.getValidationData(Compil
    ed Code)
    at com.att.cm.ejb.service.sm.SessionManagerBean.validateSession(Compiled
    Code)
    at
    com.att.cm.ejb.service.sm.SessionManagerBeanEOImpl.validateSession(Compiled
    Code)
    at
    com.att.cm.ejb.service.sm.SessionManagerBeanEOImpl_ServiceStub.validateSessi
    on(Compiled Code)
    at com.att.cm.helper.SessionManagerUtil.validateSession(Compiled Code)
    at com.att.cm.servlet.VSServlet.processRequest(Compiled Code)
    at com.att.cm.servlet.SessionServlet.service(Compiled Code)
    at javax.servlet.http.HttpServlet.service(Compiled Code)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled Code)
    at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled
    Code)
    at weblogic.socket.MuxableSocketHTTP.invokeServlet(Compiled Code)
    at weblogic.socket.MuxableSocketHTTP.execute(Compiled Code)
    at weblogic.t3.srvr.ExecuteThread.run(Compiled Code)
    ; nested exception is:
    java.sql.SQLException: Exception raised by connection pool
    :weblogic.common.ResourceException: None available
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at weblogic.common.ResourceException.<init>(Compiled Code)
    at weblogic.common.internal.ResourceAllocator.reserve(Compiled Code)
    at weblogic.common.internal.ResourceAllocator.reserve(Compiled Code)
    at weblogic.common.internal.ResourceAllocator.reserveWaitSecs(Compiled
    Code)
    at weblogic.jdbc.common.internal.ConnectionPool.reserve(Compiled Code)
    at weblogic.jdbc.common.internal.ConnectionPool.reserveWaitSecs(Compiled
    Code)
    at weblogic.jdbc.jts.Connection.openConnectionIfNecessary(Compiled Code)
    at weblogic.jdbc.jts.Connection.prepareStatement(Compiled Code)
    at com.att.cm.ejb.entity.session.UserSessionPSJDBC.update(Compiled Code)
    at weblogic.ejb.internal.EJBObjectImpl.updatePstoreIfNecessary(Compiled
    Code)
    at weblogic.ejb.internal.EJBObjectImpl.preSuccessfulFinish(Compiled Code)
    at weblogic.ejb.internal.EJBObjectImpl.beforeCompletion(Compiled Code)
    at weblogic.jts.internal.CoordinatorImpl.notifyBefore(Compiled Code)
    at weblogic.jts.internal.CoordinatorImpl.prepare(Compiled Code)
    at weblogic.jts.internal.CoordinatorImpl.commit(Compiled Code)
    at weblogic.jts.internal.TxContext.commit(Compiled Code)
    at weblogic.ejb.internal.EJBObjectImpl.postInvoke(Compiled Code)
    at
    com.att.cm.ejb.entity.session.UserSessionBeanEOImpl.getValidationData(Compil
    ed Code)
    at com.att.cm.ejb.service.sm.SessionManagerBean.validateSession(Compiled
    Code)
    at
    com.att.cm.ejb.service.sm.SessionManagerBeanEOImpl.validateSession(Compiled
    Code)
    at
    com.att.cm.ejb.service.sm.SessionManagerBeanEOImpl_ServiceStub.validateSessi
    on(Compiled Code)
    at com.att.cm.helper.SessionManagerUtil.validateSession(Compiled Code)
    at com.att.cm.servlet.VSServlet.processRequest(Compiled Code)
    at com.att.cm.servlet.SessionServlet.service(Compiled Code)
    at javax.servlet.http.HttpServlet.service(Compiled Code)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled Code)
    at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled
    Code)
    at weblogic.socket.MuxableSocketHTTP.invokeServlet(Compiled Code)
    at weblogic.socket.MuxableSocketHTTP.execute(Compiled Code)
    at weblogic.t3.srvr.ExecuteThread.run(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.io.IOException.<init>(Compiled Code)
    at java.rmi.RemoteException.<init>(Compiled Code)
    at javax.jts.TransactionRolledbackException.<init>(Compiled Code)
    at
    weblogic.jts.internal.CoordinatorImpl.throwTransactionRolledbackException(Co
    mpiled Code)
    at weblogic.jts.internal.CoordinatorImpl.commit(Compiled Code)
    at weblogic.jts.internal.TxContext.commit(Compiled Code)
    at weblogic.ejb.internal.EJBObjectImpl.postInvoke(Compiled Code)
    at
    com.att.cm.ejb.entity.session.UserSessionBeanEOImpl.getValidationData(Compil
    ed Code)
    at com.att.cm.ejb.service.sm.SessionManagerBean.validateSession(Compiled
    Code)
    at
    com.att.cm.ejb.service.sm.SessionManagerBeanEOImpl.validateSession(Compiled
    Code)
    at
    com.att.cm.ejb.service.sm.SessionManagerBeanEOImpl_ServiceStub.validateSessi
    on(Compiled Code)
    at com.att.cm.helper.SessionManagerUtil.validateSession(Compiled Code)
    at com.att.cm.servlet.VSServlet.processRequest(Compiled Code)
    at com.att.cm.servlet.SessionServlet.service(Compiled Code)
    at javax.servlet.http.HttpServlet.service(Compiled Code)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled Code)
    at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled
    Code)
    at weblogic.socket.MuxableSocketHTTP.invokeServlet(Compiled Code)
    at weblogic.socket.MuxableSocketHTTP.execute(Compiled Code)
    at weblogic.t3.srvr.ExecuteThread.run(Compiled Code)

  • No Receivers Found Exception -- Help Requested

    Hi All,
    I am getting "No Receivers Found Exception" in a BPM I am executing in which I used a receiver determination step.
    I did go thru other forum thread by Tirumal,
    "No Receiver Specified" , BPM Error
    I do not have any objects in the change list either in Repository or Directory.
    I did not get any errors or warnings when I checked the Integration Process designed.
    I did refresh cache with return code 0 and I did remove the existing Integration Process reference in Directory and recreated the same.
    I tested the interface with the directory test tool and no errors resulted.
    I ran out of options to solve this problem, any help for the same is greatly appreciated.
    Thanks,
    -Padmaja

    Hi Padmaja,
    Try doing a cache refresh.
    cheers,
    Prashanth
    P.S Please mark helpful answers

  • Test GUI Exception----help!!!!!!!!!!!!!!!!

    I run the junit test case from dos after typing
    "java junit.swingui.TestRunner MoneyTest"
    Before running the test case in the junit sample fold, i set the Classpath which include one fold named "test", then i copy the sample of MoneyTest into this fold to try Junit, but the result is :
    GUI appears and i also can use the Test Selector search all the Test Cases from the fold "test" ,but in Dos window shows following Exception: (GUI of course can not run)
    Exception in thread "main" java.lang.NoClassDefFoundError: MoneyTest (wrong name
    : junit/samples/money/MoneyTest)
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at junit.runner.TestCaseClassLoader.loadClass(TestCaseClassLoader.java:1
    04)
    at junit.runner.ReloadingTestSuiteLoader.load(ReloadingTestSuiteLoader.j
    ava:9)
    at junit.runner.BaseTestRunner.loadSuiteClass(BaseTestRunner.java:193)
    at junit.runner.BaseTestRunner.getTest(BaseTestRunner.java:86)
    at junit.swingui.TestRunner.runSuite(TestRunner.java:591)
    at junit.swingui.TestRunner.start(TestRunner.java:708)
    at junit.swingui.TestRunner.main(TestRunner.java:52)
    Exception in thread "AWT-EventQueue-0" java.lang.NoClassDefFoundError: MoneyTest
    (wrong name: junit/samples/money/MoneyTest)
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at junit.runner.TestCaseClassLoader.loadClass(TestCaseClassLoader.java:1
    04)
    at junit.runner.ReloadingTestSuiteLoader.load(ReloadingTestSuiteLoader.j
    ava:9)
    at junit.runner.BaseTestRunner.loadSuiteClass(BaseTestRunner.java:193)
    at junit.runner.BaseTestRunner.getTest(BaseTestRunner.java:86)
    at junit.swingui.TestRunner.runSuite(TestRunner.java:591)
    at junit.swingui.TestRunner$9.actionPerformed(TestRunner.java:283)
    at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
    at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Sour
    ce)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at javax.swing.JComponent.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)
    I dont know where problems happened??? Thank you for any help!!!!
    Alonso

    I run the junit test case from dos after typing
    "java junit.swingui.TestRunner MoneyTest"
    Exception in thread "main"
    java.lang.NoClassDefFoundError: MoneyTest (wrong
    name
    : junit/samples/money/MoneyTest)
    I dont know where problems happened??? Thank you for
    any help!!!!See the part in the exception about where is says "wrong name"?
    It means you used the wrong name (surprising how that works.)
    See the section after it where is says "junit/samples/money/MoneyTest"?
    That tells you that it couldn't find the name that you gave it, but that it did find a name called junit.samples.money.MoneyTest.
    It is up to you to figure out if you really wanted to use junit.samples.money.MoneyTest or if you made a mistake in something else.

  • Confused! Exception .help plz!

    hi
    ive run the following code about 100 times and it will not run.. i do not see where the errors are !
    but it is giving me an exception could someone please help!
    CODE
    <form name="form1" method="post" action="validateStudentRegistration.jsp">
    form tag used to post the data to jsp page! JSP page below
    <%@ page language="java" import="java.sql.*, java.io.*, java.util.*"%>
    <jsp:useBean id="student" class=""multipleChoice.student.Student"/>
    <html>
    <head>
    <title>Untitled Document</title>
    <%
    int reg =     Integer.parseInt(request.getParameter("regNo"));
    String fName= request.getParameter("firstName");
    String surname= request.getParameter("surname");
    String email = request.getParameter("eamil");
    String subject = request.getParameter("subject");
    String password = request.getParameter("password");
    String module1 = request.getParameter("course1");
    String module2 = request.getParameter("course2");
    String module3 = request.getParameter("course3");
    String module4 = request.getParameter("course4");
    student.connect();
    student.addNewStudent(regNo,sName,name,course,email);
    student.addStudentUser(eamil,password);
    student.addStudentMod(regno,module1,module2,module3,module4);
    student.disconnect();
    %>
    </head>
    </html>
    THE ERROR
    2004-01-19 19:44:17 StandardWrapperValve[jsp]: Servlet.service() for servlet jsp threw exception
    org.apache.jasper.JasperException: /validateStudentRegistration.jsp(2,64) equal symbol expected
         at org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:83)
         at org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:402)
         at org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:126)
         at org.apache.jasper.compiler.Parser.parseAttribute(Parser.java:240)
         at org.apache.jasper.compiler.Parser.parseAttributes(Parser.java:190)
         at org.apache.jasper.compiler.Parser.parseUseBean(Parser.java:1047)
         at org.apache.jasper.compiler.Parser.parseStandardAction(Parser.java:1273)
         at org.apache.jasper.compiler.Parser.parseElements(Parser.java:1636)
         at org.apache.jasper.compiler.Parser.parse(Parser.java:173)
         at org.apache.jasper.compiler.ParserController.parse(ParserController.java:247)
         at org.apache.jasper.compiler.ParserController.parse(ParserController.java:149)
         at org.apache.jasper.compiler.ParserController.parse(ParserController.java:135)
         at org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:243)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:459)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:442)
         at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:552)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:291)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:301)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:248)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:284)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:204)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:151)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:563)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:245)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:199)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:151)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:563)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:195)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:151)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:164)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:149)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:563)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:156)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:151)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:563)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:972)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:209)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:781)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:549)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:589)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:666)
         at java.lang.Thread.run(Unknown Source)
    PLEASE someone help!

    Is that the actual code?? Seems like a lot of typo's like the regNo being referenced as regno email,eamil
    etc. Where are the student methods getting the input paramters from -whatever.
    Right off the bat I'd fix this
    class=""multipleChoice.student.Student"/
    You have and extra set of quotes after class="" make it class="multipleChoice.student.Student"/

  • JDBC connect to Oracle, IO exception, Help!

    I am trying to connect to Oracle server via JDBC, but encountered IO exception problem, could anyone provide me any help? code is as follows:
    String url ="jdbc:oracle:thin:@IP:1521:oracleSID"
    Class.forName ("oracle.jdbc.driver.OracleDriver");
    con = DriverManager.getConnection (url,usr,pwd);
    the exception info is:
    java.sql.SQLException:IOException: The network adapter could not establish the connection
    require for help to solve this problem, many thanks!

    import java.io.*;
    import java.sql.*;
    import java.text.*;
    import oracle.jdbc.driver.*;
    public class viewtable
         Connection con;
         Statement st;
         public viewtable (String args[]) throws ClassNotFoundException,FileNotFoundException,IOException,SQLException
         url="jdbc:oracle:thin:system/manager@IP:1521:SID";
         Class.forName ("oracle.jdbc.driver.OracleDriver");
         try
         con=DriverManager.getConnection(url);
              st = con.createStatement ();
              doexample ();
              st.close ();
              con.close ();
         }catch(SQLException e)
              System.err.println(e.getMessage());
         public void doexample () throws SQLException
         ResultSet rs = st.executeQuery("select * from sales");
              if(rs!=null) {
              while(rs.next())
                   int a = rs.getInt("no");                    System.out.println("NO = "+a);
              rs.close();
         public static void main (String args[])
              System.out.println ("Oracle Exercise 1 \n");
              try
                   viewtable test = new viewtable(args);
              } catch (Exception ex)
                   System.err.println ("Exception caught.\n"+ex);
                   ex.printStackTrace ();
    the above is the full code, please check the problem....many thanks

  • Runtime exceptions - Help!

    Hello, it's little ol' me again with my little ol' password generator applet. It compiles fine, but when I run it, I get all kinds of runtime exceptions when I click on any of the checkboxes. I have pored over this code til I'm blue in the face. I personally see nothing wrong with the code, but I'll post it here in case any of you might spot something suspicious.
    // My Javafied Password Generator
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class PwGenerator extends JApplet
      private String pw;
      private JPanel centerPanel, northPanel, southPanel;
      private JComboBox numchars;
      private JCheckBox lettersUpper, lettersLower, numbers, specialChars;
      private JButton generate, reset;
      private JTextField textfield;
      private static int asciiRange[];
      private String pwLength[] = {"6", "7", "8", "9", "10", "11", "12"};
      private int lengthSelected;
      private JLabel pwLabel, numCharLabel;
      public void init()
        // instantiate widgets
        numCharLabel = new JLabel("Number of characters for password");
        numchars = new JComboBox(pwLength);
        lettersUpper = new JCheckBox("Uppercase letters");
        lettersLower = new JCheckBox("Lowercase letters");
        numbers = new JCheckBox("Numbers");
        specialChars = new JCheckBox("Special characters");
        generate = new JButton("Generate password");
        reset = new JButton("Clear");
        textfield = new JTextField(12);
        pwLabel = new JLabel("Your new password is: ");
        // add widgets to the content pane
        Container c = getContentPane();
        c.setLayout(new BorderLayout());
        centerPanel = new JPanel();
        centerPanel.setLayout(new GridLayout(3, 2));
        centerPanel.add(lettersUpper);
        centerPanel.add(lettersLower);
        centerPanel.add(numbers);
        centerPanel.add(specialChars);
        centerPanel.add(generate);
        centerPanel.add(reset);
        c.add(centerPanel, BorderLayout.CENTER);
        northPanel = new JPanel();
        northPanel.setLayout(new FlowLayout());
        northPanel.add(numCharLabel);
        northPanel.add(numchars);
        c.add(northPanel, BorderLayout.NORTH);
        southPanel = new JPanel();
        southPanel.setLayout(new FlowLayout());
        southPanel.add(pwLabel);
        southPanel.add(textfield);
        c.add(southPanel, BorderLayout.SOUTH);
      }  // end init
      public void start()
      // connect event handlers to the widgets
        numchars.addItemListener(new ItemListener() {
         public void itemStateChanged(ItemEvent e)
           lengthSelected = Integer.parseInt(pwLength[numchars.getSelectedIndex()]);
        CheckBoxHandler handler = new CheckBoxHandler();
        lettersUpper.addItemListener(handler);
        lettersLower.addItemListener(handler);
        numbers.addItemListener(handler);
        specialChars.addItemListener(handler);
        generate.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent e)
           pw = generatePw(lengthSelected);
           textfield.setText(pw);
        reset.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent e)
           textfield.setText("");
      } // end start---snip---
    private class CheckBoxHandler implements ItemListener
        public void itemStateChanged(ItemEvent e)
          if (e.getSource() == specialChars)
         if (e.getStateChange() == ItemEvent.SELECTED)
           for (int i=33, j=0; i<=47; i++, j++)
             asciiRange[j] = i;
           for (int i=58, j=asciiRange.length; i<=64; i++, j++)
             asciiRange[j] = i;
           for (int i=91, j=asciiRange.length; i<=96; i++, j++)
             asciiRange[j] = i;
           for (int i=123, j=asciiRange.length; i<=126; i++, j++)
             asciiRange[j] = i;
            } // end inner if
          } // end outer if
          if (e.getSource() == numbers)
         if (e.getStateChange() == ItemEvent.SELECTED)
           for (int i=48, j=asciiRange.length; i<=57; i++, j++)
             asciiRange[j] = i;
          if (e.getSource() == lettersUpper) 
         if (e.getStateChange() == ItemEvent.SELECTED)
           for (int i=65, j=asciiRange.length; i<=90; i++, j++)
             asciiRange[j] = i;
          if (e.getSource() == lettersLower)
         if (e.getStateChange() == ItemEvent.SELECTED)
           for (int i=97, j=asciiRange.length; i<=122; i++, j++)
             asciiRange[j] = i;
    }     Your help will be greatly appreciated like before.
    Syster Tara

    And as a prediction, I can see some ArrayIndexOutOfBounds errors in your near future.
    Starting j at j=asciiRange.length
    and then doing asciiRange[j] = i
    Remember an array is numbered from 0 to length-1
    And no, arrays don't grow dynamically.
    Cheers,
    evnafets

  • Exception help required

    hi every one
    my exception
    WHEN ORA_JAVA.EXCEPTION_THROWN then
    ex := ORA_JAVA.LAST_EXCEPTION;
    message('Exception: '||Exception_.toString(ex));
    IMP: i get compile error for Exception_.toString
    where Exception_ is the imported java.lang.Exception package.
    my java class tries to rename a file in a given path which is passed as parameter.
    please help me
    thanks in advance
    yash

    i have done that but when i run the form i get run time exceptions or error the exception handler fails to trap the error raised by java class method , i have simple java class that returns a string called hello and i am un able totrap error using the existing handler please do suggest me some other work around
    thanks
    yash

  • ORA-01722 Exception -help needed

    CREATE OR REPLACE PROCEDURE BILLING_NOTIFY.ComposeTextPopUPMessageinMC (
    pi_NAME IN varchar2,
    pi_SCN IN varchar2,
    pi_ACCOUNTBALANCE IN varchar2,
    pi_OFFERAMOUNT IN varchar2,
    pi_DUEDATE IN varchar2,
    pi_FREQ IN number
    IS
    po_error_code NUMBER;
    e_exp EXCEPTION;
    v_MsgTemplate varchar2(5000);
    BEGIN
    select MsgTemplate into v_MsgTemplate from notification_MessageTemplate where MsgTypeId=1;
    insert into notification_message (clientId,messageId,payload,updated,frequency)
    VALUES(pi_SCN,1,Replace(Replace(Replace(Replace(
    Replace(v_MsgTemplate,'(Name)',upper(pi_NAME)),
    '(SCN)',cast(pi_SCN as varchar2(15))),
    '(AccountBalance)',cast(floor(pi_ACCOUNTBALANCE) as varchar2(15))),
    '(OfferAmount)',cast(floor(pi_OFFERAMOUNT)as varchar2(15))),
    '(LastChargedDate)',to_char(pi_DUEDATE,'MM-DD-YYYY')),
    sysdate,pi_FREQ);
    COMMIT;
    END;
    These are my INPUT values:
    PI_NAME := 'RAJ';
    PI_SCN := '200500';
    PI_ACCOUNTBALANCE := '123';
    PI_OFFERAMOUNT := '122';
    PI_DUEDATE := '12-12-2005';
    PI_FREQ := 1;
    The value of v_MsgTemplate is
    'Dear (Name)
    Subscriber ID: (SCN)
    Your account balance is Rs.(AccountBalance)
    Please recharge minimum of Rs.(OfferAmount) before (LastChargedDate)
    To recharge please call BIG TV Customer Care on 1800 200 9002.
    Thank You.'
    My SP Comoles without any errors,but when i try to run the SP using the above mentioned values am getting the following errors.
    ORA-01722: invalid number
    ORA-06512: at "BILLING_NOTIFY.COMPOSETEXTPOPUPMESSAGEINMC", line 23
    ORA-06512: at line 17
    Pls help me to correct my error.

    Though cast is good option but it has also some limitations, too.
    See ->
    satyaki>
    satyaki>select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for Linux: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    Elapsed: 00:00:00.00
    satyaki>
    satyaki>
    satyaki>
    satyaki>with peter
      2     as
      3       (
      4         select '12.DEC.2008' cola from dual
      5       )
      6     select cast(cola as date) d_t
      7     from peter;
    D_T
    12-DEC-08
    Elapsed: 00:00:01.05
    satyaki>
    satyaki>ed
    Wrote file afiedt.buf
      1  with peter
      2     as
      3       (
      4         select '12.DEC-2008' cola from dual
      5       )
      6     select cast(cola as date) d_t
      7*    from peter
    satyaki>/
    D_T
    12-DEC-08
    Elapsed: 00:00:00.00
    satyaki>
    satyaki>ed
    Wrote file afiedt.buf
      1  with peter
      2     as
      3       (
      4         select '12/DEC-2008' cola from dual
      5       )
      6     select cast(cola as date) d_t
      7*    from peter
    satyaki>/
    D_T
    12-DEC-08
    Elapsed: 00:00:00.00
    satyaki>ed
    Wrote file afiedt.buf
      1  with peter
      2     as
      3       (
      4         select '12DEC2008' cola from dual
      5       )
      6     select cast(cola as date) d_t
      7*    from peter
    satyaki>/
    D_T
    12-DEC-08
    Elapsed: 00:00:00.00
    satyaki>ed
    Wrote file afiedt.buf
      1  with peter
      2     as
      3       (
      4         select '200815.12' cola from dual
      5       )
      6     select cast(cola as date) d_t
      7*    from peter
    satyaki>/
       select cast(cola as date) d_t
    ERROR at line 6:
    ORA-01861: literal does not match format string
    Elapsed: 00:00:00.01
    satyaki>
    satyaki>ed
    Wrote file afiedt.buf
      1  with peter
      2     as
      3       (
      4         select '20081512' cola from dual
      5       )
      6     select cast(cola as date) d_t
      7*    from peter
    satyaki>/
       select cast(cola as date) d_t
    ERROR at line 6:
    ORA-01861: literal does not match format string
    Elapsed: 00:00:00.00
    satyaki>So, better to use format mask using to_date.
    Regards.
    Satyaki De.

  • Java Mail Exception Help

    I am trying to make a simple program to send emails. It seems I have all the right packages but when I run my code i get the following exception:
    javax.mail.MessagingException: Exception reading response;
    nested exception is:
         java.net.SocketException: Connection reset
    My main code is:
        Properties props = new Properties();
        props.setProperty("mail.subject",message);
        props.setProperty("mail.from", from);
        props.setProperty("mail.to", to);
        props.setProperty("mail.debug", "false");
        try {
          javax.mail.Session emailSession = javax.mail.Session.getInstance(props);
          MimeMessage msg = new MimeMessage(emailSession);
          InternetAddress mailer = new InternetAddress(props.getProperty("mail.from"));
          InternetAddress reviever = new InternetAddress(props.getProperty("mail.to"));
          msg.setFrom(mailer);
          msg.setRecipient(Message.RecipientType.TO, reviever);
          msg.setSubject(props.getProperty("mail.subject"));
          javax.mail.Transport.send(msg);
        catch(Exception e){
          System.out.println(e);
        }Any help would be great.
    Thnx
    Message was edited by:
    DavidSchles
    Message was edited by:
    DavidSchles

    The JavaMail FAQ has information about debugging connection problems.

  • Cookies and Exceptions - Help

       // FIND THIS COOKIE
       if (request.getParameter("hasEnteredNick") != null) {
        Cookie[] cookieArray = request.getCookies();
        try {
         for (int i = 0; i < cookieArray.length; i++) {
          if (cookieArray.getName().equals(ChatGlobals.CHAT_COOKIE_NAME) &&
    !cookieArray[i].getValue(ChatGlobals.CHAT_COOKIE_NAME).equals(null) &&
    !cookieArray[i].getValue(ChatGlobals.CHAT_COOKIE_NAME).equals("")
    hasEnteredChatroom = true;
    break;
    } catch (NullPointerException e) {
    // DO NOTHING COOKIE DOES NOT YET EXIST
    } catch (ClassNotFoundException cnfe) {
    errorMsg = "<li>" + ChatGlobals.FONT + "<font color=cc0000>You must be able to set cookies to chat here</li></font></font><p>";
    } catch (Exception e) {
    e.printStackTrace();
    } catch (Error err) {}
    What I am trying to do is very, very simple:
    1) I need to know if the user is unable to accept cookies - hence the exception/error must be caught and an error String message displayed instead
    2) I need to know if the user is able to accept cookies but has not YET set the cookie whose name is referenced in ChatGlobals.CHAT_COOKIE_NAME
    My block constantly fails because I am told the following:
    /~ppowell/includes/chat_validation.jsp:13: Wrong number of arguments in
    method.
              !cookieArray.getValue(ChatGlobals.CHAT_COOKIE_NAME).equals(null) &&
    ^
    /~ppowell/includes/chat_validation.jsp:14: Wrong number of arguments in
    method.
    !cookieArray[i].getValue(ChatGlobals.CHAT_COOKIE_NAME).equals("")
    ^
    /~ppowell/includes/chat_validation.jsp:22: Exception java.lang.ClassNotFoundException
    is never thrown in the body of the corresponding try statement.
    } catch (ClassNotFoundException cnfe) {
    Bluntly put, what do I do? Best practice methodology.
    Thanx
    Phil

    Let me help you out. The following code is a more basic approach to setting cookies using the JSObject (instead of the Cookie class). To see if the brower is accepting cookies, you will have to write a JavaScript function in the html code.
    IMPORTANT NOTE:
    When setting cookies, the name is important.  For example:
    somethingx=somethingy
    automatically, the client searches for variable somethingx and
    reassigns it to somethingy.  If somethingx is not found, then
    somethingx is added to the cookie.
    a="" becomes a;
    important: There is no last semicolon in the cookie!  That is,
    cookie name are separated by semicolons but the last cookie
    does not have a trailing semicolon.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import netscape.javascript.*;
    import java.util.Calendar;
    import java.util.Date;
    import java.net.*;
    import java.io.*;
    public class CookieApplet extends JApplet implements ActionListener {
         JButton okButton = new JButton("OK");
         JButton getButton = new JButton("Get");
         JLabel dataLabel = new JLabel("Data");
         JTextField dataTF = new JTextField(15);
         public CookieApplet() {
              super();
              setBackground(Color.WHITE);
         public void init() {
              JPanel panel = new JPanel(new FlowLayout(FlowLayout.CENTER));
              panel.add(dataLabel);
              panel.add(dataTF);
              panel.add(okButton);
              panel.add(getButton);
              setContentPane(panel);
              okButton.addActionListener(this);
              getButton.addActionListener(this);
              Calendar c = Calendar.getInstance();
              System.out.println(c.getTime().toGMTString());
              System.out.println(c.getTime().toString());
              JSObject win = (JSObject) JSObject.getWindow(this);
         public void actionPerformed(ActionEvent evt) {
              Object src = evt.getSource();
              if (src == getButton) {
                   dataTF.setText(getCookie());
                   System.out.println(getCookieValue("aaa"));
              else if (src == okButton) {
                   Calendar c = Calendar.getInstance();
                   c.add(Calendar.MONTH, 1);
              setCookie(dataTF.getText(), c.getTime());
         public String getCookie() {
              String cookie = (String) JSObject.getWindow(this).eval("document.cookie");
              if (cookie == null || cookie.length() == 0)
                   cookie = (String) ((JSObject) ((JSObject) JSObject.getWindow(this)).getMember("document")).getMember("cookie");
              if (cookie == null)
                   return "";
              return cookie;
         public String getCookieValue(String name) {
              String cookie = getCookie() + ";";
              int i = cookie.indexOf(name + "=");
              if (i == -1) {
                   int j = cookie.indexOf(name);
                   if (j == -1) return null;
                   if (cookie.charAt(j + name.length()) == ';')
                        return "";
                   return null;
              int j = cookie.indexOf(";", i + name.length() + 1);
              return cookie.substring(i + name.length() + 1, j);
         public void setCookie(String cookie, Date expire) {
              ((JSObject) ((JSObject) JSObject.getWindow(this)).getMember("document")).setMember("cookie", cookie + "; expires=" + expire.toString());
    }

  • Classnotfound exception help

    can anyone help me why i am getting this exception when i execute my Midlet class file.
    please help

    i think that the class is not found !

  • Exception HELP

    I have just began a second start at JAVA and I am having issue creating an exception that works..i have an app that will accept grades...average them...and if someone puts a value over 100 it should thorw an exception...or under 0 it should..i cant get this to work....the app works..but since I started putting an exception in it wont work......
    import javax.swing.JOptionPane;
    public class Grades
       public Grades()
            float grades [] = new float[5];
            float ave, sum = 0.0f;
            String students[] = {"Tim", "Mary", "Jen","Derek", "John"};
            String sgrades, sResult;
            int i;
            for(i = 0; i < grades.length; ++i)
                sgrades = JOptionPane.showInputDialog(null,
                        "Enter the Student's Grade: ", students,1);
    grades[i] = Float.parseFloat(sgrades);
    if(i > 100 || i < 0);
    throw new exception(InvalidGradeException);
    for(i = 0;i < grades.length; ++i)
    sum += grades[i];
    ave = sum / 5.0f;
    sResult = "The Class average is " + Float.toString(ave);
    JOptionPane.showMessageDialog(null,sResult);
    public static void main(String args[])
    new Grades();
    System.exit(0);

    Thank you..but with the following CODE over all...why am I receiving this error?
    C:\Documents and Settings\BLAH\Grades\src\grades\Grades.java:35: reached end of file while parsing
    import javax.swing.JOptionPane;
    public class Grades
       public Grades()
            float grades [] = new float[5];
            float ave, sum = 0.0f;
            String students[] = {"Tim", "Mary", "Jen","Derek", "John"};
            String sgrades, sResult;
            int i;
            for(i = 0; i < grades.length; ++i)
                sgrades = JOptionPane.showInputDialog(null,
                        "Enter the Student's Grade: ", students,1);
    grades[i] = Float.parseFloat(sgrades);
    if(grades > 100 || grades < 0)
    throw new exception(InvalidGradeException);
    for(i = 0;i < grades.length; ++i)
    sum += grades[i];
    ave = sum / 5.0f;
    sResult = "The Class average is " + Float.toString(ave);
    JOptionPane.showMessageDialog(null,sResult);
    public static void main(String args[])
    new Grades();
    System.exit(0);

  • Error Message when trying to open mail - Uncaught Exception - Help!

    Hello
    Yesterday when I received a notification that I had new emails I clicked on the envelope on the home screen only to find the error message: 'Uncaught exception: String index out of range: -1' I now can't access my mail at all. I have rebooted the phone and it is still coming up.
    I just wondered if anyone else had this error message before and the easiest way to resolve it?
    My phone is a Curve 9300 and running on v5.0.0.794 (Platform 6.3.0.23)
    Thanks
    Emma

    i have a bold 9780 and I got:  "Uncaught exception:java.lang.ArrayIndexOutOfBoundsException" now i can't open messages or text
    EmmaLou_0702 wrote:
    Hello
    Yesterday when I received a notification that I had new emails I clicked on the envelope on the home screen only to find the error message: 'Uncaught exception: String index out of range: -1' I now can't access my mail at all. I have rebooted the phone and it is still coming up.
    I just wondered if anyone else had this error message before and the easiest way to resolve it?
    My phone is a Curve 9300 and running on v5.0.0.794 (Platform 6.3.0.23)
    Thanks
    Emma

Maybe you are looking for

  • One America News Network

    Today I was going through Verizon's new GUI schedule to see what channels had mysteriously appeared to replace others that had just as mysteriously disappeared, and stumbled upon another new one, One America, a channel ensconced within the news secti

  • How to use security zone in WebDynpro

    Hi. I want to use security zone in WebDynpro for java like PDK. Is it possible? if possible, plz explain detail how to use security zone.

  • Command UI?

    HI, I am trying to edit a command, UINewFIleCommand.class. the intention is when the user clicks on this command, it should open the corresponding Portal Component in a new window? but i dont know where should i do this simple thing in the code as sh

  • Scheduling a task 1 year (365 days) out

    I am trying to schedule a task for 365 days out (1 year/52 weeks) and am encountering errors with the automatic scheduling. Work will be performed on the weekends, year-round, from 8:00 AM to 5:00 PM. I have set the "Change Working Time" options to c

  • Cant find Flash Player on my pc

    Hi I have problem when playing a game, Tankionline, i need to clear FPcash and adjust how much memory to use. I use windows 7 proffesional, internet explorer11 and have the latest FP 15.0. I have seen Pictures of some controlpanel for FP but i cant f