Use ALSM_EXCEL_TO_INTENAL_TABLE in Application server

Hi Experts,
How can I use the Function Module ALSM_EXCEL_TO_INTENAL_TABLE to copy files from the APPLICATION SERVER into an internal table.
Remember APPLICATION SERVER
Please help
Ankit

Hi,
  Function Modules are used to download data only from presentation server. So if you want to download data from Application server you can do so only using Datasets.
Ex for datasets :
Data: Begin of itab occurs 0,
       lifnr like lfa1-lifnr,
       name1 like lfa1-name1,
      End of itab,
      itab1 like itab occurs 0 with header line.
  select lifnr
         name1
         from lfa1
         into table itab
         where land1 = 'IN'.
  open dataset 'customer' for output in text mode encoding default.
  loop at itab.
   transfer itab to 'customer'.
   if sy-subrc <> 0.
     exit.
   endif.
  endloop.
  close dataset 'customer'.
  open dataset 'customer' for input in text mode encoding default.
  do.
   read dataset 'customer' into itab1.
   if sy-subrc <> 0.
     exit.
   endif.
   append itab1.
  enddo.
  loop at itab1.
   write:/ itab1-lifnr,itab1-name1.
  endloop.
Regards
Haritha.

Similar Messages

  • Using NLB over Application Server in SharePoint 2010?

    I have two application server that I need to load balance using Microsoft NLB.
    My queries:
    1) Just load balancing the Application Server will load balance the SharePoint service as well?  
    2) How would service application on application server would response to the request that is coming via VIP,  what I want ask is where in IIS the physical ips be configured?
    3) Once I configure the NLB and have VIP pointing to two physical IPs, how would the Web Server knows that he has to send the request over the VIP(virtual ip) . Where is this configuration done?

    In the SharePoint world an 'application server' is a server that does not handle user traffic directly. It doesn't host the websites that users access but instead handles the behind the scenes processing such as searches, PowerPivot etc.
    For those servers you do not need to use load balancing, SharePoint handles load balancing internally for those services.
    If you want to load balance the web front ends (WFEs) which serve websites to users then this blog covers it quite comprehensively:
    http://blogs.technet.com/b/praveenh/archive/2010/12/17/setting-up-load-balancing-on-a-sharepoint-farm-running-on-windows-server-2008.aspx

  • Deployment failed. Building failed using sun java application server

    Hi
    am using netbean 6 ,glassfish v2 and sun java application server 9
    When am try to run my jsp file am getting Deployment error report with further error given below.
    Deployment error:
    The Sun Java System Application Server could not start.
    More information about the cause is in the Server log file.
    Possible reasons include:
    - IDE timeout: refresh the server node to see if it's running now.
    - Port conflicts. (use netstat -a to detect possible port numbers already used by the operating system.)
    - Incorrect server configuration (domain.xml to be corrected manually)
    - Corrupted Deployed Applications preventing the server to start.(This can be seen in the server.log file. In this case, domain.xml needs to be modified).
    - Invalid installation location.
    See the server log for details.
    at org.netbeans.modules.j2ee.deployment.devmodules.api.Deployment.deploy(Deployment.java:163)
    at org.netbeans.modules.j2ee.ant.Deploy.execute(Deploy.java:104)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    at sun.reflect.GeneratedMethodAccessor256.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:105)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:357)
    at org.apache.tools.ant.Target.performTasks(Target.java:385)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1298)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1181)
    at org.apache.tools.ant.module.bridge.impl.BridgeImpl.run(BridgeImpl.java:277)
    at org.apache.tools.ant.module.run.TargetExecutor.run(TargetExecutor.java:460)
    at org.netbeans.core.execution.RunClassThread.run(RunClassThread.java:151)
    Caused by: org.netbeans.modules.j2ee.deployment.impl.ServerException: The Sun Java System Application Server could not start.
    More information about the cause is in the Server log file.
    Possible reasons include:
    - IDE timeout: refresh the server node to see if it's running now.
    - Port conflicts. (use netstat -a to detect possible port numbers already used by the operating system.)
    - Incorrect server configuration (domain.xml to be corrected manually)
    - Corrupted Deployed Applications preventing the server to start.(This can be seen in the server.log file. In this case, domain.xml needs to be modified).
    - Invalid installation location.
    at org.netbeans.modules.j2ee.deployment.impl.ServerInstance._start(ServerInstance.java:1270)
    at org.netbeans.modules.j2ee.deployment.impl.ServerInstance.startTarget(ServerInstance.java:1224)
    at org.netbeans.modules.j2ee.deployment.impl.ServerInstance.startTarget(ServerInstance.java:1035)
    at org.netbeans.modules.j2ee.deployment.impl.ServerInstance.start(ServerInstance.java:912)
    at org.netbeans.modules.j2ee.deployment.impl.TargetServer.startTargets(TargetServer.java:417)
    at org.netbeans.modules.j2ee.deployment.devmodules.api.Deployment.deploy(Deployment.java:140)
    ... 16 more
    BUILD FAILED (total time: 44 seconds)

    Hi,
    I've found that if you remove the j2ee-application element related to the enterprise app you are trying to deploy from Sun\AppServer\domains\domain1\config\domain.xml, and also remove your enterprise j2ee-app directory from Sun\AppServer\domains\domain1\applications\j2ee-apps\, it works.
    This is not a permanent solution. I get the same error again, when I try to redeploy the application for the third time. Hope someone can help soon!
    Thanks.

  • Using webutil in Application Server 10g

    Hi,
    I just configure successfully webutil with dev. suite 10g R2.
    I developed form & attached webutil lebrary with it and it is working good at form builder runtime. but when i try to run the same form on Application Server10g R2 it gives me error "FRM-40039: Cannot attach library F:\Dev10g\Forms\webutil\webutil while opening the button".
    I am using Dev. suite 10g R2 on windows XP plateform & Oracle Application Server 10g R2 on windows 2003 server.
    Should I configure webutil manually on Application Server or configured by default? if yes, please tell me the steps to configure webutil on application server.
    With best regards.

    Please can u send me the details of configuring webutil on 10G AS Rel 2 on windows 2003. But I have Developer 10g Suite and 10G AS on same server machine

  • Accessing remove EJBs while debugging using the Embedded Application Server

    I'm trying to configure to debug a multi-tier application (servlets + EJBs) where a servlet accesses EJBs set up on a second OC4J application server. I've set up rmi.xml in the embedded application server to reference my second application server by adding the line.
    <server host="127.0.0.1" username="admin" port="23791" password="password"/>
    When I run the embedded application server it seems to hang, with the stack in
    the following state:
    OC4J main()
    OC4J launchOC4JCommandLine()
    ApplicationServer launchCommandLine()
    Thread join()
    Thread join(0)
    Object wait(0)
    The following exception is generated on the second application server
    C:\Program Files\Oracle\JDeveloper9i\j2ee\home>java -jar oc4j.jar
    Oracle9iAS (9.0.2.0.0) Containers for J2EE initialized
    java.lang.NullPointerException
    java.lang.ClassLoader com.evermind.server.rmi.RMIInputStream.getClassLoa
    der()
    java.lang.Class com.evermind.server.rmi.RMIInputStream.resolveClass(java
    .io.ObjectStreamClass)
    java.io.ObjectStreamClass java.io.ObjectInputStream.inputClassDescriptor
    java.lang.Object java.io.ObjectInputStream.readObject(boolean)
    java.lang.Object java.io.ObjectInputStream.readObject()
    int java.io.ObjectInputStream.inputObject(boolean)
    java.lang.Object java.io.ObjectInputStream.readObject(boolean)
    java.lang.Object java.io.ObjectInputStream.readObject()
    void com.evermind.server.rmi.RMIConnection.handleBindObject()
    void com.evermind.server.rmi.RMIConnection.run()
    void com.evermind.util.ThreadPoolThread.run()
    Has anyone got any ideas what is happening here and how I can fix it?
    Thanks,
    Mark.

    This is an OC4J question. Try posting your message to the Products > Application Server > J2EE forum. Someone there should be able to answer your question.

  • Accessing remote EJBs while debugging using the Embedded Application Server

    I'm trying to configure to debug a multi-tier application (servlets + EJBs) where a servlet accesses EJBs set up on a second OC4J application server. I've set up rmi.xml in the embedded application server to reference my second application server by adding the line.
    <server host="127.0.0.1" username="admin" port="23791" password="password"/>
    When I run the embedded application server it seems to hang, with the stack in
    the following state:
    OC4J main()
    OC4J launchOC4JCommandLine()
    ApplicationServer launchCommandLine()
    Thread join()
    Thread join(0)
    Object wait(0)
    The following exception is generated on the second application server
    C:\Program Files\Oracle\JDeveloper9i\j2ee\home>java -jar oc4j.jar
    Oracle9iAS (9.0.2.0.0) Containers for J2EE initialized
    java.lang.NullPointerException
    java.lang.ClassLoader com.evermind.server.rmi.RMIInputStream.getClassLoa
    der()
    java.lang.Class com.evermind.server.rmi.RMIInputStream.resolveClass(java
    .io.ObjectStreamClass)
    java.io.ObjectStreamClass java.io.ObjectInputStream.inputClassDescriptor
    java.lang.Object java.io.ObjectInputStream.readObject(boolean)
    java.lang.Object java.io.ObjectInputStream.readObject()
    int java.io.ObjectInputStream.inputObject(boolean)
    java.lang.Object java.io.ObjectInputStream.readObject(boolean)
    java.lang.Object java.io.ObjectInputStream.readObject()
    void com.evermind.server.rmi.RMIConnection.handleBindObject()
    void com.evermind.server.rmi.RMIConnection.run()
    void com.evermind.util.ThreadPoolThread.run()
    Has anyone got any ideas what is happening here and how I can fix it?
    Thanks,
    Mark.

    This is an OC4J question. Try posting your message to the Products > Application Server > J2EE forum. Someone there should be able to answer your question.

  • Help on Java Message Service on using Sun ONE Application Server 7.0

    I am new to Sun ONE Application Server 7.0. I am failed to compile the JMS sample code. I got following error message when I was compiling the ReadOrder.java and SentOrder.java.
    package javax.jms doesn't exist
    package javax.xml.messaging doesn't exist
    package javax.servlet doesn't exist
    The javac -version returns "1.4.0_02" which is required for this sample code.
    Can someone let me know where is wrong? Thanks

    I'm not sure what the two java source files you refer to come from (maybe the samples shipped with AS7?). But you can find the referred packages here:
    javax.jms -> <AS_HOME>/imq/lib/jms.jar
    javax.xml.messaging -> this package is included in the Java Web Services Developers Pack 1.2 (http://java.sun.com/webservices/webservicespack.html)
    javax.servlet -> this package is also included in the J2EE SDK (j2ee.jar): http://java.sun.com/j2ee/download.html
    So you can go to the two links, download the packages, install them, and add the appropriate jars to your classpath and all should be well.
    Daniel.

  • Caching on ejb container using Oracle 9i Application server

    Hi,
    can we cache on the ejb container in Oracle application server ?
    if so, whats the methodology ?
    Regards,
    Murali

    Can you explain exactly what you want to cache? The complete container: no makes no sences. Objects in the container, makes sences but in case of CMP the entites are already cached.
    Can you provide more information what you want to achieve?

  • OCi8 drivers, using RAC (Oracle Application Server 10g (9.0.4))

    I have some problems with one j2ee application deployed in an OC4J container called OC4J_Inernet.
    A few times a day this container crashed with a stack-trace like this;
    Unexpected Signal : 11 occurred at PC=0xB7145CF0
    Function=(null)
    Library=/oracle/as/jdk/jre/lib/i386/server/libjvm.so
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
    at oracle.jdbc.oci8.OCIDBAccess.get_column_count(Native Method)
    at oracle.jdbc.oci8.OCIDBAccess.describe(OCIDBAccess.java:739)
    - locked <0xac572e88> (a oracle.jdbc.oci8.OCIDBAccess)
    at oracle.jdbc.dbaccess.pingDatabaseThread.run(DBAccess.java:1462)
    Dynamic libraries:
    08048000-0804e000 r-xp 00000000 3a:00 409838 /oracle/as/jdk/bin/java
    0804e000-0804f000 rwxp 00005000 3a:00 409838 /oracle/as/jdk/bin/java
    a4cad000-a4cb3000 r-xs 00000000 3a:00 1294775 /oracle/as/j2ee/OC4J_Internet/applications/PublicJournal/PublicJournal/WEB-INF/lib/uixadfrt.jar
    a4cb3000-a5000000 r-xs 00000000 3a:00 1294774 /oracle/as/j2ee/OC4J_Internet/applications/PublicJournal/PublicJournal/WEB-INF/lib/uix2.jar
    a5316000-a5386000 r-xs 00000000 3a:00 1606130 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/xsu12.jar
    a5386000-a53ac000 r-xs 00000000 3a:00 1606127 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/wfapi.jar
    a53ac000-a53ad000 r-xs 00000000 3a:00 1606126 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/utiltaglib.ja
    r
    a53ad000-a53b3000 r-xs 00000000 3a:00 1606125 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/uixadfrt.jar
    a53b3000-a5700000 r-xs 00000000 3a:00 1606124 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/uix2.jar
    a5865000-a5906000 r-xs 00000000 3a:00 1606129 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/xmlparserv2.j
    ar
    a5906000-a591c000 r-xs 00000000 3a:00 1606117 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/ptlshare.jar
    a591c000-a5b62000 r-xs 00000000 3a:00 1606116 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/portaltools.j
    ar
    a5b62000-a5c89000 r-xs 00000000 3a:00 1606115 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/portal.ear
    a5c89000-a5d05000 r-xs 00000000 3a:00 1606114 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/pdkjava.jar
    a5d05000-a5d06000 r-xs 00000000 3a:00 1606113 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/oracle-el.jar
    a5d06000-a5d71000 r-xs 00000000 3a:00 1606112 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/ojsputil.jar
    a5d71000-a5d99000 r-xs 00000000 3a:00 1606111 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/ldapjclnt9.ja
    r
    a5d99000-a5d9a000 r-xs 00000000 3a:00 1606110 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/jwcache.jar
    a5d9a000-a5d9b000 r-xs 00000000 3a:00 1606109 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/jsp-el-api.ja
    r
    a5d9b000-a5d9c000 r-xs 00000000 3a:00 1606108 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/jesitaglib.ja
    r
    a5d9c000-a5e7d000 r-xs 00000000 3a:00 1606107 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/jazn.jar
    a5e7d000-a5e8d000 r-xs 00000000 3a:00 1606106 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/jawc.jar
    a5e8d000-a5e95000 r-xs 00000000 3a:00 1606105 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/invalidate.ja
    r
    a5e95000-a5ea0000 r-xs 00000000 3a:00 1606104 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/htmlcomponent
    s.jar
    a5ea0000-a5ea5000 r-xs 00000000 3a:00 1606103 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/graphtags.jar
    a5ea5000-a5eaa000 r-xs 00000000 3a:00 1606102 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/filepoller.ja
    r
    a5eaa000-a5eab000 r-xs 00000000 3a:00 1606101 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/fileaccess.ja
    r
    a5eab000-a5eac000 r-xs 00000000 3a:00 1606100 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/email.jar
    a5eac000-a5ead000 r-xs 00000000 3a:00 1606099 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/ejbtaglib.jar
    a5ead000-a5ed0000 r-xs 00000000 3a:00 1606098 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/datatags.jar
    a5ed0000-a5eec000 r-xs 00000000 3a:00 1606097 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/commons-el.ja
    r
    a5eec000-a5ef7000 r-xs 00000000 3a:00 1606096 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/bc4juixtags.j
    ar
    a5ef7000-a5f1f000 r-xs 00000000 3a:00 1606095 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/bc4jhtml.jar
    a5f1f000-a5f21000 r-xp 00000000 3a:00 852089 /oracle/as/lib/libwtc9.so
    a5f21000-a5f22000 rwxp 00001000 3a:00 852089 /oracle/as/lib/libwtc9.so
    a5f22000-a5fc1000 r-xp 00000000 3a:00 852044 /oracle/as/lib/libnnz9.so
    a5fc1000-a5fc8000 rwxp 0009e000 3a:00 852044 /oracle/as/lib/libnnz9.so
    a5fc8000-a66cb000 r-xp 00000000 3a:00 852147 /oracle/as/lib/libclntsh.so.9.0
    a66cb000-a66f2000 rwxp 00702000 3a:00 852147 /oracle/as/lib/libclntsh.so.9.0
    a680f000-a6815000 r-xs 00000000 3a:00 1606094 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/adftags.jar
    a6815000-a6900000 r-xs 00000000 3a:00 1606093 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/IntranetServe
    rEJB.jar
    a6a44000-a6a66000 r-xs 00000000 3a:00 1606123 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/tidy.jar
    a6a66000-a6a7d000 r-xp 00000000 3a:00 852052 /oracle/as/lib/libocijdbc9.so
    a6a7d000-a6a7e000 rwxp 00016000 3a:00 852052 /oracle/as/lib/libocijdbc9.so
    a6b80000-a6b81000 r-xs 00000000 3a:00 852102 /oracle/as/lib/xsqlserializers.jar
    a6b81000-a6ba7000 r-xs 00000000 3a:00 852100 /oracle/as/lib/oraclexsql.jar
    a6ba7000-a6bad000 r-xs 00000000 3a:00 344752 /oracle/as/uix/taglib/uix2tags.jar
    a6bad000-a6bb3000 r-xs 00000000 3a:00 1196152 /oracle/as/j2ee/home/jsp/lib/taglib/saxpath.jar
    a6bb3000-a6be2000 r-xs 00000000 3a:00 1196151 /oracle/as/j2ee/home/jsp/lib/taglib/jaxen-full.jar
    a6be2000-a6c3d000 r-xs 00000000 3a:00 1196150 /oracle/as/j2ee/home/jsp/lib/taglib/standard.jar
    a6c3d000-a6cae000 r-xs 00000000 3a:00 1196149 /oracle/as/j2ee/home/jsp/lib/taglib/ojsputil.jar
    a6cae000-a6cba000 r-xs 00000000 3a:00 1196148 /oracle/as/j2ee/home/jsp/lib/taglib/ordjsptag.jar
    a6cba000-a6d2a000 r-xs 00000000 3a:00 1458740 /oracle/as/rdbms/jlib/xsu12.jar
    a6d2a000-a6e8e000 r-xs 00000000 3a:00 852039 /oracle/as/lib/dsv2.jar
    a6e8e000-a6ea4000 r-xs 00000000 3a:00 442629 /oracle/as/jlib/jdev-cm.jar
    a6ea4000-a6eac000 r-xs 00000000 3a:00 442611 /oracle/as/jlib/regexp.jar
    a6eac000-a6eba000 r-xs 00000000 3a:00 442569 /oracle/as/jlib/share.jar
    a6eba000-a70f1000 r-xs 00000000 3a:00 442620 /oracle/as/jlib/uix2.jar
    a70f1000-a7106000 r-xs 00000000 3a:00 262715 /oracle/as/ord/jlib/ordhttp.jar
    a7106000-a7118000 r-xs 00000000 3a:00 262714 /oracle/as/ord/jlib/ordim.jar
    a7118000-a713b000 r-xs 00000000 3a:00 869062 /oracle/as/BC4J/lib/adfmweb.jar
    a713b000-a7142000 r-xs 00000000 3a:00 869061 /oracle/as/BC4J/lib/bc4jctejb.jar
    a7142000-a7154000 r-xs 00000000 3a:00 869060 /oracle/as/BC4J/lib/bc4jmtejb.jar
    a7154000-a7227000 r-xs 00000000 3a:00 869059 /oracle/as/BC4J/lib/bc4jct.jar
    a7227000-a73c3000 r-xs 00000000 3a:00 869058 /oracle/as/BC4J/lib/bc4jmt.jar
    a73c3000-a73d8000 r-xs 00000000 3a:00 869057 /oracle/as/BC4J/lib/bc4jimdomains.jar
    a73d8000-a73da000 r-xs 00000000 3a:00 869056 /oracle/as/BC4J/lib/adfmtl.jar
    a73da000-a749e000 r-xs 00000000 3a:00 869055 /oracle/as/BC4J/lib/adfm.jar
    a749e000-a74b4000 r-xs 00000000 3a:00 869054 /oracle/as/BC4J/lib/bc4jdomorcl.jar
    a74b4000-a74f4000 r-xs 00000000 3a:00 869053 /oracle/as/BC4J/lib/collections.jar
    a74f4000-a7504000 r-xs 00000000 3a:00 492011 /oracle/as/j2ee/OC4J_Internet/applib/jawc.jar
    a7504000-a7526000 r-xs 00000000 3a:00 492010 /oracle/as/j2ee/OC4J_Internet/applib/tidy.jar
    a7526000-a753c000 r-xs 00000000 3a:00 492009 /oracle/as/j2ee/OC4J_Internet/applib/ptlshare.jar
    a753c000-a7782000 r-xs 00000000 3a:00 492008 /oracle/as/j2ee/OC4J_Internet/applib/portaltools.jar
    a7782000-a77fe000 r-xs 00000000 3a:00 492007 /oracle/as/j2ee/OC4J_Internet/applib/pdkjava.jar
    a7a0e000-a7a7f000 r-xs 00000000 3a:00 1606122 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/struts.jar
    a7d09000-a7d17000 r-xs 00000000 3a:00 1294773 /oracle/as/j2ee/OC4J_Internet/applications/PublicJournal/PublicJournal/WEB-INF/lib/share.jar
    a7d17000-a7d1f000 r-xs 00000000 3a:00 1294772 /oracle/as/j2ee/OC4J_Internet/applications/PublicJournal/PublicJournal/WEB-INF/lib/regexp.jar
    a7d1f000-a7d23000 r-xs 00000000 3a:00 1294771 /oracle/as/j2ee/OC4J_Internet/applications/PublicJournal/PublicJournal/WEB-INF/lib/oracle-portlet-tags
    .jar
    a7d23000-a7d24000 r-xs 00000000 3a:00 1294770 /oracle/as/j2ee/OC4J_Internet/applications/PublicJournal/PublicJournal/WEB-INF/lib/oracle-el.jar
    a7d24000-a7d25000 r-xs 00000000 3a:00 1294769 /oracle/as/j2ee/OC4J_Internet/applications/PublicJournal/PublicJournal/WEB-INF/lib/jsp-el-api.jar
    a7d25000-a7d41000 r-xs 00000000 3a:00 1294768 /oracle/as/j2ee/OC4J_Internet/applications/PublicJournal/PublicJournal/WEB-INF/lib/commons-el.jar
    a7d41000-a7d7f000 r-xs 00000000 3a:00 1606092 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/ContainerRend
    erer.jar
    a7f07000-a7f08000 r-xs 00000000 3a:00 1606121 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/sqltaglib.jar
    a7f08000-a7f16000 r-xs 00000000 3a:00 1606120 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/share.jar
    a7f16000-a7f2e000 r-xs 00000000 3a:00 1606119 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/samples.jar
    a7f9e000-a7fae000 r-xp 00000000 3a:00 1442044 /oracle/as/jdk/jre/lib/i386/libnet.so
    a7fae000-a7faf000 rwxp 0000f000 3a:00 1442044 /oracle/as/jdk/jre/lib/i386/libnet.so
    a7faf000-a7fe2000 r-xs 00000000 3a:00 2015392 /oracle/as/j2ee/home/lib/crimson.jar
    a7fe2000-a83c4000 r-xs 00000000 3a:00 213669 /oracle/as/sqlj/lib/translator.jar
    a83c4000-a8439000 r-xs 00000000 3a:00 213668 /oracle/as/sqlj/lib/runtime12ee.jar
    a8439000-a8472000 r-xs 00000000 3a:00 2015380 /oracle/as/j2ee/home/lib/http_client.jar
    a8472000-a848c000 r-xs 00000000 3a:00 852026 /oracle/as/lib/xschema.jar
    a848c000-a8503000 r-xs 00000000 3a:00 1851641 /oracle/as/javacache/lib/cache.jar
    a8503000-a856b000 r-xs 00000000 3a:00 2015390 /oracle/as/j2ee/home/lib/jem.jar
    a856b000-a8620000 r-xs 00000000 3a:00 1458737 /oracle/as/rdbms/jlib/aqapi.jar
    a8620000-a8644000 r-xs 00000000 3a:00 295583 /oracle/as/webservices/lib/wsdl.jar
    a8644000-a866c000 r-xs 00000000 3a:00 295584 /oracle/as/webservices/lib/wsserver.jar
    a866c000-a86b5000 r-xs 00000000 3a:00 262688 /oracle/as/soap/lib/soap.jar
    a86b5000-a86cf000 r-xs 00000000 3a:00 442635 /oracle/as/jlib/ospnego.jar
    a86cf000-a87ee000 r-xs 00000000 3a:00 213626 /oracle/as/jdbc/lib/classes12.jar
    a87ee000-a89ae000 r-xs 00000000 3a:00 213628 /oracle/as/jdbc/lib/nls_charset12.jar
    a89ae000-a8ace000 r-xs 00000000 3a:00 213627 /oracle/as/jdbc/lib/classes12dms.jar
    a8ace000-a8ade000 r-xs 00000000 3a:00 442588 /oracle/as/jlib/repository.jar
    a8ade000-a8ae4000 r-xs 00000000 3a:00 442573 /oracle/as/jlib/ojmisc.jar
    a8ae4000-a8ae9000 r-xs 00000000 3a:00 442615 /oracle/as/jlib/javax-ssl-1_1.jar
    a8ae9000-a8af6000 r-xs 00000000 3a:00 442618 /oracle/as/jlib/jssl-1_1.jar
    a8af6000-a8b33000 r-xs 00000000 3a:00 442610 /oracle/as/jlib/netcfg.jar
    a8b33000-a8c47000 r-xs 00000000 3a:00 442609 /oracle/as/jlib/ldapjclnt9.jar
    a8c47000-a8cb2000 r-xs 00000000 3a:00 442592 /oracle/as/jlib/srvm.jar
    a8cb2000-a8cc9000 r-xs 00000000 3a:00 442632 /oracle/as/jlib/infratool.jar
    a8cc9000-a8d51000 r-xs 00000000 3a:00 1409277 /oracle/as/j2ee/home/jazncore.jar
    a8d51000-a8d93000 r-xs 00000000 3a:00 1409276 /oracle/as/j2ee/home/jazn.jar
    a8d93000-a8dad000 r-xs 00000000 3a:00 2015378 /oracle/as/j2ee/home/lib/jaas.jar
    a8dad000-a8db4000 r-xs 00000000 3a:00 2015385 /oracle/as/j2ee/home/lib/jaxp.jar
    a8db4000-a8e0c000 r-xs 00000000 3a:00 852143 /oracle/as/lib/xforms.jar
    a8e0c000-a8eb5000 r-xs 00000000 3a:00 852027 /oracle/as/lib/xmlparserv2.jar
    a8eb5000-a8fbb000 r-xs 00000000 3a:00 2015736 /oracle/as/javavm/lib/jasper.zip
    a8fbb000-a9000000 r-xs 00000000 3a:00 2015402 /oracle/as/j2ee/home/lib/mail.jar
    a9102000-a9103000 r-xs 00000000 3a:00 1294767 /oracle/as/j2ee/OC4J_Internet/applications/PublicJournal/PublicJournal/WEB-INF/lib/adfmejb.jar
    a9103000-a9110000 r-xs 00000000 3a:00 1294766 /oracle/as/j2ee/OC4J_Internet/applications/PublicJournal/PublicJournal/WEB-INF/lib/adf-controller.jar
    a9110000-a911f000 r-xp 00000000 08:08 180272 /lib/libresolv-2.3.2.so
    a911f000-a9120000 rwxp 0000f000 08:08 180272 /lib/libresolv-2.3.2.so
    a9122000-a9126000 r-xp 00000000 08:08 180257 /lib/libnss_dns-2.3.2.so
    a9126000-a9127000 rwxp 00003000 08:08 180257 /lib/libnss_dns-2.3.2.so
    a9127000-a9133000 r-xs 00000000 3a:00 2015391 /oracle/as/j2ee/home/lib/activation.jar
    a9133000-a9136000 r-xs 00000000 3a:00 2015395 /oracle/as/j2ee/home/lib/jcert.jar
    a9136000-a9138000 r-xs 00000000 3a:00 2015399 /oracle/as/j2ee/home/lib/jnet.jar
    a9138000-a91b6000 r-xs 00000000 3a:00 2015400 /oracle/as/j2ee/home/lib/jsse.jar
    a91b6000-a91c5000 r-xs 00000000 3a:00 2015387 /oracle/as/j2ee/home/lib/cos.jar
    a91c5000-a91ca000 r-xs 00000000 3a:00 2015386 /oracle/as/j2ee/home/lib/connector.jar
    a91ca000-a9238000 r-xs 00000000 3a:00 852029 /oracle/as/lib/dms.jar
    a9238000-a9241000 r-xs 00000000 3a:00 262767 /oracle/as/opmn/lib/optic.jar
    a9241000-a924b000 r-xs 00000000 3a:00 262751 /oracle/as/opmn/lib/ons.jar
    a924b000-a9253000 r-xs 00000000 3a:00 2015383 /oracle/as/j2ee/home/lib/javax88.jar
    a9253000-a9257000 r-xs 00000000 3a:00 2015382 /oracle/as/j2ee/home/lib/javax77.jar
    a9257000-a92ae000 r-xs 00000000 3a:00 2015389 /oracle/as/j2ee/home/lib/jmxri.jar
    a92ae000-a92b1000 r-xs 00000000 3a:00 2015401 /oracle/as/j2ee/home/lib/jta.jar
    a92b1000-a92b8000 r-xs 00000000 3a:00 2015396 /oracle/as/j2ee/home/lib/jms.jar
    a92b8000-a92c2000 r-xs 00000000 3a:00 1409282 /oracle/as/j2ee/home/iiop_gen_bin.jar
    a92c2000-a93fd000 r-xs 00000000 3a:00 1409281 /oracle/as/j2ee/home/iiop.jar
    a93fd000-a93ff000 r-xs 00000000 3a:00 2015388 /oracle/as/j2ee/home/lib/jdbc.jar
    a93ff000-a9418000 r-xs 00000000 3a:00 2015379 /oracle/as/j2ee/home/lib/jndi.jar
    a9418000-a94bb000 r-xs 00000000 3a:00 2015381 /oracle/as/j2ee/home/lib/ojsp.jar
    a94bb000-a94c9000 r-xs 00000000 3a:00 2015403 /oracle/as/j2ee/home/lib/servlet.jar
    a94c9000-a94cd000 r-xs 00000000 3a:00 2015384 /oracle/as/j2ee/home/lib/ejb.jar
    a94cd000-a9a3c000 r-xs 00000000 3a:00 1409284 /oracle/as/j2ee/home/oc4j.jar
    a9a3c000-a9a3d000 r-xs 00000000 3a:00 344303 /oracle/as/jdk/jre/lib/ext/sslqueries.jar
    a9a3d000-a9a59000 r-xs 00000000 3a:00 344302 /oracle/as/jdk/jre/lib/ext/sunjce_provider.jar
    a9a59000-a9b15000 r-xs 00000000 3a:00 344301 /oracle/as/jdk/jre/lib/ext/localedata.jar
    a9b15000-a9b22000 r-xs 00000000 3a:00 344300 /oracle/as/jdk/jre/lib/ext/ldapsec.jar
    a9b22000-a9b25000 r-xs 00000000 3a:00 344299 /oracle/as/jdk/jre/lib/ext/dnsns.jar
    a9b25000-a9b33000 r-xs 00000000 3a:00 344298 /oracle/as/jdk/jre/lib/ext/activation.jar
    a9b33000-a9b36000 r-xs 00000000 3a:00 344297 /oracle/as/jdk/jre/lib/ext/smtp.jar
    a9b36000-a9b5c000 r-xs 00000000 3a:00 344296 /oracle/as/jdk/jre/lib/ext/mailapi.jar
    a9b5c000-a9ba1000 r-xs 00000000 3a:00 344295 /oracle/as/jdk/jre/lib/ext/mail.jar
    a9ba1000-a9ba4000 r-xs 00000000 3a:00 344294 /oracle/as/jdk/jre/lib/ext/jta.jar
    aa899000-aa8a1000 r-xp 00a52000 08:05 471325 /usr/lib/locale/locale-archive
    aa8a1000-aa8ce000 r-xp 009c4000 08:05 471325 /usr/lib/locale/locale-archive
    aa8ce000-aaace000 r-xp 00000000 08:05 471325 /usr/lib/locale/locale-archive
    b2cd1000-b2cd2000 r-xs 00000000 3a:00 1606128 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/xml.jar
    b2cd2000-b2cda000 r-xs 00000000 3a:00 1606118 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/regexp.jar
    b2cda000-b2cde000 r-xs 00000000 3a:00 1606091 /oracle/as/j2ee/OC4J_Internet/applications/InternetProvider/InternetProvider/WEB-INF/lib/CacheTaglib.j
    ar
    b2cde000-b2cdf000 r-xs 00000000 3a:00 557238 /oracle/as/j2ee/home/default-web-app/WEB-INF/lib/looptags.jar
    b4d87000-b52e0000 r-xs 00000000 3a:00 524518 /oracle/as/jdk/jre/lib/charsets.jar
    b52e0000-b52f1000 r-xs 00000000 3a:00 524543 /oracle/as/jdk/jre/lib/jce.jar
    b52f1000-b53cc000 r-xs 00000000 3a:00 524544 /oracle/as/jdk/jre/lib/jsse.jar
    b53cc000-b53e2000 r-xs 00000000 3a:00 524552 /oracle/as/jdk/jre/lib/sunrsasign.jar
    b542c000-b6dc4000 r-xs 00000000 3a:00 524551 /oracle/as/jdk/jre/lib/rt.jar
    b6dc4000-b6dd8000 r-xp 00000000 3a:00 1442048 /oracle/as/jdk/jre/lib/i386/libzip.so
    b6dd8000-b6ddb000 rwxp 00013000 3a:00 1442048 /oracle/as/jdk/jre/lib/i386/libzip.so
    b6ddb000-b6dfb000 r-xp 00000000 3a:00 1442033 /oracle/as/jdk/jre/lib/i386/libjava.so
    b6dfb000-b6dfd000 rwxp 0001f000 3a:00 1442033 /oracle/as/jdk/jre/lib/i386/libjava.so
    b6dfd000-b6e0d000 r-xp 00000000 3a:00 1442047 /oracle/as/jdk/jre/lib/i386/libverify.so
    b6e0d000-b6e0f000 rwxp 0000f000 3a:00 1442047 /oracle/as/jdk/jre/lib/i386/libverify.so
    b6e0f000-b6e1a000 r-xp 00000000 08:08 180260 /lib/libnss_files-2.3.2.so
    b6e1a000-b6e1b000 rwxp 0000a000 08:08 180260 /lib/libnss_files-2.3.2.so
    b6e26000-b6e2a000 rwxs 00000000 08:09 58500 /tmp/hsperfdata_oracle/12942
    b6e2a000-b6e4b000 r-xp 00000000 08:08 98379 /lib/tls/libm-2.3.2.so
    b6e4b000-b6e4c000 rwxp 00021000 08:08 98379 /lib/tls/libm-2.3.2.so
    b6e4c000-b6e5e000 r-xp 00000000 08:08 180244 /lib/libnsl-2.3.2.so
    b6e5e000-b6e5f000 rwxp 00011000 08:08 180244 /lib/libnsl-2.3.2.so
    b6e67000-b6e6f000 r-xp 00000000 3a:00 49382 /oracle/as/jdk/jre/lib/i386/native_threads/libhpi.so
    b6e6f000-b6e70000 rwxp 00007000 3a:00 49382 /oracle/as/jdk/jre/lib/i386/native_threads/libhpi.so
    b6e70000-b741f000 r-xp 00000000 3a:00 655590 /oracle/as/jdk/jre/lib/i386/server/libjvm.so
    b741f000-b7479000 rwxp 005ae000 3a:00 655590 /oracle/as/jdk/jre/lib/i386/server/libjvm.so
    b748d000-b75c0000 r-xp 00000000 08:08 98375 /lib/tls/libc-2.3.2.so
    b75c0000-b75c3000 rwxp 00132000 08:08 98375 /lib/tls/libc-2.3.2.so
    b75c6000-b75c8000 r-xp 00000000 08:08 180280 /lib/libdl-2.3.2.so
    b75c8000-b75c9000 rwxp 00001000 08:08 180280 /lib/libdl-2.3.2.so
    b75c9000-b75d6000 r-xp 00000000 08:08 98381 /lib/tls/libpthread-0.60.so
    b75d6000-b75d7000 rwxp 0000c000 08:08 98381 /lib/tls/libpthread-0.60.so
    b75e9000-b75fe000 r-xp 00000000 08:08 180246 /lib/ld-2.3.2.so
    b75fe000-b75ff000 rwxp 00015000 08:08 180246 /lib/ld-2.3.2.so
    Heap at VM Abort:
    Heap
    def new generation total 2752K, used 1798K [0xaacd0000, 0xaafc0000, 0xab3e0000)
    eden space 2496K, 63% used [0xaacd0000, 0xaae5c490, 0xaaf40000)
    from space 256K, 83% used [0xaaf80000, 0xaafb5610, 0xaafc0000)
    to space 256K, 0% used [0xaaf40000, 0xaaf40000, 0xaaf80000)
    tenured generation total 23072K, used 21421K [0xab3e0000, 0xaca68000, 0xaecd0000)
    the space 23072K, 92% used [0xab3e0000, 0xac8cb768, 0xac8cb800, 0xaca68000)
    compacting perm gen total 16384K, used 14987K [0xaecd0000, 0xafcd0000, 0xb2cd0000)
    the space 16384K, 91% used [0xaecd0000, 0xafb72d50, 0xafb72e00, 0xafcd0000)
    Local Time = Wed Jun 7 04:07:29 2006
    Elapsed Time = 1334
    # HotSpot Virtual Machine Error : 11
    # Error ID : 4F530E43505002EF
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Server VM (1.4.2_02-b03 mixed mode)
    Everytime it is the same method that crashes the application.
    Since this is running against a RAC installation, I prefer to use Thick driver for failover-purposes.
    1. Any ideas of why this crashes ?
    2. Should I try to upgrade the driver, and if yes, how should that be accomplished.
    (Should I just install the newest available classes12.jar for this client ?)

    Hi!
    Thanks for the reply. I used the word 'stack-trace' which is not correct, sorry.. :)
    But what I see is that the current java-thread is always in the same method;
    Current Java thread:
    at oracle.jdbc.oci8.OCIDBAccess.get_column_count(Native Method)...
    ..which is the oci8 driver.
    This is an OAS installation, and I would guess that is isn't too easy just to upgrade to the last JDK, since this jdk used is a part of the total installation.
    Do you have any other suggestions of how to pinpoint in greater detail what actually goes wrong here ?
    Is it possible to upgrade only the oci8 driver (if this is the faulty one..) ?
    Thank you!

  • Hyperion Workspace error ,while using weblogic as application server.

    Hi Experts !
    I have Hyperion 9.3.0 environment and
    I m using web logic 8.1 and facing problem in starting workspace .
    configuration with weblogic is successful but still error while open workspace :
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    Please help me..
    Thank you

    Hello,
    Were you able to find any solutions to this problem. We are experiencing the same issue now.
    Thanks
    Srikanth

  • Hyperion Workspace error , using weblogic as application server.

    HI Experts !
    I have Hyperion 9.3.0 environment and
    I m using web logic 8.1 and facing problem in starting workspace .
    configuration with weblogic is successful but still error while open workspace :
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    Please help me..
    Thank you

    Hello,
    Were you able to find any solutions to this problem. We are experiencing the same issue now.
    Thanks
    Srikanth

  • New to cactus + using J2EE SDK Application server

    Can anybody guide me on how to update web.xml file to include the necessary servlet descriptors/ mappings to use cactus ? I tried manually but the deploy tool reported the ear to be corrupt.
    Thanks

    I've never used cactus and you may have already seen this but have you checked out the config docs at: http://jakarta.apache.org/cactus/integration/manual/howto_config.html

  • Visibroker Bind Error When Using Sun Application Server

    I have a servlet that utilizes Visibroker 3.4 to access CORBA objects. My servlet works fine when using Tomcat; however, when using the Sun Application Server 8.2 PE, the same code does not work. After a few second delay (timout?) then the following exception is thrown.
    org.omg.CORBA.NO_IMPLEMENT:
    Could not locate the following object:
         repository id : IDL:A3Server:1.0
         object name : mobile5A3Server
    vmcid: 0x0 minor code: 0 completed: No
         com.visigenic.vbroker.orb.ORB.bind(ORB.java:1282)
         com.visigenic.vbroker.orb.ORB.bind(ORB.java:1361)
         com.visigenic.vbroker.orb.ORB.bind(ORB.java:1171)
         A3AppGen.A3ServerHelper.bind(A3ServerHelper.java:31)
         A3AppGen.A3ServerHelper.bind(A3ServerHelper.java:27)
         A3SessionConnection.connect(A3SessionConnection.java:74)
    Has anyone experienced this and better, found the solution. Interesting fact is that this only occurs when using the .bind(orb(), serverName); call.
    Another servlet packaged in the same .war file receives an IOR and is able to successfully access the CORBA object using orb().string_to_object(serverIOR); with both Tomcat and Sun Application Server.
    Thanks for the help.

    Please list the content of 'asadminenv.conf'
    Alternatively, you could just manually create the instance as follows:
    asadmin.bat create-domain user admin adminport 4849 domaindir C:\Sun\AppServer\domains instanceport 8080 domain1

  • Ports used by Application Server 8.2

    How can I tell what ports are used by the Application Server and how can I control the main port(s) used by the Application Server ?
    I do not want any of the ports used by the Application Server to conflict locally with any other ports I am using on my computer.

    Hi!
    You can find out what ports are used in Admin Console:
    http://admin_host:admin_port/.
    For example for Sun Java Studio Creator 2 Update 1:
    http://localhost:25848/
    Click in left pane on "Application Server" node and find http-listeners.
    Thanks,
    Roman.

  • Can AQ be used when running in IBM's WebSphere Application Server?

    Hi,
    We are using IBM WebSphere Application Server (WAS) but not planning to use MQSeries. We want to use Oracle AQ. Is it possible to run an app in WAS with Oracle AQ functionality being used?
    Anyone out there is doing this?
    Any info. is greatly appreciated!
    Thanks.
    Alex

    If you ever find the answer, please let me know. I am trying to do the same with WebLogic but with little success. I have participated in the following discusiions:
    http://newsgroups.bea.com/cgi-bin/dnewsweb?cmd=article&group=weblogic.developer.interest.jms&item=6218
    http://marvel.oracle.com/pls/otn/f?p=17000:8:25148205767784132::NO::F17000_P8_DISPLAYID,F17000_P8_CRITERIA:40460583213,
    If you are not using MDB in WAS or WAS MDB supports transacted session, then there is a good chance that you can use AQ/JMS. BTW, why don't you want to use MQ Series?

