No Java is such a show stopper...

No java stored procdures is such a limiting factor, I think it's a show stopper for me to make any use out of this product.
Any chance that Oracle is going to re-think this?
Thanks,
Robbin

While I agree with your grief you also gotta remember that
- XE fights in the same space as MS Access, and you might need to add the potential plethora of MS Access 'databases' to your '20 production databases' count to get a more accurate perspective;
- XE would need 3-5x the footprint to include Java in the database, which defeats the quick download and easy install requirement;
- The target community is NOT the professional DBA, and those in the target are often frightened by 'Java'.
I was also very disappointed to hear that XE would not include Java. I got over it, but still have hope to see it as an optional add-on download for the next release.
By the way - portability means different things to different people. Based on experience, I am very wary of people trying to sell me anything that is 'totally portable between rdbms such as DB2, Oracle, MySQL, etc'. I've found that those kinds of portability often waste my time and money, for the reasons best described by Tom Kyte in the first chapter of each of his books.

Similar Messages

  • Show-stopper How can I determine tab hierachy from ids in wwpob_page$

    I have application components published as portlets that depending on the particular page/tab combination perform various functions.
    I am able to get the page_url from my report components published as portlets through p_page_url.
    The URL obviously keeps track of which particular tab was last active
    page?_pageid=54,93,62,68,86,98
    I know the table wwpob_page$ contains these id values.
    I need to be able to determine how the tab hierachy is determined.
    Such that how one can determine which tabs can exist under a parent tab and so on based on the id.
    10 20 30 40 50
    55 58 44 48 64 68
    99 105 111 72 76
    I know I could "hard-code" id values to determine which particular tab I am currently on.
    I want to be able to use tab "friendly" names.
    select p.id, p.name, s.text
    from wwpob_page$ p, wwlns_strings$ s
    where p.title_id = s.id
    order by p.id asc
    My code needs to be robust enough so that if new tabs are added, I can still decipher the URL!!!
    Can someone also tell me how the URL is built and what determines the order of tab_ids?
    This is urgent and a show-stopper!
    kind regards,
    Matt.

    It's my fault, I lost you there.
    See I wrote the steps as they were in  "Adobe Help" so please forget about the last comment.
    I chose the "advanced mode" because I have more than one menu to filter (shape and color) 
    lets say I want the comments on my website to be displayed conditionaly, and I have two lists one for colors (blue and pink) and other for shapes (square and circle), 
    So I'm going to have four pages each page has its own recordset, let's say now I want to filter the recordset for (Blue Circle) page 
    I don't know how to do it but by following the steps in Dreamweaver help: 
    -Select name, and click the Select button. 
    -Select content, and click the Select button. 
    -Select shape, and click the Where button. 
    -Select section, and click the Where button. 
    -Select time, and click the Order By button. 
    this is how the SQL statement look likes:
    SELECT mytable.name, mytable.contents
    FROM mytable
    WHERE mytable.shape='circle' AND mytable.`section`='blue'
    ORDER BY mytable.hdw_serverTime 
    then to Define the variables 'circle' and 'blue' :
    by clicking the Plus (+) button in the Variables area and entering the following values in the Name, Default Value, and Run-Time Value columns:
    circle,square,Request("circle")
    blue,blue,Request("blue") 
    Also I understand that I have to define a parameter but which (URL or Form) and how?  I don't know 

  • Why does Java have such a large footprint?

    I've been curious about this topic for a while, but I haven't ever looked into this to any depth. I also posted this to stackoverflow but haven't gotten any solid responses so far:
    http://stackoverflow.com/questions/1107991/why-does-java-have-such-a-large-footprint
    Java - or at least Sun's Hotspot JVM - has long had a reputation for having a very large memory footprint. What exactly is it about the JVM that gives it this reputation? I'd be interested in a detailed breakdown: how much memory goes to the runtime? (The JIT? The GC/memory management? The classloader?) Anything related to "auxiliary" APIs like JNI/JVMTI? The standard libraries? (Which parts get how much?) Any other major components?
    I realize that this may not be straightforward to answer without a concrete application plus VM configuration, so just to narrow things down at least somewhat: I'm primarily interested in default/typical VM configurations, and in a baseline console "Hello world" app as well as any real-world desktop or server app. (I'm suspecting that a substantial part of the JVM's footprint is largely independent of the app itself, and it is in this part that I'd like to zoom in, ideally.)
    I have a couple of other closely related questions:
    Other similar technology, such as .NET/mono, don't exhibit nearly the same footprint. Why is this the case?
    I've read somewhere on the intarwebs that a large portion of the footprint is due simply to the size of the standard libraries. If this is the case, then why is so much of the standard libraries being loaded up front?
    Are there any efforts (JSRs, whatever) to tame the memory footprint? The closest thing I've come across is a project to reduce the on-disk footprint of the JVM [1] and to modularize the standard library [2].
    I'm sure that the footprint has varied over the past decade or so with every new version of Java. Are there any specific numbers/charts chronicling precisely how the JVM's footprint has changed?
    [1] http://blogs.sun.com/jtc/entry/reduced_footprint_java_se_bringing
    [2] http://blogs.sun.com/theplanetarium/entry/project_jigsaw_modularizing_jdk_7

    yangzhang wrote:
    I've been curious about this topic for a while, but I haven't ever looked into this to any depth. I also posted this to stackoverflow but haven't gotten any solid responses so far:
    http://stackoverflow.com/questions/1107991/why-does-java-have-such-a-large-footprint
    Java - or at least Sun's Hotspot JVM - has long had a reputation for having a very large memory footprint. What exactly is it about the JVM that gives it this reputation? I'd be interested in a detailed breakdown: how much memory goes to the runtime? (The JIT? The GC/memory management? The classloader?) Anything related to "auxiliary" APIs like JNI/JVMTI? The standard libraries? (Which parts get how much?) Any other major components?
    Presumably versus some other VM. I would suppose the fact that much of the VM is written in java has something to do with it.
    I realize that this may not be straightforward to answer without a concrete application plus VM configuration, so just to narrow things down at least somewhat: I'm primarily interested in default/typical VM configurations, and in a baseline console "Hello world" app as well as any real-world desktop or server app. (I'm suspecting that a substantial part of the JVM's footprint is largely independent of the app itself, and it is in this part that I'd like to zoom in, ideally.)
    I have a couple of other closely related questions:
    Other similar technology, such as .NET/mono, don't exhibit nearly the same footprint. Why is this the case?
    Not sure I agree with that. What size do you see with a .Net app that uses 3.0/3.5?
    I've read somewhere on the intarwebs that a large portion of the footprint is due simply to the size of the standard libraries. If this is the case, then why is so much of the standard libraries being loaded up front?
    Good question. There is a feature that allows multiple VMs to use the same memory footprint version of the loaded libraries. That is a new feature and it isn't clear to me if it covers the entire API. I do not know if that is dynamically built.

  • Show stopper: can't import tiff files with camera raw adjustments

    For RAW NEF files (coming from a Nikon D80), Aperture doesn't pick up adjustments I've made in ACR (Adobe Camera Raw) when I import them, even though the .xmp "sidecar" files are sitting there in the folder next to the them. Do I have to do something to get Aperture to pay attention to the .xmp files?
    Similarly, Aperture doesn't read ACR adjustments I've made to TIFF files. I've read on the web that adjustments made to TIFF files cannot be stored in "sidecar" xmp files. That's clearly true since I don't see the .xmp files sitting next to my tiff files in my image directory -- but my ACR adjustments are stored when I reload the TIFF files in ACR.
    In any case, Aperture doesn't seem to recognize either RAW files with sidecar .xmp info, or TIFF files that have ACR adjustments baked in.
    This is a show stopper for me and I'd love to use Aperture for its 'Faces' functionality. Does anyone know a fix for this issue?
    Thanks!
    Raphe

    Thanks for the reply, Kirby
    the kind of conversion you are talking about is likely a pipe dream.
    I gave it a quick look myself just now. the .lrcat file that lightroom has isn't binary & looks just like a huge list of adjustment data for entries in the database. For example, the curves on one of my images looks like this:
    ToneCurve = { 0,
    0,
    37,
    38,
    93,
    148,
    167,
    223,
    255,
    255 },
    So it wouldn't be difficult to write a .lrcat > .xmp exporter (basically going back from one Lightroom database to many .xmp files) or a batch .xmp > .lrcat exporter (going from many .xmp files to one Lightroom database).
    Looking at the contents of Aperture's .aplibrary package, there's an xml record of all files entered in the database, and I found what looks like image edits in the 'versions' folder -- but unfortunately the edits are stored in a binary format.
    Oh well, I guess this is why Aperture is a bit faster than Lightroom -- but will make it very difficult to write a converter to get edits into Aperture. & unless Apple adds edit info to their .xmp sidecar exporter (Export Masters) & includes a batch mode.. we wont be able to get info out of Aperture. So, for the moment, this apparent lack of an open format keeps Aperture from being a professional tool imho, compare to Lightroom.
    ..but for me there's no reason to switch from ACR to Lightroom because there's no facial recognition, and the curve editing utility is better in ACR.
    Thanks for the comments, David.
    I'll be sticking with ACR/Bridge for now -- I'd rather not split my library -- & hope that Lightroom adds some facial recognition functionality
    Besides this, Aperture seems like a really nice product.
    Cheers,
    Raphe

  • HT2930 The amp effects noisy. It's a show stopper. Other apps (ampkit, etc) are quiet. Anyone find a solution? iPad 1 iOS 5.1, GB 1.2.1

    The amp effects are way too noisy. It's a show stopper. Other apps (ampkit, etc) are quiet.
    Apples answer to use noise gate is a band aide over a software problem.
    Anyone find a solution?
    iPad 1 iOS 5.1.1, GB 1.2.1

    You should be able to simply sync with iTunes again in order to reload all of you apps and media. That is why iTunes prompted you to transfer the purchases. You may have to select all of the content again when you click on each tab in the iTunes window on the right, but the content should be in your iTunes library.
    You should also be able to restore from the backup that iTunes created before the update took place in order to restore your app data. When the iPad is connected to your computer and with iTunes running, right click on the iPad on the left side and select "Restore From Backup". A window will popup with a drop down list of all of the available backups for the device. Select the one that you want to use and restore from it.

  • Java system does not show up in WilyWebview/Station

    Experts:
    I have installed/configured SMD/IS agent according to the guide exactly.
    All othe steps such as SMSY are also carried out.
    When I go to solma-workcenter, click End-to-end diagnostics, I see that Java system shows up on the right panel.
    However, the metrics on WilyWebview/Station cannot show the statistics from this Java system.
    Could you please share your experience on this?
    Thanks!

    Hello Laura
    It doesn't really sound like you have performed all neccesary steps to integrate an AS Java based SAP system into Wily Introscope.
    Please review the installation guides on [https://service.sap.com/diagnostics|https://service.sap.com/diagnostics]
    You should use transaction SOLMAN_SETUP and run through the different setups to make sure you have everything in place.
    This means you should have Wily Introscope in place, the diagnostics scenario setup done, the ISAGENT deployed on your Solution Manager, the SMD agent installed on your managed SAP system and registered in Solution Manager (should be visible in Agent Administration), managed system parameters should be updated, managed system setup has to run, managed system has to be restarted (if Java based).
    After all these steps (might have left few minor ones out) the AS Java system becomes visible in Wily Introscope.
    Kind regards
    Tom

  • Java Bean Classes not showing up in drop down

    Post Author: Cdog
    CA Forum: JAVA
    I've set the <JavaBeansClassPath>C:\Basement\vo</JavaBeansClassPath> and even added it the the ClassPath in the CRConfig.xml but nothing is showing up.
    Please advise me on what I am leaving out.
    Thank you,

    Post Author: Ted Ueda
    CA Forum: JAVA
    I'd try jar-ing the JavaBean and explicitly putting the path to the jar file into that tag.  This would ensure no issues with subfolder access.Sincerely,Ted Ueda

  • Java 1.4.2 shows language for system

    Hi
    Java 1.4.2_01 chooses the language for the system and not for the user.
    After installing Java 1.4.2 on my Japanese Windows 2000 professional system all the menus show up in Japanese.
    I have chosen English as my local user language and would expect the language to change to that.
    The compiler output is also in Japanese.
    Any ideas on how to change that back to English like in the version before 1.4.2??
    Regards,
    Lars

    I looks as if someone already enter a bug in the bug parade for this.
    http://developer.java.sun.com/developer/bugParade/bugs/4886939.html
    Does anyone have some status updated on when this will be fixed?
    Are there any other bugs like this one reported?
    Lars

  • My java chat doesn't show more characters (�,�,�,�,�),any help?

    Hello!I'm studing two java source:
    //Importo i package necessari
    import java.net.*;
    import java.io.*;
    public class TCPClient {
    public void start()throws IOException {
    //Connessione della Socket con il Server
    Socket socket = new Socket("localhost", 7777);
    //Stream di byte da passare al Socket
    DataOutputStream os = new DataOutputStream(socket.getOutputStream());
    DataInputStream is = new DataInputStream(socket.getInputStream());
    BufferedReader stdIn = new BufferedReader(new InputStreamReader(System.in));
    System.out.print("Per disconnettersi dal Server scrivere: QUIT\n");
    //Ciclo infinito per inserimento testo del Client
    while (true) {
    System.out.print("Inserisci: ");
    String userInput = stdIn.readLine();
    if (userInput.equals("QUIT"))
    break;
    os.writeBytes(userInput + '\n');
    System.out.println("Hai digitato: " + is.readLine());
    //Chiusura dello Stream e del Socket
    os.close();
    is.close();
    socket.close();
    public static void main (String[] args) throws Exception {
    TCPClient tcpClient = new TCPClient();
    tcpClient.start();
    //end
    and
    //Importo i package
    import java.net.*;
    import java.io.*;
    //Creazione di una classe per il Multrithreading
    class ServerThread extends Thread {
    private Socket socket;
    public ServerThread (Socket socket) {
    this.socket = socket;
    //esecuzione del Thread sul Socket
    public void run() {
    try {
    DataInputStream is = new DataInputStream(socket.getInputStream());
    DataOutputStream os = new DataOutputStream(socket.getOutputStream());
    while(true) {
    String userInput = is.readLine();
    if (userInput == null || userInput.equals("QUIT"))
    break;
    os.writeBytes(userInput + '\n');
    System.out.println("Il Client ha scritto: " + userInput);
    os.close();
    is.close();
    System.out.println("Ho ricevuto una chiamata di chiusura da:\n"
                   + socket + "\n");
    socket.close();
    catch (IOException e) {
    System.out.println("IOException: " + e);
    //Classe Server per attivare la Socket
    public class TCPParallelServer {
    public void start() throws Exception {
    ServerSocket serverSocket = new ServerSocket(7777);
    //Ciclo infinito di ascolto dei Client
    while(true) {
    System.out.println("In attesa di chiamate dai Client... ");
    Socket socket = serverSocket.accept();
    System.out.println("Ho ricevuto una chiamata di apertura da:\n" + socket);
    ServerThread serverThread = new ServerThread(socket);
    serverThread.start();
    public static void main (String[] args) throws Exception {
    TCPParallelServer tcpServer = new TCPParallelServer();
    tcpServer.start();
    but this client/server program doesn't display more characters such ��� ect ect,how i do to mode this code for a correct output?
    Greetings

    ok,i'm trying but now to test my source i've to find
    the readChar in BufferedWriter,i've see that in
    BufferedWriter readChar is read() but this don't
    work,the editor gives me an error that says"found int
    required char" possible loss of precision.I can't
    read the javadocs corretly,i'm a newbie.
    I assume that you mean BufferedReader and that your use of BufferedWriter is a typo.
    From your first post I assumed you were reading and writing lines not the individual characters but no problem. Yes, one should use the read() method to read an individual character and if the value returned is not -1 (which signifies end of file) then it can be cast to a char using
    char ch = (char)br.read();

  • Java-specific way to show and select dates on a calendar in JSP?

    I need my JSP to show a calendar and let a user choose a date. However, I know this is normally done in Javascript and I don't want to use Javascript ever. Is there an all-Java/HTML way to do this? Thanks.
    Ken

    try dis code out this may help....
    <%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="iCardsErrorPage.jsp" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
         <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
         <title>Choose Day</title>
         <script language="javascript">   
              function gotoPage()
                   var year = document.selectdate.year.options[document.selectdate.year.selectedIndex].value;
                   var month = document.selectdate.month.options[document.selectdate.month.selectedIndex].value;
                   if ((month=="")||(month==null))
                        alert("Please enter a month and year.");
                        return false;
                   if ((year=="")||(year==null))
                        alert("Please enter a month and year.");
                        return false;
                   document.location = 'selectdate.jsp?year='+year+'&month='+month+'&formName=<%= request.getParameter("formName")%>&where=<%= request.getParameter("where")%>';
         </script>
    </head>
    <body bgcolor="#999999">
         <%@ page import="java.util.Calendar" %>
         <%@ page import="java.util.Date" %>
         <%@ page import="java.util.GregorianCalendar" %>
         <form name="selectdate">
         <%
              Calendar calendar = new GregorianCalendar();
              Date trialTime = new Date();
              calendar.setTime(trialTime);
              Calendar calendar2 = new GregorianCalendar();
              calendar2.set(calendar.get(Calendar.YEAR), calendar.get(Calendar.MONTH), 1);
              int today = calendar.get(Calendar.DAY_OF_MONTH);
              int currentYear = calendar.get(Calendar.YEAR);
              String Month = "";
              int daynum= 1;
              int column = 1;
              int row = 1;
              int year = 0;
              int month = 0;
              String y = request.getParameter("year");
              if (y==null)
                   year = calendar2.get(Calendar.YEAR);
              else
                   year = Integer.parseInt(y);
                   calendar2.set(year,calendar2.get(Calendar.MONTH),1);
              String m = request.getParameter("month");
              if (m==null)
                   month = calendar2.get(Calendar.MONTH);
              else
                   month = Integer.parseInt(m);
                   calendar2.set(calendar2.get(Calendar.YEAR),month,1);
              int firstDay = calendar2.get(Calendar.DAY_OF_WEEK);
              switch (month)
                   case Calendar.JANUARY: Month = "January";break;
                   case Calendar.FEBRUARY: Month = "February";break;
                   case Calendar.MARCH: Month = "March";break;
                   case Calendar.APRIL: Month = "April";break;
                   case Calendar.MAY: Month = "May";break;
                   case Calendar.JUNE: Month = "June";break;
                   case Calendar.JULY: Month = "July";break;
                   case Calendar.AUGUST: Month = "August";break;
                   case Calendar.SEPTEMBER: Month = "September";break;
                   case Calendar.OCTOBER: Month = "October";break;
                   case Calendar.NOVEMBER: Month = "November";break;
                   case Calendar.DECEMBER: Month = "December";break;
              }      %>
                <TABLE border="0" cellpadding="0" cellspacing="0" WIDTH="200" ALIGN="LEFT" >
                  <TR>
                         <TD ALIGN="CENTER" COLSPAN="4" >
                             <SELECT NAME="month" SIZE="1" ONCHANGE="gotoPage();return false;">
                                  <OPTION VALUE="0" <% if (month==0){%>SELECTED<% } %>>Jan</OPTION>
                                  <OPTION VALUE="1" <% if (month==1){%>SELECTED<% } %>>Feb</OPTION>
                                  <OPTION VALUE="2" <% if (month==2){%>SELECTED<% } %>>Mar</OPTION>
                                  <OPTION VALUE="3" <% if (month==3){%>SELECTED<% } %>>Apr</OPTION>
                                  <OPTION VALUE="4" <% if (month==4){%>SELECTED<% } %>>May</OPTION>
                                  <OPTION VALUE="5" <% if (month==5){%>SELECTED<% } %>>Jun</OPTION>
                                  <OPTION VALUE="6" <% if (month==6){%>SELECTED<% } %>>Jul</OPTION>
                                  <OPTION VALUE="7" <% if (month==7){%>SELECTED<% } %>>Aug</OPTION>
                                  <OPTION VALUE="8" <% if (month==8){%>SELECTED<% } %>>Sep</OPTION>
                                  <OPTION VALUE="9" <% if (month==9){%>SELECTED<% } %>>Oct</OPTION>
                                  <OPTION VALUE="10" <% if (month==10){%>SELECTED<% } %>>Nov</OPTION>
                                  <OPTION VALUE="11" <% if (month==11){%>SELECTED<% } %>>Dec</OPTION>
                           </SELECT>
                             <SELECT NAME="year" SIZE="1" ONCHANGE="gotoPage();return false;">
                                  <OPTION VALUE="<%= currentYear-2 %>" <% if (year==currentYear-2){%>SELECTED<% } %>><%= currentYear-2 %></OPTION>
                                  <OPTION VALUE="<%= currentYear-1 %>" <% if (year==currentYear-1){%>SELECTED<% } %>><%= currentYear-1 %></OPTION>
                                  <OPTION VALUE="<%= currentYear %>" <% if (year==currentYear){%>SELECTED<% } %>><%= currentYear %></OPTION>
                                  <OPTION VALUE="<%= currentYear+1 %>" <% if (year==currentYear+1){%>SELECTED<% } %>><%= currentYear+1 %></OPTION>
                                  <OPTION VALUE="<%= currentYear+2 %>" <% if (year==currentYear+2){%>SELECTED<% } %>><%= currentYear+2 %></OPTION>
                           </SELECT>
                        </TD>
                  </TR>
                  <TR valign="top" >
                         <TD valign="top" align="left" class="header" WIDTH="20%"> </TD>
                         <TD valign="middle" colspan="2" ALIGN="CENTER" class="header" WIDTH="60%">
                             <font style="font-family:Verdana, Arial, Helvetica, sans-serif" style="font-size:12px" style="font-weight:normal" style="color:#FFFFCC" style="vertical-align:middle"><%= Month %> <%= year %></font>
                        </TD>
                         <TD valign="top" align="right" class="header" WIDTH="20%"> </TD>
                  </TR>
                  <TR>
                         <TD CLASS="FORMTABLE" COLSPAN="4">
                             <TABLE border="0" cellpadding="0" cellspacing="0" WIDTH="100%" >
                             <!--<TR>
                                       <TD CLASS="FORMTABLE" ALIGN="RIGHT"><B>Year</B></TD>
                                  <TR>
                                       <TD COLSPAN="7" ALIGN=center CLASS="FORMTABLE"><B>
                                       <%= Month %> <%= year %></B></TD>
                                  </TR>-->
                                  <TR>
                                    <TD ALIGN=center><font style="font-family:Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF" style="font-size:14px">Sun</font></TD>
                                       <TD ALIGN=center><font style="font-family:Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF" style="font-size:14px">Mon</font></TD>
                                       <TD ALIGN=center><font style="font-family:Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF" style="font-size:14px">Tue</font></TD>
                                       <TD ALIGN=center><font style="font-family:Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF" style="font-size:14px">Wed</font></TD>
                                       <TD ALIGN=center><font style="font-family:Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF" style="font-size:14px">Thu</font></TD>
                                       <TD ALIGN=center><font style="font-family:Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF" style="font-size:14px">Fri</font></TD>
                                       <TD ALIGN=center><font style="font-family:Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF" style="font-size:14px">Sat</font></TD>
                                  </TR>
                                  <TR>
                               <%
                                       int maxdays = calendar2.getActualMaximum(Calendar.DAY_OF_MONTH);
                                       String max = String.valueOf(maxdays);
                                       while (daynum<=maxdays)
                                            if (row==1)
                                                 for (int j=1; j<firstDay; j++)
                                                 { %>
                                                   <TD ALIGN=center> </TD>
                                                   <%
                                                           column++;
                                            while ((column<8)&&(daynum<=maxdays))
                                            { %>
                                              <TD ALIGN="CENTER"><font style="font-family:Verdana, Arial, Helvetica, sans-serif" style="color:#FFFFFF" style="font-size:14px" style="cursor:hand"><A onclick="sendDate('<%= daynum %>'); return false;"
                                                 <%
                                                      if ((calendar.get(Calendar.MONTH))==(calendar2.get(Calendar.MONTH)) &&
                                                         (calendar.get(Calendar.YEAR))==(calendar2.get(Calendar.YEAR)) &&
                                                         (calendar.get(Calendar.DAY_OF_MONTH))==daynum)
                                                      { %>
                                                           CLASS="RED"
                                                  <% } %>><%= daynum %> </A></font></TD>
                                                   <%
                                                      column++;
                                                      daynum++;
                                            if (column!=8)
                                                 for (int j=column; j<8; j++)
                                                 { %>
                                                   <TD ALIGN="CENTER" > </TD>
                                         <%  }
                                            } %>
                                  </TR>
                                  <%
                                       if (daynum<maxdays)
                                       { %>
                                            <TR>
                                    <% }
                                       column=1;
                                       row++;
                                       } %>
                           </TABLE>
                        </TD>
                  </TR>
                </TABLE>

  • My java applet doesn't show up in Firefox

    We have a new Mac running OSX 10.8.4 and installed with Firefox 21.0 and Java 7 update 25. The web applet/plugin doesn't show up in Firefox, if we go to java.com and do the tests it just comes back 'We are unable to verify if Java is currently installed and enabled in your browser'
    The same test in Safari comes back fine and shows Java 7 Update 25 installed and working.
    The plugin does not show at all in Firefox add-ons. Browser functionality is enabled in the main Java control panel.
    We have completely removed and reinstalled both Firefox and Java.
    Thanks

    Hi iNerd
    Thanks for the link but neither of the two options that are discussed are presented to the user. Instead the user just gets the message 'We are unable to verify if Java is currently installed and enabled in your browser'. I know it is installed and enabled for general browser use as it all works fine in Safari. We would obviously just use Safari except the key site the user needs to link to works better with Firefox.

  • ER: Java class diagrams do show inheritance from no-sourcecode classes

    Hi!
    We just noticed that when we extend some classes for which the source code is not available, such inheritance is not visible on diagrams.
    I would like to propose ER to show these inheritances (as the no-source classes signatures are enough to display the class on diagram). It is very inconvenient to have diagrams without possibility to depict the inheritance from many Oracle classes, as this inheritance is more and more important for building ADF applications.
    Thanks for consideration.
    PaKo

    Pako,
    I filed the ER
    Frank

  • Java-Applet-Plug-In shows up in Safari, but I did not install Java

    Hello,
    in Safari, when you click on "Help" and then on "Installed Plug-Ins", you get a list of all Plug-Ins installed. Beside the Quicktime- and PDF-Plug-Ins there's also this Plug-In listed:
    I wonder what this is, because I did not install Java on my fresh installed Mountain Lion.
    Second thing I wonder about is this: By the fact that this Applet is listed under "Plug-Ins" what affect does it have, when I uncheck the Option for Java in Safaris securtiy options? Do I also need to uncheck "Plug-Ins", or can I leave it as it is? Same questions, if I pretend Java is installed.
    Thanks alot for clearing that up! Again, there's a huge security issue with Java, as seen in recent news. And excuse my English.

    After being connectred to a charging source overnight
    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • Show Stopper today with eDirectory (LDAP)

    We are currently setting up Sun IDM 5.5 and are trying to do
    reconciliation with an eDirectory 8.6.2 (10350.29) but are experiencing
    severe performance issues. The directory contains groups with large scale
    membership base, some groups 25.000+ members.
    Same scenario occurs with Sun IDM 5.0 SP5.
    When isolating to a single OU as baseDN with 10 accounts, a full clean
    reconciliation takes 6-10 minutes. The network has thoroughly been
    debugged, and no errors or issues have been found. Manual browsing in the
    eDirectory with various ldap-tools without any issues. The total case
    involves a total of more than 30.000+ accounts.
    A test with identical user data in a Sun Directory Server 5.2 does the reconciliation take approx 2-3 seconds.
    The eDirectory LDAP RA adapter can be viewed below. Any insight, or similar experiences are of great value and importance! Anything that can help me get this on track...
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE Resource PUBLIC 'waveset.dtd' 'waveset.dtd'>
    <!--  MemberObjectGroups="#ID#Top" hostname="130.243.85.109" id="#ID#F77594225BD088E0:775121:1065E88DBC9:-7FE5" name="NDS" startupType="Disabled" supportedObjectTypes="Group|Domain|Organization|Organizational Unit" supportsContainerObjectTypes="true" supportsScanning="false" syncEnabled="false" syncSource="true" type="LDAP"-->
    <Resource id='#ID#F77594225BD088E0:775121:1065E88DBC9:-7FE5' name='NDS' creator='Configurator' createDate='1126879507899' lastModifier='Configurator' lastModDate='1126886340268' lastMod='19' class='com.waveset.adapter.LDAPResourceAdapter' typeString='LDAP' typeDisplayString='com.waveset.adapter.RAMessages:RESTYPE_LDAP' hasId='true' facets='provision' timeLastExamined='0' reconcileTime='0' syncSource='true' startupType='Disabled'>
      <ResourceAttributes>
        <ResourceAttribute name='host' displayName='com.waveset.adapter.RAMessages:RESATTR_HOST' description='RESATTR_HELP_240' value='130.243.85.109'>
        </ResourceAttribute>
        <ResourceAttribute name='port' displayName='com.waveset.adapter.RAMessages:RESATTR_PORT' description='RESATTR_HELP_264' value='389'>
        </ResourceAttribute>
        <ResourceAttribute name='ssl' displayName='com.waveset.adapter.RAMessages:RESATTR_SSL' description='RESATTR_HELP_281' value='0'>
        </ResourceAttribute>
        <ResourceAttribute name='principal' displayName='com.waveset.adapter.RAMessages:RESATTR_USERDN' description='RESATTR_HELP_271' value='cn=admin,ou=nds,ou=res,o=mdh'>
        </ResourceAttribute>
        <ResourceAttribute name='credentials' displayName='com.waveset.adapter.RAMessages:RESATTR_PASSWORD' type='encrypted' description='RESATTR_HELP_219' value='izkkkM1YJto='>
        </ResourceAttribute>
        <ResourceAttribute name='baseContext' displayName='com.waveset.adapter.RAMessages:RESATTR_BASE_CTXS' description='com.waveset.adapter.RAMessages:RESATTR_BASE_CTX_DESC' multi='true' value='ou=06,ou=STUDENT,ou=ANV,o=mdh'>
        </ResourceAttribute>
        <ResourceAttribute name='Object Class' displayName='com.waveset.adapter.RAMessages:RESATTR_OBJECT_CLASS' description='RESATTR_HELP_253' multi='true'>
          <value>top</value>
          <value>person</value>
          <value>organizationalPerson</value>
          <value>inetorgperson</value>
          <value>ndsLoginProperties</value>
        </ResourceAttribute>
        <ResourceAttribute name='ldapSearchFilter' displayName='com.waveset.adapter.RAMessages:RESATTR_LDAP_SEARCH_FILTER' description='com.waveset.adapter.RAMessages:RESATTR_HELP_LDAP_SEARCH_FILTER'>
        </ResourceAttribute>
        <ResourceAttribute name='includeObjClassesInSearchFilter' displayName='com.waveset.adapter.RAMessages:RESATTR_INCL_OBJCLASSES_IN_SEARCH_FILTER' type='boolean' description='com.waveset.adapter.RAMessages:RESATTR_HELP_INCL_OBJCLASSES_IN_SEARCH_FILTER' value='true'>
        </ResourceAttribute>
        <ResourceAttribute name='wsname' displayName='com.waveset.adapter.RAMessages:RESATTR_WSNAME' description='RESATTR_HELP_292' value='cn'>
        </ResourceAttribute>
        <ResourceAttribute name='Display Name Attribute' displayName='com.waveset.adapter.RAMessages:RESATTR_DISPLAY_NAME_ATTR' description='RESATTR_HELP_41'>
        </ResourceAttribute>
        <ResourceAttribute name='Use blocks' displayName='com.waveset.adapter.RAMessages:RESATTR_USE_BLOCKS' description='RESATTR_HELP_192' value='1'>
        </ResourceAttribute>
        <ResourceAttribute name='blockCount' displayName='com.waveset.adapter.RAMessages:RESATTR_BLOCKCOUNT' description='RESATTR_HELP_34' value='100'>
        </ResourceAttribute>
        <ResourceAttribute name='groupMemberAttr' displayName='com.waveset.adapter.RAMessages:RESATTR_GRP_MBR_ATTR' description='RESATTR_HELP_233' value='groupMembership'>
        </ResourceAttribute>
        <ResourceAttribute name='Password Hash Algorithm' displayName='com.waveset.adapter.RAMessages:RESATTR_PASSWORD_HASH_ALG' description='RESATTR_HELP_49'>
        </ResourceAttribute>
        <ResourceAttribute name='changeNamingAttr' displayName='com.waveset.adapter.RAMessages:RESATTR_MOD_NAMING_ATTR' description='RESATTR_HELP_47' value='0'>
        </ResourceAttribute>
        <ResourceAttribute name='Object Classes to Synchronize' displayName='com.waveset.adapter.RAMessages:RESATTR_ACTIVE_SYNC_OBJECT_CLASSES' description='com.waveset.adapter.RAMessages:RESATTR_HELP_ACTIVE_SYNC_OBJECT_CLASSES' multi='true' facets='activesync'>
          <value>person</value>
          <value>organizationalPerson</value>
          <value>inetorgperson</value>
        </ResourceAttribute>
        <ResourceAttribute name='LDAP Filter for Accounts to Synchronize' displayName='com.waveset.adapter.RAMessages:RESATTR_ACTIVE_SYNC_LDAP_FILTER' description='com.waveset.adapter.RAMessages:RESATTR_HELP_ACTIVE_SYNC_LDAP_FILTER' facets='activesync'>
        </ResourceAttribute>
        <ResourceAttribute name='Attributes to synchronize' displayName='com.waveset.adapter.RAMessages:RESATTR_ATTRIBUTE_FILTER' description='com.waveset.adapter.RAMessages:RESATTR_HELP_ATTRIBUTE_FILTER' multi='true' facets='activesync'>
        </ResourceAttribute>
        <ResourceAttribute name='When reset, ignore past changes' displayName='com.waveset.adapter.RAMessages:RESATTR_RESET_TO_TODAY' description='com.waveset.adapter.RAMessages:RESATTR_HELP_LDAPAS_RESET_TO_TODAY' facets='activesync' value='1'>
        </ResourceAttribute>
        <ResourceAttribute name='Change Log Blocksize' displayName='com.waveset.adapter.RAMessages:RESATTR_BLOCKSIZE' description='com.waveset.adapter.RAMessages:RESATTR_HELP_36' facets='activesync' value='100'>
        </ResourceAttribute>
        <ResourceAttribute name='Change Number Attribute Name' displayName='com.waveset.adapter.RAMessages:RESATTR_CHANGE_NUMBER_ATTRIBUTE_NAME' description='com.waveset.adapter.RAMessages:RESATTR_HELP_37' facets='activesync' value='changenumber'>
        </ResourceAttribute>
        <ResourceAttribute name='Filter Changes Made By' displayName='com.waveset.adapter.RAMessages:RESATTR_FILTER_CHANGES_BY' description='com.waveset.adapter.RAMessages:RESATTR_HELP_FILTER_CHANGES_BY' multi='true' facets='activesync'>
        </ResourceAttribute>
        <ResourceAttribute name='Proxy Administrator' displayName='com.waveset.adapter.RAMessages:RESATTR_PROXY_ADMINISTRATOR' description='com.waveset.adapter.RAMessages:RESATTR_HELP_30' value='Configurator'>
        </ResourceAttribute>
        <ResourceAttribute name='Input Form' displayName='com.waveset.adapter.RAMessages:RESATTR_FORM' description='com.waveset.adapter.RAMessages:RESATTR_HELP_26'>
        </ResourceAttribute>
        <ResourceAttribute name='Pre-Poll Workflow' displayName='com.waveset.adapter.RAMessages:RESATTR_PREPOLL_WORKFLOW' description='com.waveset.adapter.RAMessages:RESATTR_PREPOLL_WORKFLOW_HELP'>
        </ResourceAttribute>
        <ResourceAttribute name='Post-Poll Workflow' displayName='com.waveset.adapter.RAMessages:RESATTR_POSTPOLL_WORKFLOW' description='com.waveset.adapter.RAMessages:RESATTR_POSTPOLL_WORKFLOW_HELP'>
        </ResourceAttribute>
        <ResourceAttribute name='Maximum Archives' displayName='com.waveset.adapter.RAMessages:RESATTR_MAX_ARCHIVES' description='com.waveset.adapter.RAMessages:RESATTR_HELP_MAX_ARCHIVES' value='3'>
        </ResourceAttribute>
        <ResourceAttribute name='Maximum Age Length' displayName='com.waveset.adapter.RAMessages:RESATTR_MAX_LOG_AGE' description='com.waveset.adapter.RAMessages:RESATTR_HELP_MAX_LOG_AGE'>
        </ResourceAttribute>
        <ResourceAttribute name='Maximum Age Unit' displayName='com.waveset.adapter.RAMessages:RESATTR_MAX_LOG_AGE_UNIT' description='com.waveset.adapter.RAMessages:RESATTR_HELP_MAX_LOG_AGE_UNIT'>
        </ResourceAttribute>
        <ResourceAttribute name='Log Level' displayName='com.waveset.adapter.RAMessages:RESATTR_LOG_LEVEL' description='com.waveset.adapter.RAMessages:RESATTR_HELP_27' value='2'>
        </ResourceAttribute>
        <ResourceAttribute name='Log File Path' displayName='com.waveset.adapter.RAMessages:RESATTR_LOG_PATH' description='com.waveset.adapter.RAMessages:RESATTR_HELP_28'>
        </ResourceAttribute>
        <ResourceAttribute name='Maximum Log File Size' displayName='com.waveset.adapter.RAMessages:RESATTR_LOG_SIZE' description='com.waveset.adapter.RAMessages:RESATTR_HELP_29'>
        </ResourceAttribute>
        <ResourceAttribute name='Scheduling Interval' displayName='com.waveset.adapter.RAMessages:RESATTR_SCHEDULE_INTERVAL' description='com.waveset.adapter.RAMessages:RESATTR_HELP_51'>
        </ResourceAttribute>
        <ResourceAttribute name='Poll Every' displayName='com.waveset.adapter.RAMessages:RESATTR_SCHEDULE_INTERVAL_COUNT' description='com.waveset.adapter.RAMessages:RESATTR_HELP_52'>
        </ResourceAttribute>
        <ResourceAttribute name='Polling Start Time' displayName='com.waveset.adapter.RAMessages:RESATTR_SCHEDULE_START_TIME' description='com.waveset.adapter.RAMessages:RESATTR_HELP_56'>
        </ResourceAttribute>
        <ResourceAttribute name='Polling Start Date' displayName='com.waveset.adapter.RAMessages:RESATTR_SCHEDULE_START_DATE' description='com.waveset.adapter.RAMessages:RESATTR_HELP_54'>
        </ResourceAttribute>
        <ResourceAttribute name='useInputForm' displayName='com.waveset.adapter.RAMessages:RESATTR_USE_INPUT_FORM' type='boolean' description='com.waveset.adapter.RAMessages:RESATTR_USE_INPUT_FORM_HELP' facets='activesync' value='true'>
        </ResourceAttribute>
        <ResourceAttribute name='parameterizedInputForm' displayName='com.waveset.adapter.RAMessages:RESATTR_PARAMETERIZED_INPUT_FORM' description='com.waveset.adapter.RAMessages:RESATTR_PARAMETERIZED_INPUT_FORM_HELP' facets='activesync'>
        </ResourceAttribute>
        <ResourceAttribute name='activeSyncPostProcessForm' displayName='com.waveset.adapter.RAMessages:RESATTR_SYNC_POST_PROCESS_FORM' description='com.waveset.adapter.RAMessages:RESATTR_SYNC_POST_PROCESS_FORM_HELP' facets='activesync'>
        </ResourceAttribute>
        <ResourceAttribute name='activeSyncConfigMode' displayName='com.waveset.adapter.RAMessages:RESATTR_SYNC_CONFIG_MODE' description='com.waveset.adapter.RAMessages:RESATTR_SYNC_CONFIG_MODE_HELP' facets='activesync' value='basic'>
        </ResourceAttribute>
        <ResourceAttribute name='processRule' displayName='com.waveset.adapter.RAMessages:RESATTR_PROCESS_RULE' description='com.waveset.adapter.RAMessages:RESATTR_PROCESS_RULE_HELP' facets='activesync'>
        </ResourceAttribute>
        <ResourceAttribute name='correlationRule' displayName='com.waveset.adapter.RAMessages:RESATTR_CORRELATION_RULE' description='com.waveset.adapter.RAMessages:RESATTR_CORRELATION_RULE_HELP' facets='activesync' value='CORRELATION_RULE_NONE'>
        </ResourceAttribute>
        <ResourceAttribute name='confirmationRule' displayName='com.waveset.adapter.RAMessages:RESATTR_CONFIRMATION_RULE' description='com.waveset.adapter.RAMessages:RESATTR_CONFIRMATION_RULE_HELP' facets='activesync' value='CONFIRMATION_RULE_NONE'>
        </ResourceAttribute>
        <ResourceAttribute name='deleteRule' displayName='com.waveset.adapter.RAMessages:RESATTR_DELETE_RULE' description='com.waveset.adapter.RAMessages:RESATTR_DELETE_RULE_HELP' facets='activesync'>
        </ResourceAttribute>
        <ResourceAttribute name='createUnmatched' displayName='com.waveset.adapter.RAMessages:RESATTR_CREATE_UNMATCHED' description='com.waveset.adapter.RAMessages:RESATTR_CREATE_UNMATCHED_HELP' facets='activesync' value='true'>
        </ResourceAttribute>
        <ResourceAttribute name='resolveProcessRule' displayName='com.waveset.adapter.RAMessages:RESATTR_RESOLVE_PROCESS_RULE' description='com.waveset.adapter.RAMessages:RESATTR_RESOLVE_PROCESS_RULE_HELP' facets='activesync'>
        </ResourceAttribute>
        <ResourceAttribute name='populateGlobal' displayName='com.waveset.adapter.RAMessages:RESATTR_POPULATE_GLOBAL' description='com.waveset.adapter.RAMessages:RESATTR_POPULATE_GLOBAL_HELP' facets='activesync' value='false'>
        </ResourceAttribute>
      </ResourceAttributes>
      <AccountAttributeTypes nextId='15'>
        <AccountAttributeType id='2' name='accountId' syntax='string' mapName='cn' mapType='string' required='true'>
          <AttributeDefinitionRef>
            <ObjectRef type='AttributeDefinition' id='#ID#AttributeDefinition:accountId' name='accountId'/>
          </AttributeDefinitionRef>
        </AccountAttributeType>
        <AccountAttributeType id='3' name='password' syntax='encrypted' mapName='userPassword' mapType='string'>
          <AttributeDefinitionRef>
            <ObjectRef type='AttributeDefinition' id='#ID#AttributeDefinition:password' name='password'/>
          </AttributeDefinitionRef>
        </AccountAttributeType>
        <AccountAttributeType id='4' name='firstname' syntax='string' mapName='givenname' mapType='string'>
          <AttributeDefinitionRef>
            <ObjectRef type='AttributeDefinition' id='#ID#AttributeDefinition:firstname' name='firstname'/>
          </AttributeDefinitionRef>
        </AccountAttributeType>
        <AccountAttributeType id='5' name='lastname' syntax='string' mapName='sn' mapType='string' required='true'>
          <AttributeDefinitionRef>
            <ObjectRef type='AttributeDefinition' id='#ID#AttributeDefinition:lastname' name='lastname'/>
          </AttributeDefinitionRef>
        </AccountAttributeType>
        <AccountAttributeType id='8' name='loginDisabled' syntax='string' mapName='loginDisabled' mapType='string'>
        </AccountAttributeType>
        <AccountAttributeType id='9' name='fullname' syntax='string' mapName='fullname' mapType='string'>
        </AccountAttributeType>
        <AccountAttributeType id='10' name='email' syntax='string' mapName='mail' mapType='string'>
        </AccountAttributeType>
        <AccountAttributeType id='11' name='ssn' syntax='string' mapName='workforceId' mapType='string'>
        </AccountAttributeType>
        <AccountAttributeType id='12' name='description' syntax='string' mapName='description' mapType='string'>
        </AccountAttributeType>
      </AccountAttributeTypes>
      <Template>
        <text>cn=</text>
        <ObjectRef type='AttributeDefinition' id='#ID#AttributeDefinition:accountId' name='accountId'/>
        <text>,ou=06,ou=STUDENT,ou=ANV,o=mdh</text>
      </Template>
      <Retries max='0' delay='10' emailThreshold='5'/>
      <ObjectTypes>
        <ObjectType name='Group' nameKey='UI_RESOURCE_OBJECT_TYPE_GROUP' icon='group'>
          <ObjectClasses primary='groupOfUniqueNames' operator='OR'>
            <ObjectClass name='groupOfNames'/>
            <ObjectClass name='groupOfUniqueNames'/>
          </ObjectClasses>
          <ObjectFeatures>
            <ObjectFeature name='create'/>
            <ObjectFeature name='update'/>
            <ObjectFeature name='delete'/>
            <ObjectFeature name='rename'/>
            <ObjectFeature name='saveas'/>
          </ObjectFeatures>
          <ObjectAttributes idAttr='dn' displayNameAttr='cn' descriptionAttr='description' objectClassAttr='objectclass'>
            <ObjectAttribute name='cn' type='string'/>
            <ObjectAttribute name='description' type='string'/>
            <ObjectAttribute name='owner' type='distinguishedname' namingAttr='cn'/>
            <ObjectAttribute name='uniqueMember' type='distinguishedname' namingAttr='cn'/>
          </ObjectAttributes>
        </ObjectType>
        <ObjectType name='Domain' nameKey='UI_RESOURCE_OBJECT_TYPE_DOMAIN' icon='folder' container='true'>
          <ObjectClasses operator='AND'>
            <ObjectClass name='domain'/>
          </ObjectClasses>
          <ObjectFeatures>
            <ObjectFeature name='find'/>
          </ObjectFeatures>
          <ObjectAttributes idAttr='distinguishedName' displayNameAttr='dc' objectClassAttr='objectclass'>
            <ObjectAttribute name='dc' type='string'/>
          </ObjectAttributes>
        </ObjectType>
        <ObjectType name='Organization' nameKey='UI_RESOURCE_OBJECT_TYPE_ORGANIZATION' icon='folder_with_org' container='true'>
          <ObjectClasses operator='AND'>
            <ObjectClass name='organization'/>
          </ObjectClasses>
          <ObjectFeatures>
            <ObjectFeature name='create'/>
            <ObjectFeature name='delete'/>
            <ObjectFeature name='rename'/>
            <ObjectFeature name='saveas'/>
            <ObjectFeature name='find'/>
          </ObjectFeatures>
          <ObjectAttributes idAttr='dn' displayNameAttr='o' objectClassAttr='objectclass'>
            <ObjectAttribute name='o' type='string'/>
          </ObjectAttributes>
        </ObjectType>
        <ObjectType name='Organizational Unit' nameKey='UI_RESOURCE_OBJECT_TYPE_ORGANIZATIONALUNIT' icon='folder_with_orgunit' container='true'>
          <ObjectClasses operator='AND'>
            <ObjectClass name='organizationalUnit'/>
          </ObjectClasses>
          <ObjectFeatures>
            <ObjectFeature name='create'/>
            <ObjectFeature name='delete'/>
            <ObjectFeature name='rename'/>
            <ObjectFeature name='saveas'/>
            <ObjectFeature name='find'/>
          </ObjectFeatures>
          <ObjectAttributes idAttr='dn' displayNameAttr='ou' objectClassAttr='objectclass'>
            <ObjectAttribute name='ou' type='string'/>
          </ObjectAttributes>
        </ObjectType>
      </ObjectTypes>
        <LoginConfigEntry name='com.waveset.security.authn.WSResourceLoginModule' type='LDAP' displayName='com.waveset.adapter.RAMessages:RES_LOGIN_MOD_LDAP'>
          <AuthnProperties>
            <AuthnProperty name='ldap_uid' displayName='com.waveset.adapter.RAMessages:UI_USERID_LABEL' isId='true' formFieldType='text' dataSource='user'/>
            <AuthnProperty name='ldap_password' displayName='com.waveset.adapter.RAMessages:UI_PWD_LABEL' formFieldType='password' dataSource='user'/>
          </AuthnProperties>
          <SupportedApplications>
            <SupportedApplication name='Administrator Interface'/>
            <SupportedApplication name='User Interface'/>
          </SupportedApplications>
        </LoginConfigEntry>
        <ResourceUserForm>
          <ObjectRef type='UserForm' id='#ID#LDAP User Form'/>
        </ResourceUserForm>
      <MemberObjectGroups>
        <ObjectRef type='ObjectGroup' id='#ID#Top' name='Top'/>
      </MemberObjectGroups>
    </resource>

    few questions....are you getting any errors on the ldap side? object class errors perhaps?
    what app server are you using and what version of java?
    --Dana Reed                                                                                                                                                                                                                                                                                                                                   

  • Navigation buttons and many such icons show up like a add-on bar during start-up

    The icons show up for just a few seconds at the bottom of the browser window.
    Here is the screenshot
    http://postimg.org/image/fx7buzsxj/

    Try start Firefox in Safe Mode, maybe the problem be an addon:
    *[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Firefox in safe mode]
    Maybe there is a corrupt file in your profile try create a new profile:
    *[https://support.mozilla.org/en-US/kb/profile-manager-create-and-remove-firefox-profiles?esab=a&s=profile&r=0&as=s Use the Profile Manager to create and remove Firefox profiles]
    Also try disable the hardware acceleration:
    *[https://support.mozilla.org/en-US/kb/troubleshoot-extensions-themes-to-fix-problems?esab=a&s=hardware+accelaration&r=1&as=s#w_turn-off-hardware-acceleration Turn off hardware acceleration]

Maybe you are looking for