Report Parameters don't work as portlet

I have a report from a SQL Query with parameter options in the where clause. When I launch from the customization page on Manage Component, everything works well. I have now exposed the report as a portlet and when I click on customize or edit page and enter the parameter and press Apply or OK, it returns to the portal page and no results are returned. Am I missing something obvious here or is this is bug.
Thanks
Jody Clayton

Hi,
Which version of portal are you using? Try refreshing the page. It might work.
Thanks,
Sharmila

Similar Messages

  • Report parameters - don't work in portlet mode?

    Hi,
    Portal 3.0.9 on Solaris.
    I've a report created using the wizard, based on two tables.
    On the Customization Form Display Options
    wizard step I've defined a couple of columns I'd like to see on the parameter form / customization screen. When I run the report in traditional (non-portlet) mode, everything works fine. I can pass parameters to it and the records are selected according to the conditions.
    When I run the report in portlet-mode, and click the Customize link, even though the parameter fields appear, they seem not to have any effect. As a result of the Apply button the previously set conditions disappear from the customization screen, when clicking OK, it isn't taken into consideration at all.
    Thanks,
    Peter

    It was a local issue. After having removed and added the component to the page again, everything started to work fine.
    Thanks for all of you who helped me to resolve my issue.
    Peter

  • IMPORTANT - numerical parameters don't work

    Hello Adobe.
    I've recently downloaded the Flash CS5 and we wanted to upgrade license, but we experience VERY bad problem.
    Steps:
    1. Create blank FLA AS 3.0 movie.
    2. Add to first frame (stage), for example, TextArea component and name it "xxx".
    3. Set in "Properties" window in "Component Parameters" tab:
    text - "hello world"
    maxChars - 10
    4. Add script to first frame with next code:
    trace(xxx.text);
    trace(xxx["text"]);
    trace(xxx.maxChars);
    trace(xxx["maxChars"]);
    xxx.maxChars = 20;
    trace(xxx["maxChars"]);
    trace(xxx.maxChars);
    5. Test movie. You will get next output:
    hello world
    hello world
    0 - WHY THIS IS NOT 10!!!!!!!!!!!!!!!!!!!!!!!
    0 - WHY THIS IS NOT 10!!!!!!!!!!!!!!!!!!!!!!!
    20
    20
    SO NUMERICAL PARAMETERS DON'T WORK! I not a new to Flash. Have worked more than 5 years with this. Also we've tested such behaviour with latest (downloaded today and yesterday) packages from OFFICIAL www.adobe.com website. They are:
    DESIGN PREMIUM CS5
    FLASH CS5 PRO
    we've tested this behavoiur on different machines, with different operating systems. THE SAME - NO WAY!!!!
    PLEASE FIX THIS ISSUE ASAP! and please reply to this thread with DATE of FUTURE FIX! thanks!

    Hi Nivesh!
    - "Are you using a localized version of Flash?  If so, which locale?"
    - en_US
    - "Do you use an Input Method Editor (IME)?  If so, which IME do you use and with what settings?"
    - No, I don't
    - "Also, are you on MAC or WIN?"
    - Windows XP ( SP3 )
    -"Do you have an older version of Flash on the same machines?  If so, when you save this FLA as a previous version and Test Movie using that version, do you still get 0/null or the correct values?"
    - Yes, I have Flas CS4 as well. I did some tests and here is the result:
    Flash CS5. Drag to stage NumericStepper. Set maximum = 100. Test this movie : maximum = 0. Save this fla as a previous version.
    Flash CS4. Open this fla. Test this movie. maximum = 0. Goto the component inspector and look for the maximum values. Attention! maximum = 100,00 ( not 100, not 100.00, not 0 ) Set maximum = 100.5 and test . Result : maximum = 100.5. Save this fla. ( By the way, if I do "Save and compact" then I see  "Filed to open document" pop up )
    Flas CS5. Open our file. Goto the component parameters and see (Attention!) maximum = 100,5 ( not 100.5 ). Test the movie. Result : (Attention!) maximum = 50. Set maximum = 100.55 and press Enter. (Attention!) this value is replaced by 100,55. Test movie and see maximum = 55.
    So I guess it can help you to detect the problem.

  • Destype and desname parameters don't work properly

    Hi,
    We have a j2ee webApp that uses oracle reports to run reports. One report in particular could be really long and slow (b/c it contains lots of dynamically generated jpegs) depending on what parameters a user chooses. So for this report, we'd like it to run asynchronously, notify the user when it is finished, and store the pdf on that user's local machine. So our report url looks like this:
    http://appServerHostName:portNumber/WebApp/rwservlet?report=someReport.jsp&server=ourServer&destype=LOCALFILE&desname=$TMP/test.pdf&cmdkey=someKey&desformat=pdf&ENGINERESPONSETIMEOUT=50&NOTIFYSUCCESS=[email protected]&NOTIFYFAILURE=[email protected]&background=yes&ourSpecificParameters...
    I got the first 2 things working by doing background=yes&notifysuccess=someEmailAddress
    However, I can't get the report to be downloaded to the user's machine after it's done running. I've tried:
    1) destype=localfile&desname=$TMP/test.pdf
    2) destype=localfile&desname=C:\temp\test.pdf and other ways.
    I also tried to see if I could store the pdf on our UNIX appServer:
    destype=file&desname=$TMP/test.pdf but that didn't work either.
    No matter what I set destype to (localfile, cache, or file), the pdf ALWAYS gets stored on our appServer at $ORACLE_HOME/reports/cache and the name of the pdf gets derived from the value of desname plus some 8-digit random numeric string. So in the 1st case above, the generated pdf was:
    test25136488.pdf
    And in the second case, the C:\temp\ wasn't interpreted as a directory, but as part of the filename so the result was an ugly filename:
    C:\temp\test14257852.pdf
    This is only a problem for us for this 1 report (and possibly others in the future) b/c our other reports typically run pretty fast so the user can just wait for the pdf output to pop up in their web browser.
    Any help on how to get destype and desname working properly (or if you have a better solution for dealing with really time and memory consuming reports) would be much appreciated.
    Thanks.

    Hello,
    The behaviour of DESTYPE=LOCALFILE is not the same for rwclient and the reports servlet :
    http://www.oracle.com/webapps/online-help/reports/10.1.2/topics/htmlhelp_rwbuild_hs/rwrefex/cmdline/common/bld_destype.htm
    It is not possible to save an ouput returned by an URL automatically with a browser.
    If you want something automatic, you have to use a free utility like curl or lynx
    http://curl.haxx.se/
    http://lynx.isc.org/lynx2.8.5/index.html
    or write a small application in java. There are many examples on the web :
    http://www.devdaily.com/java/edu/pj/pj010011/index.shtml
    Learn how to download the contents of a URL
    using Java's URL class
    http://www.javaworld.com/javaworld/javatips/jw-javatip34.html
    Java Tip 34: POSTing via Java
    Learn how to POST data to Web servers in Java
    http://www.exampledepot.com/egs/java.net/Post.html?l=rel
    e135. Sending a POST Request Using a URL
    http://java.sun.com/docs/books/tutorial/networking/urls/readingURL.html
    Reading Directly from a URL
    Regards

  • Interactive Report actions don't work for users (i.e. for non-developers)

    I've Interactive Reports that work fine in development. But when I or other users run it in non-development mode, no feature or actions (sorting, filtering, select columns, aggregate, etc.) work. At run time (going directly to the URL ...apex/f?p=APP_ID), the actions menu is enabled for users and it allows them to go through the process of filtering (select column, pick opeartor, pick value) and click-apply, but nothing happens after that! The interactive report comes back with the data as it was before the filtering was applied. Same thing happens with other action-menu features (no affect).
    Please help since I've a demo tomorrow to show these features. Thanks.

    Why would you post this same issue twice? Did you think it would help get an answer faster?
    I see the second post here: Re: Actions Menu in Interactive Reports does not sort, filter, select cols etc

  • Excel R&A Import - Freeze Headers in Financial Reporting Studio don't work

    Our users like financials in Excel and fully formatted to their liking so we create the template in Financial Reporting Studio and then import the template via Excel through Workspace via Independent Provider Connection. If the certain grid template in Financial Reporting Studio was set to several "pages" to produce, all the pages will popup on separate tabs in Excel. My question is, for each "page" which populates info on one tab in Excel, when printed, could be several printed pages long so the column headings don't reprint. I can manually set up Excel to reprint the column headings but since we produce thousands of reports with various templates, we don't want to run too many macros all the time. I know the export in PDF from Workspace will freeze the headers because I froze it on the template in Fin Rptg Studio, so how come the freeze headers don't translate in Excel?

    Actually that's what I thought so that I won't have to run the config utility for a client install. When I did the Typical installation it gave me an option at he end of an install to run the Config utility or not.
    As far as the registery cleaning is concerned, there are probably 100 entries all over the place. Pain the neck but I guess that would be my only option here.
    With the vpd.properties file, I can definitly say that in 9.3.1.3 it is there. I have the same version installed on my machine and I have the vpd.properties file.
    So, I think the bottom line would be to uninstall everything related to Hyperion.
    Clean the registery for all Hyperion entries.
    Reboot and reinstall.
    Thanks for the reply though.

  • Template template parameters don't work

    Consider the following code:
    #include <iostream>
    #include <algorithm>
    template <template <typename T, int I> class Container, typename type, int size>
    struct ContainerTraits
         typedef typename Container<type, size>::type value_type;
    template <typename T, int N>
    class MyContainer
         public:
              typedef T type;
              static const int SIZE = N;
              T* begin() { return data; }
              T* end() { return data+N; }
              T &operator[](int index) { return data[index]; }
         private:
              T data[N];
    template <template <typename T, int I> class Container, typename type, int size>
    void fillZeroContainer(Container<type, size> c)
         typedef ContainerTraits<Container, type, size> CTraits;
         typedef typename CTraits::value_type value_type;
         std::fill(c.begin(), c.end(), value_type(0));
    int main()
         MyContainer<float, 4> c;
         fillZeroContainer(c);
         std::cout << c[0] << std::endl;
         // Once the rest of the code compiles, try to uncomment this.
    //      float array[int(c[0]) + 2];
    //      array[0] = 0;
         return 0;
    Compiling yields:
    $ g++ -Wall sunCCproblem.cc
    $ sunCC sunCCproblem.cc
    "sunCCproblem.cc", line 40: Warning: The variable c has not yet been assigned a value.
    "sunCCproblem.cc", line 30: Error: Template template-parameter Container<T, I> requires a class template argument.
    "sunCCproblem.cc", line 40: Where: While instantiating "fillZeroContainer<MyContainer<float, 4>, float, 4>(MyContainer<float, 4>)".
    "sunCCproblem.cc", line 40: Where: Instantiated from non-template code.
    "sunCCproblem.cc", line 7: Warning (Anachronism): Using Container as a template without a declaration.
    "sunCCproblem.cc", line 31: Where: While specializing "ContainerTraits<MyContainer<float, 4>, float, 4>".
    "sunCCproblem.cc", line 31: Where: Instantiated from fillZeroContainer<MyContainer<float, 4>, float, 4>(MyContainer<float, 4>).
    "sunCCproblem.cc", line 40: Where: Instantiated from non-template code.
    1 Error(s) and 2 Warning(s) detected.
    This is Sun Studio 12 (x86) on Linux AMD64 (ubuntu).
    I think it is a bug in the compiler. GCC and Intel have no problem compiling this code.
    If that is not correct, please let me know what shold be corrected to make the code compile.
    Thanks in advance,
    F. Beekhof

    This problem was filed as CR 6639155, which you can view at
    [http://bugs.sun.com]
    This bug appears not to have been fixed yet.
    If your problem appears to be the same, you can vote for the bug. If not, you can file a new bug report.
    If you have a support contract with Sun, you can escalate the bug to get a fix sooner. You could also get the fix before it is officially released in a patch. You can find out about support contracts here:
    [http://developers.sun.com/sunstudio/support/index.jsp]

  • Microsoft Access report to pdf-hyperlinks don't work

    Hi,
    Does anyone have a solution to hyperlinks not working when a Microsoft Access report is converted to a pdf?  The hyperlinks work when I am in the Access report, but once I convert to a pdf (Acrobat 9), the links don' t work.
    Thanks,
    Jamie

    How did you convert? In looking at the PDF Maker options for AA8 in ACCESS 2007, there does not seem to be a link button in the preferences. That may the issue and I do not have a solution for that.

  • Financial Reporting - don't work condition "starts with"

    Hi All,
    I want exclude rows from report where dimension members name start with "9", I try suppress row with condition "starts with", but this don't work.
    When I explore Conditional Suppression feature I got positive take only for "contains" condition.
    Please help me how I can exclude rows from my report.

    I make sense, condition "starts with" work perfect, error in hierarchy on my dimension.
    Hyperion Financial Reporting the best :8}

  • Viewer/Designer don't works (RDC, ActiveX, Crystal Report XIR2, C++)

    Post Author: [email protected]
    CA Forum: Other
    Hi, I have integrated in our soft, the Crystal report RDC,ActiveX  viewer and ActiveX designer. On my computer all works fine. But on one of my test computer, the viewer and the Designer don't works fine. The activeX are not displayed (I have a blank windows). 
    I have installed Crystal reports XI release 2 developer on my test computers, but some computers work fine and other don't work. I have the same result with the deployment of the free RDC.
    I have try to display the activeX viewer with TSTCON32.exe (activeX test container), the viewer is displayed correctly. After many tests on one of my computer test , the viewer and designer got to work but I have change nothing on the computer. On this computer the bug doesn't appear again. but on other I have still the issue.
    It seems there is a bad installation or initialization of the activeX at the first call.
    Any idea ?
    Thanks in advance
    Fred

    Hi Pat,
    For English thread there is another forum as below for your question.
    https://www.sdn.sap.com/irj/scn/forums
    Just click "Business Objects SDK Application Development" and then click ".NET Development - Crystal Reports"
    It should be more profesional for SDK questions.
    Hope it helps.
    Regards,
    Sunny

  • XORG: Keyboard don't work right

    Hi,
    after the last System update my keyboard (under xorg) is totally messed up! The arrow keys,the del key the Pos1 key, the End key.....  all don't work. All characters numbers and special characters like(!"§$%&/....) work though. Even the German "Umlauts" are working!
    Here my xorg.conf:
    # File generated by xorgconfig.
    # Copyright 2004 The X.Org Foundation
    # Permission is hereby granted, free of charge, to any person obtaining a
    # copy of this software and associated documentation files (the "Software"),
    # to deal in the Software without restriction, including without limitation
    # the rights to use, copy, modify, merge, publish, distribute, sublicense,
    # and/or sell copies of the Software, and to permit persons to whom the
    # Software is furnished to do so, subject to the following conditions:
    # The above copyright notice and this permission notice shall be included in
    # all copies or substantial portions of the Software.
    # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
    # The X.Org Foundation BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
    # OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    # SOFTWARE.
    # Except as contained in this notice, the name of The X.Org Foundation shall
    # not be used in advertising or otherwise to promote the sale, use or other
    # dealings in this Software without prior written authorization from
    # The X.Org Foundation.
    # Refer to the xorg.conf(5) man page for details about the format of
    # this file.
    # Module section -- this  section  is used to specify
    # which dynamically loadable modules to load.
    Section "Module"
    # This loads the DBE extension module.
        Load        "dbe"   # Double buffer extension
    # This loads the miscellaneous extensions module, and disables
    # initialisation of the XFree86-DGA extension within that module.
        SubSection  "extmod"
          Option    "omit xfree86-dga"   # don't initialise the DGA extension
        EndSubSection
    # This loads the font modules
    #    Load        "type1"
        Load        "freetype"
    #    Load        "xtt"
    # This loads the GLX module
    #    Load       "glx"
    # This loads the DRI module
    #    Load       "dri"
    EndSection
    # Files section.  This allows default font and rgb paths to be set
    Section "Files"
    # Multiple FontPath entries are allowed (which are concatenated together),
    # as well as specifying multiple comma-separated entries in one FontPath
    # command (or a combination of both methods)
        FontPath   "/usr/share/fonts/misc"
        FontPath   "/usr/share/fonts/100dpi:unscaled"
        FontPath   "/usr/share/fonts/75dpi:unscaled"
        FontPath   "/usr/share/fonts/TTF"
        FontPath   "/usr/share/fonts/Type1"
    #    FontPath   "/usr/lib/X11/fonts/local/"
    #    FontPath   "/usr/lib/X11/fonts/misc/"
    #    FontPath   "/usr/lib/X11/fonts/75dpi/:unscaled"
    #    FontPath   "/usr/lib/X11/fonts/100dpi/:unscaled"
    #    FontPath   "/usr/lib/X11/fonts/Type1/"
    #    FontPath   "/usr/lib/X11/fonts/TrueType/"
    #    FontPath   "/usr/lib/X11/fonts/freefont/"
    #    FontPath   "/usr/lib/X11/fonts/75dpi/"
    #    FontPath   "/usr/lib/X11/fonts/100dpi/"
    # The module search path.  The default path is shown here.
    #    ModulePath "/usr/lib/modules"
    EndSection
    # Server flags section.
    Section "ServerFlags"
    # Uncomment this to cause a core dump at the spot where a signal is
    # received.  This may leave the console in an unusable state, but may
    # provide a better stack trace in the core dump to aid in debugging
    #    Option "NoTrapSignals"
    # Uncomment this to disable the <Ctrl><Alt><Fn> VT switch sequence
    # (where n is 1 through 12).  This allows clients to receive these key
    # events.
    #    Option "DontVTSwitch"
    # Uncomment this to disable the <Ctrl><Alt><BS> server abort sequence
    # This allows clients to receive this key event.
    #    Option "DontZap"
    # Uncomment this to disable the <Ctrl><Alt><KP_+>/<KP_-> mode switching
    # sequences.  This allows clients to receive these key events.
    #    Option "Dont Zoom"
    # Uncomment this to disable tuning with the xvidtune client. With
    # it the client can still run and fetch card and monitor attributes,
    # but it will not be allowed to change them. If it tries it will
    # receive a protocol error.
    #    Option "DisableVidModeExtension"
    # Uncomment this to enable the use of a non-local xvidtune client.
    #    Option "AllowNonLocalXvidtune"
    # Uncomment this to disable dynamically modifying the input device
    # (mouse and keyboard) settings.
    #    Option "DisableModInDev"
    # Uncomment this to enable the use of a non-local client to
    # change the keyboard or mouse settings (currently only xset).
    #    Option "AllowNonLocalModInDev"
    EndSection
    # Input devices
    # Core keyboard's InputDevice section
    Section "InputDevice"
        Identifier  "Keyboard1"
        Driver      "kbd"
        Option "AutoRepeat" "500 30"
    # Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
    #    Option     "Xleds"      "1 2 3"
    #    Option "LeftAlt"     "Meta"
    #    Option "RightAlt"    "ModeShift"
    # To customise the XKB settings to suit your keyboard, modify the
    # lines below (which are the defaults).  For example, for a non-U.S.
    # keyboard, you will probably want to use:
    #    Option "XkbModel"    "pc105"
    # If you have a US Microsoft Natural keyboard, you can use:
    #    Option "XkbModel"    "microsoft"
    # Then to change the language, change the Layout setting.
    # For example, a german layout can be obtained with:
    #    Option "XkbLayout"   "de"
    # or:
    #    Option "XkbLayout"   "de"
    #    Option "XkbVariant"  "nodeadkeys"
    # If you'd like to switch the positions of your capslock and
    # control keys, use:
    #    Option "XkbOptions"  "ctrl:swapcaps"
    # These are the default XKB settings for Xorg
    #    Option "XkbRules"    "xorg"
    #    Option "XkbModel"    "pc105"
    #    Option "XkbLayout"   "us"
    #    Option "XkbVariant"  ""
    #    Option "XkbOptions"  ""
    #    Option "XkbDisable"
        Option "XkbRules"   "xorg"
        Option "XkbModel"   "pc105"
        Option "XkbLayout"  "de"
    EndSection
    # Core Pointer's InputDevice section
    Section "InputDevice"
    # Identifier and driver
        Identifier  "Mouse1"
        Driver      "mouse"
        Option "Protocol"    "Auto" # Auto detect
        Option "Device"      "/dev/input/mice"
    # Mouse-speed setting for PS/2 mouse.
    #    Option "Resolution"        "256"
    # Baudrate and SampleRate are only for some Logitech mice. In
    # almost every case these lines should be omitted.
    #    Option "BaudRate"  "9600"
    #    Option "SampleRate"        "150"
    # Mouse wheel mapping.  Default is to map vertical wheel to buttons 4 & 5,
    # horizontal wheel to buttons 6 & 7.   Change if your mouse has more than
    # 3 buttons and you need to map the wheel to different button ids to avoid
    # conflicts.
        Option "ZAxisMapping"   "4 5 6 7"
    # Emulate3Buttons is an option for 2-button mice
    # Emulate3Timeout is the timeout in milliseconds (default is 50ms)
        Option "Emulate3Buttons"
    #    Option "Emulate3Timeout"    "50"
    # ChordMiddle is an option for some 3-button Logitech mice
    #    Option "ChordMiddle"
    EndSection
    # Other input device sections
    # this is optional and is required only if you
    # are using extended input devices.  This is for example only.  Refer
    # to the xorg.conf man page for a description of the options.
    # Section "InputDevice"
    #    Identifier  "Mouse2"
    #    Driver      "mouse"
    #    Option      "Protocol"      "MouseMan"
    #    Option      "Device"        "/dev/mouse2"
    # EndSection
    # Section "InputDevice"
    #    Identifier "spaceball"
    #    Driver     "magellan"
    #    Option     "Device"        "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    #    Identifier "spaceball2"
    #    Driver     "spaceorb"
    #    Option     "Device"        "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    #    Identifier "touchscreen0"
    #    Driver     "microtouch"
    #    Option     "Device"        "/dev/ttyS0"
    #    Option     "MinX"          "1412"
    #    Option     "MaxX"          "15184"
    #    Option     "MinY"          "15372"
    #    Option     "MaxY"          "1230"
    #    Option     "ScreenNumber"  "0"
    #    Option     "ReportingMode" "Scaled"
    #    Option     "ButtonNumber"  "1"
    #    Option     "SendCoreEvents"
    # EndSection
    # Section "InputDevice"
    #    Identifier "touchscreen1"
    #    Driver     "elo2300"
    #    Option     "Device"        "/dev/ttyS0"
    #    Option     "MinX"          "231"
    #    Option     "MaxX"          "3868"
    #    Option     "MinY"          "3858"
    #    Option     "MaxY"          "272"
    #    Option     "ScreenNumber"  "0"
    #    Option     "ReportingMode" "Scaled"
    #    Option     "ButtonThreshold"       "17"
    #    Option     "ButtonNumber"  "1"
    #    Option     "SendCoreEvents"
    # EndSection
    # Monitor section
    # Any number of monitor sections may be present
    Section "Monitor"
        Identifier  "My Monitor"
    # HorizSync is in kHz unless units are specified.
    # HorizSync may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
        HorizSync   31.5 - 64.3
    #    HorizSync  30-64         # multisync
    #    HorizSync  31.5, 35.2    # multiple fixed sync frequencies
    #    HorizSync  15-25, 30-50  # multiple ranges of sync frequencies
    # VertRefresh is in Hz unless units are specified.
    # VertRefresh may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
        VertRefresh 50-100
    EndSection
    # Graphics device section
    # Any number of graphics device sections may be present
    # Standard VGA Device:
    Section "Device"
        Identifier  "Standard VGA"
        VendorName  "Unknown"
        BoardName   "Unknown"
    # The chipset line is optional in most cases.  It can be used to override
    # the driver's chipset detection, and should not normally be specified.
    #    Chipset    "generic"
    # The Driver line must be present.  When using run-time loadable driver
    # modules, this line instructs the server to load the specified driver
    # module.  Even when not using loadable driver modules, this line
    # indicates which driver should interpret the information in this section.
        Driver     "vga"
    # The BusID line is used to specify which of possibly multiple devices
    # this section is intended for.  When this line isn't present, a device
    # section can only match up with the primary video device.  For PCI
    # devices a line like the following could be used.  This line should not
    # normally be included unless there is more than one video device
    # intalled.
    #    BusID      "PCI:0:10:0"
    #    VideoRam   256
    #    Clocks     25.2 28.3
    EndSection
    # Device configured by xorgconfig:
    Section "Device"
        Identifier  "** ATI Radeon (generic)               [radeon]"
        Driver      "radeon"
        #VideoRam    262144
        # Insert Clocks lines here if appropriate
    EndSection
    # Screen sections
    # Any number of screen sections may be present.  Each describes
    # the configuration of a single screen.  A single specific screen section
    # may be specified from the X server command line with the "-screen"
    # option.
    Section "Screen"
        Identifier  "Screen 1"
        Device      "** ATI Radeon (generic)               [radeon]"
        Monitor     "My Monitor"
        DefaultDepth 24
        Subsection "Display"
            Depth       8
            Modes       "1280x1024" "1024x768" "800x600" "640x480"
            ViewPort    0 0
        EndSubsection
        Subsection "Display"
            Depth       16
            Modes       "1280x1024" "1024x768" "800x600" "640x480"
            ViewPort    0 0
        EndSubsection
        Subsection "Display"
            Depth       24
            Modes       "1400x1050" "1280x1024" "1024x768"
            ViewPort    0 0
        EndSubsection
    EndSection
    # ServerLayout sections.
    # Any number of ServerLayout sections may be present.  Each describes
    # the way multiple screens are organised.  A specific ServerLayout
    # section may be specified from the X server command line with the
    # "-layout" option.  In the absence of this, the first section is used.
    # When now ServerLayout section is present, the first Screen section
    # is used alone.
    Section "ServerLayout"
    # The Identifier line must be present
        Identifier  "Simple Layout"
    # Each Screen line specifies a Screen section name, and optionally
    # the relative position of other screens.  The four names after
    # primary screen name are the screens to the top, bottom, left and right
    # of the primary screen.  In this example, screen 2 is located to the
    # right of screen 1.
        Screen "Screen 1"
    # Each InputDevice line specifies an InputDevice section name and
    # optionally some options to specify the way the device is to be
    # used.  Those options include "CorePointer", "CoreKeyboard" and
    # "SendCoreEvents".
        InputDevice "Mouse1" "CorePointer"
        InputDevice "Keyboard1" "CoreKeyboard"
    EndSection
    # Section "DRI"
    #    Mode 0666
    # EndSection
    and the corresponding log:
    X.Org X Server 1.5.3
    Release Date: 5 November 2008
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.27-ARCH i686
    Current Operating System: Linux stella 2.6.27-ARCH #1 SMP PREEMPT Fri Nov 28 10:56:24 UTC 2008 i686
    Build Date: 05 December 2008  09:10:55PM
            Before reporting problems, check http://wiki.x.org
            to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
            (++) from command line, (!!) notice, (II) informational,
            (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Tue Dec  9 17:03:13 2008
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Simple Layout"
    (**) |-->Screen "Screen 1" (0)
    (**) |   |-->Monitor "My Monitor"
    (**) |   |-->Device "** ATI Radeon (generic)               [radeon]"
    (**) |-->Input Device "Mouse1"
    (**) |-->Input Device "Keyboard1"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (==) Including the default font path /usr/share/fonts/misc,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled,/usr/share/fonts/TTF,/usr/share/fonts/Type1.
    (**) FontPath set to:
            /usr/share/fonts/misc,
            /usr/share/fonts/100dpi:unscaled,
            /usr/share/fonts/75dpi:unscaled,
            /usr/share/fonts/TTF,
            /usr/share/fonts/Type1,
            /usr/share/fonts/misc,
            /usr/share/fonts/100dpi:unscaled,
            /usr/share/fonts/75dpi:unscaled,
            /usr/share/fonts/TTF,
            /usr/share/fonts/Type1
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (WW) AllowEmptyInput is on, devices using drivers 'kbd' or 'mouse' will be disabled.
    (WW) Disabling Mouse1
    (WW) Disabling Keyboard1
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) Loader magic: 0x81d5900
    (II) Module ABI versions:
            X.Org ANSI C Emulation: 0.4
            X.Org Video Driver: 4.1
            X.Org XInput driver : 2.1
            X.Org Server Extension : 1.1
            X.Org Font Renderer : 0.6
    (II) Loader running on linux
    (++) using VT number 7
    (--) PCI:*(0@1:0:0) ATI Technologies Inc RV350 [Mobility Radeon 9600 M10] rev 0, Mem @ 0xa8000000/0, 0xe0010000/0, I/O @ 0x0000c100/0, BIOS @ 0x????????/131072
    (II) System resource ranges:
            [0] -1  0       0xffffffff - 0xffffffff (0x1) MX[b]
            [1] -1  0       0x000f0000 - 0x000fffff (0x10000) MX[b]
            [2] -1  0       0x000c0000 - 0x000effff (0x30000) MX[b]
            [3] -1  0       0x00000000 - 0x0009ffff (0xa0000) MX[b]
            [4] -1  0       0x0000ffff - 0x0000ffff (0x1) IX[b]
            [5] -1  0       0x00000000 - 0x00000000 (0x1) IX[b]
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded by default.
    (II) "freetype" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri" will be loaded by default.
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
            compiled for 1.5.3, module version = 1.0.0
            Module class: X.Org Server Extension
            ABI class: X.Org Server Extension, version 1.1
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
            compiled for 1.5.3, module version = 1.0.0
            Module class: X.Org Server Extension
            ABI class: X.Org Server Extension, version 1.1
    (II) Loading extension SHAPE
    (II) Loading extension MIT-SUNDRY-NONSTANDARD
    (II) Loading extension BIG-REQUESTS
    (II) Loading extension SYNC
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XC-MISC
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-Misc
    (II) Loading extension DPMS
    (II) Loading extension TOG-CUP
    (II) Loading extension Extended-Visual-Information
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "freetype"
    (II) Loading /usr/lib/xorg/modules/fonts//libfreetype.so
    (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
            compiled for 1.5.3, module version = 2.1.0
            Module class: X.Org Font Renderer
            ABI class: X.Org Font Renderer, version 0.6
    (II) Loading font FreeType
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
            compiled for 1.5.3, module version = 1.0.0
            ABI class: X.Org Server Extension, version 1.1
    (==) AIGLX enabled
    (==) Exporting typical set of GLX visuals
    (II) Loading extension GLX
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
            compiled for 1.5.3, module version = 1.0.0
            ABI class: X.Org Server Extension, version 1.1
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "radeon"
    (II) Loading /usr/lib/xorg/modules/drivers//radeon_drv.so
    (II) Module radeon: vendor="X.Org Foundation"
            compiled for 1.5.2, module version = 6.9.0
            Module class: X.Org Video Driver
            ABI class: X.Org Video Driver, version 4.1
    (II) RADEON: Driver for ATI Radeon chipsets:
            ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
            ATI Radeon Mobility X300 (M24) 3152 (PCIE),
            ATI FireGL M24 GL 3154 (PCIE), ATI Radeon X600 (RV380) 3E50 (PCIE),
            ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
            ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
            ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
            ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
            ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
            ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
            ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
            ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
            ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
            ATI Radeon 8500 AIW BB (AGP), ATI Radeon 8500 AIW BC (AGP),
            ATI Radeon IGP320M (U1) 4336, ATI Radeon IGP330M/340M/350M (U2) 4337,
            ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
            ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
            ATI Radeon X800PRO (R420) JI (AGP),
            ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
            ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
            ATI Radeon Mobility 9800 (M18) JN (AGP),
            ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
            ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
            ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
            ATI Radeon Mobility M7 LW (AGP),
            ATI Mobility FireGL 7800 M7 LX (AGP),
            ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
            ATI FireGL Mobility 9000 (M9) Ld (AGP),
            ATI Radeon Mobility 9000 (M9) Lf (AGP),
            ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP),
            ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
            ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP),
            ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
            ATI Radeon 9800XT NJ (AGP),
            ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
            ATI Radeon Mobility 9600 (M10) NQ (AGP),
            ATI Radeon Mobility 9600 (M11) NR (AGP),
            ATI Radeon Mobility 9600 (M10) NS (AGP),
            ATI FireGL Mobility T2 (M10) NT (AGP),
            ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
            ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
            ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
            ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
            ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
            ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
            ATI Radeon Mobility X300 (M22) 5460 (PCIE),
            ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
            ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
            ATI Radeon X800PRO (R423) UI (PCIE),
            ATI Radeon X800LE (R423) UJ (PCIE),
            ATI Radeon X800SE (R423) UK (PCIE),
            ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
            ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
            ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
            ATI FireGL unknown (R423) UR (PCIE),
            ATI FireGL unknown (R423) UT (PCIE),
            ATI Mobility FireGL V5000 (M26) (PCIE),
            ATI Mobility FireGL V5000 (M26) (PCIE),
            ATI Mobility Radeon X700 XL (M26) (PCIE),
            ATI Mobility Radeon X700 (M26) (PCIE),
            ATI Mobility Radeon X700 (M26) (PCIE),
            ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
            ATI Radeon Mobility 9100 IGP (U3) 5835,
            ATI Radeon XPRESS 200 5954 (PCIE),
            ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
            ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
            ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
            ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
            ATI Radeon XPRESS 200M 5975 (PCIE),
            ATI Radeon XPRESS 200 5A41 (PCIE),
            ATI Radeon XPRESS 200M 5A42 (PCIE),
            ATI Radeon XPRESS 200 5A61 (PCIE),
            ATI Radeon XPRESS 200M 5A62 (PCIE),
            ATI Radeon X300 (RV370) 5B60 (PCIE),
            ATI Radeon X600 (RV370) 5B62 (PCIE),
            ATI Radeon X550 (RV370) 5B63 (PCIE),
            ATI FireGL V3100 (RV370) 5B64 (PCIE),
            ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
            ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
            ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
            ATI Mobility Radeon X800 XT (M28) (PCIE),
            ATI Mobility FireGL V5100 (M28) (PCIE),
            ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
            ATI Radeon X850 XT PE (R480) (PCIE),
            ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
            ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
            ATI Radeon X850 XT (R480) (PCIE),
            ATI Radeon X800XT (R423) 5D57 (PCIE),
            ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
            ATI Radeon X700 PRO (RV410) (PCIE),
            ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
            ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
            ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
            ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
            ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
            ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
            ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
            ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
            ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
            ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
            ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
            ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
            ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
            ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
            ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
            ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
            ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
            ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
            ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
            ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
            ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
            ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
            ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
            ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
            ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
            ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
            ATI Mobility Radeon X1700, ATI Radeon X2300HD,
            ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
            ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
            ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
            ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
            ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
            ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
            ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
            ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI ATI FireGL V7400,
            ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
            ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
            ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
            ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
            ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
            ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
            ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
            ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
            ATI Radeon 4800 Series, ATI RV610, ATI Radeon HD 2400 XT,
            ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
            ATI RV610, ATI ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
            ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610, ATI RV670,
            ATI Radeon HD3870, ATI Radeon HD3850, ATI RV670,
            ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850, ATI RV630,
            ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
            ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
            ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
            ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
            ATI FireGL V3600, ATI Radeon HD 2600 LE, ATI Radeon HD 3470,
            ATI Radeon HD 3450, ATI Radeon HD 3430, ATI Mobility Radeon HD 3430,
            ATI Mobility Radeon HD 3400 Series, ATI FireMV 2450, ATI FireMV 2260,
            ATI FireMV 2260, ATI ATI Radeon HD 3600 Series,
            ATI ATI Radeon HD 3650 AGP, ATI ATI Radeon HD 3600 PRO,
            ATI ATI Radeon HD 3600 XT, ATI ATI Radeon HD 3600 PRO,
            ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
            ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
            ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics
    (II) Primary Device is: PCI 01@00:00:0
    (II) resource ranges after xf86ClaimFixedResources() call:
            [0] -1  0       0xffffffff - 0xffffffff (0x1) MX[b]
            [1] -1  0       0x000f0000 - 0x000fffff (0x10000) MX[b]
            [2] -1  0       0x000c0000 - 0x000effff (0x30000) MX[b]
            [3] -1  0       0x00000000 - 0x0009ffff (0xa0000) MX[b]
            [4] -1  0       0x0000ffff - 0x0000ffff (0x1) IX[b]
            [5] -1  0       0x00000000 - 0x00000000 (0x1) IX[b]
    (II) resource ranges after probing:
            [0] -1  0       0xffffffff - 0xffffffff (0x1) MX[b]
            [1] -1  0       0x000f0000 - 0x000fffff (0x10000) MX[b]
            [2] -1  0       0x000c0000 - 0x000effff (0x30000) MX[b]
            [3] -1  0       0x00000000 - 0x0009ffff (0xa0000) MX[b]
            [4] 0   0       0x000a0000 - 0x000affff (0x10000) MS[b]
            [5] 0   0       0x000b0000 - 0x000b7fff (0x8000) MS[b]
            [6] 0   0       0x000b8000 - 0x000bffff (0x8000) MS[b]
            [7] -1  0       0x0000ffff - 0x0000ffff (0x1) IX[b]
            [8] -1  0       0x00000000 - 0x00000000 (0x1) IX[b]
            [9] 0   0       0x000003b0 - 0x000003bb (0xc) IS[b]
            [10] 0  0       0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Setting vga for screen 0.
    (II) RADEON(0): MMIO registers at 0x00000000e0010000: size 64KB
    (II) RADEON(0): PCI bus 1 card 0 func 0
    (**) RADEON(0): Depth 24, (--) framebuffer bpp 32
    (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    (==) RADEON(0): Default visual is TrueColor
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules//libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
            compiled for 1.5.3, module version = 0.1.0
            ABI class: X.Org Video Driver, version 4.1
    (II) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    (==) RADEON(0): RGB weight 888
    (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    (--) RADEON(0): Chipset: "ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP)" (ChipID = 0x4e50)
    (--) RADEON(0): Linear framebuffer at 0x00000000a8000000
    (II) RADEON(0): AGP card detected
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Loading /usr/lib/xorg/modules//libint10.so
    (II) Module int10: vendor="X.Org Foundation"
            compiled for 1.5.3, module version = 1.0.0
            ABI class: X.Org Video Driver, version 4.1
    (II) RADEON(0): initializing int10
    (II) RADEON(0): Primary V_BIOS segment is: 0xc000
    (II) RADEON(0): Legacy BIOS detected
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 9, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 9, (OK)
    drmOpenByBusid: drmOpenMinor returns 9
    drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    (II) RADEON(0): [dri] Found DRI library version 1.3.0 and kernel module version 1.29.0
    (==) RADEON(0): Page Flipping disabled
    (II) RADEON(0): Will try to use DMA for Xv image transfers
    (II) RADEON(0): Generation 2 PCI interface, using max accessible memory
    (II) RADEON(0): Detected total video RAM=65536K, accessible=131072K (PCI BAR=131072K)
    (--) RADEON(0): Mapped VideoRAM: 65536 kByte (128 bit DDR SDRAM)
    (II) RADEON(0): Color tiling enabled by default
    (II) RADEON(0): Max desktop size set to 2560x1200
    (II) RADEON(0): For a larger or smaller max desktop size, add a Virtual line to your xorg.conf
    (II) RADEON(0): If you are having trouble with 3D, reduce the desktop size by adjusting the Virtual line to your xorg.conf
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"
    (II) Module "i2c" already built-in
    (II) RADEON(0): ref_freq: 2700, min_out_pll: 20000, max_out_pll: 35000, min_in_pll: 40, max_in_pll: 3000, xclk: 20000, sclk: 200.000000, mclk: 390.000000
    (II) RADEON(0): PLL parameters: rf=2700 rd=6 min=20000 max=35000; xclk=20000
    (II) RADEON(0): Bios Connector table:
    (II) RADEON(0): Port0: DDCType-0x60, DACType-1, TMDSType-1, ConnectorType-1
    (II) RADEON(0): Port4: DDCType-0x0, DACType-0, TMDSType-0, ConnectorType-7
    (II) RADEON(0): Port5: DDCType-0x0, DACType-2, TMDSType-0, ConnectorType-5
    (II) RADEON(0): Output VGA-0 using monitor section My Monitor
    (II) RADEON(0): I2C bus "VGA-0" initialized.
    (II) RADEON(0): Output LVDS has no monitor section
    (II) RADEON(0): Panel ID string: AUO                     
    (II) RADEON(0): Panel Size from BIOS: 1400x1050
    (II) RADEON(0): BIOS provided dividers will be used.
    (WW) RADEON(0): LVDS Info:
    XRes: 1400, YRes: 1050, DotClock: 108000
    HBlank: 240, HOverPlus: 48, HSyncWidth: 112
    VBlank: 15, VOverPlus: 1, VSyncWidth: 3
    (II) RADEON(0): Output S-video has no monitor section
    (II) RADEON(0): Default TV standard: NTSC
    (II) RADEON(0): TV standards supported by chip: NTSC PAL
    (II) RADEON(0): Port0:
    Monitor   -- AUTO
    Connector -- VGA
    DAC Type  -- Primary
    TMDS Type -- None
    DDC Type  -- 0x60
    (II) RADEON(0): Port1:
    Monitor   -- AUTO
    Connector -- LVDS
    DAC Type  -- None
    TMDS Type -- None
    DDC Type  -- 0x0
    (II) RADEON(0): Port2:
    Monitor   -- AUTO
    Connector -- STV
    DAC Type  -- TVDAC/ExtDAC
    TMDS Type -- None
    DDC Type  -- 0x0
    (II) RADEON(0): I2C device "VGA-0:ddc2" registered at address 0xA0.
    (II) RADEON(0): I2C device "VGA-0:ddc2" removed.
    (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
    finished output detect: 0
    (II) RADEON(0): Output: LVDS, Detected Monitor Type: 0
    finished output detect: 1
    (II) RADEON(0): Output: S-video, Detected Monitor Type: 0
    finished output detect: 2
    finished all detect
    before xf86InitialConfiguration
    (II) RADEON(0): I2C device "VGA-0:ddc2" registered at address 0xA0.
    (II) RADEON(0): I2C device "VGA-0:ddc2" removed.
    (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
    (II) RADEON(0): Output: LVDS, Detected Monitor Type: 0
    in RADEONProbeOutputModes
    (II) RADEON(0): Added native panel mode: 1400x1050
    (II) RADEON(0): Adding Screen mode: 1280x1024
    (II) RADEON(0): Adding Screen mode: 1024x768
    (II) RADEON(0): Total number of valid Screen mode(s) added: 2
    (II) RADEON(0): Output: S-video, Detected Monitor Type: 0
    (II) RADEON(0): Output VGA-0 disconnected
    (II) RADEON(0): Output LVDS connected
    (II) RADEON(0): Output S-video disconnected
    (II) RADEON(0): Using user preference for initial modes
    (II) RADEON(0): Output LVDS using initial mode 1400x1050
    after xf86InitialConfiguration
    (==) RADEON(0): DPI set to (96, 96)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
            compiled for 1.5.3, module version = 1.0.0
            ABI class: X.Org ANSI C Emulation, version 0.4
    (==) RADEON(0): Using gamma correction (1.0, 1.0, 1.0)
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (==) RADEON(0): Using XAA acceleration architecture
    (II) Loading sub module "xaa"
    (II) LoadModule: "xaa"
    (II) Loading /usr/lib/xorg/modules//libxaa.so
    (II) Module xaa: vendor="X.Org Foundation"
            compiled for 1.5.3, module version = 1.2.0
            ABI class: X.Org Video Driver, version 4.1
    (==) RADEON(0): Assuming overlay scaler buffer width is 1920
    (II) RADEON(0): No MM_TABLE found - assuming CARD is not TV-in capable.
    (!!) RADEON(0): For information on using the multimedia capabilities
            of this adapter, please see http://gatos.sf.net.
    (!!) RADEON(0): MergedFB support has been removed and replaced with xrandr 1.2 support
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC?  No, I don't.
    (II) resource ranges after preInit:
            [0] -1  0       0xffffffff - 0xffffffff (0x1) MX[b]
            [1] -1  0       0x000f0000 - 0x000fffff (0x10000) MX[b]
            [2] -1  0       0x000c0000 - 0x000effff (0x30000) MX[b]
            [3] -1  0       0x00000000 - 0x0009ffff (0xa0000) MX[b]
            [4] 0   0       0x000a0000 - 0x000affff (0x10000) MS[b](OprU)
            [5] 0   0       0x000b0000 - 0x000b7fff (0x8000) MS[b](OprU)
            [6] 0   0       0x000b8000 - 0x000bffff (0x8000) MS[b](OprU)
            [7] -1  0       0x0000ffff - 0x0000ffff (0x1) IX[b]
            [8] -1  0       0x00000000 - 0x00000000 (0x1) IX[b]
            [9] 0   0       0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
            [10] 0  0       0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) RADEON(0): RADEONScreenInit a8000000 0 0
    Entering TV Save
    Save TV timing tables
    saveTimingTables: reading timing tables
    TV Save done
    (II) RADEON(0): Dynamic Clock Scaling Disabled
    (==) RADEON(0): Using 24 bit depth buffer
    (II) RADEON(0): RADEONInitMemoryMap() :
    (II) RADEON(0):   mem_size         : 0x04000000
    (II) RADEON(0):   MC_FB_LOCATION   : 0xabffa800
    (II) RADEON(0):   MC_AGP_LOCATION  : 0xffffffc0
    (II) RADEON(0): Depth moves disabled by default
    (II) RADEON(0): Using 32 MB GART aperture
    (II) RADEON(0): Using 1 MB for the ring buffer
    (II) RADEON(0): Using 2 MB for vertex/indirect buffers
    (II) RADEON(0): Using 29 MB for GART textures
    (II) RADEON(0): Memory manager initialized to (0,0) (1408,8191)
    (II) RADEON(0): Reserved area from (0,1200) to (1408,1202)
    (II) RADEON(0): Largest offscreen area available: 1408 x 6989
    (II) RADEON(0): Will use front buffer at offset 0x0
    (II) RADEON(0): Will use back buffer at offset 0xd10000
    (II) RADEON(0): Will use depth buffer at offset 0x1382000
    (II) RADEON(0): Will use 38912 kb for textures at offset 0x19f4000
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenByBusid: drmOpenMinor returns 10
    drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    (II) [drm] DRM interface version 1.3
    (II) [drm] DRM open master succeeded.
    (II) RADEON(0): [drm] Using the DRM lock SAREA also for drawables.
    (II) RADEON(0): [drm] framebuffer handle = 0xa8000000
    (II) RADEON(0): [drm] added 1 reserved context for kernel
    (II) RADEON(0): X context handle = 0x1
    (II) RADEON(0): [drm] installed DRM signal handler
    (==) RADEON(0): Using AGP 4x
    (II) RADEON(0): [agp] Mode 0x1f000207 [AGP 0x8086/0x3340; Card 0x1002/0x4e50]
    (II) RADEON(0): [agp] 32768 kB allocated with handle 0x00000001
    (II) RADEON(0): [agp] ring handle = 0xb0000000
    (II) RADEON(0): [agp] Ring mapped at 0xb37a2000
    (II) RADEON(0): [agp] ring read ptr handle = 0xb0101000
    (II) RADEON(0): [agp] Ring read ptr mapped at 0xb7f7a000
    (II) RADEON(0): [agp] vertex/indirect buffers handle = 0xb0102000
    (II) RADEON(0): [agp] Vertex/indirect buffers mapped at 0xb35a2000
    (II) RADEON(0): [agp] GART texture map handle = 0xb0302000
    (II) RADEON(0): [agp] GART Texture map mapped at 0xb1922000
    (II) RADEON(0): [drm] register handle = 0xe0010000
    (II) RADEON(0): [dri] Visual configs initialized
    (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    (II) RADEON(0):   MC_FB_LOCATION   : 0xabffa800 0x1fff0000
    (II) RADEON(0):   MC_AGP_LOCATION  : 0xffffffc0
    (==) RADEON(0): Backing store disabled
    (II) RADEON(0): [DRI] installation complete
    (II) RADEON(0): [drm] Added 32 65536 byte vertex/indirect buffers
    (II) RADEON(0): [drm] Mapped 32 vertex/indirect buffers
    (II) RADEON(0): [drm] dma control initialized, using IRQ 10
    (II) RADEON(0): [drm] Initialized kernel GART heap manager, 29884416
    (WW) RADEON(0): DRI init changed memory map, adjusting ...
    (WW) RADEON(0):   MC_FB_LOCATION  was: 0xabffa800 is: 0xabffa800
    (WW) RADEON(0):   MC_AGP_LOCATION was: 0xffffffc0 is: 0xb1ffb000
    (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    (II) RADEON(0):   MC_FB_LOCATION   : 0xabffa800 0xabffa800
    (II) RADEON(0):   MC_AGP_LOCATION  : 0xb1ffb000
    (II) RADEON(0): Direct rendering enabled
    (II) RADEON(0): XAA Render acceleration unsupported on Radeon 9500/9700 and newer. Please use EXA instead.
    (II) RADEON(0): Render acceleration disabled
    (II) RADEON(0): num quad-pipes is 1
    (II) RADEON(0): Using XFree86 Acceleration Architecture (XAA)
            Screen to screen bit blits
            Solid filled rectangles
            8x8 mono pattern filled rectangles
            Indirect CPU to Screen color expansion
            Solid Lines
            Scanline Image Writes
            Setting up tile and stipple cache:
                    32 128x128 slots
                    32 256x256 slots
                    16 512x512 slots
    (II) RADEON(0): Acceleration enabled
    (II) RADEON(0): DPMS enabled
    (==) RADEON(0): Silken mouse enabled
    (II) RADEON(0): Will use 32 kb for hardware cursor 0 at offset 0x00674c00
    (II) RADEON(0): Will use 32 kb for hardware cursor 1 at offset 0x00678e00
    (II) RADEON(0): Largest offscreen area available: 1408 x 6983
    (II) RADEON(0): No video input capabilities detected and no information is provided - disabling multimedia i2c
    (II) Loading sub module "theatre_detect"
    (II) LoadModule: "theatre_detect"
    (II) Loading /usr/lib/xorg/modules/multimedia//theatre_detect_drv.so
    (II) Module theatre_detect: vendor="X.Org Foundation"
            compiled for 1.5.2, module version = 1.0.0
            ABI class: X.Org Video Driver, version 4.1
    (II) RADEON(0): no multimedia table present, disabling Rage Theatre.
    (II) RADEON(0): Set up overlay video
    (II) RADEON(0): Set up textured video
    init memmap
    init common
    init crtc1
    init pll1
    restore memmap
    (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    (II) RADEON(0):   MC_FB_LOCATION   : 0xabffa800 0xabffa800
    (II) RADEON(0):   MC_AGP_LOCATION  : 0xb1ffb000
    restore common
    restore crtc1
    restore pll1
    finished PLL1
    restore LVDS
    (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (--) RandR disabled
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-APPGROUP
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing built-in extension XEVIE
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: drmOpenMinor returns 11
    drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    (II) AIGLX: enabled GLX_texture_from_pixmap with driver support
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/r300_dri.so
    (II) GLX: Initialized DRI GL provider for screen 0
    (II) RADEON(0): Setting screen physical size to 370 x 277
    (II) config/hal: Adding input device SynPS/2 Synaptics TouchPad
    (II) LoadModule: "synaptics"
    (II) Loading /usr/lib/xorg/modules/input//synaptics_drv.so
    (II) Module synaptics: vendor="X.Org Foundation"
            compiled for 1.5.3, module version = 0.99.1
            Module class: X.Org XInput Driver
            ABI class: X.Org XInput driver, version 2.1
    (II) Synaptics touchpad driver version 0.99.1
    (**) Option "Device" "/dev/input/event8"
    (II) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
    (II) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
    (II) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    (II) SynPS/2 Synaptics TouchPad: finger width range 0 - 0
    (II) SynPS/2 Synaptics TouchPad: buttons: left right middle double triple
    (--) SynPS/2 Synaptics TouchPad touchpad found
    (**) SynPS/2 Synaptics TouchPad: always reports core events
    (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
    (--) SynPS/2 Synaptics TouchPad touchpad found
    (II) config/hal: Adding input device Logitech USB Receiver
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
            compiled for 1.5.2, module version = 2.0.7
            Module class: X.Org XInput Driver
            ABI class: X.Org XInput driver, version 2.1
    (**) Logitech USB Receiver: always reports core events
    (**) Logitech USB Receiver: Device: "/dev/input/event4"
    (II) Logitech USB Receiver: Found keys
    (II) Logitech USB Receiver: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD)
    (**) Option "xkb_rules" "base"
    (**) Logitech USB Receiver: xkb_rules: "base"
    (**) Option "xkb_model" "evdev"
    (**) Logitech USB Receiver: xkb_model: "evdev"
    (**) Option "xkb_layout" "us"
    (**) Logitech USB Receiver: xkb_layout: "us"
    (II) config/hal: Adding input device Logitech USB Receiver
    (**) Logitech USB Receiver: always reports core events
    (**) Logitech USB Receiver: Device: "/dev/input/event3"
    (II) Logitech USB Receiver: Found x and y relative axes
    (II) Logitech USB Receiver: Found mouse buttons
    (II) Logitech USB Receiver: Configuring as mouse
    (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: MOUSE)
    (II) config/hal: Adding input device C-Media USB Headphone Set
    (**) C-Media USB Headphone Set: always reports core events
    (**) C-Media USB Headphone Set: Device: "/dev/input/event2"
    (II) C-Media USB Headphone Set: Found keys
    (II) C-Media USB Headphone Set: Configuring as keyboard
    (II) XINPUT: Adding extended input device "C-Media USB Headphone Set" (type: KEYBOARD)
    (**) Option "xkb_rules" "base"
    (**) C-Media USB Headphone Set: xkb_rules: "base"
    (**) Option "xkb_model" "evdev"
    (**) C-Media USB Headphone Set: xkb_model: "evdev"
    (**) Option "xkb_layout" "us"
    (**) C-Media USB Headphone Set: xkb_layout: "us"
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "base"
    (**) AT Translated Set 2 keyboard: xkb_rules: "base"
    (**) Option "xkb_model" "evdev"
    (**) AT Translated Set 2 keyboard: xkb_model: "evdev"
    (**) Option "xkb_layout" "us"
    (**) AT Translated Set 2 keyboard: xkb_layout: "us"
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Found mouse buttons
    (II) Macintosh mouse button emulation: Configuring as mouse
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (II) RADEON(0): I2C device "VGA-0:ddc2" registered at address 0xA0.
    (II) RADEON(0): I2C device "VGA-0:ddc2" removed.
    (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
    (II) RADEON(0): Output: LVDS, Detected Monitor Type: 0
    in RADEONProbeOutputModes
    (II) RADEON(0): Added native panel mode: 1400x1050
    (II) RADEON(0): Adding Screen mode: 1280x1024
    (II) RADEON(0): Adding Screen mode: 1024x768
    (II) RADEON(0): Total number of valid Screen mode(s) added: 2
    (II) RADEON(0): Output: S-video, Detected Monitor Type: 0
    sorry for this huge post - but i think that's all needed.... so does anybody have a clue?
    thanks and bye
    smax

    Thanks Bob for that very fast reply!
    But neither "Modifying hal configuration" nor "Using the Desktop Environment settings" (xfce) worked. So I tried the "I don't want this crap, how do I turn it off?" solution and well it works
    Maybe I turn it back on in a month or so.. but for now i'm fine with no hot plugging but a working keyboard...
    Thanks and Bye!
    smax
    Last edited by smaxer (2008-12-09 17:42:43)

  • Reporting Services web service complex xml type report parameters

    Hi,
    I have the following xml type parameter in my request query that I use in reporting services.
    <Parameter Name="accountDetails" Type="XML" xmlns:d4p1="thevalue" xmlns:i="thevalue">
    <DefaultValue>
    <d4p1:AccountDetailDto>
    <d4p1:AccountNumber>12345</d4p1:AccountNumber>
    <d4p1:AccountType>Sales</d4p1:AccountType>
    </d4p1:AccountDetailDto>
    </DefaultValue>
    I want to know how I can assign values to the accountDetails parameter from report parameters, I've tried to call it from the dataset parameter properties but it doesn't return any values. I created Parameters!accountDetails.Value on the dataset parameters
    properties and assigned it the following value: it only returns empty columns
    ="<AccountDetailDto><AccountNumber>"& Parameters!AccountNumber.Value &"</AccountNumber><AccountType>"& Parameters!AccountType.Value &"</AccountType></AccountDetailDto>"
    You're help will be highly appreciated as I've been trying to solve this for a while now

    Hi Alisa,
    Perhaps I should explain my problem clearly...
    This is my query request that I send to the webservice:
    <Query>
    <Method Name="GetPerAccountAssetAllocation" Namespace="http://tempuri.org/">
    <Parameters>
    <Parameter Name="accountDetails" Type="XML" xmlns:d4p1="thevalue" xmlns:i="thevalue">
    <DefaultValue>
    <d4p1:AccountDetailDto>
    <d4p1:AccountNumber>12345</d4p1:AccountNumber>
    <d4p1:AccountType>JSE</d4p1:AccountType>
    </d4p1:AccountDetailDto>
    </DefaultValue>
    </Parameter>
    </Parameters>
    </Method>
    <SoapAction>http://tempuri.org/IPortfolioManagementService/GetPerAccountAssetAllocation</SoapAction>
    <ElementPath IgnoreNamespaces="true">*</ElementPath>
    </Query>
    It works well when I run it just like this, that is without specifying any parameters in the report data dialogue window or on the dataset parameters properties, it returns the values and columns correctly.
    So my problem is, I need to find out how(xml parameter syntax, steps e.t.c)
    I can do to allow users to specify the accountDetails parameter, its quite tricky for me coz its an xml type parameter, Im not sure if I should just specify the AccountNumber and
    ReportType parameters separately:
    I've tried the following without any success:
    1. Under the dataset properties:  I tried not to specify a default value for the accountDetails parameter on the xml query, then I added a parameter called "accountDetails" under the dataset parameters properties, then under parameter
    value I added the following xml value :
    <d4p1:AccountDetailDto>
    <d4p1:AccountNumber>Parameters!AccountNumber.Value</d4p1:AccountNumber>
    <d4p1:AccountType>Parameters!AccountType.Value</d4p1:AccountType>
    </d4p1:AccountDetailDto> 
    (I also added the AccountNumber and AccountType parameters under the report data dialogue window)
    This returns empty columns, is there something I'm missing, or am I doing this incorrectly?

  • Yosemite (10.10.3). Any browser don´t work with by wifi

    Hi
    I think i have the same problem that most the Mac users have had after upgrade from Mavericks to Yosemite (10.10.3) and are connected to internet by wifi.
    This new version don´t work fine, or in any way, with any internet browser (Safari, Mozilla, Crome...) when the connection it´s by WiFi. In fact i´m writing this with a ethernet cat 5e connection.
    I read in other thread that version 10.10.3 solved this problem but at least in my case it's not true.
    And like other users as i read, in some normal actions, like open "System Preferences", appears the wheel round and round during two o three seconds, when with Maverick don´t happens. Probably this last problem it´s a question of RAM memory, but nothing in the upgrade said that you need more that 8 GB to work with normality like before.
    Below this you have the Etrecheck report.
    Thanks in advance and greetings from Madrid
    Problem description:
    Yosemite (10.10.3). Wifi don´t work with any browser
    EtreCheck version: 2.1.8 (121)
    Report generated 12 de abril de 2015, 20:44:10 CEST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (13-inch, Early 2011) (Technical Specifications)
        MacBook Pro - model: MacBookPro8,1
        1 2.7 GHz Intel Core i7 CPU: 2-core
        8 GB RAM Upgradeable
            BANK 0/DIMM0
                4 GB DDR3 1333 MHz ok
            BANK 1/DIMM0
                4 GB DDR3 1333 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 29
    Video Information: ℹ️
        Intel HD Graphics 3000
            Color LCD 1280 x 800
    System Software: ℹ️
        OS X 10.10.3 (14D131) - Time since boot: 0:42:4
    Disk Information: ℹ️
        TOSHIBA MK5065GSXF disk0 : (500,11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 499.25 GB (275.44 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        MATSHITADVD-R   UJ-8A8
    USB Information: ℹ️
        Apple Computer, Inc. IR Receiver
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. Apple Internal Keyboard / Trackpad
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Configuration files: ℹ️
        /etc/hosts - Count: 30
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/VMware Fusion.app
        [not loaded]    com.vmware.kext.vmci (90.6.3) [Click for support]
        [not loaded]    com.vmware.kext.vmioplug.14.1.3 (14.1.3) [Click for support]
        [not loaded]    com.vmware.kext.vmnet (0249.89.30) [Click for support]
        [not loaded]    com.vmware.kext.vmx86 (0249.89.30) [Click for support]
        [not loaded]    com.vmware.kext.vsockets (90.6.0) [Click for support]
            /Library/Application Support/MacKeeper/AntiVirus.app
        [not loaded]    net.kromtech.kext.AVKauth (2.3.7 - SDK 10.9) [Click for support]
        [loaded]    net.kromtech.kext.Firewall (2.3.7 - SDK 10.9) [Click for support]
            /System/Library/Extensions
        [loaded]    com.Cycling74.driver.Soundflower (1.6.6 - SDK 10.6) [Click for support]
        [not loaded]    com.emu.driver.EMUUSBAudio (1.4.0 - SDK 10.6) [Click for support]
        [loaded]    com.hzsystems.terminus.driver (4) [Click for support]
        [not loaded]    com.macvide.driver.MacVideAudioConnectorDriver (1.0.0) [Click for support]
        [not loaded]    com.roxio.BluRaySupport (1.1.6) [Click for support]
        [not loaded]    com.wacom.kext.wacomtablet (6.3.7 - SDK 10.8) [Click for support]
            /Users/[redacted]/Library/Services/ToastIt.service/Contents/MacOS
        [not loaded]    com.roxio.TDIXController (2.0) [Click for support]
    Startup Items: ℹ️
        MySQLCOM: Path: /Library/StartupItems/MySQLCOM
        Startup items are obsolete in OS X Yosemite
    Problem System Launch Daemons: ℹ️
        [failed]    com.apple.mtrecorder.plist
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.CS5ServiceManager.plist [Click for support]
        [loaded]    com.divx.dms.agent.plist [Click for support]
        [loaded]    com.divx.update.agent.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [running]    com.wacom.wacomtablet.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [failed]    com.apple.spirecorder.plist
        [loaded]    com.bombich.ccc.plist [Click for support]
        [loaded]    com.macpaw.CleanMyMac2.Agent.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [running]    com.zeobit.MacKeeper.AntiVirus.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [loaded]    com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist [Click for support]
        [loaded]    com.macpaw.CleanMyMac2Helper.scheduledScan.plist [Click for support]
        [loaded]    com.macpaw.CleanMyMac2Helper.trashWatcher.plist [Click for support]
        [running]    com.zeobit.MacKeeper.Helper.plist [Click for support]
    User Login Items: ℹ️
        Mail    Aplicación Hidden (/Applications/Mail.app)
        Dropbox    Aplicación  (/Applications/Dropbox.app)
    Internet Plug-ins: ℹ️
        JavaAppletPlugin: Version: Java 8 Update 31 Check version
        WacomNetscape: Version: 2.1.0-1 - SDK 10.8 [Click for support]
        OVSHelper: Version: 1.1 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        WacomTabletPlugin: Version: WacomTabletPlugin 2.1.0.2 [Click for support]
        FlashPlayer-10.6: Version: 17.0.0.134 - SDK 10.6 [Click for support]
        DivX Web Player: Version: 3.2.4.1250 - SDK 10.6 [Click for support]
        Flash Player: Version: 17.0.0.134 - SDK 10.6 [Click for support]
        iPhotoPhotocast: Version: 7.0 - SDK 10.8
        QuickTime Plugin: Version: 7.7.3
        SharePointBrowserPlugin: Version: 14.0.0 [Click for support]
        DirectorShockwave: Version: 12.0.3r133 - SDK 10.6 [Click for support]
    User internet Plug-ins: ℹ️
        Google Earth Web Plug-in: Version: 7.1 [Click for support]
    Safari Extensions: ℹ️
        iMedia Converter Deluxe
        iTube Studio
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        Java  [Click for support]
        MySQL  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: NO - Auto backup turned off
        Volumes being backed up:
        Destinations:
            Time Machine [Local]
            Total size: 499.76 GB
            Total number of backups: 2
            Oldest backup: 2012-11-25 14:45:01 +0000
            Last backup: 2012-11-26 22:08:06 +0000
            Size of backup disk: Excellent
                Backup size 499.76 GB > (Disk size 0 B X 3)
    Top Processes by CPU: ℹ️
            18%    WindowServer
             0%    fontd
             0%    AppleSpell
             0%    taskgated
             0%    SystemUIServer
    Top Processes by Memory: ℹ️
        481 MB    MacKeeper Helper
        275 MB    AntiVirus
        215 MB    firefox
        172 MB    softwareupdated
        129 MB    mds_stores
    Virtual Memory Information: ℹ️
        3.04 GB    Free RAM
        3.49 GB    Active RAM
        668 MB    Inactive RAM
        1.39 GB    Wired RAM
        1.66 GB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Apr 12, 2015, 08:00:37 PM    Self test - passed
        Apr 12, 2015, 07:58:07 PM    /Library/Logs/DiagnosticReports/System Preferences_2015-04-12-195807_[redacted].hang

    Hi again Linc
    Sorry for de delay but i have receive the famous e-mail:
    "Hello!
    My name is Josephine Bergson representing the advertising department of the LLI Consulting company..." thats offers 950$ for put a banner in your web site!!. For that it´s necessary to run one supposed applet of Java, and after do that i have been checking, and apparently does nothing.
    Well. I have done old you tell me in your response and here you have the result of your "Diagnostic Test". Only one thing for you information: the wifi connection have works fine during two hours but fails run the  "Diagnostic Test". I want explain that the failures of wifi connection are intermittent.
    Thanks again. Wait for your answer
    Greetings
    Jesus
    Start time: 01:55:22 04/13/15
    Revision: 1311
    Model Identifier: MacBookPro8,1
    System Version: OS X 10.10.3 (14D131)
    Kernel Version: Darwin 14.3.0
    Time since boot: 3:28
    UID: 501
    SerialATA
        TOSHIBA MK5065GSXF                     
    FireWire
        eGo Rugged FW USB2 (iomega)
    USB
        Compact Optical Mouse 500 (Microsoft Corporation)
        Intuos5 touch S (WACOM Co., Ltd.)
        USB SMART CARD READER (C3PO)
        Storage (Iomega Corporation)
        Storage (Iomega Corporation)
        Deskjet F4100 series (Hewlett Packard)
    Bluetooth
        Apple Magic Mouse
        Apple Wireless Keyboard
    Activity
        CPU: user 10%, system 7%
        en1: in 636, out 19 (KiB/s)
    CPU usage (%)
        WindowServer (UID 0): 25,8
    Energy (lifetime)
        kernel_task (UID 0): 9.88
        WindowServer (UID 88): 6.97
    Energy (sampled)
        Safari (UID 501): 8.70
        storedownloadd (UID 501): 6.39
    DNS: 80.58.61.250 (static)
    Listeners
        kdc: kerberos
        launchd: afpovertcp
    Wi-Fi
        Security: WPA Personal
    Diagnostic reports
        2015-04-12 System Preferences hang
        2015-04-13 WacomTabletDriver crash
    HID errors: 11
    Kernel log
        Apr 11 16:13:39 vmnet: netif-vmnet8: SIOCPROTODETACH failed: 16.
        Apr 11 19:39:08 MacAuthEvent en1   Auth result for: 00:19:15:d0:8a:84 Auth request tx failed
        Apr 11 19:51:05 firefox (map: 0xffffff801d7fb0f0) triggered DYLD shared region unnest for map: 0xffffff801d7fb0f0, region 0x7fff8ec00000->0x7fff8ee00000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Apr 12 19:55:00 firefox (map: 0xffffff8040abe960) triggered DYLD shared region unnest for map: 0xffffff8040abe960, region 0x7fff90e00000->0x7fff91000000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Apr 12 20:01:34 [BNBMouseDevice][waitForHandshake][58-1f-aa-fc-6b-e9] Timeout waiting for handshake
        Apr 12 20:01:34 [BNBMouseDevice::_simpleSetReport][85.3] ERROR: setReport returned error 0xe00002d6 for reportID 0xD7
        Apr 12 20:01:34 [BNBMouseDevice::_enableMultitouchEvents][85.3] ERROR: _simpleSetReport returned error 0xe00002d6
        Apr 12 20:01:35 [AppleBluetoothHIDKeyboard][waitForHandshake][40-30-04-07-71-f9] Timeout waiting for handshake
        Apr 12 20:01:35 [AppleBluetoothHIDKeyboard][interruptChannelOpeningWL] final device setup failed
        Apr 12 20:01:35 [AppleBluetoothHIDKeyboard][sendData][40-30-04-07-71-f9] commandSleep in sendData returned an error
        Apr 12 20:01:37 [BNBMouseDevice][waitForHandshake][58-1f-aa-fc-6b-e9] Timeout waiting for handshake
        Apr 12 20:01:37 [BNBMouseDevice::_simpleSetReport][85.3] ERROR: setReport returned error 0xe00002d6 for reportID 0xD7
        Apr 12 20:01:37 [BNBMouseDevice::_enableMultitouchEvents][85.3] ERROR: _simpleSetReport returned error 0xe00002d6
        Apr 12 20:01:47 ### ERROR: Exit sniff failed (probably already unsniffed) (err=10)
        Apr 12 20:01:48 ### ERROR: opCode = 0x0406 (Disconnect) -- send request failed (err=0x0010 (kBluetoothHCIErrorHostTimeout))
        Apr 12 20:30:50 firefox (map: 0xffffff8016b324b0) triggered DYLD shared region unnest for map: 0xffffff8016b324b0, region 0x7fff89400000->0x7fff89600000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Apr 12 22:19:55 Kext com.apple.driver.AppleIntelSlowAdaptiveClocking failed to loadCouldn't alloc class "AppleThunderboltEDMSink"
        Apr 12 22:19:55 Failed to load kext com.apple.driver.AppleIntelSlowAdaptiveClocking Couldn't alloc class "AppleThunderboltIPService"
        Apr 12 22:21:10 [AppleBluetoothHIDKeyboard][sendData][40-30-04-07-71-f9] commandSleep in sendData returned an error
        Apr 12 22:21:13 [AppleBluetoothHIDKeyboard][waitForHandshake][40-30-04-07-71-f9] Timeout waiting for handshake
        Apr 12 22:21:13 [AppleBluetoothHIDKeyboard][interruptChannelOpeningWL] final device setup failed
        Apr 12 22:21:13 [AppleBluetoothHIDKeyboard][waitForHandshake][40-30-04-07-71-f9] Timeout waiting for handshake
        Apr 12 22:21:15 [AppleBluetoothHIDKeyboard][getExtendedReport] getReport returned error e00002d8
        Apr 12 22:21:21 [IOBluetoothHCIController][handleACLPacketTimeout] -- Disconnecting due to device not responding (ACL Packet timed out) for connection handle 0xb
        Apr 12 22:31:47 considerRebuildOfPrelinkedKernel com.apple.kext.OSvKernDSPLib triggered rebuild
    System log
        Apr 13 00:47:36 WindowServer: window 130 is already attached to window 12b
        Apr 13 00:47:43 WindowServer: WSGetSurfaceInWindow : Invalid surface 1086438165 for window 298
        Apr 13 00:47:43 WindowServer: WSGetSurfaceInWindow : Invalid surface 1086438165 for window 298
        Apr 13 00:47:43 WindowServer: WSGetSurfaceInWindow : Invalid surface 1086438165 for window 298
        Apr 13 00:53:05 fseventsd: Logging disabled completely for device:1: /Volumes/Antivirus for Mac
        Apr 13 00:53:46 BDCoreIssues: VerifyLo_(com.bitdefender.coreissues.issues.plist): 22
        Apr 13 00:53:46 BDCoreIssues: VerifyLo_(state.txt): 22
        Apr 13 00:55:39 WindowServer: WSGetSurfaceInWindow : Invalid surface 1061774428 for window 343
        Apr 13 00:58:59 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
        Apr 13 00:59:39 spindump: Error loading dyld shared cache uuid UUID: 0x8
        Apr 13 01:00:41 BDUpdDaemon: [com.bitdefender.upddaemon] reload('/var/tmp/Bitdefender/AvDaemon', 584): 60
        Apr 13 01:09:02 com.apple.kextd: Kext id com.apple.kernel.iokit not found; removing personalities from kernel.
        Apr 13 01:09:02 com.apple.kextd: String/URL conversion failure.
        Apr 13 01:09:08 fseventsd: event logs in /Volumes/Copia de Seguridad/.fseventsd out of sync with volume.  destroying old logs. (528 1 19163)
        Apr 13 01:09:09 fseventsd: log dir: /Volumes/Copia de Seguridad/.fseventsd getting new uuid: UUID
        Apr 13 01:09:09 fseventsd: event logs in /Volumes/JVT/.fseventsd out of sync with volume.  destroying old logs. (528 1 19164)
        Apr 13 01:09:10 fseventsd: log dir: /Volumes/JVT/.fseventsd getting new uuid: UUID
        Apr 13 01:09:27 WindowServer: MPServiceForDisplayDevice: Invalid device alias (0)
        Apr 13 01:09:35 WindowServer: MPServiceForDisplayDevice: Invalid device alias (0)
        Apr 13 01:17:20 WindowServer: _CGXRemoveWindowFromWindowMovementGroup: Window not in group
        Apr 13 01:17:40 WindowServer: _CGXRemoveWindowFromWindowMovementGroup: Window not in group
        Apr 13 01:22:21 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "App Store" for over 1.00 seconds. Server has re-enabled them.
        Apr 13 01:23:39 fseventsd: Logging disabled completely for device:1: /Volumes/Recovery HD
        Apr 13 01:28:20 fseventsd: Logging disabled completely for device:1: /Volumes/Recovery HD
        Apr 13 01:38:00 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    launchd log
        Apr 12 22:20:06 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Path not allowed in target domain: type = uid, path = /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/XPCSer vices/DataDetectorsDynamicData.xpc/Contents/MacOS/DataDetectorsDynamicData error = 1: Operation not permitted, origin = /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/SecurityAg ent.xpc
        Apr 12 22:20:06 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Path not allowed in target domain: type = uid, path = /System/Library/Frameworks/AppKit.framework/Versions/C/XPCServices/SandboxedSer viceRunner.xpc/Contents/MacOS/SandboxedServiceRunner error = 1: Operation not permitted, origin = /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/SecurityAg ent.xpc
        Apr 12 22:20:06 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Path not allowed in target domain: type = uid, path = /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/XPCTimeSta mpingService.xpc/Contents/MacOS/XPCTimeStampingService error = 1: Operation not permitted, origin = /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/SecurityAg ent.xpc
        Apr 12 22:20:06 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Path not allowed in target domain: type = uid, path = /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/XPCServices/com.apple.DictionaryServiceHelper.x pc/Contents/MacOS/com.apple.DictionaryServiceHelper error = 1: Operation not permitted, origin = /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/SecurityAg ent.xpc
        Apr 12 22:20:06 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Path not allowed in target domain: type = uid, path = /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/XPCKeychai nSandboxCheck.xpc/Contents/MacOS/XPCKeychainSandboxCheck error = 1: Operation not permitted, origin = /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/SecurityAg ent.xpc
        Apr 12 22:20:06 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Path not allowed in target domain: type = uid, path = /System/Library/Frameworks/IOKit.framework/Versions/A/XPCServices/IOServiceAuth orizeAgent.xpc/Contents/MacOS/IOServiceAuthorizeAgent error = 1: Operation not permitted, origin = /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/SecurityAg ent.xpc
        Apr 12 22:20:06 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Path not allowed in target domain: type = uid, path = /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/XP CServices/com.apple.SpeechRecognitionCore.brokerd.xpc/Contents/MacOS/com.apple.S peechRecognitionCore.brokerd error = 1: Operation not permitted, origin = /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/SecurityAg ent.xpc
        Apr 12 22:20:06 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Failed to bootstrap path: path = /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/XPCTimeSta mpingService.xpc, error = 1: Operation not permitted
        Apr 12 22:20:06 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Failed to bootstrap path: path = /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/XPCSer vices/DataDetectorsDynamicData.xpc, error = 1: Operation not permitted
        Apr 12 22:20:06 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Failed to bootstrap path: path = /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/XP CServices/com.apple.SpeechRecognitionCore.brokerd.xpc, error = 1: Operation not permitted
        Apr 12 22:20:06 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Failed to bootstrap path: path = /System/Library/Frameworks/AppKit.framework/Versions/C/XPCServices/SandboxedSer viceRunner.xpc, error = 1: Operation not permitted
        Apr 12 22:20:06 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Failed to bootstrap path: path = /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/XPCServices/com.apple.DictionaryServiceHelper.x pc, error = 1: Operation not permitted
        Apr 12 22:20:06 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Failed to bootstrap path: path = /System/Library/Frameworks/IOKit.framework/Versions/A/XPCServices/IOServiceAuth orizeAgent.xpc, error = 1: Operation not permitted
        Apr 12 22:20:06 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Failed to bootstrap path: path = /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/XPCKeychai nSandboxCheck.xpc, error = 1: Operation not permitted
        Apr 12 22:20:06 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Path not allowed in target domain: type = uid, path = /System/Library/Frameworks/AppKit.framework/Versions/C/XPCServices/SandboxedSer viceRunner.xpc/Contents/MacOS/SandboxedServiceRunner error = 1: Operation not permitted, origin = /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/SecurityAg ent.xpc
        Apr 12 22:20:06 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Path not allowed in target domain: type = uid, path = /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/XP CServices/com.apple.SpeechRecognitionCore.brokerd.xpc/Contents/MacOS/com.apple.S peechRecognitionCore.brokerd error = 1: Operation not permitted, origin = /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/SecurityAg ent.xpc
        Apr 12 22:20:06 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Path not allowed in target domain: type = uid, path = /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/XPCSer vices/DataDetectorsDynamicData.xpc/Contents/MacOS/DataDetectorsDynamicData error = 1: Operation not permitted, origin = /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/SecurityAg ent.xpc
        Apr 12 22:20:06 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Path not allowed in target domain: type = uid, path = /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/ com.apple.geod.xpc/Contents/MacOS/com.apple.geod error = 1: Operation not permitted, origin = /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/SecurityAg ent.xpc
        Apr 12 22:28:22 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.214, service = com.apple.photostream-agent, error = 119: Service is disabled
        Apr 13 00:53:38 com.apple.xpc.launchd.user.501.100006.Aqua: Could not read path: path = /Library/LaunchAgents/com.bitdefender.antivirusformac.plist, error = 2: No such file or directory
        Apr 13 00:53:38 com.apple.xpc.launchd.user.501.100006.Aqua: Could not read path: path = /Library/LaunchAgents/com.bitdefender.EndpointSecurityforMac.plist, error = 2: No such file or directory
        Apr 13 00:53:39 com.apple.xpc.launchd.domain.system: Could not read path: path = /Library/LaunchDaemons/com.bitdefender.upgrade.plist, error = 2: No such file or directory
        Apr 13 00:53:39 com.apple.xpc.launchd.domain.system: Could not read path: path = /Library/LaunchDaemons/com.bitdefender.epag.plist, error = 2: No such file or directory
        Apr 13 00:53:39 com.apple.xpc.launchd.domain.system: Could not read path: path = /Library/LaunchDaemons/com.bitdefender.AuthHelperTool.plist, error = 2: No such file or directory
        Apr 13 00:53:41 com.apple.xpc.launchd.domain.system: Could not read path: path = /Library/LaunchDaemons/com.bitdefender.epag.plist, error = 2: No such file or directory
    Console log
        Apr 10 22:42:36 fontd: Failed to open read-only database, regenerating DB
        Apr 10 22:44:05 mbloginhelper: Property list invalid for format: 200 (property lists cannot contain NULL)
        Apr 12 22:28:23 fontd: Failed to open read-only database, regenerating DB
    Loaded kernel extensions
        com.Cycling74.driver.Soundflower (1.6.6)
        com.hzsystems.terminus.driver (4)
        net.kromtech.kext.Firewall (2.3.7)
    System services loaded
        com.adobe.fpsaud
        com.apple.Kerberos.kdc
        - status: 1
        com.apple.mtrecorder
        - status: 78
        com.apple.spirecorder
        - status: 78
        com.apple.watchdogd
        com.bitdefender.AuthHelperTool
        com.bitdefender.CoreIssues
        com.bitdefender.Daemon
        com.bitdefender.UpdDaemon
        com.bitdefender.upgrade
        com.bombich.ccc
        com.macpaw.CleanMyMac2.Agent
        com.microsoft.office.licensing.helper
        com.oracle.java.Helper-Tool
        com.oracle.java.JavaUpdateHelper
        com.zeobit.MacKeeper.AntiVirus
    System services disabled
        com.apple.mtmd
        com.apple.mrt
        com.apple.mtmfs
    Login services loaded
        com.adobe.CS5ServiceManager
        com.apple.mrt.uiagent
        com.bitdefender.antivirusformac
        com.divx.dms.agent
        com.divx.update.agent
        com.google.keystone.user.agent
        com.macpaw.CleanMyMac2Helper.diskSpaceWatcher
        com.macpaw.CleanMyMac2Helper.scheduledScan
        com.macpaw.CleanMyMac2Helper.trashWatcher
        com.oracle.java.Java-Updater
        com.wacom.wacomtablet
        com.zeobit.MacKeeper.Helper
    Login services disabled
        com.macpaw.CleanMyMac.volumeWatcher
        com.macpaw.CleanMyMac.trashSizeWatcher
        com.apple.photostream-agent
        com.macpaw.CleanMyMac.helperTool
        com.adobe.AAM.Scheduler-1.0
        com.spotify.webhelper
    User services disabled
        com.macpaw.CleanMyMac.volumeWatcher
        com.macpaw.CleanMyMac.trashSizeWatcher
        com.apple.photostream-agent
        com.macpaw.CleanMyMac.helperTool
        com.adobe.AAM.Scheduler-1.0
        com.spotify.webhelper
    Startup items
        /Library/StartupItems/MySQLCOM/MySQLCOM
        /Library/StartupItems/MySQLCOM/StartupParameters.plist
    User login items
        Mail
        - /Applications/Mail.app
        Dropbox
        - /Applications/Dropbox.app
    Safari extensions
        iMedia Converter Deluxe 
        - com.wondershare.iskyvc
        iTube Studio
        - com.wondershare.safari.itubestudio
    Firefox extensions
        Clear Console
        QBurst
    iCloud errors
        cloudd 51
        comapple.CloudPhotosConfiguration 27
        cloudphotosd 8
        storedownloadd 2
        accountsd 2
        Finder 2
        Spotlight 1
        Mail 1
        CallHistorySyncHelper 1
    Continuity errors
        sharingd 3
    Restricted files: 1610
    Lockfiles: 178
    High file counts
        Desktop: 61
    Contents of /Library/LaunchAgents/com.bitdefender.antivirusformac.plist
        - mod date: Feb 23 15:39:54 2015
        - size (B): 690
        - checksum: 2783812254
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.bitdefender.antivirusformac</string>
        <key>Nice</key>
        <integer>1</integer>
        <key>KeepAlive</key>
        <dict>
        <key>PathState</key>
        <dict>
        <key>/private/var/db/.AVXupgRunning</key>
        <false/>
        </dict>
        </dict>
        <key>Program</key>
        <string>/Library/Bitdefender/AVP/AntivirusforMac.app/Contents/MacOS/Antivirusfo rMac</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Bitdefender/AVP/AntivirusforMac.app/Contents/MacOS/Antivirusfo rMac</string>
        </array>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.divx.dms.agent.plist
        - mod date: Nov 17 09:11:48 2014
        - size (B): 426
        - checksum: 637650676
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.divx.dms.agent</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/DivX/DivXMediaServer.app/Contents/MacOS/DivXMediaServer</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.divx.update.agent.plist
        - mod date: May 19 23:24:29 2014
        - size (B): 498
        - checksum: 3867571547
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.divx.update.agent</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/DivX/DivXUpdate.app/Contents/MacOS/DivXUpdate</string>
        <string>/silent</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>10800</integer>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.oracle.java.Java-Updater.plist
        - mod date: Jan 15 14:05:43 2014
        - size (B): 104
        - checksum: 1039097793
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.oracle.java.Java-Updater</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Resources/Java Updater.app/Contents/MacOS/Java Updater</string>
        <string>-bgcheck</string>
        </array>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
        <key>StartCalendarInterval</key>
        <dict>
        <key>Hour</key>
        <integer>50</integer>
        <key>Minute</key>
        <integer>52</integer>
        <key>Weekday</key>
        <integer>2</integer>
        </dict>
        </dict>
        ...and 1 more line(s)
    Contents of /Library/LaunchAgents/com.wacom.wacomtablet.plist
        - mod date: Oct 12 00:37:46 2013
        - size (B): 712
        - checksum: 2972905917
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>EnvironmentVariables</key>
        <dict>
        <key>RUN_WITH_LAUNCHD</key>
        <string>1</string>
        </dict>
        <key>KeepAlive</key>
        <dict>
        <key>SuccessfulExit</key>
        <true/>
        </dict>
        <key>Label</key>
        <string>com.wacom.wacomtablet</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>Aqua</string>
        <string>LoginWindow</string>
        </array>
        <key>Program</key>
        <string>/Library/Application Support/Tablet/WacomTabletSpringboard</string>
        <key>RunAtLoad</key>
        <true/>
        ...and 4 more line(s)
    Contents of /Library/LaunchDaemons/com.bitdefender.AuthHelperTool.plist
        - mod date: Feb 23 15:39:55 2015
        - size (B): 801
        - checksum: 329828832
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.bitdefender.AuthHelperTool</string>
        <key>KeepAlive</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Bitdefender/AVP/common.bundle/AuthHelperTool</string>
        <string>/Library/Bitdefender/AVP/common.bundle/Common.plist</string>
        </array>
        <key>Sockets</key>
        <dict>
        <key>MasterSocket</key>
        <dict>
        <key>SockFamily</key>
        <string>Unix</string>
        <key>SockPathMode</key>
        <integer>438</integer>
        <key>SockPathName</key>
        <string>/var/run/com.bitdefender.AuthHelperTool</string>
        <key>SockType</key>
        <string>Stream</string>
        ...and 4 more line(s)
    Contents of /Library/LaunchDaemons/com.bitdefender.upgrade.plist
        - mod date: Feb 23 15:39:55 2015
        - size (B): 609
        - checksum: 972189573
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.bitdefender.upgrade</string>
        <key>Nice</key>
        <integer>1</integer>
        <key>KeepAlive</key>
        <dict>
        <key>SuccessfulExit</key>
        <false/>
        </dict>
        <key>Program</key>
        <string>/Library/Bitdefender/AVP/antivirus.bundle/BDUpgDaemon</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Bitdefender/AVP/antivirus.bundle/BDUpgDaemon</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.bombich.ccc.plist
        - mod date: Nov 25 14:27:44 2012
        - size (B): 770
        - checksum: 3730953884
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Disabled</key>
        <false/>
        <key>Label</key>
        <string>com.bombich.ccc</string>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.bombich.ccc</string>
        </array>
        <key>ServiceIPC</key>
        <true/>
        <key>Sockets</key>
        <dict>
        <key>MasterSocket</key>
        <dict>
        <key>SockFamily</key>
        <string>Unix</string>
        <key>SockPathMode</key>
        <integer>438</integer>
        <key>SockPathName</key>
        ...and 7 more line(s)
    Contents of /Library/LaunchDaemons/com.macpaw.CleanMyMac2.Agent.plist
        - mod date: Nov 13 14:21:09 2014
        - size (B): 801
        - checksum: 3775555851
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.macpaw.CleanMyMac2.Agent</string>
        <key>MachServices</key>
        <dict>
        <key>com.macpaw.CleanMyMac2.Agent</key>
        <true/>
        </dict>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.macpaw.CleanMyMac2.Agent</string>
        </array>
        <key>Sockets</key>
        <dict>
        <key>MasterSocket</key>
        <dict>
        <key>SockFamily</key>
        <string>Unix</string>
        <key>SockPathMode</key>
        <integer>438</integer>
        <key>SockPathName</key>
        <string>/var/run/com.macpaw.CleanMyMac2.Agent.socket</string>
        ...and 6 more line(s)
    Contents of /Library/LaunchDaemons/com.zeobit.MacKeeper.AntiVirus.plist
        - mod date: Nov 26 20:34:16 2012
        - size (B): 455
        - checksum: 4244331265
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
            <dict>
        <key>Disabled</key>
        <false/>
        <key>Label</key>
        <string>com.zeobit.MacKeeper.AntiVirus</string>
        <key>Program</key>
        <string>/Library/Application Support/MacKeeper/AntiVirus.app/Contents/MacOS/AntiVirus</string>
        <key>OnDemand</key>
        <false/>
        </dict>
        </plist>
    Contents of /private/etc/hosts
        - mod date: Nov 29 21:28:38 2012
        - size (B): 1194
        - checksum: 1440585190
        127.0.0.1 localhost
        255.255.255.255 broadcasthost
        ::1             localhost
        fe80::1%lo0 localhost
        127.0.0.1 activate.adobe.com
        127.0.0.1 practivate.adobe.com
        127.0.0.1 ereg.adobe.com
        127.0.0.1 activate.wip3.adobe.com
        127.0.0.1 wip3.adobe.com
        127.0.0.1 3dns-3.adobe.com
        127.0.0.1 3dns-2.adobe.com
        127.0.0.1 adobe-dns.adobe.com
        127.0.0.1 adobe-dns-2.adobe.com
        127.0.0.1 adobe-dns-3.adobe.com
        127.0.0.1 ereg.wip3.adobe.com
        127.0.0.1 activate-sea.adobe.com
        127.0.0.1 wwis-dubc1-vip60.adobe.com
        127.0.0.1 activate-sjc0.adobe.com
        127.0.0.1 hl2rcv.adobe.com
        127.0.0.1 activate.adobe.com
        127.0.0.1 practivate.adobe.com
        127.0.0.1 ereg.adobe.com
        127.0.0.1 activate.wip3.adobe.com
        127.0.0.1 wip3.adobe.com
        127.0.0.1 3dns-3.adobe.com
        ...and 9 more line(s)
    Contents of Library/LaunchAgents/com.google.keystone.agent.plist
        - mod date: Mar 17 00:58:04 2015
        - size (B): 805
        - checksum: 2902800363
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.google.keystone.user.agent</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>ProgramArguments</key>
        <array>
         <string>/Users/USER/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bu ndle/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftw areUpdateAgent</string>
         <string>-runMode</string>
         <string>ifneeded</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>3523</integer>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist
        - mod date: Apr 11 01:00:25 2015
        - size (B): 639
        - checksum: 2857823656
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.macpaw.CleanMyMac2Helper.diskSpaceWatcher</string>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/bin/open</string>
        <string>-F</string>
        <string>-g</string>
        <string>/Users/USER/Library/Application Support/CleanMyMac 2/CleanMyMac 2 Helper.app</string>
        <string>--args</string>
        <string>-watchDiskSpace</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>StartInterval</key>
        <integer>3600</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.macpaw.CleanMyMac2Helper.scheduledScan.plist
        - mod date: Apr 11 01:00:25 2015
        - size (B): 738
        - checksum: 766325059
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.macpaw.CleanMyMac2Helper.scheduledScan</string>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/bin/open</string>
        <string>-F</string>
        <string>-g</string>
        <string>-n</string>
        <string>/Users/USER/Library/Application Support/CleanMyMac 2/CleanMyMac 2 Helper.app</string>
        <string>--args</string>
        <string>-scheduled</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartCalendarInterval</key>
        <dict>
        <key>Hour</key>
        <integer>13</integer>
        <key>Minute</key>
        <integer>25</integer>
        </dict>
        ...and 2 more line(s)
    Contents of Library/LaunchAgents/com.macpaw.CleanMyMac2Helper.trashWatcher.plist
        - mod date: Apr 11 01:00:25 2015
        - size (B): 664
        - checksum: 4001678413
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.macpaw.CleanMyMac2Helper.trashWatcher</string>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/bin/open</string>
        <string>-F</string>
        <string>-g</string>
        <string>/Users/USER/Library/Application Support/CleanMyMac 2/CleanMyMac 2 Helper.app</string>
        <string>--args</string>
        <string>-watchTrash</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>WatchPaths</key>
        <array>
        <string>/Users/USER/.Trash</string>
        </array>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.zeobit.MacKeeper.Helper.plist
        - mod date: Mar 16 11:47:58 2015
        - size (B): 619
        - checksum: 1794757485
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Disabled</key>
        <false/>
        <key>EnvironmentVariables</key>
        <dict>
        <key>ZBTimeStamp</key>
        <string>20150305190134</string>
        </dict>
        <key>Label</key>
        <string>com.zeobit.MacKeeper.Helper</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>OnDemand</key>
        <false/>
        <key>Program</key>
        <string>/Applications/MacKeeper.app/Contents/Resources/MacKeeper Helper.app/Contents/MacOS/MacKeeper Helper</string>
        </dict>
        </plist>
    Bad plists
        /Library/Preferences/com.epson.Epson Customer Research Participation.UnInstallList.plist
        /Library/Preferences/com.epson.Epson Event Manager.UnInstallList.plist
        /Library/Preferences/com.epson.EPSON Scan.UnInstallList.plist
        /Library/Preferences/com.epson.Epson Scanner ICA Driver.UnInstallList.plist
        /Library/Preferences/com.epson.Inkjet Printer Driver.UnInstallList.plist
    Extensions
        /System/Library/Extensions/EMUUSBAudio.kext
        - com.emu.driver.EMUUSBAudio
        /System/Library/Extensions/JMicronATA.kext
        - com.jmicron.JMicronATA
        /System/Library/Extensions/MacVideAudioConnectorDriver.kext
        - com.macvide.driver.MacVideAudioConnectorDriver
        /System/Library/Extensions/RoxioBluRaySupport.kext
        - com.roxio.BluRaySupport
        /System/Library/Extensions/SiLabsUSBDriver.kext
        - com.silabs.driver.CP210xVCPDriver
        /System/Library/Extensions/SiLabsUSBDriver64.kext
        - com.silabs.driver.CP210xVCPDriver64
        /System/Library/Extensions/Soundflower.kext
        - com.Cycling74.driver.Soundflower
        /System/Library/Extensions/Terminus.kext
        - com.hzsystems.terminus.driver
        /System/Library/Extensions/Wacom Tablet.kext
        - com.wacom.kext.wacomtablet
    Applications
        /Applications/Adobe After Effects CS5/Adobe After Effects CS5.app
        - com.adobe.AfterEffects
        /Applications/Adobe After Effects CS5/Adobe After Effects Render Engine.app
        - N/A
        /Applications/Adobe Fireworks CS5/Configuration/Mac/Shared/AdobeAIR/SDK/runtimes/air/mac/Adobe AIR.framework/Versions/1.0/Resources/Template.app
        - com.adobe.air.NativeTemplate
        /Applications/Adobe Flash CS5/AIK2.0/lib/nai/lib/naib.app
        - APP_ID
        /Applications/Adobe Flash CS5/AIK2.0/runtimes/air/mac/Adobe AIR.framework/Resources/Template.app
        - com.adobe.air.NativeTemplate
        /Applications/Adobe Flash CS5/AIK2.0/runtimes/air/mac/Adobe AIR.framework/Versions/1.0/Resources/Template.app
        - com.adobe.air.NativeTemplate
        /Applications/Adobe Flash CS5/AIK2.0/runtimes/air/mac/Adobe AIR.framework/Versions/Current/Resources/Template.app
        - com.adobe.air.NativeTemplate
        /Applications/Adobe Media Encoder CS5/PCI/AMEPCI/resources/uninstall/Uninstall Product.app
        - com.Adobe.Uninstall Product
        /Applications/Adobe Media Encoder CS5/PCI/Dolby/resources/uninstall/Uninstall Product.app
        - com.Adobe.Uninstall Product
        /Applications/Adobe Media Player.app
        - com.adobe.amp.UUID.1
        /Applications/Adobe/Adobe Help.app
        - chc.UUID.1
        /Applications/Audacity/Audacity.app
        - net.sourceforge.audacity
        /Applications/AudioXplorer.app
        - ch.curvuspro.audioxplorer
        /Applications/BitTorrent.app
        - com.bittorrent.BitTorrent
        /Applications/Creative Professional/E-MU USB Audio/E-MU USB Audio Control Panel.app
        - com.creative-professional.E-MU USB Audio Control Panel
        /Applications/Creative Professional/E-MU USB Audio/E-MU USB Audio Uninstaller.app
        - com.emu.Uninstaller
        /Applications/DivX/DivX Preferences.app
        - com.divx.divxprefs
        /Applications/DivX/Uninstall DivX for Mac.app
        - com.divxinc.uninstalldivxformac
        /Applications/Epson Software/EPSON Scan Settings.app
        - com.epson.scan.settingutility
        /Applications/Epson Software/EPSON Scan.app
        - com.epson.scan.standalone
        /Applications/Epson Software/Event Manager.app
        - com.epson.ProjectManager
        /Applications/Google SketchUp 8/SketchUp.app
        - com.google.sketchupfree8
        /Applications/Img2icns.app
        - net.shinyfrog.img2icns
        /Applications/Lucien.app
        - N/A
        /Applications/MacScan 2/MacScan Scheduler.app
        - com.securemac.MacScan Scheduler
        /Applications/MacScan 2/MacScan.app
        - com.securemac.MacScan
        /Applications/Microsoft Communicator.app
        - com.microsoft.Communicator
        /Applications/Microsoft Messenger.app
        - com.microsoft.Messenger
        /Applications/Microsoft Office 2011/Microsoft Document Connection.app:́n de documentos de Microsoft:
        - N/A
        /Applications/Microsoft Office 2011/Microsoft Excel.app
        - com.microsoft.Excel
        /Applications/Microsoft Office 2011/Microsoft Outlook.app
        - com.microsoft.Outlook
        /Applications/Microsoft Office 2011/Microsoft PowerPoint.app
        - com.microsoft.Powerpoint
        /Applications/Microsoft Office 2011/Microsoft Word.app
        - com.microsoft.Word
        /Applications/Microsoft Office 2011/Office/Alerts Daemon.app
        - com.microsoft.AlertsDaemon
        /Applications/Microsoft Office 2011/Office/Equation Editor.app
        - com.microsoft.EquationEditor
        /Applications/Microsoft Office 2011/Office/Microsoft Chart Converter.app
        - com.microsoft.openxml.chart.app
        /Applications/Microsoft Office 2011/Office/Microsoft Clip Gallery.app:́a de imágenes de Microsoft:
        - N/A
        /Applications/Microsoft Office 2011/Office/Microsoft Database Daemon.app
        - com.microsoft.outlook.database_daemon
        /Applications/Microsoft Office 2011/Office/Microsoft Database Utility.app
        - com.microsoft.outlook.database_utility
        /Applications/Microsoft Office 2011/Office/Microsoft Graph.app
        - com.microsoft.Graph
        /Applications/Microsoft Office 2011/Office/Microsoft Office Reminders.app
        - com.microsoft.outlook.office_reminders
        /Applications/Microsoft Office 2011/Office/Microsoft Office Setup Assistant.app:́n de Microsoft Office:
        - N/A
        /Applications/Microsoft Office 2011/Office/Microsoft Query
        - N/A
        /Applications/Microsoft Office 2011/Office/Microsoft Upload Center.app
        - com.microsoft.office.uploadcenter
        /Applications/Microsoft Office 2011/Office/My Day.app
        - com.microsoft.myday
        /Applications/Microsoft Office 2011/Office/Open XML for Excel.app
        - com.microsoft.openxml.excel.app
        /Applications/Microsoft Office 2011/Office/SyncServicesAgent.app
        - com.microsoft.SyncServicesAgent
        /Applications/Pure Analyzer System.app
        - com.gaelyvan.flux.pureanalysersystem
        /Applications/Remote Desktop Connection.app:́n a Escritorio remoto:
        - N/A
        /Applications/Sample Manager.app
        - com.audiofile.SampleManager
        /Applications/Smaart.app
        - Rational Acoustics
        /Applications/Soundflower/Soundflowerbed.app
        - com.cycling74.Soundflowerbed
        /Applications/StellarPhoenix.app
        - com.StellarInformationSystemLtd..StellarPhoenix
        /Applications/StuffIt 12/DropStuff.app
        - com.stuffit.DropStuff
        /Applications/StuffIt 12/MagicMenu.app
        - com.stuffit

  • Report Parameters behaving strangely

    Hello,
    I just completed my report in the designer provided with visual studio 2008, it's a relatively complex report with 6 subreports and has multiple detail sections. The parent report has one parameter which is used in a Database command. The report works nicely when previewing from the designer and only shows up one required parameters as it should. All the subreports have parameters as well but these are all linked to things on the parent report.
    The problem is when I try to execute the report from code, it ignores my parameters and proceeds to ask for multiple parameters, both including the parent parameters and all sub report parameters. If I enter these manually just to test if it works, I then get a message saying there's an error in one of the subreport's record selection formula. However I'm not sure how much I believe this as the previewing works completely fine.
    I just have no idea what is happening and why I am getting requests for so many parameters?
    Marlon

    Update ***
    I have managed to work through towards getting the report to display in the .NET app now, I needed to check the IsLinked() fucntion before assigning parameters.
    However, I have now been presented with an even more weird problem: If I switch database in code, I now get asked to enter a parameter I know is a linked one, if I do I get a message saying the record selection formula references an unknown field. But if I get the designer to change database, then get it to preview, it works flawlessly (both in the previewer and in the application). Until I change the database back to the original one, where I get the same error.
    Our application needs to be used in many client organisations with each having different connection strings / databases (all have the same schema obviously) so I need this report to run independent of what the database it was designed / compiled on.
    Here is the code I use to switch database within the application, is there anything different to the way I do it to the way the crystal report designer does it? As the designer is obviously doing something behind the scenes.
    This code has worked on the 15 or so reports I've designed so far.
                   ReportDocument cryRpt = new ReportDocument();
                    TableLogOnInfo tLI = new TableLogOnInfo();
                    ConnectionInfo cI = new ConnectionInfo();
                    Tables tables;
                    cryRpt.Load(reportPath);
                        cI.ServerName = (string)builder["Data Source"];
                        cI.DatabaseName = (string)builder["Initial Catalog"];
                        cI.UserID = (string)builder["User ID"];
                        cI.Password = (string)builder["Password"];
                        tables = cryRpt.Database.Tables;
                        foreach (Table t in tables)
                            tLI = t.LogOnInfo;
                            tLI.ConnectionInfo = cI;
                            t.ApplyLogOnInfo(tLI);

  • "Report Parameters" - only default showing / translation

    Hi,
    I did a BI Publisher with the "Analyzer for Excel" and I have 2 issues.
    1. I'm calling the report from an ApEx application with the following URL:
    .../R_Rapport_analyse_E.xdo?_xpf=&_xpt=1&Calendrier=130001&No_demande=5
    The data showed under "Report Data" are ok, but not the ones under "Report Parameters" (Calendrier and No_demande). The default ones are displayed.
    2. Is there a way to translate "Report Parameters" and "Report Data". I've tried to change them and save the template, but it's not working.
    Thanks in advance.

    Post Author: sreenivas
    CA Forum: Publishing
    your steps ok
    but do this one
    you should be able to update the universe details (tools > universe > (universe)> refresh > import etc) and then run your report to get rid of partial results...

Maybe you are looking for

  • Masks and blend modes

    Hello all, So, I'm creating a chest caption and I wanted to have the text on a semi-transparent rectangle background. I also want to use a soft light blend mode on the rectangle. Now, I also want the rectangle to quickly appear from nowhere so I am u

  • IPad loses sound aprox every 4 hours

    My iPad loses the sound aprox every 4 hours. When it happens somehow the camera recording function is also not working only Still picture. After restart everything works again. I reset to factory default and has reloaded from the backup same happens.

  • How can I get the html BODY marginwidth/leftmargin-rightmargin to work?

    I am developing some web pages where I want both a left and a right margin. I DO NOT want to play with CSS. There are html attributes MARGINWIDTH, LEFTMARGIN, and RIGHTMARGIN for the BODY element. The first works with IE, while the last two work with

  • Bluetooth Printer Installation

    I'm trying to install an HP 5580 with provided Bluetooth dongle. When I attach the HP bluetooth dongle to the port on iMac, it disconnects connection to my wireless mouse and wireless keyboard. Is this a compatability issue, do I have the sequence wr

  • Printing out to a gui

    Hi, Can someone give me a hand with this?? for (int b = 0; b < a.length; b++)           ta = new JTextArea(a); this is going through my array of names and I want them to print out but when I run the program it keeps over writing the line and I end up