Maybe you are looking for

  • XSLT does not put element into output

    HI Gentlemen, I have the following code segment, reflecting a 4-level hierarchical structure. Only the first two levels are guaranteed to be present; the last two are optional (if pe:scheinuntergruppen_liste is present, then at least one pe:scheinunt

  • How do i do change the color(complete newbie)

    i want to have a special button inside the applet which will automatically change the color from red to yellow, HELP!!! import java.awt.*; import java.applet.Applet; import java.awt.event.*; public class Cookie extends Applet     implements Adjustmen

  • Mini or others?

    I have been using MacTowerG4 (PowerPC) and started having problems (some we pages cannot be opned becuase I do not have an updated version of plug-in).  I am thinking to purchse a replacement.  Candidates are mini or iMac.  Becuase I have a Cinema Di

  • Line status Green, DND on Asterisk Server - Spa50xg

    I have an issue with phones not recognising that they are in DND mode. I can set DND through the phone with the star code. I can see from asterisk hints that the line is marked as busy. However the line appearance on the phone is still green rather t

  • Ftp-Zugang beim CS6

    Hallo, ich hatte vor dem CS6 nur den ftp-Zugang des Dreamweaver 8.0 um auf meine Webseite zu gelangen. Damit konnte ich dann direkt meine Webseite bearbeiten. Auf meinem neuen Compi funktionierte das alte Programm nciht mehr. Wie komme ich nun über d