Getting javascript error in portal admin

Dear all,
When i tried to add a content item in the CMS of Weblogic Portal 8.1, an "unterminated string constant" javascript error is displayed and i can't add the content. This happens only when the content item is of a type that contains one or more calendar type property.
Did anybody also encounter that and have some idea how to solve it?
Thank you!!
David

Hi Bharat
refer to this for the Log file
Physical path of log files in EP server
Portal Runtime Error - Where is the log file?
For javscript problem refer  to
Javascript error when loading Portal Content
Portal Content Permissions
Getting javascript error while logging in EP
Thanx
Pankaj

Similar Messages

  • Javascript error in Content Admin- Portal Content

    Hi Experts,
    We have just installed SAP Netweaver Portal 7.0. We get an error of javascript when we navigate to Content Administration->Portal Content and due to this Portal Content Folder is not displayed. While through Super Admin role Portal Content is displayed with javascript error. Please guide us, its Urgent.
    Rewards to satisfactory answers.
    Regards,
    Bharat Mistry.

    Hi Bharat
    refer to this for the Log file
    Physical path of log files in EP server
    Portal Runtime Error - Where is the log file?
    For javscript problem refer  to
    Javascript error when loading Portal Content
    Portal Content Permissions
    Getting javascript error while logging in EP
    Thanx
    Pankaj

  • Javascript error in Content Admin- Portal Content- iview Navigation window

    Hi friends,
    We are in the process of portal migration and as a part of this, we installed NW04 SPS 14 using Rapid Installer and then upgraded it to SPS 18. The components we upgraded are:
    Java component
    Portal Platform
    Knowledge Management and Collaboration
    Adobe Document Services
    BI UDI
    BI MMR
    After upgradation, when we logged in to portal, we were not able to see/browse Portal pages/Roles/Iviews/Worksets (PCD Contents) under Content Administration->Portal Content.
    Again, whichever window is there for navigation of PCD, we are not able to see the contents of PCD.For e.g. System Administration -> System Configuration.
    Does anyone know how to solve this issue?
    Regards,
    Nilz

    Hi nilz,
       See this thread:
    Getting javascript error while logging in EP
    Javascript error when loading Portal Content
    Regards, Suresh KB

  • Getting javascript error in jsf portlet

    Hi,
    I wrote a jsf page with command links calling an action in ManagedBean. Its works fine if run as jsf page. But when I associate the jsf page with a portlet and run the page, I am getting javascript error when clicked on the command links.
    Please help me to resolve this problem.
    The jsf page
    <%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
    <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
    <%@ taglib uri="http://www.bea.com/servers/portal/groupspace/tags/activemenus" prefix="activemenus" %>
    <%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <%@ taglib uri="http://bea.com/faces/adapter/tags-naming" prefix="netuix" %>
    <html>
    <head></head>
         <body>
    <f:view>
         <netuix:namingContainer id="facesContent">
              <h:form>
    <f:verbatim>
         <table border="0" width="100%">
              <tr>
                   <td>
                        <h:outputLabel value="Notifications" for="heading"/>
                   </td>
                   <td>
                        (<h:outputText value="#{notificationsBean.notificationsSize}" escape="true"/>)
                   </td>
                   <td>
                             <h:commandLink action="#{notificationsBean.showInWorkList}" immediate="true">
                                  <h:outputText value="Show in Worklist"/>
                             </h:commandLink>
                   </td>
                   <td>
                        <h:outputText value="hai"/>
                   </td>
              </tr>
         </table>
    </f:verbatim>     
              <div style="overflow: auto; width: 100%; height: 200px">
              <h:dataTable value="#{notificationsBean.userNotifs.notificationsList}" var="notification">
                   <h:column>
                        <f:facet name="header">
                             <h:commandLink action="#{notificationsBean.sort}">
                                  <f:param name="column" value="caseNB"/>
                                  <f:param name="sortDirection" value="#{notificationsBean.sortDirection}"/>
                                  <f:param name="pattern" value="####"/>
                                  <h:outputText value="Case ID"/>
                             </h:commandLink>
                        </f:facet>
                        <h:outputText value="#{notification.caseNB}"/>
                   </h:column>
                   <h:column>
                        <f:facet name="header">
                             <h:commandLink action="#{notificationsBean.sort}" immediate="true">
                                  <h:outputText value="From"/>
                                  <f:param name="column" value="senderNM"/>
                                  <f:param name="pattern" value=""/>
                                  <f:param name="sortDirection" value="#{notificationsBean.sortDirection}"/>
                             </h:commandLink>
                        </f:facet>
                        <h:outputText value="#{notification.senderNM}"/>
                   </h:column>
                   <h:column>
                        <f:facet name="header">
                             <h:commandLink action="#{notificationsBean.sort}">
                                  <f:param name="column" value="priorityCD"/>
                                  <f:param name="sortDirection" value="#{notificationsBean.sortDirection}"/>
                                  <f:param name="pattern" value=""/>
                                  <h:outputText value="Priority"/>
                             </h:commandLink>
                        </f:facet>
                        <h:outputText value="#{notification.priorityCD}"/>
                   </h:column>
                   <h:column>
                        <f:facet name="header">
                             <h:commandLink action="#{notificationsBean.sort}">
                                  <f:param name="column" value="subjectTX"/>
                                  <f:param name="sortDirection" value="#{notificationsBean.sortDirection}"/>
                                  <f:param name="pattern" value=""/>
                                  <h:outputText value="Subject"/>
                             </h:commandLink>
                        </f:facet>
                        <h:outputText value="#{notification.subjectTX}"/>
                   </h:column>
                   <h:column>
                        <f:facet name="header">
                             <h:commandLink action="#{notificationsBean.sort}">
                                  <f:param name="column" value="createDT"/>
                                  <f:param name="sortDirection" value="#{notificationsBean.sortDirection}"/>
                                  <f:param name="pattern" value="dd-MM-yyyy"/>
                                  <h:outputText value="Created(ET)"/>
                             </h:commandLink>
                        </f:facet>
                        <h:outputText value="#{notification.createDT}"/>
                   </h:column>
              </h:dataTable>
              </div>
                   </h:form>
    </netuix:namingContainer>
    </f:view>
    </body>
    </html>
    The Managed Bean:
    public class NotificationsManagedBean {
         private UserNotifications userNotifs=new UserNotifications();
         private int notificationsSize;
         private String column;
         private String sortDirection = "asc";
         private String pattern;
         public UserNotifications getUserNotifs() {
              getUserNotificationsList();
              return userNotifs;
         public void setUserNotifs(UserNotifications userNotifs) {
              this.userNotifs = userNotifs;
         public int getNotificationsSize() {
              getUserNotificationsList();
              return notificationsSize;
         public void setNotificationsSize(int notificationsSize) {
              this.notificationsSize = notificationsSize;
         public String getColumn() {
              return column;
         public void setColumn(String column) {
              this.column = column;
         public String getSortDirection() {
              return sortDirection;
         public void setSortDirection(String sortDirection) {
              if(sortDirection != null && sortDirection.trim().length()!=0)
                   this.sortDirection = sortDirection;
         public String getPattern() {
              return pattern;
         public void setPattern(String pattern) {
              this.pattern = pattern;
         public String showInWorkList() {
              System.err.println("test");
              return "success1";
              //TODO Auto-generated method stub
         public String sort(){
              sort(column, sortDirection);
              return "success";
         @SuppressWarnings("unchecked")
         private void getUserNotificationsList()
              ArrayList<Notification> notificationsList = new ArrayList<Notification>();
              for(int i=0;i<20;i++)
                   Notification notif = new Notification();
                   notif.setCaseNB("122"+i);
                   notif.setCreateDT("12-12-2002");
                   notif.setSenderNM("testing1"+(i%3));
                   System.out.println(notif.getSenderNM());
                   notif.setSubjectTX("testing2"+(i%4));
                   System.out.println(notif.getSubjectTX());
                   notif.setPriorityCD("High");
                   notificationsList.add(notif);
    userNotifs.setNotificationsList(notificationsList);
              if(userNotifs.getNotificationsList()!=null)
                   this.setNotificationsSize(userNotifs.getNotificationsList().size());
    * <p>Return the <code>FacesContext</code> instance for the
    * current request.
    protected FacesContext context() {
    return (FacesContext.getCurrentInstance());
    protected void sort(final String column, final String direction) {
              java.util.Comparator comparator = new SortComparator(userNotifs.getNotificationsList(),column,direction,pattern);
              java.util.Collections.sort(userNotifs.getNotificationsList(), comparator);     
              if(direction.equalsIgnoreCase("asc"))
                   setSortDirection("desc");
              else
                   setSortDirection("asc");
    }

    Too less relevant information and too much irrelevant code.
    First of all, which JS error exactly are you getting? You as developer should know better that you shouldn't ignore errors. They contain helpful information about the cause of the problem and thus also how to solve it. Where exactly does the error come from? (view the generated HTML source). Which JSF implementation and version exactly are you using? Which webbrowser exactly are you using? Does it work in/with other/newer versions?

  • Netui javascript errors in portal

    The following code works in a webapp. It generates javascript errors in portal
    <%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <%@taglib uri="http://beehive.apache.org/netui/tags-html-1.0" prefix="netui"%>
    <%@taglib uri="http://beehive.apache.org/netui/tags-databinding-1.0" prefix="netui-data"%>
    <%@taglib uri="http://beehive.apache.org/netui/tags-template-1.0" prefix="netui-template"%>
    <%@taglib tagdir="/WEB-INF/tags" prefix="dst" %>
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <netui:html>
    <head>
    <netui:base/>
    <script language="JavaScript" type="text/JavaScript">
    function dstcheck(tagname)
    alert(document[lookupIdByTagId("sampleForm", this)][lookupIdByTagId("textID", this)].value);
    </script>
    </head>
    <netui:body>
    <netui:form action="begin" tagId="sampleForm">
              <netui:textBox dataSource="pageFlow.textValue" tagId="textID" onBlur="dstcheck('textID')"></netui:textBox>
              <netui:anchor action="begin" formSubmit="true">first link</netui:anchor>
    <dst:sample/>
         </netui:form>
    </netui:body>
    </netui:html>

    Can you attach the javascript errors you were getting?
    Thanks
    Subbu
    Srinivas Surapaneni wrote:
    The following code works in a webapp. It generates javascript errors in portal
    <%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <%@taglib uri="http://beehive.apache.org/netui/tags-html-1.0" prefix="netui"%>
    <%@taglib uri="http://beehive.apache.org/netui/tags-databinding-1.0" prefix="netui-data"%>
    <%@taglib uri="http://beehive.apache.org/netui/tags-template-1.0" prefix="netui-template"%>
    <%@taglib tagdir="/WEB-INF/tags" prefix="dst" %>
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <netui:html>
    <head>
    <netui:base/>
    <script language="JavaScript" type="text/JavaScript">
    function dstcheck(tagname)
    alert(document[lookupIdByTagId("sampleForm", this)][lookupIdByTagId("textID", this)].value);
    </script>
    </head>
    <netui:body>
    <netui:form action="begin" tagId="sampleForm">
              <netui:textBox dataSource="pageFlow.textValue" tagId="textID" onBlur="dstcheck('textID')"></netui:textBox>
              <netui:anchor action="begin" formSubmit="true">first link</netui:anchor>
    <dst:sample/>
         </netui:form>
    </netui:body>
    </netui:html>

  • Aperture help not working - getting JavaScript error message

    My Aperture 3 has been having a lot of strange issues lately, most, but not all of which have been cleared up by holding down command + option while starting up and going through all three of the choices there.
    One problem that remains is the inability to open the Help files. I keep getting the following message:
    “The Help Library requires JavaScript.
    If JavaScript is not enabled, you will not
    be able to view all the content.”
    Help works in all other applications, like Pages and Final Cut Pro. I don’t get JavaScript error messages in any other applications.
    I’ve already done an erase and restore from a Time Machine backup, and an archive and install. I reinstalled Aperture, although not by using the Terminal command suggested in the kbase article # HT3805.
    If I go the Terminal command route, will I lose all my projects, albums, and editing? What about Mobile Me galleries?
    I have a guest user on the computer, and when I log on to that user and open Aperture, the Help Library works fine. So, I know the problem is in my user account somewhere, but I don’t know how to address it. Any ideas?

    Welcome to the forums.
    The fact that you have access to java in another user suggests that it is a local setting or preference.
    In the applications folder/utilities there is an application Java Preferences, try resetting this and seeing if it works.
    If not, try deleting the java preferences file in your users folder
    systemHD/Users/user/Library/Preferences/com.apple.java.JavaPreferences.plist
    relaunch the app Java Preferences which creates a new preferences file for you, then try Aperture again.
    Let us know how this goes.
    Tony

  • Getting Javascript error on Production Server

    Hi,
    I am facing unusual problem as my one jsp file containing javascript is working fine on testing server.I put same code on production server ,here I am getting javascript alert for not saving my data.Putting some part of my JSP file for ur reference--
    Javascript--
    function sysValidate(item){
                        var itemValue=item;
    // alert(itemValue);
    /* if((itemValue == '')||(itemValue == null))
    return false;
                        var today = new Date();
                        var sysDay = today.getDate();
                        var sysMonth = today.getMonth()+1;
                        var sysYear = today.getFullYear();
                        var fieldArray = itemValue.split("/");
                        var itemDay = parseInt(fieldArray[0]);
                        var itemMonth = parseInt(fieldArray[1]);
                        var itemYear = parseInt(fieldArray[2]);
    if(itemYear > sysYear)
    return false;
                        else{
                             if(itemYear < sysYear)
                                  return true;
                             else{
                                  if(itemMonth > sysMonth)
                                       return false;
                                  else{
                                       if(itemMonth < sysMonth)
                                            return true;
                                       else{
    if(itemDay >=sysDay)
    return false;
                                            else
    return true;
    if(sysValidate(exdate))
    alert("Save denied as delivery date prior to sysdate");
    bool=false;
    return bool;
    As when I am trying to save record in which my PO delivery date is greater than my Sysdate.I am getting javascript alert- "Save denied as delivery date prior to sysdate".
    Plz,help.
    Vaish...

    956066 wrote:
    1)I installed webcenter Management and Production instance and both working fineI hope you meant WebCenter Sites.
    2)On community Management Instance successfully showing the UI but after clicked on any of functions getting javascript error.Ensure that Community Patch1 is applied. Can be checked as status page (should show smth like "Oracle WebCenter Sites 11gR1 | Community 223 revision 3560" )
    3)On Community Production instance not able to validate the CAS.How "not able"? And what CAS: Sites Management CAS, Sites Production CAS or Visitor CAS?? Provide please details.
    Did you mean status page on Production Community instance shows errors related to CAS? What does status page on Management Community instance shows in this case? The same?
    Are there any errors in logs?
    Did you register Community instances in the SystemSatellite table?
    Edited by: 964768 on May 16, 2013 8:30 AM

  • SEARCH hyperlink getting javascript errors

    The SEARCH hyperlink on the www.oracle.com/technology/index.html page doesn't work. It gets javascript errors and does nothing. I am using IE version 6.0.2800

    We are aware of the problem and working to resolve it. Hitting "Enter" after typing in your keyword will have the correct result however.
    Cheers, OTN

  • Javascript error in Portal

    Hello All,
    I am facing two issues. One is sometimes when I login to Portal with admin id, it prevents me from displaying contents under the content administration. The reason being a Javascript error at the left bottom of the browser page access denied. However, I am logging in with administrator id.
    However, this error doesnt comes always. It comes randomly.
    I am getting this error even while executing a portal application that links directly to iviews by
    *<a href= ""> </a> tag*
    It again sayins javascript error: access denied.
    Any idea why this error is coming? How Should i resolve this error?
    Kindly advise.
    Thanks,
    Ameya Pimpalgaonkar
    Edited by: Ameya Pimpalgaonkar on Nov 12, 2009 7:01 AM

    Amey,
    Please install fire bug along with Mozilla and try to login to the application. This will help you to find from where the error is coming exactly.
    Also, clear your browser cache and try to login and check.
    Ram

  • Urgent: Javascript Error in Portal Navigation

    Hi,
    We are using EP 6.0 SP 13.
    We are facing an issue of Java script error in the portal.
    The areas in which the portal is affected are as follows:
    1. When we open the Login page of the portal, the Font Type, Size and
    formatting and the style of "Log in" button is not normal.
    2. After we login, Any component that uses javascript is not working
    3. Whenever we execute any BW report we are getting alert box with
    message:
    "Session Manager will not work!"
    4. When we try to log out, again we get scripting error.
    5. We are also not able to navigate in User Mangement and Content Management.
    Please help as soon as possible.
    Regards,
    Prasad

    Hello Prasad,
    As we are talking about JavaScript errors, it is interesting to know which browser and OS you are using?
    INTERNET EXPLORER 5.5  WINDOWS SERVER 2000/IA32 32BIT 
    Not Released
      31.03.2004     
    INTERNET EXPLORER 6.0  WIN XP 2002 PROF. 32-BIT  Released  31.03.2004     
    INTERNET EXPLORER 6.0  WINDOWS SERVER 2000/IA32 32BIT  Released  31.03.2004     
    INTERNET EXPLORER 6.0  WINDOWS SERVER 2003/IA32 32BIT  Released  27.06.2005     
    INTERNET EXPLORER 7.0  WIN XP 2002 HOME 32-BIT  Released  11.12.2006     
    INTERNET EXPLORER 7.0  WIN XP 2002 PROF. 32-BIT  Released  11.12.2006 
    See the for supported browsers:<a href="https://websmp205.sap-ag.de/~form/handler?_APP=00200682500000001303&_EVENT=RELEASE&00200682500000002804=01200314690900000192&00200682500000003818=WBRPFM&00200682500000003853=Enterprise%20Portal">NW2004_Browsers</a>
    Greetings,
    Praveen Gudapati
    p.s Points are always welcome for helpful answers

  • Errors starting Portal Admin Server after configuring RDBMS Security Store.

    Hi,
    I'm using WLST to build and configure the portal domain. I've already had our DBA run all the necessary scripts on the Database.
    We are using WLP 10.3 on RHEL 4 and Oracle 10G RAC. I read on some thread that RDBMS is only compatble with verion 10.3.2 but why is the feature in 10.3?
    The error below seems to point to the URL; does this mean that the RDBMS config does not support RAC databases?
    Hope someone can shed light on this as it's pretty urgent.
    Many thanks
    A
    This is the configuration for the created security store:-
    -rw- CompatibilityObjectName null
    -rw- ConnectionProperties
    user=rdbms_user,portNumber=1521,serviceName=portal_db_service
    -rw- ConnectionURL
    jdbc:oracle:thin:@(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST =
    portal_host)(PORT = 1521))(CONNECT_DATA = (SERVER = DEDICATED)
    (SERVICE_NAME = portal_db_service)))
    -rw- DriverName
    oracle.jdbc.xa.client.OracleXADataSource
    -rw- JMSExceptionReconnectAttempts 0
    -rw- JMSTopic null
    -rw- JMSTopicConnectionFactory null
    -rw- JNDIPasswordEncrypted null
    -rw- JNDIUsername null
    -rw- Name RDBMSSecurityStore
    -rw- NotificationProperties null
    -rw- PasswordEncrypted ********
    -rw- Username rdbms_user
    This is the error I'm getting when I attempt to start the Admin Server :-
    ####<10-May-2010 18:19:28 o'clock BST> <Info> <Security> <server>
    <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue:
    'weblogic.kernel.Default (sel
    f-tuning)'> <<WLS Kernel>> <1273511968053> <BEA-000000> <Using
    dictionary class "kodo.jdbc.sql.KodoOracleDictionary".>
    ####<10-May-2010 18:19:28 o'clock BST> <Info> <Security> <server>
    <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue:
    'weblogic.kernel.Default (sel
    f-tuning)'> <<WLS Kernel>> <1273511968246> <BEA-000000> <OpenJPA
    is now connecting to the database in order to figure out what JDBC
    driver you are using
    , as OpenJPA must alter its behavior for this database depending on the
    driver vendor. To avoid this connection, set the DriverVendor value in
    your openjpa.j
    dbc.DBDictionary configuration property to one of the following values:
    oracle, oracle92 (for the 9.2 driver), datadirect, datadirect61 (for
    driver versions <= 3.1), other
    For example:
    openjpa.jdbc.DBDictionary: oracle(DriverVendor=oracle92)>
    ####<10-May-2010 18:19:28 o'clock BST> <Info> <Security> <server>
    <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue:
    'weblogic.kernel.Default (sel
    f-tuning)'> <<WLS Kernel>> <1273511968257> <BEA-090511> <The
    following exception has occurred:
    com.bea.common.engine.ServiceInitializationException:
    <openjpa-1.1.0-r422266:657916 fatal internal error>
    org.apache.openjpa.util.InternalException: There was
    an error when invoking the static getInstance method on the named
    factory class "kodo.jdbc.kernel.KodoJDBCBrokerFactory". See the nested
    exception for detai
    ls.
    at
    com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(Serv
    iceEngineImpl.java:365)
    at
    com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(Serv
    iceEngineImpl.java:315)
    at
    com.bea.common.engine.internal.ServiceEngineImpl.lookupService(ServiceEn
    gineImpl.java:257)
    at
    com.bea.common.engine.internal.ServicesImpl.getService(ServicesImpl.java
    :72)
    at
    weblogic.security.service.internal.WLSIdentityServiceImpl.initialize(Unk
    nown Source)
    at
    weblogic.security.service.CSSWLSDelegateImpl.initializeServiceEngine(Unk
    nown Source)
    at
    weblogic.security.service.CSSWLSDelegateImpl.initialize(Unknown Source)
    at
    weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.Initi
    alizeServiceEngine(Unknown Source)
    at
    weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initi
    alizeRealm(Unknown Source)
    at
    weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadR
    ealm(Unknown Source)
    at
    weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initi
    alizeRealms(Unknown Source)
    at
    weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initi
    alizeRealms(Unknown Source)
    at
    weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initi
    alize(Unknown Source)
    at
    weblogic.security.service.SecurityServiceManager.initialize(Unknown
    Source)
    at
    weblogic.security.SecurityService.start(SecurityService.java:141)
    at
    weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    <openjpa-1.1.0-r422266:657916 fatal internal error>
    org.apache.openjpa.util.InternalException: There was an error when
    invoking the static getInstance method
    on the named factory class "kodo.jdbc.kernel.KodoJDBCBrokerFactory".
    See the nested exception for details.
    at
    org.apache.openjpa.kernel.Bootstrap.getBrokerFactory(Bootstrap.java:95)
    at
    com.bea.common.security.storeservice.util.StoreServiceDelegate$StoreSeri
    vceHelper.getPersistenceManagerFactory(StoreServiceDelegate.java:347)
    at
    com.bea.common.security.storeservice.util.StoreServiceDelegate.initJDO(S
    toreServiceDelegate.java:145)
    at
    com.bea.common.security.storeservice.util.StoreServiceDelegate.<init>(St
    oreServiceDelegate.java:98)
    at
    com.bea.common.security.internal.service.StoreServiceImpl.init(StoreServ
    iceImpl.java:76)
    at
    com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(Serv
    iceEngineImpl.java:363)
    at
    com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(Serv
    iceEngineImpl.java:315)
    at
    com.bea.common.engine.internal.ServiceEngineImpl.lookupService(ServiceEn
    gineImpl.java:257)
    at
    com.bea.common.engine.internal.ServicesImpl.getService(ServicesImpl.java
    :72)
    at
    weblogic.security.service.internal.WLSIdentityServiceImpl.initialize(Unk
    nown Source)
    at
    weblogic.security.service.CSSWLSDelegateImpl.initializeServiceEngine(Unk
    nown Source)
    at
    weblogic.security.service.CSSWLSDelegateImpl.initialize(Unknown Source)
    at
    weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.Initi
    alizeServiceEngine(Unknown Source)
    at
    weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initi
    alizeRealm(Unknown Source)
    at
    weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadR
    ealm(Unknown Source)
    at
    weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initi
    alizeRealms(Unknown Source)
    at
    weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initi
    alize(Unknown Source)
    at
    weblogic.security.service.SecurityServiceManager.initialize(Unknown
    Source)
    at
    weblogic.security.SecurityService.start(SecurityService.java:141)
    at
    weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    java.lang.RuntimeException: There were errors initializing your
    configuration: <openjpa-1.1.0-r422266:657916 fatal store error>
    org.apache.openjpa.util.StoreE
    xception: Invalid Oracle URL specified: OracleDataSource.makeURL
    at
    org.apache.openjpa.jdbc.schema.DataSourceFactory.installDBDictionary(Dat
    aSourceFactory.java:235)
    at
    org.apache.openjpa.jdbc.conf.JDBCConfigurationImpl.getConnectionFactory(
    JDBCConfigurationImpl.java:684)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav
    a:39)
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
    Impl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at
    org.apache.openjpa.lib.conf.ConfigurationImpl.instantiateAll(Configurati
    onImpl.java:288)
    at
    org.apache.openjpa.conf.OpenJPAConfigurationImpl.instantiateAll(OpenJPAC
    onfigurationImpl.java:1409)
    at
    org.apache.openjpa.kernel.AbstractBrokerFactory.makeReadOnly(AbstractBro
    kerFactory.java:646)
    at
    org.apache.openjpa.kernel.AbstractBrokerFactory.pool(AbstractBrokerFacto
    ry.java:131)
    at
    kodo.jdbc.kernel.KodoJDBCBrokerFactory.getInstance(KodoJDBCBrokerFactory
    .java:43)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav
    a:39)
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
    Impl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at
    org.apache.openjpa.kernel.Bootstrap.invokeFactory(Bootstrap.java:124)
    at
    org.apache.openjpa.kernel.Bootstrap.getBrokerFactory(Bootstrap.java:90)
    at
    com.bea.common.security.storeservice.util.StoreServiceDelegate$StoreSeri
    vceHelper.getPersistenceManagerFactory(StoreServiceDelegate.java:347)
    at
    com.bea.common.security.storeservice.util.StoreServiceDelegate.initJDO(S
    toreServiceDelegate.java:145)
    at
    com.bea.common.security.storeservice.util.StoreServiceDelegate.<init>(St
    oreServiceDelegate.java:98)
    at
    com.bea.common.security.internal.service.StoreServiceImpl.init(StoreServ
    iceImpl.java:76)
    at
    com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(Serv
    iceEngineImpl.java:363)
    at
    com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(Serv
    iceEngineImpl.java:315)
    at
    com.bea.common.engine.internal.ServiceEngineImpl.lookupService(ServiceEn
    gineImpl.java:257)
    at
    com.bea.common.engine.internal.ServicesImpl.getService(ServicesImpl.java
    :72)
    at
    weblogic.security.service.internal.WLSIdentityServiceImpl.initialize(Unk
    nown Source)
    at
    weblogic.security.service.CSSWLSDelegateImpl.initializeServiceEngine(Unk
    nown Source)
    at
    weblogic.security.service.CSSWLSDelegateImpl.initialize(Unknown Source)
    at
    weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.Initi
    alizeServiceEngine(Unknown Source)
    at
    weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initi
    alizeRealm(Unknown Source)
    at
    weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadR
    ealm(Unknown Source)
    at
    weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initi
    alizeRealms(Unknown Source)
    at
    weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initi
    alize(Unknown Source)
    at
    weblogic.security.service.SecurityServiceManager.initialize(Unknown
    Source)
    at
    weblogic.security.SecurityService.start(SecurityService.java:141)
    at
    weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.sql.SQLException: Invalid Oracle URL specified:
    OracleDataSource.makeURL
    at
    oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:
    70)
    at
    oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:112)
    at
    oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:17
    3)
    at
    oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:22
    9)
    at
    oracle.jdbc.pool.OracleDataSource.makeURL(OracleDataSource.java:1234)
    at
    oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:18
    4)
    at
    org.apache.openjpa.lib.jdbc.DelegatingDataSource.getConnection(Delegatin
    gDataSource.java:113)
    at
    org.apache.openjpa.lib.jdbc.DecoratingDataSource.getConnection(Decoratin
    gDataSource.java:93)
    at
    org.apache.openjpa.jdbc.schema.DataSourceFactory.installDBDictionary(Dat
    aSourceFactory.java:227)
    ... 37 more
    <openjpa-1.1.0-r422266:657916 fatal store error>
    org.apache.openjpa.util.StoreException: Invalid Oracle URL specified:
    OracleDataSource.makeURL
    at
    org.apache.openjpa.jdbc.schema.DataSourceFactory.installDBDictionary(Dat
    aSourceFactory.java:235)
    at
    org.apache.openjpa.jdbc.conf.JDBCConfigurationImpl.getConnectionFactory(
    JDBCConfigurationImpl.java:684)
    at
    org.apache.openjpa.jdbc.conf.JDBCConfigurationImpl.getDataSource(JDBCCon
    figurationImpl.java:782)
    at
    org.apache.openjpa.jdbc.conf.JDBCConfigurationImpl.getDataSource2(JDBCCo
    nfigurationImpl.java:789)
    at
    org.apache.openjpa.jdbc.sql.OracleDictionary.ensureDriverVendor(OracleDi
    ctionary.java:253)
    at
    kodo.jdbc.sql.OracleAdvancedSQL.setDriverVendorDefaults(OracleAdvancedSQ
    L.java:50)
    at
    kodo.jdbc.sql.OracleAdvancedSQL.getBatchLimit(OracleAdvancedSQL.java:28)
    at
    kodo.jdbc.kernel.AutoOrderUpdateManager.setConfiguration(AutoOrderUpdate
    Manager.java:56)
    at
    org.apache.openjpa.lib.conf.Configurations.configureInstance(Configurati
    ons.java:473)
    at
    org.apache.openjpa.lib.conf.Configurations.configureInstance(Configurati
    ons.java:430)
    at
    org.apache.openjpa.lib.conf.PluginValue.instantiate(PluginValue.java:103
    at
    org.apache.openjpa.lib.conf.ObjectValue.instantiate(ObjectValue.java:83)
    at
    org.apache.openjpa.jdbc.conf.JDBCConfigurationImpl.getUpdateManagerInsta
    nce(JDBCConfigurationImpl.java:577)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav
    a:39)
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
    Impl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at
    org.apache.openjpa.lib.conf.ConfigurationImpl.instantiateAll(Configurati
    onImpl.java:288)
    at
    org.apache.openjpa.conf.OpenJPAConfigurationImpl.instantiateAll(OpenJPAC
    onfigurationImpl.java:1409)
    at
    org.apache.openjpa.kernel.AbstractBrokerFactory.makeReadOnly(AbstractBro
    kerFactory.java:646)
    at
    org.apache.openjpa.kernel.AbstractBrokerFactory.pool(AbstractBrokerFacto
    ry.java:131)
    at
    kodo.jdbc.kernel.KodoJDBCBrokerFactory.getInstance(KodoJDBCBrokerFactory
    .java:43)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav
    a:39)
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
    Impl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at
    org.apache.openjpa.kernel.Bootstrap.invokeFactory(Bootstrap.java:124)
    at
    org.apache.openjpa.kernel.Bootstrap.getBrokerFactory(Bootstrap.java:90)
    at
    com.bea.common.security.storeservice.util.StoreServiceDelegate$StoreSeri
    vceHelper.getPersistenceManagerFactory(StoreServiceDelegate.java:347)
    at
    com.bea.common.security.storeservice.util.StoreServiceDelegate.initJDO(S
    toreServiceDelegate.java:145)
    at
    com.bea.common.security.storeservice.util.StoreServiceDelegate.<init>(St
    oreServiceDelegate.java:98)
    at
    com.bea.common.security.internal.service.StoreServiceImpl.init(StoreServ
    iceImpl.java:76)
    at
    com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(Serv
    iceEngineImpl.java:363)
    at
    com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(Serv
    iceEngineImpl.java:315)

    Thanks, Ravi - already did all that. I have managed to stand the whole cluster up but two niggly things - one more so!
    First, when I start any of the managed servers for the forst time, I get the error below; it's as if the managed server can't download the ldap config from the AdminServer - subsequent restarts work fine though.
    tuning)'> <<WLS Kernel>> <> <> <1273851208837> <BEA-000436> <Allocating 3 reader threads.>
    ####<14-May-2010 16:33:28 o'clock BST> <Info> <Socket> <host_2> <server_2> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-
    tuning)'> <<WLS Kernel>> <> <> <1273851208839> <BEA-000446> <Native IO Enabled.>
    ####<14-May-2010 16:33:29 o'clock BST> <Info> <IIOP> <host_2> <server_2> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1273851209488> <BEA-002014> <IIOP subsystem enabled.>
    ####<14-May-2010 16:34:28 o'clock BST> <Critical> <WebLogicServer> <host_2> <server_2> <Main Thread> <<WLS Kernel>> <> <> <1273851268370> <BEA-000
    386> <Server subsystem failed. Reason: weblogic.ldap.EmbeddedLDAPException: Empty initial replica
    weblogic.ldap.EmbeddedLDAPException: Empty initial replica
    at weblogic.ldap.EmbeddedLDAP.getInitialReplicaFromAdminServer(EmbeddedLDAP.java:1301)
    at weblogic.ldap.EmbeddedLDAP.start(EmbeddedLDAP.java:221)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<14-May-2010 16:34:28 o'clock BST> <Notice> <WebLogicServer> <host_2> <server_2> <Main Thread> <<WLS Kernel>> <> <> <1273851268601> <BEA-00036
    5> <Server state changed to FAILED>
    Secondly, both managed server are starting in ADMIN mode because some of the libraries aren't getting deployed. Think this is due to clashes in the Implementation-Version. I get the errors below (loads of the libraries - approx a third but I just pasted this for brevity) although after starting them with nodemanager and they go into ADMIN mode, I can always click on resume which then starts them up. Any idea why this is the case?
    Many, many, thanks!
    A
    plementation-Version: 1.0.2.2 (WAR).>
    ####<14-May-2010 16:59:21 o'clock BST> <Error> <Deployer> <host_2> <server_2> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (se
    lf-tuning)'> <<WLS Kernel>> <> <> <1273852761063> <BEA-149205> <Failed to initialize the application 'content-management-app-lib [LibSpecVersion=10.3.2,LibImp
    lVersion=10.3.2]' due to error weblogic.application.library.LibraryDeploymentException: [J2EE:160145]Failed to deploy library Extension-Name: content-manageme
    nt-app-lib, Specification-Version: 10.3.2, Implementation-Version: 10.3.2.1, because of conflicting library Manifest values, and library information registere
    d with the server: [Implementation-Version: 10.3.2.1 vs. 10.3.2]. Check the library"s MANIFEST.MF file, and correct version info there to match server setting
    s. Or undeploy the misconfigured library..
    weblogic.application.library.LibraryDeploymentException: [J2EE:160145]Failed to deploy library Extension-Name: content-management-app-lib, Specification-Versi
    on: 10.3.2, Implementation-Version: 10.3.2.1, because of conflicting library Manifest values, and library information registered with the server: [Implementat
    ion-Version: 10.3.2.1 vs. 10.3.2]. Check the library"s MANIFEST.MF file, and correct version info there to match server settings. Or undeploy the misconfigure
    d library.
    at weblogic.application.internal.library.LibraryDeploymentFactory.getLibData(LibraryDeploymentFactory.java:106)
    at weblogic.application.internal.library.LibraryDeploymentFactory.createDeployment(LibraryDeploymentFactory.java:46)
    at weblogic.application.internal.DeploymentManagerImpl.createDeployment(DeploymentManagerImpl.java:84)
    at weblogic.deploy.internal.targetserver.BasicDeployment.createDeployment(BasicDeployment.java:149)
    at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:114)
    at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
    at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:187)
    at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:233)
    at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:173)
    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:89)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<14-May-2010 16:59:21 o'clock BST> <Info> <J2EE> <host_2> <server_2> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tu
    ning)'> <<WLS Kernel>> <> <> <1273852761069> <BEA-160151> <Registered library Extension-Name: content-management-app-lib, Specification-Version: 10.3.2, Imple
    mentation-Version: 10.3.2.1 (EAR).>
    ####<14-May-2010 16:59:21 o'clock BST> <Error> <Deployer> <host_2> <server_2> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (se
    lf-tuning)'> <<WLS Kernel>> <> <> <1273852761074> <BEA-149205> <Failed to initialize the application 'content-management-cmis-base-web-lib [LibSpecVersion=10.
    3.2,LibImplVersion=10.3.2]' due to error weblogic.application.library.LibraryDeploymentException: [J2EE:160145]Failed to deploy library Extension-Name: conten
    t-management-cmis-base-web-lib, Specification-Version: 10.3.2, Implementation-Version: 10.3.2.1, because of conflicting library Manifest values, and library i
    nformation registered with the server: [Implementation-Version: 10.3.2.1 vs. 10.3.2]. Check the library"s MANIFEST.MF file, and correct version info there to
    match server settings. Or undeploy the misconfigured library..
    weblogic.application.library.LibraryDeploymentException: [J2EE:160145]Failed to deploy library Extension-Name: content-management-cmis-base-web-lib, Specifica
    tion-Version: 10.3.2, Implementation-Version: 10.3.2.1, because of conflicting library Manifest values, and library information registered with the server: [I
    mplementation-Version: 10.3.2.1 vs. 10.3.2]. Check the library"s MANIFEST.MF file, and correct version info there to match server settings. Or undeploy the mi
    sconfigured library.
    at weblogic.application.internal.library.LibraryDeploymentFactory.getLibData(LibraryDeploymentFactory.java:106)
    at weblogic.application.internal.library.LibraryDeploymentFactory.createDeployment(LibraryDeploymentFactory.java:46)
    at weblogic.application.internal.DeploymentManagerImpl.createDeployment(DeploymentManagerImpl.java:84)
    at weblogic.deploy.internal.targetserver.BasicDeployment.createDeployment(BasicDeployment.java:149)
    at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:114)
    at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
    at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:187)
    at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:233)
    at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:173)
    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:89)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

  • Getting javascript error while selecting the Recipients in OBIEE delivers.

    Hi All,
    I am working on OBIEE from quite a long time, but recently I came across a error while selecting the Recipients in Recipients list of OBIEE delivers.
    Making it more comprehensive, when I try to create an ibot , after entering all necessary information when I select Recipients in Recipients list and click on ok. I get a JavaScript error "null" is null or an object. The surprising thing is when i select cancel it works as ok.
    Any help will be highly appreciated
    Thanks,
    Jyoti
    Message was edited by:
    user616430

    I think you dont have a field named /BIC/XXXXXX in the table from which you are trying to fetch the data. Chech the spelling of the field name and table name.

  • I am getting JavaScript Errors when I attempt to use the Multiscreen Preview function in DW CS 5.

    When I attepmpt to use the Multiscreen Preview button in DW CS 5 I get the following error:
    "While executing onShow in MultiscreenPreview.htm, the following JavaScript error(s) occured:
    In file "Multiscreen Preview":
    onShow is not defined"
    This leads to either an unusable multiscreen preview box or another series of similar JavaScript errors.
    Is there a solution to this problem and if so what is it?
    Thank you for your time.

    Follow this KB article:
    http://kb2.adobe.com/cps/405/kb405604.html
    Start with 12 & 4 and then go through the rest if needed.

  • Getting permission error in portal.

    Hi all,
    In our company we have internal portal for all employees from different location ie.
    http://<host><fully qualified domain name>:<port>/irj/portal
    Now when i log in to this portal ,and i am given access to one of the folder in KM, and so i can view the list of document in this folder but when click on Document nothing is displayed and I get an error
    <b>" Permission denied: uri=/documents/Knowledge_Repository/Repositories/Order To Cash/Recruitment, permission=node_list_children, user=27****"</b>
    Is this the problem related with the permission ,I have read right with me.
    Please suggest me cause of this error.
    Its very Urgent Thanks in advance
    Points will be alloted for any help
    Thanks
    Vinit

    Hi,
    I think its a permission issue  refer this link
    http://help.sap.com/saphelp_nw70/helpdata/en/1b/12c49eb27011d5993800508b6b8b11/frameset.htm
    Regards,
    Senthil K.

  • How to get this  com.sap.portal.admin.wizardframework_api.jar file

    Hi this is related to the wizard creating component required .jar file. Can any body tell me , how to get this jar file. I have searched in my IDE plug-in's folder. But i have nt find this.
    com.sap.portal.admin.wizardframework_api.jar
    how to get thid jar file.
    REgards
    Vijay

    Hi,
    You should have com.sap.portal.admin.wizardframework in your SharingReference:
    <property name="SharingReference" value="com.sap.km.application, com.sap.portal.admin.wizardframework"/>
    Pls check this link,
    http://help.sap.com/saphelp_nw2004s/helpdata/en/42/bf4172cb951d66e10000000a1553f6/content.htm
    Hope this helps !
    Regards
    Srinivasan T

Maybe you are looking for

  • ITunes 6.0.5 Not compatible with 64 Bit Windows/AMD

    I currently have 6.0.4.2, while upgrading to 6.0.5 and error window pops up to say that iTunes 6.0.5 does not support 64Bit. Is there a way I can get to the older 6.0.4.2 download, as I need a new install. My burner software erased over the itunes dr

  • BSID Query

    Hi guys I am an FI guy and I need your opinion on a query that I want to run for the table BSID, customer open items, as you know. I want all to capture all the entries, where the assignment numbers (BSID-ZUONR) match. I tried using SQVI but the quer

  • Sometimes it takes 10 to 30 sec for a song to start. It seems to be random.

    As I scroll through songs on my ipod, it will stop at the beginning of a song and wait 10 to 30 sec before the song starts playing. I have tried a reset and resyncing on my computer doesn't fix it. Any ideas of what to try next.

  • Help with Div Tags

    Hello, I've got 2 flash files in separate div tags. Div 1 is sized 100% x 100% to match the movie, and the other div tag is set at 900px x 700px (again to match the movie). The 1st tag sort of acts as a background to the top layer. This all works gre

  • @WLHttpTransport is ignored

    I am trying to deploy a JAX-WS webservice on Weblogic 10 with following annotations- @Stateless @WebService(endpointInterface = "pkg.WsItf") @WLHttpTransport(contextPath="ws", serviceUri="impl") public class WsItfImpl implements WsItf { }This is a sp