Cfdirectory action=list not working with directories that contain an ampersand

Our IT group just upgraded one of the our file share servers from Windows Server 2008 R2 to Windows Server 2012 R2.  We quickly noticed a problem with CFDIRECTORY listing the contents of directories that contain an ampersand (e.g. //192.168.1.10/Simon & Garfunkel/).  We are using ColdFusion 10 Update11 on Windows Sever 2012 R2 and everything worked fine prior to this upgrade.  In addition, we created the same directory locally and tried running CFDIRECTORY and the same problem occurred.  The cfm page doesn't crash or report an exception in the log, it just doesn't return any results.  Thanks in advance for help on this issue.

Thanks Adam, I just found the problem. I think it was a
problem in the database, though I'm not sure why it works on the
development and not on the production. The field that I pull the
"thename" value from is a type varchar(10) and when cfoutputted
like this [#thename#] it would result in [O MAN], however I tried
outputting it into a textbox field and it showed [O MAN ] (<---
actually "O MAN" followed by 5 spaces). The value was padded to ten
characters. I'm baffled. Varchar is supposed to be variable width
only using the number of actual characters without padding, right?
Of my own folly I was trimming the results of the #thename#
#codeno# pair and not thename itself. Once I set thename to
trim(thename) it worked, of course. I'm still very confused why
this works in the development environment and not in production,
and to why the padding to begin with. But, I will not borrow any
more trouble and just be happy it is resolved!
Thanks for all your help!

Similar Messages

  • Group messaging not working with groups that contain non iphone users

    I have an Iphone 5 and for some reason I can't send/receive group messages with groups that contain non Iphone users.  Basically I recieve single text messages/imessage from each person who responds to the group message.  This is incredibly annoying.

    Hello, megbu36. 
    Thank you for visiting Apple Support Communities.
    Check to make sure that group messaging is enabled.  Go to Settings > Messages and turn on Group messaging.
    iOS: Understanding group messaging
    http://support.apple.com/kb/HT5760
    Cheers,
    Jason H.

  • Re: EJB Control not working with methods that contain arguments

    John,
    I'm not qualified to answer your EJB control question, but before you
    become too disillusioned with page flows I'd like to mention that the
    request scoped data form and and the return-to="page" issues you
    mentioned have been addressed for the next service pack. We've
    introduced the ability to specify a page flow scoped form bean which
    lives for the life of the page flow, and we've clarified the return-to
    values to include both "currentPage" and "previousPage" which should
    clarify the expected behavior.
    I hope you give it a try.
    Thomas
    John Hundley wrote:
    Oh well guess you guys gave up on this one. Thats ok, I have utilized a workaround
    that forgoes your non working controls just like I have workarounds for your dataforms
    that do not maintain their data between pages, your retrun to page that does not
    work etc.... At this rate I should have just used struts and JBoss.
    "John Hundley" <[email protected]> wrote:
    oop's attached the wrong one here is the right one.
    "John Hundley" <[email protected]> wrote:
    Ok I have attached one of my beans.
    "Anurag" <[email protected]> wrote:
    John,
    For a stateless session bean, the ejbCreate() method is called for
    every
    individual method call. This is because the bean instance is returned
    to the
    pool after every method call, it does not hold any state.
    I am still surprised about the behaviour you are seeing.
    Can you just attach your stateless session bean. You need not sendthe
    dependent files, since we only want to sniff the call made to the stateless
    EJB method, and are not concerned with the implementation.
    Regards,
    Anurag
    "John Hundley" <[email protected]> wrote in message
    news:[email protected]...
    Anurag,
    I am using the GA release. My control looks identicle toTraderEJBControl.jcx
    except of course it is extending a different home and bean interface.The
    bean
    itself does not exacly match the traderbean but it does look very
    similar
    to MusicBean.java
    in the tutorialsApp. One thing that has me a bit confused is the
    fact
    the
    create()
    method is being called every time I make a method call on the control.Shouldn't
    the bean only be created once at the first method call and persistfor the
    life
    of the session?
    John
    "Anurag" <[email protected]> wrote:
    John,
    Have you tried running the ejbControl/TraderEJBClient.jws in SamplesApp.
    It
    does involve calling methods on the stateless EJB TraderEJB through
    an
    EJB
    control, which accept parameters and run fine.
    Could you also confirm that you are using the 8.1 GA release, andnot
    the
    beta.
    Regards,
    Anurag
    "John Hundley" <[email protected]> wrote in message
    news:[email protected]...
    Raj,
    I cannot attach them here. I am not sure how you would test them
    anyway
    as I
    would have to send you my Oracle schema and you would have to
    set
    up
    a
    database
    instance. There is no way I can do that. If you could please
    send
    me an
    e-mail
    I can attach the relevant files in reply and you could take a
    look
    at them
    and
    see if you see any obvious problems.
    Thanks,
    John
    "Raj Alagumalai" <[email protected]> wrote:
    John,
    Can you attach the ejb jar, the jcx and the jws files that you
    have
    created.
    I will test and get back to you.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "John Hundley" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    I have created an EJB control on a stateless session bean.
    For
    some
    reason when
    I attempt to call a method on my control that takes any number
    of
    arguments I
    get a java.lang.IllegalArgumentException yet if I call a method
    that
    takes
    no
    arguments everything works fine. I used the debugger to walk
    through
    the
    code
    and have discovered that every time I call any method on the
    control
    the
    create()
    method gets called, this is exactly where the error is occurring.It is
    almost
    like the control is trying to pass my method args to the create()
    method
    instead
    of the method I am calling. I have tested all of the methods
    in
    the
    ejb
    by manually
    coding everything (getInitialContext ejb.create etc) in a .jsp
    and
    calling
    all
    of the methods within that .jsp. There they all work fine
    so
    I
    am
    pretty
    sure
    the control is doing something funky. Any ideas as to what
    is
    going
    on
    and how
    I can fix it?
    Thanks,
    John

    Was this issue ever resolved ? We are running into the same problem.
    The last response is "I'm not qualified to answer your EJB control question."
    Can this be escalated to someone who can please ?
    Regards
    Shahriar

  • EJB Control not working with methods that contain arguments

    Hi,
    I have created an EJB control on a stateless session bean. For some reason when
    I attempt to call a method on my control that takes any number of arguments I
    get a java.lang.IllegalArgumentException yet if I call a method that takes no
    arguments everything works fine. I used the debugger to walk through the code
    and have discovered that every time I call any method on the control the create()
    method gets called, this is exactly where the error is occurring. It is almost
    like the control is trying to pass my method args to the create() method instead
    of the method I am calling. I have tested all of the methods in the ejb by manually
    coding everything (getInitialContext ejb.create etc) in a .jsp and calling all
    of the methods within that .jsp. There they all work fine so I am pretty sure
    the control is doing something funky. Any ideas as to what is going on and how
    I can fix it?
    Thanks,
    John

    Oh well guess you guys gave up on this one. Thats ok, I have utilized a workaround
    that forgoes your non working controls just like I have workarounds for your dataforms
    that do not maintain their data between pages, your retrun to page that does not
    work etc.... At this rate I should have just used struts and JBoss.
    "John Hundley" <[email protected]> wrote:
    >
    >
    >
    oop's attached the wrong one here is the right one.
    "John Hundley" <[email protected]> wrote:
    Ok I have attached one of my beans.
    "Anurag" <[email protected]> wrote:
    John,
    For a stateless session bean, the ejbCreate() method is called for
    every
    individual method call. This is because the bean instance is returned
    to the
    pool after every method call, it does not hold any state.
    I am still surprised about the behaviour you are seeing.
    Can you just attach your stateless session bean. You need not sendthe
    dependent files, since we only want to sniff the call made to the stateless
    EJB method, and are not concerned with the implementation.
    Regards,
    Anurag
    "John Hundley" <[email protected]> wrote in message
    news:[email protected]...
    Anurag,
    I am using the GA release. My control looks identicle toTraderEJBControl.jcx
    except of course it is extending a different home and bean interface.The
    bean
    itself does not exacly match the traderbean but it does look very
    similar
    to MusicBean.java
    in the tutorialsApp. One thing that has me a bit confused is the
    fact
    the
    create()
    method is being called every time I make a method call on the control.Shouldn't
    the bean only be created once at the first method call and persistfor the
    life
    of the session?
    John
    "Anurag" <[email protected]> wrote:
    John,
    Have you tried running the ejbControl/TraderEJBClient.jws in SamplesApp.
    It
    does involve calling methods on the stateless EJB TraderEJB through
    an
    EJB
    control, which accept parameters and run fine.
    Could you also confirm that you are using the 8.1 GA release, andnot
    the
    beta.
    Regards,
    Anurag
    "John Hundley" <[email protected]> wrote in message
    news:[email protected]...
    Raj,
    I cannot attach them here. I am not sure how you would test them
    anyway
    as I
    would have to send you my Oracle schema and you would have to
    set
    up
    a
    database
    instance. There is no way I can do that. If you could please
    send
    me an
    e-mail
    I can attach the relevant files in reply and you could take a
    look
    at them
    and
    see if you see any obvious problems.
    Thanks,
    John
    "Raj Alagumalai" <[email protected]> wrote:
    John,
    Can you attach the ejb jar, the jcx and the jws files that you
    have
    created.
    I will test and get back to you.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "John Hundley" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    I have created an EJB control on a stateless session bean.
    For
    some
    reason when
    I attempt to call a method on my control that takes any number
    of
    arguments I
    get a java.lang.IllegalArgumentException yet if I call a method
    that
    takes
    no
    arguments everything works fine. I used the debugger to walk
    through
    the
    code
    and have discovered that every time I call any method on the
    control
    the
    create()
    method gets called, this is exactly where the error is occurring.It is
    almost
    like the control is trying to pass my method args to the create()
    method
    instead
    of the method I am calling. I have tested all of the methods
    in
    the
    ejb
    by manually
    coding everything (getInitialContext ejb.create etc) in a .jsp
    and
    calling
    all
    of the methods within that .jsp. There they all work fine
    so
    I
    am
    pretty
    sure
    the control is doing something funky. Any ideas as to what
    is
    going
    on
    and how
    I can fix it?
    Thanks,
    John

  • Adium and Yahoo instant messenger contact lists not working with Leopard

    After I installed Leopard, I tried to run Adium. When I tried to click on the icon and pop up my contact list to select a contact, nothing happens. I am now only able to receive messages and reply to received messages. I cannot get my contact list to pop up when clicking the icon in the dock (like I did with Tiger).
    I had the same issue when using the latest Yahoo! messenger for Mac. Anyone else seeing this, or know of a fix?

    Hello tross415 and welcome to the Palm forums.
    What you are seeing is, if I recall correctly, a bug from Palm webOS 1.3.1 that has not yet been addressed.  If you launch Messaging on the Pre, and then select Preferences & Accounts > Add IM Acoun you will not get a button to add a Yahoo! IM account.
    The work around for this issue, and to add Yahoo IM support to your Pre is to add a Yahoo email or calendar account.  When you do, the IM account will also be created.  That is the process that worked for me when Palm introduced Yahoo IM support with webOS 1.3.1.
    Hope that helps,
    Alan G

  • T (minimalist console task list) not working with python3

    Lifehacker posted about this link to t, which is exactly the kind of python scripted task list I want to run in Arch.  I grabbed it off his site, but have run into troubles when running it.  I e-mailed him a couple times about the problem, but feel ready to post it on here and get some feedback. 
    -the e-mails-
    print p + task['text']
             ^
    I tried replacing p with the full string only to get the same error.
    do you happen to be using Arch Linux?  Arch recently make Python
    3 the default system Python, and t isn't written for Python 3 (the print
    statement is one of the things that has changed).
    If so, you should be able to switch the first line of the script to:
       #!/usr/bin/env python2
    and that should make it use Python 2.x.
    Yes, I am on Arch.  Thanks for the reply!  I changed the first line of t.py to use python2 and now get some new errors.
    $t workplease
    Traceback (most recent call last):
      File "/home/stopbot/.config/t/t.py", line 289, in <module>
        _main()
      File "/home/stopbot/.config/t/t.py", line 278, in _main
        td.write(options.delete)
      File "/home/stopbot/.config/t/t.py", line 219, in write
        with open(path, 'w') as tfile:
    IOError: [Errno 20] Not a directory: '/home/stopbot/tasks/today'
    My bash alias is
    alias t='python $XDG_CONFIG_HOME/t/t.py --task-dir ~/tasks --list today'
    It does not exist.  I mapped (and created) tasks directory to ~/documents/tasks.  Should I try creating the actual list txt files as well (today).  I'm executing
    alias t='python $XDG_CONFIG_HOME/t/t.py --task-dir ~/documents/tasks --list today'
    Output is the same old error:
    $ t work
      File "/home/stopbot/.config/t/t.py", line 208
        print p + task['text']
    If I change the alias within bashrc to
    alias t='python2 $XDG_CONFIG_HOME/t/t.py --task-dir ~/documents/tasks --list today'
    $ t work
    Traceback (most recent call last):
      File "/home/stopbot/.config/t/t.py", line 289, in <module>
        _main()
      File "/home/stopbot/.config/t/t.py", line 278, in _main
        td.write(options.delete)
      File "/home/stopbot/.config/t/t.py", line 219, in write
        with open(path, 'w') as tfile:
    IOError: [Errno 13] Permission denied: '/home/stopbot/documents/tasks/today'
    So, perhaps I need to create the actual txt file for the list I want to use within the task directory?
    Note, creating a txt file called today in the task directory did not help.

    kinhodder has created an excellent minimalist todo list with python. Works like a charm.
    https://bbs.archlinux.org/viewtopic.php?id=115747
    Last edited by rickdg (2011-03-29 08:07:37)

  • Scenebuilder not working with FXML that works fine otherwise

    Hi ~
    I'm using the Mac version of Scenebuilder (1.0), integrated with NetBeans, and although it works fine for simple (sample) apps, for my application it does not.
    IOW, I can run my application fine, looks great, but Scenebuilder gives the following error when I attempt to open the FXML file with Scenebuilder (rather than edit it with NetBeans):
    "Error loading file"
    "Cause is File is not a valid FXML file"
    How do I troubleshoot this? (Also, is there a thread or link that shows how to download and install over my current version with the latest 'trunk' version of Scenebuilder for Mac OS X -- Lion in my case -- to try out later builds?)
    Thanks
    ~ Brad
    PS UPDATE: What I'm running (w/JavaFX 2.2):
    Product Version: NetBeans IDE 7.2 (Build 201207171143)
    Java: 1.7.0_06; Java HotSpot(TM) 64-Bit Server VM 23.2-b09
    System: Mac OS X version 10.7.4 running on x86_64; US-ASCII; en_US (nb)
    Edited by: 960618 on Sep 21, 2012 10:32 AM

    I edited your sample fxml and made some changes (replaced the commented out lines other lines) which allowed the fxml to at least load in SceneBuilder.
    <?xml version="1.0" encoding="UTF-8"?>
    <?import java.lang.*?>
    <?import java.util.*?>
    <?import javafx.scene.*?>
    <?import javafx.scene.control.*?>
    <?import javafx.scene.layout.*?>
    <?import javafx.scene.image.*?>
    <?import javafx.scene.text.*?>
    <?import javafx.scene.paint.*?>
    <AnchorPane id="AnchorPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="600.0" prefWidth="1000.0" xmlns:fx="http://javafx.com/fxml">
      <ImageView fitHeight="58.5" fitWidth="152.0" layoutX="15.0" layoutY="15.0" pickOnBounds="true" preserveRatio="true">
      <image>
        <Image url="@mygraphic.jpg" preserveRatio="false" smooth="false" />
      </image>
      </ImageView>
    <!--  <Label fx:id="label1" alignment="CENTER" contentDisplay="CENTER" layoutX="167.0" layoutY="15.0" minHeight="16.0" minWidth="583.0" prefHeight="33.0" prefWidth="304.0" text="my title text" textFill="#004166">-->
      <Label id="label1" alignment="CENTER" contentDisplay="CENTER" layoutX="167.0" layoutY="15.0" minHeight="16.0" minWidth="583.0" prefHeight="33.0" prefWidth="304.0" text="my title text" textFill="#004166">
        <font>
          <Font name="Optima Bold" size="28.0"/>
        </font>
      </Label>
      <Label id="label2" alignment="CENTER" contentDisplay="CENTER" layoutX="167.0" layoutY="48.0" minHeight="16.0" minWidth="583.0" prefHeight="33.0" prefWidth="302.0" text="my subtitle">
        <font>
          <Font name="Optima Bold Italic" size="22.0"/>
        </font>
        <textFill>
    <!--      <Color blue="0.400" green="0.255" red="0.000" fx:id="x1" />-->
          <Color blue="0.400" green="0.255" red="0.000" />
        </textFill>
      </Label>
      <VBox id="VBox" alignment="CENTER" layoutX="0.0" layoutY="104.0" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefWidth="217.0" spacing="4.0">
        <children>
    <!--      <Label id="myLabel"   alignment="CENTER_RIGHT" contentDisplay="CENTER" font="$x2" minHeight="-Infinity" minWidth="-Infinity" prefHeight="22.0" prefWidth="185.0" text="label text:" textFill="$x1" VBox.vgrow="SOMETIMES" />-->
          <Label id="myLabel"   alignment="CENTER_RIGHT" contentDisplay="CENTER" font="$x2" minHeight="-Infinity" minWidth="-Infinity" prefHeight="22.0" prefWidth="185.0" text="label text:" VBox.vgrow="SOMETIMES" />
        </children>
      </VBox>
      <VBox id="VBox" alignment="CENTER" layoutX="202.0" layoutY="104.0" prefHeight="235.0" spacing="4.0">
        <children>
          <ChoiceBox id="myChoiceBox" minHeight="-Infinity" minWidth="-Infinity" prefHeight="22.0" prefWidth="240.0" />
          <TextField id="myTextField" minHeight="-Infinity" minWidth="-Infinity" prefHeight="28.0" prefWidth="240.0" promptText="myPromptText" />
    <!--      <ChoiceBox fx:id="myChoiceBox" minHeight="-Infinity" minWidth="-Infinity" prefHeight="22.0" prefWidth="240.0" />
          <TextField fx:id="myTextField" minHeight="-Infinity" minWidth="-Infinity" prefHeight="28.0" prefWidth="240.0" promptText="myPromptText" />-->
        </children>
      </VBox>
    <!--    <Button layoutX="40" layoutY="505" text="Detect" onAction="#handleDetect" fx:id="buttonDetect" />
        <TextArea layoutX="465" layoutY="104" minHeight="390" minWidth="450" fx:id="textAreaLog" />
        <TextArea layoutX="465" layoutY="503" minHeight="55" minWidth="450" prefHeight="56" prefWidth="450" fx:id="textAreaMessage" promptText="Notifications" />-->
        <Button layoutX="40" layoutY="505" text="Detect" onAction="#handleDetect" id="buttonDetect" />
        <TextArea layoutX="465" layoutY="104" minHeight="390" minWidth="450" id="textAreaLog" />
        <TextArea layoutX="465" layoutY="503" minHeight="55" minWidth="450" prefHeight="56" prefWidth="450" id="textAreaMessage" promptText="Notifications" />
    </AnchorPane>While I was doing it SceneBuilder kept up popping up a number of error messages when it couldn't load it. Useful error messages were the ones which told you that you were missing an import (an autofix feature on the missing import might be a nice to have thing - I seem to recall NetBeans saying they might add extra editing features for fxml which included that). Another useful error message was when the line number of the error was reported, then at least the error could be localized. When the column number was reported with the line number it was usually the last column in the line and not the column index of the specific attribute in error, so that was less useful. Some of the error messages which were generated included fxml attribute info and that wasn't all that clear. Only one error message at a time was reported, rather than all errors in the file leading to a few fix edit and reload cycles. The automatic reloading in SceneBuilder of the file edited in NetBeans made these reload cycles pretty instantaneous which was nice.
    The most useless error spat out by SceneBuilder was the following:
    Error loading file 'C:\dev\javafx\JavaFXSamples\src\SceneTest_1.fxml'.
    C:\dev\javafx\JavaFXSamples\src\SceneTest_1.fxml:0: error:
         java.lang.ArrayIndexOutOfBoundsException: -1The above was reported because i placed an xml comment at the end of an otherwise perfectly good fxml file . . . who would have thought . . .

  • FireFox Select List not working with Spry XML Data set.

    I am having a problem with FireFox.  I have a set of related select lists that allows a user to pick a state and then a market.  The work in all browsers except FireFox.  I'm totally stumped.  Here is the link. Any assistance greatly appreciated!
    http://myxpertise.pointinspace.com/create.php
    Thanks,
    Joe

    <span spry:region="dsCities dsStates dsStates" id="citySelector">
         <select spry:repeatchildren="dsCities" id="citySelect" name="citySelect" tabindex="5" >
          <option spry:if="{ds_RowNumber} == {ds_CurrentRowNumber}" value="{name}" selected="selected" tabindex="5" >{name}</option>
          <option spry:if="{ds_RowNumber} != {ds_CurrentRowNumber}" value="{name}" tabindex="5" >{name}</option>
        </select>
    that should be a spry:detailregion, and you have a double dsStates
    And when you are using multiple datasets inside a region, it might wise to prefix you template tags with the correct dataset
    {ds_RowNumber} => {dsStates::ds_RowNumber}

  • Selection color not working with table that has DefaultTableModel

    hi folks,
    I noticed if a table has a AbstractTableModel, when you select a row, by default the highlight color is light blue. However, if a table has a DefaultTableModel, even if you invoke table.setSelectionBackgroun(color) and table.setSelectionForefround(color), the highlight color stays invisible. is this a bug? what's the cause of this problem?
    thanks!!

    Read this section from the Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/components/table.html#renderer]Using Table Renderers. Here is a simple example to get you started
        class SimpleRenderer extends DefaultTableCellRenderer
            public Component getTableCellRendererComponent(
                JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column)
                super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
                if (hasFocus)
                    setBackground( Color.cyan );
                else if (isSelected)
                    setBackground( table.getSelectionBackground() );
                else
                    setBackground( table.getBackground() );
                return this;
        }

  • Microsof VX 3000 or 6000 Webcam does not work with Lync 2013 under Windows 8.1

    Hi,
    The problem is that i cannot use the Microsoft VX-3000 or VX-6000 with Lync 2013 under Windows 8.1.
    If i go in settings under Video i can see the preview from the webcam just fine, so it works there no problem.
    Wenn i try to enable my camera in a conference it does not work, i get an error: Your video cannot be started.
    Now, there are no Windows 8.1 drivers for the Webcam so i installed the latest Windows 7 drivers. Because of that this webcam does not work with apps, that is fine i understand the driver problem and the way the new apps work.
    But this Webcam works with skype under Windows 8.1 and it works with Lync 2010 client.
    The same Webcam works just fine with Lync 2013 under Windows 7.
    Is there anything i could do so that i get this Webcam to work with Lync 2013 desktop client under Windows 8.1?
    Thanks

    Hi,
    According to your description, it may be caused by driver.
    You can try to install the latest version of Display Driver to fix the display issue.
    Since there is no driver for Windows 8.1, I suggest you wait for updating.
    You can also post a case on Windows 8 forum, thank you for your understanding:
    http://social.technet.microsoft.com/Forums/en-US/home?forum=W8ITProPreRel%2Cw81previtpro&filter=alltypes&sort=lastpostdesc
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Since Reader X previous view tool not working with linked documents

    We have many linked pdf documents. After upgrading to Acrobt Reader X we can´t go back to the parent document by using the "previous view" command. In older versions we can use this function to navigate back. Is there an option in the preferences to reactivate this possibility?  

    I have been told by Adobe support that this is not a bug, but a security feature.
       Our company has, over many years, developed for our most important software application a PDF help system with hundreds of books and thousands of pages. There are myriad links between and within the books. In order to make navigation through this morass easier, we have provided our users a starting "Main Menu" with links to the books. We also set it up so that only one PDF is open at any given time ("open in same window" option), otherwise a user could end up with hundreds of open PDF documents on their taskbar or desktop. We also have our users take advantage of the "Previous View" mechanism to make it easier to navigate while keeping only one window open at a time.  (The browser "Back" button trick will not work with PDFs that have been closed).
      However, Since version X of the Reader, the Previous View mechanism will not work with PDFs that have been closed. That is, you can only get back to a previous view in another PDF if it is still open. As mentioned above, this could leave our users with hundreds of open PDFs, and thus it is not an option for us. But Adobe has ignored our pleas.
      You must vote with your feet; that is all Adobe understands. Adobe does not care about our needs and we have given up on them. We are currently telling our users:
      "If you use a non-Adobe PDF reader, you will be able to install it on a system alongside any version of Adobe Reader, including version 10. We have found that Tracker Software makes an excellent free product called PDF-XChange Viewer, which may be downloaded HERE. PDF-XChange has a smaller footprint, is faster, and has more features than Adobe Reader, including a 64-bit version for Windows XP/Vista/7.
      To set up this program to optimally use our help system, go to Preferences, and under "General," specify that the Documents Layout be Single rather than Multiple. Then you will be able to use the Alt keys with the arrows, or the Previous/Next View buttons on the toolbar, with closed PDFs."

  • Binding gateway service with List not working properly with expand

    Hi all,
    We have an orderlist with details, we use the splitapp for it, it's working nicely with a gatewayservice. We have now added with expand 2 orderpartners. I see the 2 partners, only is it completly the same data. I checked the oData structure and I see indeed that the 2 partners are the same. This is weird, because when I execute the service, via my browser, I see 2 different partners.
    If I execute the service directly via the read function, I see in the oData that I also have 2 different partners. So my conclusion is that the direct read of the service is working and executing the service via the sap.m.List is not working with the expand.
    Now my question is, does somebody know what's going wrong here, or is it a bug in the sap.m.List? Below you find code snippets how I call the service.
    This call is working:
    oModel.read("/OrderListSet", null, ["$orderby=BegTstmp asc&$filter=Userid eq 'user' and DateFrom eq datetime'2014-04-20T00:00:00' and DateTo eq datetime'2014-04-27T00:00:00'&$expand=OrderPartners"], null, function(oData, oResponse){  
      }, null );
    The binding via the sap.m.list is:
    var oList = new sap.m.List("orderList", {
      mode: "{device>/listMode}",
                items: {
            path: "/OrderListSet",
               parameters: {expand: "OrderPartners"},
            template : new sap.m.StandardListItem({
            title: {
                   parts: [
                           {path: "BegTstmp", type: new sap.ui.model.type.DateTime({pattern: "H:mm"})},
                           {path: "DataCol2"}
                   formatter : function(strDate, strDescription) { return strDate + " - " + strDescription; }
            description: {
            parts: [
                          "DataCol3",
                          "DataCol4",
                          "DataCol5",
                          "DataCol6"
            type: sap.m.ListType.Navigation,
            icon: "{icon}",
            customData: [
            new sap.ui.core.CustomData({
            key: "orderId",
            value: "{Orderid}"
            new sap.ui.core.CustomData({
            key: "type",
            value: "{Type}"
            // Sort the list on date and group the list on day
                   sorter: new sap.ui.model.Sorter("BegTstmp", false, oGrouper),
                   // Filter the list, this directly refrenced to the gatewayservice
            filters: [
                     util.Filter.getUserId(),
                     util.Filter.getCurrentWeekFromFilter(),
                     util.Filter.getCurrentWeekToFilter(),

    Fine. If you're trying to bind any attributes of OrderPartners, bind it as OrderPartners/attribute-name. Say if "BegTstmp" an attribute of OrderPartners bind it as OrderPartners/BegTstmp.
    Regards
    Sakthivel

  • A website that i use quite frequently will not work with the newer versions of firefox. Is there a compatability mode of some way to get the newer version to work?

    All the website says is this browser is not supported. Only version 3.5 is. I can list the url because it is a work url

    You can install the portable Firefox 3.6.x version to access websites that do not work with Firefox 5+.
    *http://portableapps.com/apps/internet/firefox_portable#legacy
    *http://portableapps.com/apps/internet/firefox_portable/localization#legacy36

  • I just downloaded Firefox 5 and it said that my Yahoo toolbar will not work with it. Is this true? If so I will not use this new version and will switch to another browser if Firefox stops supporting the Yahoo toolbar. Thank you.

    I just downloaded Firefox 5 and it said that my Yahoo toolbar will not work with it. Is this true? If so I will not use this new version and will switch to another browser if Firefox stops supporting the Yahoo toolbar. Thank you.

    Add-ons contain a range of compatible Firefox versions, and Firefox honors the listed range by disabling the add-on if you are trying to run it on an unlisted version.
    I'm sure Yahoo! will update its toolbar eventually, but not every add-on maker supports beta versions of software.

  • Site list update not working with TED and Zenworks for Servers

    Product: Zenworks for Desktops 7Sp1 and Zenworks For Server/TED 7Sp1HP5
    Subject: Site list update not working with TED and Zenworks for Servers ,
    all on Linux
    Description: We have an exiting environment with 6 ZfS Servers and now we
    brought up a new Server for another location. I configured all same as on
    the other Server and the new one created all NAL-Apps at the new location.
    But in the Application Site list on the golden App is this Application
    missing. So I clicked on the Link up site list on the Distribution Screen
    in C1. On ApplicationSite list the App from the new location is missing.
    So I removed all and added the new from the new location and now i see all
    in the application site list.When I install an app on the client on the
    new location NAL is connecting alway th the same (wrong location-server
    and i get an msi error 1612 or id=53272 with path=\Wrong serverpath to
    file.
    I looked on the other tab on C1 at the golden app an I see the backlinks
    are going to all other servers without the new one. Software installation
    on other locations are ok
    Regards

    Andreas,
    I forgot to mention that you can also set the loging level on the Distributor and the Subscriber to 6. to do this at the Zenworks Server Management prompt type "setconsolelevel 6" if you want to capture this to the log file ted.log then use "setfilelevel 6"
    Next delete the Distribution from the Subscriber and then re-push the channel.
    What we are looking for here in the log is the creation of the object and the linking information about the gold object. it should look like this (not the failure part ;-))) )
    In this excerpt you will see the entry
    Golden App =
    This should be were the link is to
    You can check this both ways in the Golden App and in the Distributed Application.
    Here is a log from me that shows this info as an example of what you should be looking for.
    2008.05.29 03:35:41 [TED:Work Order In(yourserver.yes.com)] Receiving distribution: Creating new application failed,
    Subscriber Tree Name= YOUR-TREE,
    Subscriber DN = SUBSCRIBER_YOURSERVER.BRN.FL.SUBS.SUBSCRIBERS.ZSM. GRS.CBH,
    Golden App = SCRIPT-MS-HOTFIX.APP.BRN.ZENGOLD.GRS.CBH,
    Attempted AppName = SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH,
    error message: Failed creating SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH. With error message: Setting the trustee for BRN.HAVERHI.PALM.FL.CBH on the file "VOL1:\ZEN\UTILS" failed. Look in subscriber log file for more details..
    2008.05.29 03:35:41 [TED:Event Processing] Handle Event: Work order IN completed... Creating new application failed,
    Subscriber Tree Name= YOUR-TREE,
    Subscriber DN = SUBSCRIBER_HAVERHI-FLBRN1.BRN.FL.SUBS.SUBSCRIBERS.ZSM.GRS.CBH,
    Golden App = SCRIPT-MS-HOTFIX.APP.BRN.ZENGOLD.GRS.CBH,
    Attempted AppName = SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH,
    error message: Failed creating SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH. With error message: Setting the trustee for BRN.HAVERHI.PALM.FL.CBH on the file "VOL1:\ZEN\UTILS" failed. Look in subscriber log file for more details..
    2008.05.29 03:35:41 [TED:Event Processing] Received (from haverhi-flbrn1.yesbank.com) Creating new application failed,
    Subscriber Tree Name= YOUR-TREE,
    Subscriber DN = SUBSCRIBER_HAVERHI-FLBRN1.BRN.FL.SUBS.SUBSCRIBERS.ZSM.GRS.CBH,
    Golden App = SCRIPT-MS-HOTFIX.APP.BRN.ZENGOLD.GRS.CBH,
    Attempted AppName = SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH,
    error message: Failed creating SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH. With error message: Setting the trustee for BRN.HAVERHI.PALM.FL.CBH on the file "VOL1:\ZEN\UTILS" failed. Look in subscriber log file for more details..

Maybe you are looking for