JSC2 and Gmail and SSLHandshakeException

I've been working on this for 8 hours straight. Now I will crawl into a video game because I suck.
I copied the JSC code from a standalone app that works. It's as exactly the same as the code can be.
I keep getting this exception:
javax.mail.MessagingException: Exception reading response;
nested exception is: javax.net.ssl.SSLHandshakeException:
sun.security.validator.ValidatorException: PKIX path building failed:
sun.security.provider.certpath.SunCertPathBuilderException: unable to find
valid certification path to requested target////////////////////////////////////////////////////////
Here is my JSC2 code:
    private static final String SMTP_HOST_NAME = "smtp.gmail.com";
    private static final String SMTP_PORT = "465";
    private static final String emailMsgTxt = "Test Message Contents";
    private static final String emailSubjectTxt = "A test from gmail";
    private static final String emailFromAddress = "[email protected]";
    private static final String SSL_FACTORY = "javax.net.ssl.SSLSocketFactory";
    private static final String[] sendTo = { "[email protected]"};
    public String button1_action() {
        // this isn't needed to reproduce error
        Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
        try {
            sendSSLMessage(sendTo, emailSubjectTxt,
                    emailMsgTxt, emailFromAddress);
            System.out.println("Sucessfully Sent mail to All Users");
        }catch (Exception e) {
            this.fatal(e + "");
        return null;
    public void sendSSLMessage(String recipients[], String subject,
            String message, String from) throws MessagingException {
        boolean debug = true;
        Properties props = new Properties();
        props.put("mail.smtp.host", SMTP_HOST_NAME);
        props.put("mail.smtp.auth", "true");
        props.put("mail.debug", "true");
        props.put("mail.smtp.port", SMTP_PORT);
        props.put("mail.smtp.socketFactory.port", SMTP_PORT);
        props.put("mail.smtp.socketFactory.class", SSL_FACTORY);
        props.put("mail.smtp.socketFactory.fallback", "false");
        Session session = Session.getInstance(props,
                new javax.mail.Authenticator() {
            protected PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication("moviedocs", "p4ssw0rd");
        session.setDebug(debug);
        Message msg = new MimeMessage(session);
        InternetAddress addressFrom = new InternetAddress(from);
        msg.setFrom(addressFrom);
        InternetAddress[] addressTo = new InternetAddress[recipients.length];
        for (int i = 0; i < recipients.length; i++) {
            addressTo[i] = new InternetAddress(recipients);
msg.setRecipients(Message.RecipientType.TO, addressTo);
// Setting the Subject and Content Type
msg.setSubject(subject);
msg.setContent(message, "text/plain");
Transport.send(msg);
This is at the bottom of my server.policy file
grant {
     // javamail
    permission java.security.SecurityPermission "insertProvider.SunJSSE";
This is in my logs:
0:14.244-0700|
DEBUG: setDebug: JavaMail version 1.3.2|#]
0:14.259-0700|
DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]|#]
0:14.259-0700|
DEBUG SMTP: useEhlo true, useAuth true|#]
0:14.259-0700|
DEBUG SMTP: useEhlo true, useAuth true|#]
0:14.259-0700|
DEBUG SMTP: trying to connect to host "smtp.gmail.com", port 465, isSSL false|#]
0:14.666-0700|
DEBUG SMTP: exception reading response: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target|#]------------------------------
standalone app ends with:
DEBUG SMTP: trying to connect to host "smtp.gmail.com", port 465, isSSL false
220 mx.gmail.com ESMTP e10sm6784123qbe
DEBUG SMTP: connected to host "smtp.gmail.com", port: 465///////////////////
Standalone version is JavaMail version 1.3.3
Why the SSLHandshakeException PKIX exception?

I'm not an SSL expert but jamesrome is and he's done lots with Creator and SSL. Please check out this thread http://forum.sun.com/jive/thread.jspa?threadID=62896&messageID=360013
The second post in his thread refers to changing the app server config. You'll need to log into the app server admin console. On Creator 2 update 1, this can be found at http://localhost:25848, userid=admin,password=adminadmin
In the admin console, on the left nav bar, go to Configuration->HTTP Service->HTTP Listeners and click on http-listener-2.
Cheers!
-David

Similar Messages

  • Optimization techniques for JSC2 and its AppServer

    There have been several forums posts about the lagging performance of JSC2 and the bundled App Server.
    Could anyone suggest some steps to optimize the IDE and app server without any hardware changes?

    check out:
    http://developers.sun.com/prodtech/javatools/jscreator/reference/faqs/technical/tshooting/hot_fix_2.html
    NB Performance FAQ's:
    http://wiki.netbeans.org/wiki/view/NetBeansUserFAQ#section-NetBeansUserFAQ-Performance
    HTH,
    Sakthi

  • JSC2 and hibernate

    Have any body successfully integrated JSC2 with hibernate.

    Hi singhj2k
    Yes its indeed possible to integrate the two. Look at this related thread.
    http://swforum.sun.com/jive/thread.jspa?threadID=62781&tstart=0
    Also look out for a tutorial on Hibernate and Creator on our website soon.
    Thanks
    safaq
    Creator Team

  • Deploying JSC2 code into Eclipse/Tomcat ???

    Hi,
    Here's the situation. My partner is using JSC(java studio creator) for the project, and on my side, I am using Eclipse.
    I need to merge the files (JSP/JAVA) created with JSC into my eclipse Project. However, I am not familiar with the structure of JSC and their files, so I tried merging the files into my project and it doesn't work.
    For instance, some imports such as:
    import com.sun.rave.web.ui.appbase.AbstractPageBean;
    import com.sun.rave.web.ui.component.Body;
    import com.sun.rave.web.ui.component.Form;
    import com.sun.rave.web.ui.component.Head;
    import com.sun.rave.web.ui.component.Html;
    import com.sun.rave.web.ui.component.Link;
    import com.sun.rave.web.ui.component.Page;
    import javax.faces.FacesException;
    import javax.faces.component.html.HtmlPanelGrid;
    import com.sun.rave.web.ui.component.StaticText;
    import com.sun.rave.web.ui.component.Label;
    import com.sun.rave.web.ui.component.TextField;
    import com.sun.rave.web.ui.component.Message;
    import com.sun.rave.web.ui.component.PasswordField;
    import com.sun.rave.web.ui.component.Button;
    import com.sun.data.provider.impl.CachedRowSetDataProvider;
    import com.sun.sql.rowset.CachedRowSetXImpl;
    import com.sun.rave.web.ui.component.MessageGroup;
    needed the jar, which I think are one of those : jsfcl.jar / jstl.jar / standard.jar.
    But I still get some errors regarding AbstractPageBean; which I have no clue what it means...
    So how can I take the code created on JSC2 and add it to Eclipse? or what part of code (and which files) could I extract to merge it to my Eclipse project (which is a simple Java/Jsp project using Tomcat).
    Any ideas ????
    David

    Hi,
    We are to migrate a small JSF web application created in the JSC 2..update 1 to the WSAD. We may want to add some more GUI from Java Studio Creator to the web application.
    Here are some queries.
    1. Which type of project should be created in Eclipse\WSAD...in order to migrate the JSC JSF application to the WSAD? and.. exact steps to follow...
    2. I don't want to use the JSF facility provided by WSAD...but I'll like to use the JSC2 for adding the GUI JSF pages to the application.
    3. there are issues with the deployment descriptors while deploying..how to handle these issues?
    Is this migration possible..if yes how..?
    Your support will be highly appreciated.
    Thanks in advance,
    Raj
    null

  • Default paths in JSC2

    In Tools->Options I have changed in "Project Settings" Default project folder. Now, when I start JSC2 and I try open project in dialog box I see in File Name field old path. Why?
    And the second question from "path" group: How can I change default path for .war files?
    Thanx,
    Jacek

    Hi Jacek,
    In Tools->Options I have changed in "Project
    Settings" Default project folder. Now, when I start
    JSC2 and I try open project in dialog box I see in
    File Name field old path. Why?
    I see this as an issue in the product and have filed a bug on your behalf : 6378569
    And the second question from "path" group: How can I
    change default path for .war files?
    This one looks like an RFE. Hence filed : 6378572
    Regards,
    Sakthi

  • JSC2 application consumes db-connections

    Hi,
    We have updated a JSC1 application to JSC2, the JSC1 application has been in production a couple of years without major problems.
    We imported the JSC1 app to JSC2 and we only had to add a rowset.first() in a few places to get the JSC2 application running properly.
    However, the JSC2 application consumes db connections.
    We found that afterRenderResponse (were we close rowsets) is not called the first
    time a page is called. This seems to happen only in pages that calls rowset.execute from the constructor. After the first time the page is called, afterRenderResponse is called from JSC.
    Is this a bug in JSC2 or in our application?
    Regards
    Mats Jakobsson

    This seems to happen only in pages that calls rowset.execute from the constructor.Do you mean rowset.execute is called in _init()  ?
    In JSC2, no code should be added to the constructor.
    These articles may help
    http://developers.sun.com/jscreator/reference/fi/2/event-life-cycle.html
    http://blogs.sun.com/dashboy/entry/java_studio_creator_lifecycle_q1
    http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/scopes.html
    If this doesn't help, please describe the lifecycle of your application
    John

  • Expiring pages in JSC2?

    I need to be able to have a page expire, when the user clicks the back button. How can I do that in JSC2? I ran across one other post, dated back to 2004 that says:
    Could you modify the JSP page to include the following
    lines and try
    <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
    <META HTTP-EQUIV=Expires CONTENT="now">
    <%
    response.setHeader("Pragma", "No-cache");
    response.setDateHeader("Expires", 0);
    response.setHeader("Cache-Control", "no-cache");
    %>Unfortunately, JSC2 doesn't like anything other than xml tags in the JSP code. Anyone have a workaround for me?
    Thanks!!

    Thanks for doing so.
    The page expiration issue seems to be comming up a lot for my work place no matter what IDE or development app we are using - its a common issue/need.
    As an aside: Overall I really like JSC2 and am happy that there is an active community here working on it.

  • Error while deploying to remote server

    Hi,
    I'm trying to deploy an application from Java Studio Creator2 (running in my home office) to a Java System Applicatio Server PE 8.2 (running in our company). The server is behind a NAT router an has a private IP address on the company LAN (10.0.0.0 network). The ports 4848, 8080 and 8181 are open and directed to the server and I can connect using a web browser.
    I can also register the server in JSC2 as a remote deployment server and that little green arrow shows up imediately (I can see/change settings, ...). If I start to deploy an application to this server it fails. JSC2 and the server start talking to each other but after a few minutes I get a timeout error. This is the output in the JSC console:
    Building jar: /export/home/tim/Documents/source/Creator/Projects/Test/dist/Test.war
    Deleting directory /export/home/tim/Documents/source/Creator/Projects/Test/dist/tmp
    dist:
    run-deploy:
    Distributing /export/home/tim/Documents/source/Creator/Projects/Test/dist/Test.war to [ni000g02:4848_server]
    Start registering the project's server resources
    Finished registering server resources
    Deployment error: Deployment timed out after 240 seconds.. See the server log file for details.
    Exception=Deployment error: Deployment timed out after 240 seconds.. See the server log file for details.
    Deployment error: Deployment timed out after 240 seconds.. See the server log file for details.
    The Application is on the server but it's disabled and theres no automatic test (starting the browser, calling the page). This only works once. After I removed the crippled app from the server, I can't redeploy it.
    Maybe the problem is the server being behind a NAT router?
    Any help is appreciated!
    Tim Richter

    Hi,
    I did a fresh install (plain vanilla) and tried to deploy again. Here's the complete log:
    [#|2006-05-01T10:41:52.958+0200|INFO|sun-appserver-pe8.2|javax.enterprise.tools.launcher|_ThreadID=10;|
    /usr/java/bin/java
    -client
    -Xmx512m
    -XX:NewRatio=2
    -Dcom.sun.aas.defaultLogFile=/opt/SUNWappserver/domains/domain1/logs/server.log
    -Djava.endorsed.dirs=/opt/SUNWappserver/lib/endorsed
    -Djava.security.policy=/opt/SUNWappserver/domains/domain1/config/server.policy
    -Djava.security.auth.login.config=/opt/SUNWappserver/domains/domain1/config/login.conf
    -Dsun.rmi.dgc.server.gcInterval=3600000
    -Dsun.rmi.dgc.client.gcInterval=3600000
    -Djavax.net.ssl.keyStore=/opt/SUNWappserver/domains/domain1/config/keystore.jks
    -Djavax.net.ssl.trustStore=/opt/SUNWappserver/domains/domain1/config/cacerts.jks
    -Djava.ext.dirs=/usr/java/jre/lib/ext:/opt/SUNWappserver/domains/domain1/lib/ext:/opt/SUNWappserver/derby/lib
    -Djdbc.drivers=org.apache.derby.jdbc.ClientDriver
    -Djavax.management.builder.initial=com.sun.enterprise.admin.server.core.jmx.AppServerMBeanServerBuilder
    -Dcom.sun.enterprise.config.config_environment_factory_class=com.sun.enterprise.config.serverbeans.AppserverConfigEnvironmentFactory
    -Dcom.sun.enterprise.taglibs=appserv-jstl.jar,jsf-impl.jar
    -Dcom.sun.enterprise.taglisteners=jsf-impl.jar
    -Djavax.xml.parsers.SAXParserFactory=com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl
    -Dcom.sun.aas.configName=server-config
    -Dorg.xml.sax.parser=org.xml.sax.helpers.XMLReaderAdapter
    -Ddomain.name=domain1
    -Djmx.invoke.getters=true
    -Djavax.xml.parsers.DocumentBuilderFactory=com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl
    -Dcom.sun.aas.promptForIdentity=true
    -Dorg.xml.sax.driver=com.sun.org.apache.xerces.internal.parsers.SAXParser
    -Dcom.sun.aas.instanceRoot=/opt/SUNWappserver/domains/domain1
    -Djavax.xml.transform.TransformerFactory=com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl
    -Dcom.sun.aas.domainName=domain1
    -Djava.util.logging.manager=com.sun.enterprise.server.logging.ServerLogManager
    -Dproduct.name=Sun-Java-System/Application-Server
    -Dcom.sun.enterprise.overrideablejavaxpackages=javax.faces,javax.servlet.jsp.jstl,javax.xml.bind,javax.help
    -Dcom.sun.aas.configRoot=/opt/SUNWappserver/config
    -Djava.library.path=/usr/java/jre/lib/i386/client:/usr/jdk/instances/jdk1.5.0/jre/lib/i386/client:/usr/jdk/instances/jdk1.5.0/jre/lib/i386:/usr/jdk/instances/jdk1.5.0/jre/../lib/i386:/opt/SUNWappserver/lib:/usr/lib/lwp:/opt/SUNWappserver/lib:/usr/lib/lwp:/usr/jdk/instances/jdk1.5.0/jre/lib/i386/client:/usr/jdk/instances/jdk1.5.0/jre/lib/i386:/usr/jdk/instances/jdk1.5.0/jre/../lib/i386:/opt/SUNWappserver/lib:/opt/SUNWappserver/lib:/opt/SUNWappserver/lib::/usr/lib
    -Dcom.sun.aas.instanceName=server
    -Dcom.sun.aas.processLauncher=SE
    -cp
    /usr/java/lib/tools.jar:/opt/SUNWappserver/lib/appserv-rt.jar:/opt/SUNWappserver/lib/j2ee.jar:/opt/SUNWappserver/lib/activation.jar:/opt/SUNWappserver/lib/mail.jar:/opt/SUNWappserver/lib/appserv-cmp.jar:/opt/SUNWappserver/lib/admin-cli.jar:/opt/SUNWappserver/lib/appserv-admin.jar:/opt/SUNWappserver/lib/appserv-jstl.jar:/opt/SUNWappserver/lib/commons-launcher.jar:/opt/SUNWappserver/lib/commons-logging.jar:/opt/SUNWappserver/lib/j2ee-svc.jar:/opt/SUNWappserver/lib/jaxr-api.jar:/opt/SUNWappserver/lib/jaxr-impl.jar:/opt/SUNWappserver/lib/jaxrpc-api.jar:/opt/SUNWappserver/lib/jaxrpc-impl.jar:/opt/SUNWappserver/lib/dom.jar:/opt/SUNWappserver/lib/relaxngDatatype.jar:/opt/SUNWappserver/lib/jax-qname.jar:/opt/SUNWappserver/lib/saaj-api.jar:/opt/SUNWappserver/lib/saaj-impl.jar:/opt/SUNWappserver/lib/xsdlib.jar:/opt/SUNWappserver/lib/jmxremote.jar:/opt/SUNWappserver/lib/jmxremote_optional.jar:/opt/SUNWappserver/lib/jsf-api.jar:/opt/SUNWappserver/lib/jsf-impl.jar:/opt/SUNWappserver/lib/rmissl.jar:/opt/SUNWappserver/lib/xalan.jar:/opt/SUNWappserver/lib/xercesImpl.jar:/opt/SUNWappserver/lib/appserv-assemblytool_zh_CN.jar:/opt/SUNWappserver/lib/appserv-cmp_zh_CN.jar:/opt/SUNWappserver/lib/appserv-rt_zh_CN.jar:/opt/SUNWappserver/lib/commons-launcher_zh_CN.jar:/opt/SUNWappserver/lib/deployhelp_zh_CN.jar:/opt/SUNWappserver/lib/j2ee_zh_CN.jar:/opt/SUNWappserver/lib/appserv-assemblytool_ja.jar:/opt/SUNWappserver/lib/appserv-cmp_ja.jar:/opt/SUNWappserver/lib/appserv-rt_ja.jar:/opt/SUNWappserver/lib/j2ee_ja.jar:/opt/SUNWappserver/lib/commons-launcher_ja.jar:/opt/SUNWappserver/lib/deployhelp_ja.jar:/opt/SUNWappserver/lib/j2ee_ko.jar:/opt/SUNWappserver/lib/appserv-assemblytool_ko.jar:/opt/SUNWappserver/lib/appserv-cmp_ko.jar:/opt/SUNWappserver/lib/appserv-rt_ko.jar:/opt/SUNWappserver/lib/commons-launcher_ko.jar:/opt/SUNWappserver/lib/deployhelp_ko.jar:/opt/SUNWappserver/lib/appserv-assemblytool_fr.jar:/opt/SUNWappserver/lib/appserv-cmp_fr.jar:/opt/SUNWappserver/lib/appserv-rt_fr.jar:/opt/SUNWappserver/lib/commons-launcher_fr.jar:/opt/SUNWappserver/lib/deployhelp_fr.jar:/opt/SUNWappserver/lib/j2ee_fr.jar:/opt/SUNWappserver/lib/appserv-assemblytool_es.jar:/opt/SUNWappserver/lib/appserv-cmp_es.jar:/opt/SUNWappserver/lib/appserv-rt_es.jar:/opt/SUNWappserver/lib/commons-launcher_es.jar:/opt/SUNWappserver/lib/deployhelp_es.jar:/opt/SUNWappserver/lib/j2ee_es.jar:/opt/SUNWappserver/lib/appserv-assemblytool_zh.jar:/opt/SUNWappserver/lib/appserv-cmp_zh.jar:/opt/SUNWappserver/lib/appserv-rt_zh.jar:/opt/SUNWappserver/lib/commons-launcher_zh.jar:/opt/SUNWappserver/lib/j2ee_zh.jar:/opt/SUNWappserver/lib/deployhelp_zh.jar:/opt/SUNWappserver/lib/appserv-upgrade.jar:/opt/SUNWappserver/lib/appserv-ext.jar:/opt/SUNWappserver/lib/install/applications/jmsra/imqjmsra.jar:/opt/SUNWappserver/imq/lib/jaxm-api.jar:/opt/SUNWappserver/imq/lib/fscontext.jar:/opt/SUNWappserver/lib/ant/lib/ant.jar
    com.sun.enterprise.server.PEMain
    start
    display|#]
    [#|2006-05-01T10:41:56.585+0200|INFO|sun-appserver-pe8.2|javax.enterprise.resource.jms|_ThreadID=10;|JMS5023: JMS service successfully started. Instance Name = imqbroker, Home = [/opt/SUNWappserver/imq/bin].|#]
    [#|2006-05-01T10:41:56.588+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.core|_ThreadID=10;|CORE5098: AS Socket Service Initialization has been completed.|#]
    [#|2006-05-01T10:41:57.161+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM0046:The Platform MBeanServer is available. It will be used to register Application Server MBeans. Platform MBeans will also be available for browsing while using standard JMX Console.|#]
    [#|2006-05-01T10:41:57.166+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM0001:MBeanServer initialized successfully|#]
    [#|2006-05-01T10:41:57.289+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.core.security|_ThreadID=10;|SEC1143: Loading policy provider com.sun.enterprise.security.provider.PolicyWrapper.|#]
    [#|2006-05-01T10:41:57.800+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=10;|Created virtual server server|#]
    [#|2006-05-01T10:41:57.805+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=10;|Created virtual server __asadmin|#]
    [#|2006-05-01T10:41:58.418+0200|INFO|sun-appserver-pe8.2|javax.enterprise.resource.corba.ee.S1AS-ORB.rpc.transport|_ThreadID=10;|"IOP00710299: (INTERNAL) Successfully created IIOP listener on the specified host/port: all interfaces/3700"|#]
    [#|2006-05-01T10:41:58.721+0200|INFO|sun-appserver-pe8.2|javax.enterprise.resource.corba.ee.S1AS-ORB.rpc.transport|_ThreadID=10;|"IOP00710299: (INTERNAL) Successfully created IIOP listener on the specified host/port: all interfaces/3820"|#]
    [#|2006-05-01T10:41:58.724+0200|INFO|sun-appserver-pe8.2|javax.enterprise.resource.corba.ee.S1AS-ORB.rpc.transport|_ThreadID=10;|"IOP00710299: (INTERNAL) Successfully created IIOP listener on the specified host/port: all interfaces/3920"|#]
    [#|2006-05-01T10:41:59.436+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.core.transaction|_ThreadID=10;|JTS5014: Recoverable JTS instance, serverId = [3700]|#]
    [#|2006-05-01T10:42:03.014+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM1079: Initialization of AMX MBeans successful|#]
    [#|2006-05-01T10:42:03.154+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=10;|[AutoDeploy] Selecting file /opt/SUNWappserver/lib/install/applications/MEjbApp.ear for autodeployment.|#]
    [#|2006-05-01T10:42:03.671+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=10;|DPL5109: EJBC - START of EJBC for [MEjbApp]|#]
    [#|2006-05-01T10:42:03.674+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=10;|Processing beans ...|#]
    [#|2006-05-01T10:42:03.702+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=10;|DPL5110: EJBC - END of EJBC for [MEjbApp]|#]
    [#|2006-05-01T10:42:03.809+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=10;|Total Deployment Time: 554 msec, Total EJB Compiler Module Time: 31 msec, Portion spent EJB Compiling: 5%
    Breakdown of EJBC Module Time: Total Time for EJBC: 31 msec, CMP Generation: 0 msec (0%), Java Compilation: 0 msec (0%), RMI Compilation: 0 msec (0%), JAX-RPC Generation: 24 msec (77%),
    |#]
    [#|2006-05-01T10:42:03.880+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=10;|deployed with moduleid = MEjbApp|#]
    [#|2006-05-01T10:42:03.993+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM1041:Sent the event to instance:[ApplicationDeployEvent -- reference-added MEjbApp]|#]
    [#|2006-05-01T10:42:04.066+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM1042:Status of dynamic reconfiguration event processing:[success]|#]
    [#|2006-05-01T10:42:04.084+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM1041:Sent the event to instance:[ApplicationDeployEvent -- deploy MEjbApp]|#]
    [#|2006-05-01T10:42:04.213+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.container.ejb|_ThreadID=10;|Instantiated container for: ejbName: MEJBBean; containerId: 75135249527799808|#]
    [#|2006-05-01T10:42:04.314+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.core.classloading|_ThreadID=10;|LDR5010: All ejb(s) of [MEjbApp] loaded successfully!|#]
    [#|2006-05-01T10:42:04.316+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM1042:Status of dynamic reconfiguration event processing:[success]|#]
    [#|2006-05-01T10:42:04.317+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=10;|[AutoDeploy] Successfully autodeployed : /opt/SUNWappserver/lib/install/applications/MEjbApp.ear.|#]
    [#|2006-05-01T10:42:04.317+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=10;|[AutoDeploy] Selecting file /opt/SUNWappserver/lib/install/applications/__ejb_container_timer_app.ear for autodeployment.|#]
    [#|2006-05-01T10:42:04.498+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=10;|DPL5109: EJBC - START of EJBC for [__ejb_container_timer_app]|#]
    [#|2006-05-01T10:42:06.770+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=10;|Processing beans ...|#]
    [#|2006-05-01T10:42:06.770+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=10;|DPL5110: EJBC - END of EJBC for [__ejb_container_timer_app]|#]
    [#|2006-05-01T10:42:06.815+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=10;|Total Deployment Time: 2488 msec, Total EJB Compiler Module Time: 2272 msec, Portion spent EJB Compiling: 91%
    Breakdown of EJBC Module Time: Total Time for EJBC: 2272 msec, CMP Generation: 649 msec (28%), Java Compilation: 1567 msec (68%), RMI Compilation: 0 msec (0%), JAX-RPC Generation: 0 msec (0%),
    |#]
    [#|2006-05-01T10:42:06.857+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=10;|deployed with moduleid = __ejb_container_timer_app|#]
    [#|2006-05-01T10:42:06.908+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM1041:Sent the event to instance:[ApplicationDeployEvent -- reference-added __ejb_container_timer_app]|#]
    [#|2006-05-01T10:42:07.028+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM1042:Status of dynamic reconfiguration event processing:[success]|#]
    [#|2006-05-01T10:42:07.039+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM1041:Sent the event to instance:[ApplicationDeployEvent -- deploy __ejb_container_timer_app]|#]
    [#|2006-05-01T10:42:07.133+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.container.ejb|_ThreadID=10;|Instantiated container for: ejbName: TimerBean; containerId: 75135249728798720|#]
    [#|2006-05-01T10:42:07.392+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.container.ejb|_ThreadID=10;|EJB5109:EJB Timer Service started successfully for datasource [jdbc/__TimerPool]|#]
    [#|2006-05-01T10:42:07.392+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.core.classloading|_ThreadID=10;|LDR5010: All ejb(s) of [__ejb_container_timer_app] loaded successfully!|#]
    [#|2006-05-01T10:42:07.393+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM1042:Status of dynamic reconfiguration event processing:[success]|#]
    [#|2006-05-01T10:42:07.393+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=10;|[AutoDeploy] Successfully autodeployed : /opt/SUNWappserver/lib/install/applications/__ejb_container_timer_app.ear.|#]
    [#|2006-05-01T10:42:07.398+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=10;|WEB0302: Starting Sun-Java-System/Application-Server.|#]
    [#|2006-05-01T10:42:07.455+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=10;|WEB0100: Loading web module [__default-admingui] in virtual server [__asadmin] at []|#]
    [#|2006-05-01T10:42:07.521+0200|WARNING|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=10;|WEB0500: default-locale attribute of locale-charset-info element has been deprecated and is being ignored. Use default-charset attribute of parameter-encoding element instead|#]
    [#|2006-05-01T10:42:07.611+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=10;|WEB0100: Loading web module [adminapp] in virtual server [__asadmin] at [web1]|#]
    [#|2006-05-01T10:42:07.623+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=10;|WEB0100: Loading web module [admingui] in virtual server [__asadmin] at [asadmin]|#]
    [#|2006-05-01T10:42:07.625+0200|WARNING|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=10;|WEB0500: default-locale attribute of locale-charset-info element has been deprecated and is being ignored. Use default-charset attribute of parameter-encoding element instead|#]
    [#|2006-05-01T10:42:07.636+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=10;|WEB0100: Loading web module [com_sun_web_ui] in virtual server [__asadmin] at [com_sun_web_ui]|#]
    [#|2006-05-01T10:42:07.711+0200|INFO|sun-appserver-pe8.2|org.apache.catalina.core.StandardEngine|_ThreadID=10;|Starting Servlet Engine: Sun-Java-System/Application-Server|#]
    [#|2006-05-01T10:42:09.084+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=10;|Initializing Grizzly Non-Blocking Mode|#]
    [#|2006-05-01T10:42:09.085+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=10;|WEB0703: Initializing Sun-Java-System/Application-Server-PE HTTP/1.1 on 8080|#]
    [#|2006-05-01T10:42:09.097+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=10;|WEB0712: Starting Sun-Java-System/Application-Server-PE HTTP/1.1 on 8080|#]
    [#|2006-05-01T10:42:09.156+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=10;|Initializing Grizzly Blocking Mode|#]
    [#|2006-05-01T10:42:09.157+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=10;|WEB0703: Initializing Sun-Java-System/Application-Server-PE HTTP/1.1 on 8181|#]
    [#|2006-05-01T10:42:09.160+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=10;|WEB0712: Starting Sun-Java-System/Application-Server-PE HTTP/1.1 on 8181|#]
    [#|2006-05-01T10:42:09.189+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=10;|Initializing Grizzly Non-Blocking Mode|#]
    [#|2006-05-01T10:42:09.189+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=10;|WEB0703: Initializing Sun-Java-System/Application-Server-PE HTTP/1.1 on 4848|#]
    [#|2006-05-01T10:42:09.195+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=10;|WEB0712: Starting Sun-Java-System/Application-Server-PE HTTP/1.1 on 4848|#]
    [#|2006-05-01T10:42:09.332+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM1504: Here is the JMXServiceURL for the Standard JMXConnectorServer: [service:jmx:rmi:///jndi/rmi://ni000g02.kidogo.net:8686/jmxrmi]. This is where the remote administrative clients should connect using the standard JMX connectors|#]
    [#|2006-05-01T10:42:09.333+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM1506: Status of Standard JMX Connector: Active = [true]|#]
    [#|2006-05-01T10:42:09.363+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.core|_ThreadID=10;|Application server startup complete.|#]
    [#|2006-05-01T10:50:57.639+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=11;|DPL5109: EJBC - START of EJBC for [Test]|#]
    [#|2006-05-01T10:50:57.640+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=11;|Processing beans ...|#]
    [#|2006-05-01T10:50:57.640+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=11;|DPL5110: EJBC - END of EJBC for [Test]|#]
    [#|2006-05-01T10:50:57.681+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=11;|Total Deployment Time: 229 msec, Total EJB Compiler Module Time: 2 msec, Portion spent EJB Compiling: 0%
    Breakdown of EJBC Module Time: Total Time for EJBC: 2 msec, CMP Generation: 0 msec (0%), Java Compilation: 0 msec (0%), RMI Compilation: 0 msec (0%), JAX-RPC Generation: 0 msec (0%),
    |#]
    [#|2006-05-01T10:50:57.723+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.deployment|_ThreadID=11;|deployed with moduleid = Test|#]
    [#|2006-05-01T10:50:58.419+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=12;|ADM1041:Sent the event to instance:[ApplicationDeployEvent -- reference-added Test]|#]
    [#|2006-05-01T10:50:58.451+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=12;|ADM1042:Status of dynamic reconfiguration event processing:[success]|#]
    [#|2006-05-01T10:50:58.674+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=13;|ADM1041:Sent the event to instance:[ModuleDeployEvent -- deploy web/Test]|#]
    [#|2006-05-01T10:50:58.687+0200|INFO|sun-appserver-pe8.2|javax.enterprise.system.tools.admin|_ThreadID=13;|ADM1042:Status of dynamic reconfiguration event processing:[success]|#]
    Tim

  • Problems in displaying chinese characters with utf-8 encoding

    Hi,
    I got problem in displaying chinese characters in my web application.
    I am creating a web application supporting both English and Chinese charaters. What I am trying to do is:
    1. storing some chinese characters via a web page (page1) into database.
    2. retrieve the chinese characters via another web page (page2) from the database.
    Once I put the Chinese characters on the webpage (page1 in step #1), it displayes well (the readable chinese characters) before I submit this page (after submit, the data will be stored into the database).
    But when I tried to display the chiese characters via page2 in step#2, I got un-readable characters displayed.
    The running configuration is: Sun Application Server (coming and with the JSC2) and MySQL server 5.0. And I setup the database server with utf8 as character-set.
    It seems like the chinese characters got messed up throught the round-trip (from page1<----via jdbc---->database<----via jdbc------>page2).
    From the database, I found the chinese characters are there. Any helps are appreciated.

    Hi,
    I am trying to insert new record.The record may contain chineese or English data.
    I did same what u specified.
    first I converted to the byte UTF8.again,I converted byte to string using 8859_1.
    the values are not storing chinese characters.
    pls suggest me.
    below is my code.
                                  ascCode = req.getParameter("asccode");
                                  countryCode = req.getParameter("countrycode");
                                  ascName      = req.getParameter("ascname");
                                  address1     = req.getParameter("ascaddress1");
                                  address2 = req.getParameter("ascaddress2");
                                  System.out.println("ASC NAME:"+ascName);
                                  System.out.println("ADDRESS1:"+address1);
                                  System.out.println("ADDRESS2:"+address2);
                                  ascC = ascCode.getBytes("UTF8");
                                  coun = countryCode.getBytes("UTF8");
                                  ascN           = ascName.getBytes("UTF8");
                                  add1 = address1.getBytes("UTF8");
                                  add2          = address2.getBytes("UTF8");
                                  System.out.println("ASC NAME:"+ascN);
                                  System.out.println("ADDRESS1:"+add1);
                                  System.out.println("ADDRESS2:"+add2);
                                  ascCode = new String(ascC,"8859_1");
                                  countryCode= new String(coun,"8859_1");
                                  ascName = new String(ascN,"8859_1");
                                  address1 = new String(add1,"8859_1");
                                  address2 = new String(add2,"8859_1");
                                  System.out.println("ASC NAME:"+ascName);
                                  System.out.println("ADDRESS1:"+address1);
                                  System.out.println("ADDRESS2:"+address2);
    thanks.

  • Install  Application Server  8... Existing installation detected cant start

    Hi All,
    I am new to Java studio creator with its bundled pointbase server. I up graded to JSC early access without realising that the minmum ram requirements have doubled. I uninstalled JSC2 and reinstalled previous version but now cannot start server.
    I get the error during install
    (Jan 3, 2006 5:34:10 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, Installing Sun Java Application Server Platform Edition 8...
    Existing Installation Detected
    exitcode = 50
    I have uninstalled and restarted my machine without any sucess .
    I have Resin running on localhost 4040 and Tomcat on localhost 8080 also.
    Any insight welcome
    Regards
    Jim Ascroft

    It seems that your previous uninstallation did not properly uninstall Application Server bundled with Creator.
    In order to clean up Application Server installation you must delete any leftovers from Application Server installation directory (take a look at Creator documentation for the exact directory name since it is somewhere under Creator's installation directory). You must also clean up productregistry file - to do that please take a look at instructions in this article:
    https://j2ee-sdk.dev.java.net/howtos/J2EE_SDK_Installation_HOWTO.html#p3

  • Sun Team: UNACCEPTABLE BUGS !!!!!!!!!!!!!!!!

    to anyone who reads this, please excuse my lack of politeness and patience for this issue. it is simply unnacceptable for this bug to occur, since it renders the IDE completely useless, along with the hours of work spent on development.
    i am using VWP. there is a single page that simply reads data from a couple tables in a database and displays the results based on a parameter in the URL.
    it's all very nice until the IDE removes the datasource references in the web.xml and sun-web.xml.
    this bug has had several posts already and the same reply about fixing the bug gets posted. these kinds of bugs are completely unnacceptable after all this time.
    like i said, excuse my rudeness, but i am very fed up with all the issues ive had with VWP and JSCU2.
    we originally started using JSCU2 to replace an application developed in JSP. we worked for a few months with it and encountered so many issues that we decided to give VWP a try, since most people seemed to have more success with it. so much for that!
    this is my company's last attempt to develop and deploy an application using Sun's visual web development tools. starting to think that i should've taken the advice of my peers and moved to microsoft's ASP.NET from the very beginning. even if we had to write the code all over again in VB or C# it would've taken us a lot less time and money than trying to figure what can actually be done with Sun's tools that do not cause problems.
    seems like i have to think twice before adding anything to a page in VWP or JSCU2 because of "i don't know how the IDE will react, might have a bug"
    i had a lot of confidence in Sun and their new tools, all i vain.
    could someone PLEASE suggest a mechanism to work around this auto deletion of web.xml data source references???? (also, the IDE removes all line breaks from the web.xml file, putting all elements into a single line, rendering it unreadable and very hard to edit.

    Hi there,
    That's an interesting bug. I never had the issue you have described here. May be our environment is different than what you have. Can you please share any links/sites where this bug has been posted before. I like to check this out. Because in our place I was using JSC2 and now Netbeans for our product development. Since this is tool related issue, you can always get the comercial tool such as JBuilder, Exadel plugins, etc. where also not guranteed the problem is not there but you may get better support because you are paying for it. Moving to ASP.Net is the other choice you mentioned, I have experince with MS-Studio getting corrupted file also. But you may be better of with MS-Visual Studio (VB,C#) if your project is just one page application.
    Sri Thuraisamy

  • Why Tomcat? (vs sun-appserver)

    Hi,
    I'm still a newbie with Sun JSC2 and have a little question ! I saw that many people have tried to deploy their webapp with Tomcat... And as you can see in this forum, it's not very easy when a database is included... (I have tried unsuccessfully :[ with MySql)
    com.sun.rave.web.ui.appbase.ApplicationException: org.apache.jasper.JasperException: org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'
    I work with this documents :
    [http://tomcat.apache.org/tomcat-5.5-doc/jndi-datasource-examples-howto.html]
    I will try again, it's perhaps a parameter I forget !? If you have another tutorial about MySQL Connection in Tomcat, I will be gratefull, it helps me to have a better understanding !
    But my main question : Why Tomcat? The standard server of JSC2 is it not good? What is main differences ?
    Thank you for you answers (Sorry for my english)

    The reason that I have to use Tomcat is because the company I work for is the standard.
    There are a lot of complaints about Java Studio Creator 2 connections and I am sick of the lame as@ put drivers here and do this there. The example are very lame, have not found a good example how to use this product with other enviroments.
    Here is my link to what I asked two days before you submit.
    http://swforum.sun.com/jive/thread.jspa?threadID=64447&tstart=0
    I wish you luck

  • SUN TEAM: PLEASE GIVE US A DECENT APP SERVER!

    Sun Team,
    I am still persevering with JSC2 due to functionality. However my patience is really wearing thin with the app server. How many times in a sesion do I have kill it !! at least twice and hour. I have a top end PC and still it doesn't play ball.
    Any chance of giving us tomcat or something that works?
    I use both Eclipse and JSC2, and Eclipse(with another app server) has never given me a problem.
    I am very, very frustrated with JSC2.
    Regards,
    LOTI

    All I want is the ability to do at least one hours piece of work without having to kill the appserver and Creator. I don't think it is asking too much.
    Coming from a background over the last 10 years of using GUI RAD tools, I expected too much from JSC when it was launched. Although SUN did hype it as the best thing since sliced bread!! Time has shown a different story.
    It was very niave of me to think JSC could achieve the same of ease of use when putting together a web app. I have championed this product up until now and other of my "low level hmtl" colleagues have expressed an interest. They would laugh if they started using JSC. It is simply not commerical or professional standard as compared to Eclipse, etc.
    Until the pefromance issues of JSC are sorted out, I will remain unconvinced about the products viability in the "real life" world.
    And before anybody gets on a rant, I am trying to write a fairly sized commercial project of which I am getting well paid. Hence the frustration. This is not some novice putting together a hello world.
    Regards,
    LOTI

  • Possible to display external web page??

    Hi everyone,
    is it possible to display an external webpage by, for example, specifying the URL of the page? It would work a bit like frames.
    I have a table with a list of reports, each of which links to a "report". all data is obtained from a database.
    We need to be able to click a report and have it load it into some sort of panel or layout container based on the URL. I know how to do it using links in the table to open a new page. but i do not want the user to navigate away from the page or have a popup when selecting a link. i'd place the "report placeholder" in a layout panel with scroll css settings.
    I wouldn't mind working with frames either.
    could anyone suggest a nice mechanism to either load an external page in the same one being viewed or a solution using frames (is it even possible to use frames in JSC2 and JSF??)?
    i don't need anyone to give me a whole code, just the idea behind developing something like this.
    thank you all in this JSC2 community for all the help thus far.
    - P

    I did the following to display an external website:
    StaticText st = new StaticText();
    st.setText("<iframe id='urlFrame' frameborder='0' src='http://www.yahoo.fr' height='100%' width='100%'>test.....</iframe>");
    st.setEscape(false);
    However, I read that it is also possible by putting a markup component with tag attribute set to "iframe" but I did not have a chance to test it yet.

  • Websphere (Yes or No?)

    Can someone on the Creator team please give us a clear answer about JSC2 and Websphere? The installation notes say that Websphere 5 is a supported deployment server. The web site http://developers.sun.com/prodtech/javatools/jscreator/features/sysreqs/depservers.html says Websphere 6 is supported. The forums and everything I can gather from IBM would indicate that neither is true, due to the incompatability of SUN's JSF 1.1 and IBM's implementation of JSF 1.0 in Websphere 5.1.x / 6.0 So what is it? Is Websphere a supported deployment server or not?

    I'm with WebSphere 5.0.2 and I can deploy an Export from Creator 2 (making litle changes in web.xml and portlet.xml) but when I want to show the portlet I got this error:
    2006.02.06 18:38:32.234 E org.apache.pluto.invoker.impl.PortletInvokerImpl invoke
    java.lang.IllegalStateException: Response already committed.
    at com.ibm.ws.webcontainer.srt.SRTServletResponseContext.sendError(SRTServletRespo nseContext.java:131)
    at com.ibm.ws.webcontainer.srt.SRTServletResponse.sendError(SRTServletResponse.jav a:654)
    at com.ibm.ws.webcontainer.servlet.SimpleFileServlet.doGet(SimpleFileServlet.java: 329)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletIn stance.java(Compiled Code))
    at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycle Servlet.java(Compiled Code))
    at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet .java(Compiled Code))
    at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleS ervlet.java(Inlined Compiled Code))
    at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java(Co mpiled Code))
    at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServle tReferenceState.java(Compiled Code))
    at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstan ceReference.java(Inlined Compiled Code))
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(Web AppRequestDispatcher.java(Compiled Code))
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDi spatcher.java(Compiled Code))
    at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.include(WebAppRequestDis patcher.java(Compiled Code))
    at org.apache.pluto.invoker.impl.PortletInvokerImpl.invoke(PortletInvokerImpl.java :223)
    at org.apache.pluto.invoker.impl.PortletInvokerImpl.render(PortletInvokerImpl.java :139)
    at com.ibm.wps.pe.pc.std.PortletContainerImpl.renderPortlet(PortletContainerImpl.j ava:142)
    at com.ibm.wps.pe.pc.PortletContainerImpl.doRenderPortlet(PortletContainerImpl.jav a:406)
    at com.ibm.wps.pe.ext.ppr.ParallelRenderManager.performService(ParallelRenderManag er.java:395)
    at com.ibm.wps.pe.pc.PortletContainerImpl.renderPortlet(PortletContainerImpl.java: 94)
    at com.ibm.wps.pe.pc.PortletContainer.renderPortlet(PortletContainer.java:95)
    at com.ibm.wps.composition.PortletHolder.render(PortletHolder.java:87)
    at com.ibm.wps.engine.tags.PortletRenderTag.doStartTag(PortletRenderTag.java:151)< br> at org.apache.jsp._Control._jspService(_Control.java:1949)
    2006.02.0 6 18:38:32.234 E com.ibm.wps.engine.tags.PortletRenderTag doStartTag
    FWEN0066E: The portlet could not be rendered. - StackTrace follows...
    2006.02.06 18:38:32.234 E com.ibm.wps.engine.tags.PortletRenderTag doStartTag
    javax.portlet.PortletException
    at org.apache.pluto.invoker.impl.PortletInvokerImpl.invoke(PortletInvokerImpl.java :261)
    at org.apache.pluto.invoker.impl.PortletInvokerImpl.render(PortletInvokerImpl.java :139)
    Then... I can't use Creator to develop my portlets?? .�(
    Thank yu.
    Sergi

Maybe you are looking for

  • How to access class method in jsp page

    hi , I am new to JSP . I want to access a method returning an arraylist of a class. this class i saved in WEB-INF>classes folder > where other classes like logonform , etc. are saved .... import stmt is <%@ page import="java.io.*, java.util.*, readXm

  • Pkgrepo fails over HTTP, works on NFS

    Hello everyone, I am trying to set up a local copy of solaris 11 x64 packages, so have downloaded, concatenated and unpacked the repo ISOs in a folder on a Linux box, thinking it would be a simple matter of making the files available under Apache's r

  • Bookmarks not working in multi-document PDF application

    Why are bookmarks not working in multi-document PDF application when uploaded to the web? We created a multi-document PDF application. All bookmarks and links work on our systems. All work on the customer's system. They do not work when uploaded to t

  • RAC node upgrade issue

    We have our company's database on Oracle Real application clusters database consisting of two RAC nodes. We would like to perform some hardware upgrades on both the RAC nodes. Could anyone please tell if it is OK to shutdown one instance at a time an

  • How to use SetSystemCursor

    Hi I am developing a program in Winapi with C. In the program I have a button that when clicked plays a sound file of about 5 seconds. What I need to do is to change the cursor to the circle used for time delay after having clicked the button, and th