The type Set is not generic; it cannot be parameterized with arguments K ?

When I use Hashtable or HashMap to get the keySet, it shows the error of "The type Set is not generic; it cannot be parameterized with arguments <K>".
The following is my code:
Hashtable table = new Hashtable();
table.put("A", new Integer(1));
table.put("B", new Integer(2));
Iterator its = table.keySet().iterator(); // <<<<<<<<<<<<<< this line shows the error "The type Set is not generic; it cannot be parameterized with arguments <K>"
How can I solve it? Please help me! I have no idea on it. It works fine in 1.4.
Best regards,
Eric

The original is my codes, please help!
public static List findDlicApp(Date startDate, Date endDate, Connection con) {
          String SQL = getSQL("app.sql");
          String where = getSQL("app.sql.where");
          boolean hasWhere = false;
          if (startDate != null) {
               SQL = SQL + " where d.create_date >= to_date('" + DMSUtil.convertDateToString(startDate) + "', 'yyyy-MM-dd')";
               hasWhere = true;
          if (endDate != null) {
               if (hasWhere) {
                    SQL = SQL + " and to_date(to_char(d.create_date, 'yyyy-mm-dd'), 'yyyy-mm-dd') <= to_date('" + DMSUtil.convertDateToString(endDate) + "', 'yyyy-MM-dd')";
               } else {
                    SQL = SQL + " where to_date(to_char(d.create_date, 'yyyy-mm-dd'), 'yyyy-mm-dd') <= to_date('" + DMSUtil.convertDateToString(endDate) + "', 'yyyy-MM-dd')";
               hasWhere = true;
          if (hasWhere) {          
               SQL = SQL + " and " + where;
          } else {
               SQL = SQL + " where " + where;
          SQL = SQL + " " + getSQL("app.sql.order");
          //System.out.println(SQL);
          //Connection con =  getParaDMConnection("findDlicApp");
          HashMap<String, DlicApp> dlicDocs = new HashMap<String, DlicApp>();
          List result = new ArrayList();
          try {
               Statement stmt = con.createStatement();
               ResultSet rs = stmt.executeQuery(SQL);
               long lastDocID = 0;
               boolean hasStartDate = false;
               while(rs.next()) {
                    long docID = rs.getLong("docID");
                    String docName = rs.getString("docName");
                    String refNo = rs.getString("refNo");
                    java.util.Date createDate = rs.getDate("createDate");
                    String creator = rs.getString("creator");
                    String profileType = rs.getString("profileType");
                    String assunto = rs.getString("assunto");
                    String fromEntity = rs.getString("fromEntity");     
                    String location = getLocation(docID, con);
                    long fieldID = rs.getLong("fieldID");
                    String fieldValue = rs.getString("fValue");
                    DlicApp doc = null;
                    if (dlicDocs.containsKey(String.valueOf(docID))) {
                         doc = (DlicApp)dlicDocs.get(String.valueOf(docID));
                    } else {
                         doc = new DlicApp();
                    doc.setId(docID);
                    doc.setDocName(docName);
                    doc.setReferenceNo(refNo);
                    doc.setCreateDate(createDate);
                    doc.setCreator(creator);
                    doc.setProfileType(profileType);
                    doc.setAssunto(assunto);
                    doc.setFrom(fromEntity);
                    //if (doc.getStartDate() == null) {                    
                    //     doc.setStartDate(createDate);
                    doc.setLocation(location);
                    if (fieldValue != null) {                    
                         if (fieldID == 1114) {
                              doc.setChineseName(fieldValue);
                         if (fieldID == 1115) {
                              doc.setPortugueseName(fieldValue);
                         if (fieldID == 1116) {
                              doc.setApplicationCategory(fieldValue);
                         if (fieldID == 1118) {
                              doc.setStatus(fieldValue);
                         if (fieldID == 1119) {
                              Date d = DMSUtil.parseDate(fieldValue, "yyyy-MM-dd");
                              doc.setStartDate(d);
                              hasStartDate = true;
                         if (fieldID == 1120) {
                              Date d = DMSUtil.parseDate(fieldValue, "yyyy-MM-dd");
                              if (!StringUtils.isEmpty(fieldValue)) {
                                   //System.out.println(docName + ":" + fieldValue + ">>>>>>>>>findDlicApp>>>>>>>>>>>>>>>>>>APP END DATE: " + d);
                                   doc.setEndDate(d);
                    if (docID != lastDocID) {                    
                         doc.setRelatedDocs(findRelatedDoc(docID, con));
                         lastDocID = docID;
                    dlicDocs.put(String.valueOf(docID), doc);
               stmt.close();
               rs.close();
               Iterator<String> its = dlicDocs.keySet().iterator();
               while(its.hasNext()) {
                    String id = (String)its.next();
                    DlicApp a = (DlicApp)dlicDocs.get(id);
                    a.setRelatedDocs(findRelatedDoc(a.getId(), con));
                    dlicDocs.put(id, a);
               result.addAll(dlicDocs.values());
               // take out start date is not in the given period
               int n = 0;
               while(true) {
                    if (n < result.size()) {
                         DlicApp a = (DlicApp)result.get(n);               
                         Date sd = a.getStartDate();
                         if (!isWithin(sd, startDate, endDate)) {
                              result.remove(n);
                         } else {
                              n++;
                    } else {
                         break;
          } catch(Exception e) {
               e.printStackTrace();
          if (result.size() > 0) {
               Collections.sort(result, new DmsDocComparator());
          return result;
     }Edited by: EJP on 13/01/2011 14:41: added code tags for you. Please use them next time.

Similar Messages

  • The type Iterator is not generic; it cannot be parameterized with arguments

    Hi all, i have a problem, and i think is a JRE problem
    The error is the following:
    If i share a Web JSF Exadel project enterely, with the .classpath, the .project,
    ect everything go ok. I can Check out the project
    and work with it without problems.
    But if i share only the JavaSource and the Webcontent of the same project
    and the other files and folders like the .classpath, the .project, the ant folder,
    ect are added to the subversion then appear the problem. When i Check out the project and build it (not with shift-alt-x Q but with the Build Project option of the Projec Menu in Eclipse)
    appear an strange error that say: "The type Iterator is not generic; it cannot be parameterized with arguments <E>".
    If i build the project using the build.xml file that came with the project everything is ok, but when i run the project into the Exadel the error
    appear againt.
    The error appear with all the eclipse versions from 3.1 to 3.3 and with all the ExadelStudio Pro versions from 3.5 to 4.0.4 and with the JRE versions 1.5.0_05 and 1.6.0_02
    Any idea will be very appreciated.

    Hi, i think i found a clue to discover the mistery, i deployed the same .war in the ExadelStudio Pro 3.5.1 tomcat and in the ExadelStudio Pro 4.0.1(and 4.0.4) tomcat in the first one everythink work fine but in the second i get the error i described above.
    The ExadelStudio Pro 3.5.1 use Tomcat 5.0 and ExadelStudio Pro 4.0.1 and 4.0.4 use Tomcat 5.5
    There are some problem with the new versions of Tomcat?
    Something related to the use of an old version of the JVM by default?
    There are some problem with the jdk1.5, something related to the posibility that i can't mix code compiled with an old version of jdk with code compiled with the jdk1.5?
    Any suggestion will be very appreciated

  • The type Comparable is not generic; it cannot be parameterized

    I´ve some third party sourcecode which i had to customize. I imported the code into eclipse (ganymede). The project is using a 1.5 SDK. There is some source file which shows the following error just in line 0:
    Description     Resource     Path     Location     Type
    The type Comparable is not generic; it cannot be parameterized with arguments <E>     ContentTransferComponent.java     LEMI_WEB/webcomponent/src/com/documentum/webcomponent/library/contenttransfer     line 0     Java Problem
    By copying the methods into a new class, i was able to track down the problem to the inner interface definition. Removing the inner interface removes the error from the class. However as the interface is implemented by two other classes from the same package, this isn´t really a solution.
    Is this some kind of source code error or maybe i would better have reported this issue into some of the eclipse forums?
    ======
    package com.documentum.webcomponent.library.contenttransfer;
    import *
    * Class ContentTransferComponent.
    * @author pawelz
    * @version $Revision: 12$
    public abstract class ContentTransferComponent extends Component
          implements IContentTransferComponent
        * Component initialisation.
        * @param arg Dictionary of form arguments.
       public void onInit(ArgumentList arg)
          super.onInit(arg);
          initControlsFromConfig();
        * Initializes controls from component's config settings.
       protected void initControlsFromConfig()
          try
             IConfigElement initControls = lookupElement("init-controls");
             if (initControls != null)
                for (Iterator controls = initControls.getChildElements(); controls.hasNext();)
                   IConfigElement ctrl = (IConfigElement) controls.next();
                   String ctrlName = ctrl.getAttributeValue("name");
                   String ctrlType = ctrl.getAttributeValue("type");
                   if ((ctrlName != null && ctrlName.length() > 0)
                         && (ctrlType != null && ctrlType.length() > 0))
                      Class cl = Class.forName(ctrlType);
                      Control control = getControl(ctrlName, cl);
                      for (Iterator props = ctrl.getChildElements(); props.hasNext();)
                         IConfigElement initProp = (IConfigElement) props.next();
                         String propName = initProp.getChildValue("property-name");
                         IConfigElement valueElem = initProp.getChildElement("property-value");
                         if ((propName != null && propName.length() > 0)
                            && valueElem != null)
                            String propValue = valueElem.getValue();
                            //BeanUtils.setProperty(control, propName, propValue);
                            HashMap propMap = new HashMap(1);
                            propMap.put(propName, propValue);
                            BeanUtils.populate(control, propMap);
          catch (ClassNotFoundException e)
             throw new WrapperRuntimeException(e);
          catch (IllegalAccessException e)
             throw new WrapperRuntimeException(e);
          catch (InvocationTargetException e)
             throw new WrapperRuntimeException(e);
        * Creates an instance of transport used by the service.
        * @return transport instance
       protected IServiceProcessor createServiceProcessor()
          Class processorClass = getProcessorClass();
          if (processorClass == null)
             throw new WrapperRuntimeException("Could not create processor");
          IServiceProcessor proc;
          try
             proc = (IServiceProcessor) processorClass.newInstance();
          catch (Exception e)
             throw new WrapperRuntimeException("Could not instantiate processor", e);
          return proc;
       // some code removes due to max. length restricton
        * IBocsWriteModeConfigurator Interface
       public interface IBocsWriteModeConfigurator
           * Gets the Bocs write-mode selection.
           * @return bocs write-mode selected
          BocsWriteMode getMode();
          /** BOCS write modes. */
          public enum BocsWriteMode
             /** BOCS write mode not applicable. */
             NOT_APPLICABLE,
             /** BOCS Synchronous write mode. */
             SYNC,
             /** BOCS Asynchronous write mode. */
             ASYNC
    }

    masijade. wrote:
    georgemc wrote:
    spille2 wrote:
    I imported the code into eclipse (ganymede). The project is using a 1.5 SDK. These two statements make me wonder if you understand that Eclipse uses it's own compiler, not the Sun SDK, and that the JRE used to run Eclipse in, the JRE used to launch your projects in, and the version of the compiler, are all separately configurable, sometimes with unusual results. It's possible to set it up so that, for example, it's compiling code for 1.5 against 1.4 class libraries. Of course, I could be barking up the wrong tree, but this is something to checkWell, it's possible to do that with javac, too, just, there, it's much easier to notice that you're doing it (since you would have to type it in explicitly). ;-)You can make javac run itself in a different JRE?? :-)

  • The method clone() from the type Object is not visible

    Hi,
    This is my 1st post here for a few years, i have just returned to java.
    I am working through a java gaming book, and the "The method clone() from the type Object is not visible" appears, preventing the program from running. I understand "clone" as making a new copy of an object, allowing multiple different copies to be made.
    The error occurs here
    public Object clone() {
            // use reflection to create the correct subclass
            Constructor constructor = getClass().getConstructors()[0];
            try {
                return constructor.newInstance(new Object[] {
                    (Animation)left.clone(),
                    (Animation)right.clone(),
                    (Animation)deadLeft.clone(),
                    (Animation)deadRight.clone()
            catch (Exception ex) {
                // should never happen
                ex.printStackTrace();
                return null;
        }The whole code for this class is here
    package tilegame.sprites;
    import java.lang.reflect.Constructor;
    import graphics.*;
        A Creature is a Sprite that is affected by gravity and can
        die. It has four Animations: moving left, moving right,
        dying on the left, and dying on the right.
    public abstract class Creature extends Sprite {
            Amount of time to go from STATE_DYING to STATE_DEAD.
        private static final int DIE_TIME = 1000;
        public static final int STATE_NORMAL = 0;
        public static final int STATE_DYING = 1;
        public static final int STATE_DEAD = 2;
        private Animation left;
        private Animation right;
        private Animation deadLeft;
        private Animation deadRight;
        private int state;
        private long stateTime;
            Creates a new Creature with the specified Animations.
        public Creature(Animation left, Animation right,
            Animation deadLeft, Animation deadRight)
            super(right);
            this.left = left;
            this.right = right;
            this.deadLeft = deadLeft;
            this.deadRight = deadRight;
            state = STATE_NORMAL;
        public Object clone() {
            // use reflection to create the correct subclass
            Constructor constructor = getClass().getConstructors()[0];
            try {
                return constructor.newInstance(new Object[] {
                    (Animation)left.clone(),
                    (Animation)right.clone(),
                    (Animation)deadLeft.clone(),
                    (Animation)deadRight.clone()
            catch (Exception ex) {
                // should never happen
                ex.printStackTrace();
                return null;
            Gets the maximum speed of this Creature.
        public float getMaxSpeed() {
            return 0;
            Wakes up the creature when the Creature first appears
            on screen. Normally, the creature starts moving left.
        public void wakeUp() {
            if (getState() == STATE_NORMAL && getVelocityX() == 0) {
                setVelocityX(-getMaxSpeed());
            Gets the state of this Creature. The state is either
            STATE_NORMAL, STATE_DYING, or STATE_DEAD.
        public int getState() {
            return state;
            Sets the state of this Creature to STATE_NORMAL,
            STATE_DYING, or STATE_DEAD.
        public void setState(int state) {
            if (this.state != state) {
                this.state = state;
                stateTime = 0;
                if (state == STATE_DYING) {
                    setVelocityX(0);
                    setVelocityY(0);
            Checks if this creature is alive.
        public boolean isAlive() {
            return (state == STATE_NORMAL);
            Checks if this creature is flying.
        public boolean isFlying() {
            return false;
            Called before update() if the creature collided with a
            tile horizontally.
        public void collideHorizontal() {
            setVelocityX(-getVelocityX());
            Called before update() if the creature collided with a
            tile vertically.
        public void collideVertical() {
            setVelocityY(0);
            Updates the animaton for this creature.
        public void update(long elapsedTime) {
            // select the correct Animation
            Animation newAnim = anim;
            if (getVelocityX() < 0) {
                newAnim = left;
            else if (getVelocityX() > 0) {
                newAnim = right;
            if (state == STATE_DYING && newAnim == left) {
                newAnim = deadLeft;
            else if (state == STATE_DYING && newAnim == right) {
                newAnim = deadRight;
            // update the Animation
            if (anim != newAnim) {
                anim = newAnim;
                anim.start();
            else {
                anim.update(elapsedTime);
            // update to "dead" state
            stateTime += elapsedTime;
            if (state == STATE_DYING && stateTime >= DIE_TIME) {
                setState(STATE_DEAD);
    }Any advice? Is it "protected"? Is the code out-of-date?
    thankyou,
    Lance 28

    Lance28 wrote:
    Any advice? Is it "protected"? Is the code out-of-date?Welcome to the wonderful world of Cloneable. In answer to your first question: Object's clone() method is protected.
    A quote from Josh Bloch's "Effective Java" (Item 10):
    "A class that implements Cloneable is expected to provide a properly functioning public clone() method. It is not, in general, possible to do so unless +all+ of the class's superclasses provide a well-behaved clone implementation, whether public or protected."
    One way to check that would be to see if super.clone() works. Their method uses reflection to try and construct a valid Creature, but it relies on Animation's clone() method, which itself may be faulty. Bloch suggests the following pattern:public Object clone() throws CloneNotSupportedException {
       ThisClass copy = (ThisClass) super.clone();
       // do any additional initialization required...
       return copy
    if that doesn't work, you +may+ be out of luck.
    Another thing to note is that Object's clone() method returns a +shallow+ copy of the original object. If it contains any data structures (eg, Collections or arrays) that point to other objects, you may find that your cloned object is now sharing those with the original.
    Good luck.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • I just got a replacement i phone and i was setting it up and I cannot restore it with my iTunes because the soft wear is to old how to i update the soft wear without running the process

    I just got a replacement i phone and i was setting it up and I cannot restore it with my iTunes because the soft wear is to old how to i update the soft wear without running the process

    Hi Balzer1313,
    Thanks for visiting Apple Support Communities.
    If you have an older version of iTunes installed on your computer, you can update it using this menu option:
    Windows: Choose Help > Check for Updates.
    Mac: Choose iTunes > Check for Updates.
    From:
    iTunes: How to install the latest version
    http://support.apple.com/kb/ht5654
    If iTunes is not installed on your computer, you can download it here:
    http://www.apple.com/itunes/download/
    Cheers,
    Jeremy

  • The data source "....." referenced in the form template is not valid or cannot be found

    Greetings,
    I have an InfoPath 2013 form that uses an external data connection.  The data connection became corrupt (somehow, no one knows who changed what).  A user went in to InfoPath designer and created a new data connection and changed all references
    to use that new data connection.  Now the form cannot be published at all with the error
    "The data source "GetUserProfileByName" referenced in the form template is not valid or cannot be found"
    The new data source they created is GetUserProfileByName2 and changed all references.
    Of course, since it is broke, they asked me to see if I can find the issue.  I went through the form looking to see if they missed any references to the old data connection and can't find anything.
    Where is InfoPath storing the old data connection information and where can I remote it?  I looked in the manifest and don't see it there either.
    Any thoughts?
    Thank you!

    Hi Bob,
    There are many XML schema files for the data connection, I recommend to check if the references to the XML files have been changed to the new schema files in the manifest file.
    For example, if we create a data connection called GetUserProfileByName, then there will be one XML file and three XML schema files for the data connection.
    Please make sure that all the references are updated in the manifest file.
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • The requested URL was not found, or cannot be served at this time.

    Hi,
    While processing the Reports request, the Reports CGI gives
    the following error -
    The requested URL was not found, or cannot be served at this
    time.
    The error is shown only when the URL exceeds more than 1500 -
    2000 something. If i remove some of the parameters to make the
    URL shorter then it works fine. Is there any limitation
    regarding the length(number of characters) of the URL send to
    RWCGI60. Immediate help would be appreciated.
    Thanks in advance,
    Aniruddha.

    hello,
    there is a limitation of the URL length. this limitation is
    depending on the HTTP protocol and the used browser. it has
    nothing to do with oracle reports.
    a work around would transfer the parameter in the HTTP header.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Outlook error "The Delegate settings were not saved correctly. cannot activate send-on-behalf-of list. The operation failed"

    Hi,
    Re: "The Delegate settings were not saved correctly. cannot activate send-on-behalf-of list.  The operation failed" 
    I have a client who is getting the above error when attempting to change delegate permissions in Outlook 2010.
    She is also getting this error when she tries to remove a delegate.
    I have tried recreating her mail profile.
    I have also tried kb2593557. The auto fix didn't work at all and the registry fix only removes the error message and not the problem. This client would like to be able to edit her delegate permissions.
    She is on Exchange 2010
    Any assistance would be appreciated.

    The article you provided is not related to the error message that the user is getting it.
    Can you please provide better solution? I know this answer and this post is old but I am having same issue.
    The error message is only (The Delegates settings were not saved correctly. cannot activate send-on-behalf-of list. The operation failed) I was not able to attach screen shot.

  • The ringer setting is not working on my iPhone 4s

    My iPhone fell into my pond for less than 10 secs. I pulled it out in time to dry it off and shake some of the water out. I made sure the screen was still working and sounds were functioning then I turned it off and left it in a bag or rice for 24 hrs. The next day I took it out and it was working fine. Now suddenly today, the ringer setting is not working. When I go into settings>sounds I press on ringtone and it seems to be working. Speakers are fine and when someone calls I have no problem. I can also hear the ringtones. But when someone txts me or when I get notifications it doesn't have any sound? The alarms don't work and the sounds in apps don't work. When I put the charger in, it doesn't make a sound. It vibrates only except when someone calls me... My headphone jack seems to be working fine because I can hear everything even the text tones and sounds in apps... What should I do? How much will I have to pay to get someone at apple to fix this problem? I'm assuming there is still some moisture in the phone maybe? It was working for a week until today I'm not planing to upgade to the iPhone 5 anytime soon. Btw, the volume buttons do work it's just when I press on it, it doesn't show the bars when you press up or down... it's just blank.

    If it's physically stuck it might be best to bring it into the Apple store at George Street Sydney.
    Set up an appointment with the Apple store via the website http://www.apple.com/au/support/contact/

  • "there was a problem connecting to the server. URLS with the type 'file' are not supported"

    i have a new macbook pro 13" and every 6 minutes or so it pops up a window that says "there was a problem connecting to the server. URLS with the type 'file' are not supported". it never seems to cause any problems but is supremely annoying. how can i make this come to an end?

    I tried someone's solution of taking another external disc and plugging it in, then when it showed up and time machine asked if I wanted to use it or that someone might be trying to trick me, I chose not use it.  Then I  shut down my computer, plugged in the original Lacie, and rebooted the computer and all seems to work fine now-- the Lacie appears on my desktop and all seeems to be in working order. Who knows why or anything else,- as weird as it gets- but for now things seemed fixed--- maybe others can try this too-- it worked for me so far.

  • "There was a problem connecting to the server.   URLs with the type "file:" are not supported.  Why?  What can be done to eliminate it?

    After upgrading to Mountain Lion, I repeatedly get this message:  "There was a problem connecting to the server.   URLs with the type "file:" are not supported. 
    Why? 
    What can be done to eliminate it?

    Open the Time Machine pane in System Preferences. If it shows that Time Machine is ON, click the padlock icon in the lower left corner, if necessary, to unlock it. Scroll to the bottom of the list of backup drives and click Add or Remove Backup Disk. Remove all the disks, then add them back. Quit System Preferences. Test.

  • Message - There was a problem connecting to the server. URLs with the type "file:" are not supported

    new macbook pro receving this message: There was a problem connecting to the server. URLs with the type "file:" are not supported. What is causing this and how do

    Open the Time Machine pane in System Preferences. If it shows that Time Machine is ON, click the padlock icon in the lower left corner, if necessary, to unlock it. Scroll to the bottom of the list of backup drives and click Add or Remove Backup Disk. Remove all the disks, then add them back. Quit System Preferences. Test.

  • There was a problem connecting to the server. URLs with the type "file:" are not supported. OK

    I have just upgraded to Mountain Lion from Leopard, but now I keep getting this message when I open some web-pages and every time I wake the Mac up after going to sleep. For some odd reason I get it in Swedish sometimes (installed language) and some times in English...
    There was a problem connecting to the server.
    URLs with the type "file:" are not supported.
    OK
    What is this and how can I get rid of it. I use Firefox and have updated to latest version.

    Open the Time Machine pane in System Preferences. If it shows that Time Machine is ON, click the padlock icon in the lower left corner, if necessary, to unlock it. Scroll to the bottom of the list of backup drives and click Add or Remove Backup Disk. Remove all the disks, then add them back. Quit System Preferences. Test.

  • Since installing Lion I keep getting the error message 'there was a problem connecting to the server. URLs with the type 'file:" are not supported"' How can I fix this?

    since installing Lion I keep getting the error message 'there was a problem connecting to the server. URLs with the type 'file:" are not supported"' How can I fix this?

    A Davey1 wrote:
    Not a nice answer!
    Posting "Check the 'More like this'" area and not simply providing the answer is a great way to make these groups worthless.
    You're ignoring context.  On the old Apple Discussion Groups I never posted replies like that, instead giving people relatively detailed answers.  The new Apple Support Communities made things worse by introducing certain inefficiencies.  Then came Lion.  The flood of messages that came with Lion required a painful choice for any of the people who had been helping here: (1) Give quality responses to a few questions and ignore the rest.  (2) When applicable, give a brief answer such as the one that you found objectionable.  (3) Give up all the other normal activities of life and spend full time trying to answer questions here.
    People who needed help with Lion problems seemed to have trouble discovering existing message threads that described how to solve their problems.  I never posted the suggestion of "Check the 'More like this' area" without verifying that the help that the poster needed could be found there.  Even doing that, what I posted saved me time that I could use to help someone else.
    The people helping here are all volunteers.  None of them is being paid for the time they spend here.  They all have a life outside of Apple Support Communities.  It's arrogant of you to demand that people helping here spend more time than they already do.

  • Error: The requested URL was not found, or cannot be served at this time.

    Hi gurus,
    I have a report that has a parameter file. When I call the report the parameter form is displayed but after I enter the parameter values and click SUBMIT QUERY, I receive this error:
    Error: The requested URL was not found, or cannot be served at this time.
    Oracle Reports Server CGI - Reports Server name is not specified.
    If I run the report without parameter file it runs fine.
    Does anyone have an idea on how I can make this work.
    Thanks

    * Can you please tell what version of Reports you are using ie 6i or 9i and the exact version [ In builder give Help->About] . In this problem we cannot deduce anything from the version. But if it is very old, we can recommend installing the latest patch.
    * Please post the full command line request. If you have used any keys in cgicmd.dat , please post the expansion of that keys also.
    * If possible as a workaround give paramform=no&paramName=paramValue ... in request till this problem is resolved.
    Thanks
    The Oracle Reports Team

Maybe you are looking for

  • Flash player does not work after I installed it

    Flash player does not work after I installed it

  • Why doesn't this simple script script work

    I'm pretty new to actionscript, I learned it from books, actually I still am. The script I'll try to work out for my site, worked fine in the lessons of the books. I don't think my buttons are any different, but why don't they work then. Can anybody

  • Windows 8.1 Boot Issues

    I have Windows 8.1 Pro with all automatic updates successfully installed, running on: Sabertooth Z77 motherboard GEForce GTX 770 video Intel i7-3770K LGA1155 Xonar DSX PCIE 7.1 audio card Corsair TX850 power 16GB of Corsair Vengeance DDR3 DRAM More t

  • DDNS: DDNS has been disabled........Need help figuring out error message

    Already set up nannycam (Cisco WVC80N).  Fowarding connection from port 80 to 1024 on router which is same as camera port.  Have populated all necessary fields (email, TZO Key and domain name.  Received Routers External IP Address, however when saved

  • Sun Application Server 9.0 and Creator

    I am using the webui.jar and other libraries from Creator in applications that will be deployed on Sun Application Server 9.0. These applications worked fine on Sun Application Server 8.2 When I try to deploy them on 9.0, they will work except code i