BEA ALUI Studio

I have worked with Studio server with plumtree and BEA 6.1..And I liked working on it, because of the portlet we can create in less amount of time..
Just want to confirm that can we use it with WCI 10gR3, I hope oracle is not suppoting this product any more and hence its does not come with the bundle WCI...is separate lience is attached to it?? Or we can download from edelivery and can use it if we have the lience of WCI 10gR3..Please let me know if anyone is using studio with WCI 10gR3!!

You can download it from edelivery...I guess....but what is the point as it is no longer supported..... I suggest you try something similar to Frevvo Live Forms and integrate it with your WCI10gR3 portal...
Hope that helps....Vermaji.

Similar Messages

  • Error of Validation of XML Schema in BEA WorkSpace Studio

    When I validate my XML Schemas throught the BEA WorkSpace Studio Version: 1.1 Build id: 1090602 the follow error happens:
    Referenced file contains errors (file:/MyPath/MyXMLSchema1.xsd).
    For more information, right click on the message and select "Show Details..."
    Show Details:
    The errors below were detected when validating the file "MyXMLSchema1.xsd" via the file "MyXMLSchema2.xsd".
    In most cases these errors can be detected by validating "MyXMLSchema1.xsd" directly.
    However it is possible that errors will only occur when MyXMLSchema1.xsd is validated in the context of MyXMLSchema2.xsd.
    src-resolve: Cannot resolve the name 'srv:Services' to a(n) 'type definition' component
    When I validate my XML Schemas throught the oepe_11gR1PS4 (Eclipse Platform Version: 3.6.2 Build id: M20110210-1200) no errors were found.
    My project is an OSB Project (ALSB Project).
    What's happen?

    BEA WorkSpace Studio Version: 1.1 Build id: 1090602 use xerces bea\alsb3.0\tools\eclipse_pkgs\1.1\eclipse_3.2.2\eclipse\plugins\org.apache.xerces_2.8.0.v200606131651
    oepe_11gR1PS4 (Eclipse Platform Version: 3.6.2 Build id: M20110210-1200) use xerces Oracle\Middleware_10.3.5\oepe_11gR1PS4\plugins\org.apache.xerces_2.9.0.v201005080400.jar
    If you replace the follow files:
    bea\alsb3.0\tools\eclipse_pkgs\1.1\eclipse_3.2.2\eclipse\plugins\org.apache.xerces_2.8.0.v200606131651\resolver.jar
    bea\alsb3.0\tools\eclipse_pkgs\1.1\eclipse_3.2.2\eclipse\plugins\org.apache.xerces_2.8.0.v200606131651\xercesImpl.jar
    bea\alsb3.0\tools\eclipse_pkgs\1.1\eclipse_3.2.2\eclipse\plugins\org.apache.xerces_2.8.0.v200606131651\xml-apis.jar
    for:
    Oracle\Middleware_10.3.5\oepe_11gR1PS4\plugins\org.apache.xerces_2.9.0.v201005080400.jar
    BEA WorkSpace Studio Version: 1.1 Build id: 1090602 will validate without errors (the same oepe_11gR1PS4 behaviour)

  • Problem in developing jasper report in BEA workspace studio version 1.1 with weblogic server 10.0

    Hi! all,
    Myself developing a jasperReport in BEA workspace studio 1.1 and always getting the below mentioned exception, though i have run the same code in NetBeans successfully with the same jar file.
    Even i have added weblogic.jar, wllog4j.jar, classes12.jar, commons-beanutils-1.8.0.jar, commons-collections-2.1.1.jar, commons-digester-1.7.jar, commons-javaflow-20060411.jar, commons-logging-1.0.4.jar, iText-2.1.7.jar, jasperreports-3.7.1.jar, jasperreports.jar, jasper-jdt-6.0.13.jar, jasper-compiler-jdt.jar, jasper-compiler.jar, jasper-runtime.jar, jasperreports-3.5.1.jar, jasperreports-2.0.5.jar in the WEB-INF/lib directory as well as build path. please help me.Thanks in advance.
    ==============================================================
    Exception in thread "Main Thread" java.lang.NoClassDefFoundError: weblogic/logging/WLLogRecord : weblogic/logging/LogEntry
         at java.lang.ClassLoader.findBootstrapClass(Native Method)
         at java.lang.ClassLoader.findBootstrapClass0(ClassLoader.java:891)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at weblogic.logging.commons.LogFactoryImpl.getInstance(LogFactoryImpl.java:21)
         at org.apache.commons.logging.LogFactory.getLog(LogFactory.java:370)
         at org.apache.commons.digester.Digester.<init>(Digester.java:304)
         at net.sf.jasperreports.engine.xml.JRXmlDigester.<init>(JRXmlDigester.java:62)
         at net.sf.jasperreports.engine.xml.JRXmlDigesterFactory.createDigester(JRXmlDigesterFactory.java:980)
         at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:203)
         at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:168)
         at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:152)
         at net.sf.jasperreports.engine.JasperCompileManager.compileReport(JasperCompileManager.java:150)
         at com.generateJasperReport.test.GasperReportNew.main(GasperReportNew.java:38)
    ==============================================================================
    My Code is..........................
    ============================
    package com.generateJasperReport.test;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.util.HashMap;
    import java.util.Map;
    //import weblogic.logging.LogEntry;
    import net.sf.jasperreports.engine.JRException;
    import net.sf.jasperreports.engine.JRResultSetDataSource;
    import net.sf.jasperreports.engine.JasperCompileManager;
    import net.sf.jasperreports.engine.JasperExportManager;
    import net.sf.jasperreports.engine.JasperFillManager;
    import net.sf.jasperreports.engine.JasperPrint;
    import net.sf.jasperreports.engine.JasperReport;
    import net.sf.jasperreports.view.JasperViewer;
    public class GenerateJasperReport {
         static JRResultSetDataSource jrds = null;
         static ResultSet rs = null;
         public static Connection connectDB() {
              Connection jdbcConnection = null;
              try {
                   Class.forName("oracle.jdbc.driver.OracleDriver");
                   jdbcConnection = DriverManager.getConnection(
                             "jdbc:oracle:thin:@192.161.5.35:1521:abc",
                             "xyz", "pqr");
              } catch (Exception ex) {
                   String connectMsg = "Could not connect to the database: "
                             + ex.getMessage() + " " + ex.getLocalizedMessage();
                   System.out.println(connectMsg);
              return jdbcConnection;
         public static void main(String[] args) throws JRException {
              Connection con = connectDB();
              JasperReport jasperReport=null;
              System.out.println("666666666666666666");
              String reportSource = "E:\\Pintu\\Project\\Bea Project\\workspace\\GenerateJasperReport\\src\\com\\generateJasperReport\\jrxmlFile\\JasperReportGeneration.jrxml";
              String reportDest = "E:\\Pintu\\Project\\Bea Project\\workspace\\GenerateJasperReport\\src\\com\\generateJasperReport\\output\\JasperReportGeneration.pdf";
              System.out.println("555555555555555");
              Map <String,String>parammap = new HashMap<String,String>();
              parammap.put("ReportTitle", "PDF JasperReport");
              System.out.println("444444444444444");
              try {
                   try{
                        jasperReport = JasperCompileManager
                             .compileReport(reportSource);
                   }catch(JRException e){e.printStackTrace();}
                   System.out.println("ssssssssssssss");
                   JasperPrint jasperPrint = JasperFillManager.fillReport(
                             jasperReport, parammap, con);
                   System.out.println("vvvvvvvvvvvvvvv");
                   JasperExportManager.exportReportToPdfFile(jasperPrint, reportDest);
                   System.out.println("kkkkkkkkkkkkkkkkkkk");
                   JasperViewer.viewReport(jasperPrint);
                   System.out.println("gfrfrrrertfewrw");
              } catch (Exception ex) {
                   ex.printStackTrace();
    ===========================================================

    Thanks for the information. It makes so much more sense to do the configuration from within PFR instead of WLS but the engineer insisted I could just do everything from within the WLS config wizard. I'm very relieved that someone has had success with this.
    Am I supposed to do the configuration wizard in WLS before doing the Configure Classic Interface from PFR?
    Since we're only going to be using the PC for the developer, I wasn't sure how much of the Web Logic Server needed to be configured.
    The Oracle engineer said to choose 'Oracle Ent. Mgr' and 'Oracle Classic 11g' from the WLS Config Wizard which I did - but now I have a choice on the 'Optional Configuration' page to choose 'Administration Server', 'Managed Servers', 'Deployments and Services' and 'RDMBS Security Store'. I'm not sure if I'm supposed to choose any of these. I want to be able to talk to the Solaris server that is going to be my application server via WLS and I'm not sure if I need any of these.
    In your environment, are you developing 11g forms on a PC but hosting on another platform? I have a Windows 7 64 bit machine but was told I had to set up a 32bit XP VM on my Win7 machine to use Forms and Reports for development.

  • Developing plug-ins for BEA Weblogic Studio

    Can anyone provide pointers on documentation on developing plug-ins for BEA Weblogic Studio (e.g like this one https://beajunitplugin.projects.dev2dev.bea.com/ )
    Regards,
    -N

    film leaders clips can be downloaded online if you dig around a bit ... Peter Wiggins has a nice Motion Template clock he offers for free (which is a bargain by anyones reckoning)
    easy enough to create your own film leader style countdown with a few back to back text generators separated by clock wipe transitions
    color bars can already found in your fcp video generators bin
    color bars and a film leader style countdown can also be auto generated during output (print to video and edit to tape)
    distort faces and license plate like they do on tv? ... ok i give up, what do you mean? if you mean you want to disguise them (Mosaic, Blur etc) then you can have a bash with my Region Blur plugin
    Message was edited by: Andy Mees

  • BEA Workshop Studio 3.2: Server classpath customization & Remote Debugging

    BEA Workshop Studio 3.2:
    The server classpath customization and remote debugging issues have been fixed in the 3.2 release, which is now available for download at http://workshopstudio.bea.com/download.do.
    Workround for the 3.1 release:
    By switching to war deployment mode the server classpath can be customized in the launch configuration.
    You can see the complete list of new features in 3.2 at:
    http://e-docs.bea.com/workshop/docs92/studio32/WhatsNew.htm

    Thanks Ram,as you said i server runtime i pointed to jdk1.5,that error has been resolved.
    Now i'm getting the parsing config.xml file.
    My server is Test9.
    C:\bea\jdk150_04\bin\java -classpath C:\bea\weblogic91\server\lib\weblogic_sp.jar;C:\bea\weblogic91\server\lib\weblogic.jar;C:\bea\weblogic91\server\lib\webservices.jar;C:\bea\jdk150_04\lib\tools.jar -Dbea.home=C:/bea -Dweblogic.ConfigFile=config/config.xml -Dweblogic.Name=Test9 -Dweblogic.ListenAddress=localhost -Dweblogic.ListenPort=7002 -Djava.library.path=C:\bea\weblogic91\server\bin -Djava.security.policy=C:\bea\weblogic91\server\lib\weblogic.policy -Dweblogic.management.discover=false -Dweblogic.ProductionModeEnabled=false -Dweblogic.management.password=weblogic -Dweblogic.management.username=weblogic weblogic.Server
    <Aug 17, 2006 8:27:05 PM EDT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 1.5.0_04-b05 from Sun Microsystems Inc.>
    <Aug 17, 2006 8:27:06 PM EDT> <Info> <Management> <BEA-141107> <Version: WebLogic Server 9.1 Mon Dec 12 19:26:33 EST 2005 689178 >
    <Aug 17, 2006 8:27:08 PM EDT> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason:
    There are 1 nested errors:
    weblogic.management.ManagementException: [Management:141266]Parsing Failure in config.xml: The following failures occurred:
    -- Unresolved reference to Test9 by [Test9]/AppDeployments[__wstudio_autoconfig_deployment__]/Targets
         at weblogic.management.provider.internal.RuntimeAccessImpl.<init>(RuntimeAccessImpl.java:118)
         at weblogic.management.provider.internal.RuntimeAccessService.start(RuntimeAccessService.java:38)
         at weblogic.t3.srvr.ServerServicesManager.startService(ServerServicesManager.java:365)
         at weblogic.t3.srvr.ServerServicesManager.startInStandbyState(ServerServicesManager.java:116)
         at weblogic.t3.srvr.T3Srvr.initializeStandby(T3Srvr.java:630)
         at weblogic.t3.srvr.T3Srvr.startup(T3Srvr.java:402)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:361)
         at weblogic.Server.main(Server.java:67)
    Caused by: weblogic.descriptor.DescriptorValidateException: The following failures occurred:
    -- Unresolved reference to Test9 by [Test9]/AppDeployments[__wstudio_autoconfig_deployment__]/Targets
         at weblogic.descriptor.internal.ReferenceManager.resolveReferences(ReferenceManager.java:265)
         at weblogic.descriptor.internal.DescriptorImpl.validate(DescriptorImpl.java:285)
         at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:280)
         at weblogic.management.provider.internal.DescriptorManagerHelper.loadDescriptor(DescriptorManagerHelper.java:52)
         at weblogic.management.provider.internal.RuntimeAccessImpl$IOHelperImpl.parseXML(RuntimeAccessImpl.java:576)
         at weblogic.management.provider.internal.RuntimeAccessImpl.parseNewStyleConfig(RuntimeAccessImpl.java:220)
         at weblogic.management.provider.internal.RuntimeAccessImpl.<init>(RuntimeAccessImpl.java:106)
         ... 7 more
    >
    <Aug 17, 2006 8:27:08 PM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED>
    <Aug 17, 2006 8:27:08 PM EDT> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down>
    <Aug 17, 2006 8:27:08 PM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    Thanks
    Ram

  • BEA Workshop Studio User Guide

    <b>"BEA Workshop Studio User Guide"</b> provides an extensive documentation about the product features and support information.
    <u>Help > Help Contents - BEA Workshop Studio User Guide</u>
    Please refer to this guide to quickly obtain the answers related product usage and features support.
    You can also refer to the online help at http://edocs.bea.com/workshop/docs92/index.html
    NOTE: Make sure to refer the help under appropriate product heading.

    <b>"BEA Workshop Studio User Guide"</b> provides an extensive documentation about the product features and support information.
    <u>Help > Help Contents - BEA Workshop Studio User Guide</u>
    Please refer to this guide to quickly obtain the answers related product usage and features support.
    You can also refer to the online help at http://edocs.bea.com/workshop/docs92/index.html
    NOTE: Make sure to refer the help under appropriate product heading.

  • Sample portlets - BEA ALUI

    Hi ,
    At the time of BEA ALUI, their were some sample portlets available on http://dev2dev.bea.com/aluserinteraction ..which is not accessible now...could you please know if the samples are still available??
    Thanks!!

    they used to be at samplecode.oracle.com i will try to keep looking and let you know if i find them. i have them locally but probably do not have the documentation on installing them. you can view a slide deck on the functionality below.
    http://www.oracle.com/technetwork/middleware/webcenter/portal/overview/wci-10gr3-overview-134075.pdf

  • JSF in Studio Creator and BEA Workshop Studio

    Hi Guys,
    I found that JSF code created when we use Studio Creator is Rave
    while as if we use Bea Workshop Studio/Any Other Eclipse IDE for JSF is MyFaces ( whatever it may be).
    What are the differences between these two? which one is better ?
    I get confused why there are two different framework of JSF?
    And I dont think there is any other IDE who supports Rave other than Java Studio Creator?
    Thx.

    <?xml version="1.0" encoding="UTF-8"?>
    <jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:ui="http://www.sun.com/web/ui">
    <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
    <f:view>
    <ui:page binding="#{welcome.page1}" id="page1">
    <ui:html binding="#{welcome.html1}" id="html1">
    <ui:head binding="#{welcome.head1}" id="head1">
    <ui:link binding="#{welcome.link1}" id="link1" url="/resources/stylesheet.css"/>
    </ui:head>
    <ui:body binding="#{welcome.body1}" id="body1" style="-rave-layout: grid">
    <ui:form binding="#{welcome.form1}" id="form1">
    <ui:textField binding="#{welcome.textField1}" id="textField1" style="position: absolute; left: 48px; top: 24px" text="Pirmais logs"/>
    <ui:button binding="#{welcome.button1}" id="button1" style="position: absolute; left: 72px; top: 72px" text="Submit"/>
    <ui:calendar binding="#{welcome.calendar1}" id="calendar1" style="position: absolute; left: 48px; top: 144px"/>
    </ui:form>
    </ui:body>
    </ui:html>
    </ui:page>
    </f:view>
    </jsp:root>

  • 15 day bea workshop studio 3.0- error with pageflow demo

    downloaded the 15day trial end-to-end workshop studio, plugin for eclipse..
    installed the bea workshop studio 3.0
    gave eclipse 3.1-home and jdk1.5 home
    when starting studio 3, get the following error:
    "An error has occurred when creating this editor" ....
    I see that a pageflowdemo project is highlighted.
    how to get over this error ?
    I had installed "beehive" as a plugin earlier
    C:\eclipse\plugins\org.eclipse.pollinate.beehive_1.0.0.I20041109

    I had beehive working earlier with tomcat. I moved tomcat directory so it is not working anymore.
    i have java-home to jdk1.4 and the same in eclipse preferences..
    but
    while installing studio i gave jdk1.5 as the java-home.
    I'll to re-install eclipse and the studio plugin. and try again.

  • JSF with BEA Workshop Studio

    Hello:
    I am using BEA Workshop Studio 3.3.0 for developing my application using JSF 1.1. I would like to upgrade my application to JSF 1.2. Problem being BEA Workshop Studio 3.3.0 supports only RI JSF 1.1.
    I had read through the documentation of the latest release of Workshop Studio 10.0 and that too doesn't mention much about the JSF version being used. I would like to know if there is a way to upgrade to JSF 1.2 on BEA Workshop Studio 3.3.0.
    Thanx in adv...
    ~SirG

    Hello:
    I am using BEA Workshop Studio 3.3.0 for developing my application using JSF 1.1. I would like to upgrade my application to JSF 1.2. Problem being BEA Workshop Studio 3.3.0 supports only RI JSF 1.1.
    I had read through the documentation of the latest release of Workshop Studio 10.0 and that too doesn't mention much about the JSF version being used. I would like to know if there is a way to upgrade to JSF 1.2 on BEA Workshop Studio 3.3.0.
    Thanx in adv...
    ~SirG

  • Free BEA dev2dev webinar on BEA Workshop Studio 3.2.1

    <br>
    <b>Title: BEA Workshop Studio 3.2.1 </b>
    Date: Wednesday, November 15, 2006
    Time: 9:00 am Pacific // 12:00 noon Eastern (1 hour)
    Location: Your computer
    Register today at:
    http://w1.bea.com/cgi-bin1/DM/y/hxg50Hfwwp0WCn0C7dm0Ek
    About the speakers
    Our speakers for this event will be Pieter Humphrey, Product Marketing Manager and Greg Stachnick, Product Manager.

    <br>
    <b>Title: BEA Workshop Studio 3.2.1 </b>
    Date: Wednesday, November 15, 2006
    Time: 9:00 am Pacific // 12:00 noon Eastern (1 hour)
    Location: Your computer
    Register today at:
    http://w1.bea.com/cgi-bin1/DM/y/hxg50Hfwwp0WCn0C7dm0Ek
    About the speakers
    Our speakers for this event will be Pieter Humphrey, Product Marketing Manager and Greg Stachnick, Product Manager.

  • Silent install of BEA Workshop Studio 10.1?

    HELP!
    How do I script a silent install of BEA Workshop Studio 10.1? The instructions for BEA Workshop Studio 3.3 don't work. I've figured out that I need a silent.xml, but what options should I put in there? Is there any documentation?
    Thanks very much for any assistance!
    yours,
    Simon Rakov

    http://edocs/wlw/docs101/guide/ideuserguide/conSilentInstall.html
    The above link provides properties specific to Studio installation.
    NOTE: If you are a licensed customer (i.e. if you are using properties WLWIDE_ORDER_ID & WLWIDE_SERIAL_NO) then in addition you need the following workaround:
    After Silent installation, edit Studio10.1\workshop_10.1\workshopStudio\eclipse\plugins\com.bea.workshop.product.wstudio_1.0.1 - ins.properties and modify "trial=false" - Save
    - Now, when you launch the Studio the license activation takes place in the background (you need to restart the workshop)

  • Workaround: BEA Workshop studio installation with JRockit

    If JRockit is your primary JVM (i.e., JRockit is the only JVM installed OR JRockit appears before the Sun JVM in the PATH environment variable), the Workshop Studio installer will fail with the error message:
    "Can't launch executable. Could not load jvm.dll
    Try re-installing the Java VM or change the Java VM used by the application"
    WORKAROUND:
    To resolve this error, create a new folder <JRockit>/jre/bin/client and in this folder make a duplicate copy of the contents of the folder <JRockit>/jre/bin/jrockit. Then run the Workshop Studio installer again.

    I had beehive working earlier with tomcat. I moved tomcat directory so it is not working anymore.
    i have java-home to jdk1.4 and the same in eclipse preferences..
    but
    while installing studio i gave jdk1.5 as the java-home.
    I'll to re-install eclipse and the studio plugin. and try again.

  • BEA ALUI Publisher 6.4 Errors in Logs

    Hi everyone,
    I have been seeing this error come up in our logs a couple of times every minute.
    Error is below the line:
    INFO | jvm 1 | 2009/04/07 12:45:06 | 12:45:06,046 ERROR Initialization failed DLQHandler
    INFO | jvm 1 | 2009/04/07 12:45:06 | javax.jms.JMSException: Error creating the dlq connection: XAConnectionFactory not bound
    INFO | jvm 1 | 2009/04/07 12:45:06 | at org.jboss.ejb.plugins.jms.DLQHandler.createService(DLQHandler.java:171)
    INFO | jvm 1 | 2009/04/07 12:45:06 | at org.jboss.system.ServiceMBeanSupport.jbossInternalCreate(ServiceMBeanSupport.java:237)
    INFO | jvm 1 | 2009/04/07 12:45:06 | at org.jboss.system.ServiceMBeanSupport.create(ServiceMBeanSupport.java:164)
    INFO | jvm 1 | 2009/04/07 12:45:06 | at org.jboss.ejb.plugins.jms.JMSContainerInvoker.innerCreate(JMSContainerInvoker.java:563)
    INFO | jvm 1 | 2009/04/07 12:45:06 | at org.jboss.ejb.plugins.jms.JMSContainerInvoker.startService(JMSContainerInvoker.java:780)
    INFO | jvm 1 | 2009/04/07 12:45:06 | at org.jboss.ejb.plugins.jms.JMSContainerInvoker$ExceptionListenerImpl.run(JMSContainerInvoker.java:1275)
    INFO | jvm 1 | 2009/04/07 12:45:06 | at java.lang.Thread.run(Unknown Source)
    INFO | jvm 1 | 2009/04/07 12:45:06 | 12:45:06,047 WARN JMS provider failure detected:
    INFO | jvm 1 | 2009/04/07 12:45:06 | javax.jms.JMSException: Error creating the dlq connection: XAConnectionFactory not bound
    INFO | jvm 1 | 2009/04/07 12:45:06 | at org.jboss.ejb.plugins.jms.DLQHandler.createService(DLQHandler.java:171)
    INFO | jvm 1 | 2009/04/07 12:45:06 | at org.jboss.system.ServiceMBeanSupport.jbossInternalCreate(ServiceMBeanSupport.java:237)
    INFO | jvm 1 | 2009/04/07 12:45:06 | at org.jboss.system.ServiceMBeanSupport.create(ServiceMBeanSupport.java:164)
    INFO | jvm 1 | 2009/04/07 12:45:06 | at org.jboss.ejb.plugins.jms.JMSContainerInvoker.innerCreate(JMSContainerInvoker.java:563)
    INFO | jvm 1 | 2009/04/07 12:45:06 | at org.jboss.ejb.plugins.jms.JMSContainerInvoker.startService(JMSContainerInvoker.java:780)
    INFO | jvm 1 | 2009/04/07 12:45:06 | at org.jboss.ejb.plugins.jms.JMSContainerInvoker$ExceptionListenerImpl.run(JMSContainerInvoker.java:1275)
    INFO | jvm 1 | 2009/04/07 12:45:06 | at java.lang.Thread.run(Unknown Source)
    I dont seem to know where this error originates from. Just out of the blue it has appeared on my server logs which is growing by the minute everyday.
    If someone has any idea please let me know how I can resolve this issue.
    Thanks in advance.

    I resolved the issue (thanks to bea support). I had my portal imageservice pointing to one loc and publisher image service to another loc. So I had to set the "alternate image server" setting in content.properties of publisher. that fixed the pub explorer issue.

  • BEA WorkSpace Studio generates a ServiceControl having endless loop. Why?

    Hello,
    I've got a webservice WSDL file in my WorkSpace Studio and used the right-click 'Web Services --> Generate Service Control..." menu option to generate the control that will let me access the webservice later in my page flow controller. That has worked fine, I have my JSP trigger an action in the controller and use the Service Control that was generated to access the webservice. The problem is when I try to access the same Service Control directly from the JSP using DWR I get a StackOverflow error. Generating the Service Control from the WSDL results in a number of files being automatically generated to support the actual Control class that the PageFlow controller uses, and one of those classes is a ...BeanBeanInfo.java file. Within that BeanBeanInfo.java file is a method initCallbackEvents() that calls itself with no way to exit.
    I'm trying to figure out why it was generated to call itself endlessly like that. How can I correct the situtation?
    Thanks in advance for any help you can provide.
    Gregor
    [email protected]

    You can't have Account customized through customization file. This is simply not supported. Try searching forum. It has already been discussed here.

Maybe you are looking for

  • On Demand sub report not printing in IE and Other Browsers

    Hi All, We have developed Crystal report for our web application with version 13.0 and Visual Studio 2010. When we run our web app in IIS report display fine in All web browser and when we print report in ActiveX mode in IE 9+ for main report it prin

  • How to load data into Planning/Essbase from multiple data column

    Dear All, I have a interface file which contains multiple data column as follows. Year,Department,Account,Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec FY10,Department1,Account1,1,2,3,4,5,6,7,8,9,10,11,12 FY10,Department2,Account1,1,2,3,4,5,6,7,8,9

  • DMZ not working for EA6300

    Hello, my linksys router EA6300 seems not to be working for the DMZ function even though I set it to target 192.168.2.199 it is also set in reserved DHCP for that ipadd/mac device, the device in regard is a linksys WRT54G. And I think I got banned in

  • How to save/download pdf files from safari?

    I have some PDF files that I need to download from the internet/Safari. How do I do that? There is a button that I can click on my PC using Firefox but I can't find anything in Safari of my iMac. I would appreciate very much if someone can help me. T

  • Right clicking causing spinning beach ball

    I am having trouble with accessing contextual menus via right clicking in several applications. I use Pathfinder and every time I right click on a file/folder the program hangs and need to force quit. I searched their forums/support site and saw seve