Failed to execute 'postMessage' on 'DOMWindow':

When I create a SharePoint Provider hosted App in visual studio, visual studio creates two projects: App and web application. both projects runs over HTTPS
I created a list in the App and entered some random data. Now, I need to get the data I entered from the web application using CSOM. When I try to get it through cross domain library (SP.RequestExecuter.Js) but I get the following error:
Here is my code:
function execCSOMListRequest() {
    var context;
    var factory;
    var appContextSite;
    var collList;
    //Get the client context of the AppWebUrl
    context = new SP.ClientContext(appwebUrl);
    //Get the ProxyWebRequestExecutorFactory
    factory = new SP.ProxyWebRequestExecutorFactory(appwebUrl);
    //Assign the factory to the client context.
    context.set_webRequestExecutorFactory(factory);
    //Get the app context of the Host Web using the client context of the Application.
    appContextSite = new SP.AppContextSite(context, hostwebUrl);
    //Get the Web
    this.web = context.get_web();
    // Get the Web lists.
    collList = this.web.get_lists();
    //Load Lists.
    context.load(collList);
    context.executeQueryAsync(
        Function.createDelegate(this, successListHandlerCSOM),
        Function.createDelegate(this, errorListHandlerCSOM)
    //Success Lists
    function successListHandlerCSOM() {
        var listEnumerator = collList.getEnumerator();
        $('#lblResultLists').html("<b>Via CSOM the lists are:</b><br/>");
        while (listEnumerator.moveNext()) {
            var oList = listEnumerator.get_current();
            $('#lblResultLists').append(oList.get_title() + " (" + oList.get_itemCount() + ")<br/>");
    //Error Lists
    function errorListHandlerCSOM(data, errorCode, errorMessage) {
        $('#lblResultLists').html("Could not complete CSOM Call: " + errorMessage);
Any solution ?

Part of Standard Mashup js Code that gets invoked when you click on Preview:
// HTML5: window.postMessage
        if (isHostMethod(window, 'postMessage') || isHostMethod(document, 'postMessage')) {
            protocol = '0';
        // IE8-
        else {
            alert('This product only supports IE8(+) & Firefox.');
        if (protocol == '0') {
            //host
            if (isHost) {
                remoteDomain = config.remoteDomain;
                remote = targetDoc.getElementById(config.frameId).contentWindow;
                on(window, 'message', hostOnMsg);
                timer = setInterval(syn, 500);
            //guest
            else {
                this.closeWindow = function () {
                    this.postMessage('CLOSE');
                on(window, 'message', guestOnMsg);
            this.postMessage = function (message) {
               remote.postMessage(message, remoteDomain);
Line marked with red is the one stopping you from viewing mashups. I believe you are not using InternetExplorer because as per what I see in this code, the red line doesn't get executed when you try to preview using IE.
Even, I am able to replicate your problem in Chrome but not in IE. Did you try in IE already(preferably >= 8)?

Similar Messages

  • XPath expression failed to execute.

    Hi Everybody ,
    I am working  AIA PIP 3.1 for JDE E1.I am facing some errors so that i can't proceed.
    See the log errors as below:
    javax.xml.ws.soap.SOAPFaultException: XPath expression failed to execute. An error occurs while processing the XPath expression; the expression is ora:processXSLT('xsl/Xform_BillOfMaterialsListABM_to_BillOfMaterialsListAXML.xsl',bpws:getVariableData('InitialLoadBillOfMaterialsListReqMsg','InitialLoadBillOfMaterialsList'),bpws:getVariableData('Parameters')). The XPath expression failed to execute; the reason was: oracle.fabric.common.xml.xpath.XPathFunctionException: javax.xml.transform.TransformerException: oramds:/deployed-composites/default/InitialLoadBillOfMaterialsListJDEE1toAgileImpl_rev1.0/xsl/Xform_BillOfMaterialsListABM_to_BillOfMaterialsListAXML.xsl<Line 18, Column 271>: XML-22044: (Error) Extension function error: Error invoking 'lookupXRef':'oracle.tip.xref.exception.RepositoryException: lookup could not find values in column name "AGILE_01" for table name "oramds:/apps/AIAMetaData/xref/ITEM_ITEMID.xref" using reference column name "JDEE1_01" and reference value "731882::M30" Please ensure lookup criteria has a match.'. Check the detailed root cause described in the exception message text and verify that the XPath query is correct.
    Please reply me ASAP,
    Waiting for your response.....
    Regards
    Jyoti Nayak

    Hi,
    Ya i checked the data for same table,but i didn't get any XREF related information in xref_data table.
    Did you mean that, data should already present under AIAFPINST_XREF.Probably xref is meant for storing dynamic value.
    Please check the above error and reply me soon.
    With Regards
    Jyoti Nayak

  • [Solved] "slim: failed to execute login command" after awesomewm updat

    Hi,
    i updated some weeks ago via pacman -Syu, where also awesome wm was updated from 3.4.* to 3.5.* so I updated my rc.lua as it is told on their wiki, but i cant login with my rc.lua anymore i got the failed to execute login command error from slime. If i use the shipped efault rc.lua it works fine, can someone help me to figure out whats wrong with my rc.lua?
    -- Standard awesome library
    local gears = require("gears")
    local awful = require("awful")
    awful.rules = require("awful.rules")
    require("awful.autofocus")
    -- Widget and layout library
    local wibox = require("wibox")
    -- Theme handling library
    local beautiful = require("beautiful")
    -- Notification library
    local naughty = require("naughty")
    local menubar = require("menubar")
    local vicious = require("vicious")
    function fullscreens(c)
    awful.client.floating.toggle(c)
    if awful.client.floating.get(c) then
    local clientX = screen[1].workarea.x
    local clientY = screen[1].workarea.y
    local clientWidth = 0
    -- look at http://www.rpm.org/api/4.4.2.2/llimits_8h-source.html
    local clientHeight = 2147483640
    for s = 1, screen.count() do
    clientHeight = math.min(clientHeight, screen[s].workarea.height)
    clientWidth = clientWidth + screen[s].workarea.width
    end
    local t = c:geometry({x = clientX, y = clientY, width = clientWidth, height = clientHeight})
    else
    --apply the rules to this client so he can return to the right tag if there is a rule for that.
    awful.rules.apply(c)
    end
    -- focus our client
    client.focus = c
    end
    -- {{{ Error handling
    -- Check if awesome encountered an error during startup and fell back to
    -- another config (This code will only ever execute for the fallback config)
    if awesome.startup_errors then
    naughty.notify({ preset = naughty.config.presets.critical,
    title = "Oops, there were errors during startup!",
    text = awesome.startup_errors })
    end
    -- Handle runtime errors after startup
    do
    local in_error = false
    awesome.connect_signal("debug::error", function (err)
    -- Make sure we don't go into an endless error loop
    if in_error then return end
    in_error = true
    naughty.notify({ preset = naughty.config.presets.critical,
    title = "Oops, an error happened!",
    text = err })
    in_error = false
    end)
    end
    -- {{{ Variable definitions
    -- Themes define colours, icons, and wallpapers
    -- beautiful.init("/home/kili/Repositories/awesome-themes/arch/theme.lua")
    beautiful.init("/usr/share/awesome/themes/default/theme.lua")
    -- This is used later as the default terminal and editor to run.
    terminal = "urxvt"
    editor = os.getenv("EDITOR") or "nano"
    editor_cmd = terminal .. " -e " .. editor
    -- Default modkey.
    -- Usually, Mod4 is the key with a logo between Control and Alt.
    -- If you do not like this or do not have such a key,
    -- I suggest you to remap Mod4 to another key using xmodmap or other tools.
    -- However, you can use another modifier like Mod1, but it may interact with others.
    modkey = "Mod4"
    -- Table of layouts to cover with awful.layout.inc, order matters.
    layouts =
    awful.layout.suit.tile,
    awful.layout.suit.tile.left,
    awful.layout.suit.tile.bottom,
    awful.layout.suit.tile.top,
    awful.layout.suit.floating,
    awful.layout.suit.fair,
    awful.layout.suit.fair.horizontal,
    awful.layout.suit.spiral,
    awful.layout.suit.spiral.dwindle,
    awful.layout.suit.max,
    awful.layout.suit.max.fullscreen,
    awful.layout.suit.magnifier
    -- {{{ Tags
    -- Define a tag table which hold all screen tags.
    tags = {}
    for s = 1, screen.count() do
    -- Each screen has its own tag table.
    tags[s] = awful.tag({ 1, 2, 3, 4, 5}, s, layouts[1])
    end
    -- {{{ Menu
    -- Create a laucher widget and a main menu
    myawesomemenu = {
    { "manual", terminal .. " -e man awesome" },
    { "edit config", editor_cmd .. " " .. awesome.conffile },
    { "restart", awesome.restart },
    { "quit", awesome.quit }
    mymainmenu = awful.menu({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon },
    { "open terminal", terminal }
    mylauncher = awful.widget.launcher({ image = beautiful.awesome_icon, menu = mymainmenu })
    -- {{{ Wibox
    -- Create a textclock widget
    batwidget = wibox.widget.textbox()
    vicious.register(batwidget, vicious.widgets.bat,
    function(widget,args)
    local formatstring = " Bat: "..args[1]..args[2] .."%".. " "..args[3] .. " "
    if args[2] <= 25 and args[1] == "-" then
    return "<span color=\"red\">".. formatstring .. "</span>"
    end
    return formatstring
    end, 60, "BAT0")
    netwidgetETH = wibox.widget.textbox()
    netwidgetWIFI = wibox.widget.textbox()
    vicious.register(netwidgetETH, vicious.widgets.net, ' eth0:<span color="#CC9393">${eth0 down_kb}</span> <span color="#7F9F7F">${eth0 up_kb}</span>', 3)
    vicious.register(netwidgetWIFI, vicious.widgets.net,' wlan0:<span color="#CC9393">${wlan0 down_kb}</span> <span color="#7F9F7F">${wlan0 up_kb}</span>', 3)
    menubar.utils.terminal = terminal
    mytextclock = awful.widget.textclock()--{ align = "right" })
    -- Create a systray
    mysystray = wibox.widget.systray()
    -- Create a wibox for each screen and add it
    mywibox = {}
    mypromptbox = {}
    mylayoutbox = {}
    mytaglist = {}
    mytaglist.buttons = awful.util.table.join(
    awful.button({ }, 1, awful.tag.viewonly),
    awful.button({ modkey }, 1, awful.client.movetotag),
    awful.button({ }, 3, awful.tag.viewtoggle),
    awful.button({ modkey }, 3, awful.client.toggletag),
    awful.button({ }, 4, function(t) awful.tag.viewnext(aweful.tag.getscreen(t)) end),
    awful.button({ }, 5, function(t) awful.tag.viewprev(aweful.tag.getscreen(t)) end)
    mytasklist = {}
    mytasklist.buttons = awful.util.table.join(
    awful.button({ }, 1, function (c)
    if c == client.focus then
    c.minimized = true
    else
    c.minimized = false
    if not c:isvisible() then
    awful.tag.viewonly(c:tags()[1])
    end
    -- This will also un-minimize
    -- the client, if needed
    client.focus = c
    c:raise()
    end
    end),
    awful.button({ }, 3, function ()
    if instance then
    instance:hide()
    instance = nil
    else
    instance = awful.menu.clients({ width=250 })
    end
    end),
    awful.button({ }, 4, function ()
    awful.client.focus.byidx(1)
    if client.focus then client.focus:raise() end
    end),
    awful.button({ }, 5, function ()
    awful.client.focus.byidx(-1)
    if client.focus then client.focus:raise() end
    end))
    for s = 1, screen.count() do
    -- Create a promptbox for each screen
    mypromptbox[s] = awful.widget.prompt()--{ layout = awful.widget.layout.horizontal.leftright })
    -- Create an imagebox widget which will contains an icon indicating which layout we're using.
    -- We need one layoutbox per screen.
    mylayoutbox[s] = awful.widget.layoutbox(s)
    mylayoutbox[s]:buttons(awful.util.table.join(
    awful.button({ }, 1, function () awful.layout.inc(layouts, 1) end),
    awful.button({ }, 3, function () awful.layout.inc(layouts, -1) end),
    awful.button({ }, 4, function () awful.layout.inc(layouts, 1) end),
    awful.button({ }, 5, function () awful.layout.inc(layouts, -1) end)))
    -- Create a taglist widget
    mytaglist[s] = awful.widget.taglist(s, awful.widget.taglist.filter.all, mytaglist.buttons)
    -- Create a tasklist widget
    mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, mytasklist.buttons)
    -- Create the wibox
    mywibox[s] = awful.wibox({ position = "top", screen = s })
    -- Widgets that are aligned to the left
    local left_layout = wibox.layout.fixed.horizontal()
    left_layout:add(mylauncher)
    left_layout:add(mytaglist[s])
    left_layout:add(mypromptbox[s])
    -- Widgets that are aligned to the right
    local right_layout = wibox.layout.fixed.horizontal()
    if s == 1 then right_layout:add(wibox.widget.systray()) end
    right_layout:add(netwidgetWIFI)
    right_layout:add(netwidgetETH)
    right_layout:add(batwidget)
    right_layout:add(mytextclock)
    right_layout:add(mylayoutbox[s])
    -- Now bring it all together (with the tasklist in the middle)
    local layout = wibox.layout.align.horizontal()
    layout:set_left(left_layout)
    layout:set_middle(mytasklist[s])
    layout:set_right(right_layout)
    mywibox[s]:set_widget(layout)
    -- Add widgets to the wibox - order matters
    --mywibox[s].widgets = {
    -- mylauncher,
    -- mytaglist[s],
    -- mypromptbox[s],
    --layout = awful.widget.layout.horizontal.leftright
    -- mylayoutbox[s],
    -- mytextclock,
    -- batwidget,
    -- netwidgetETH,
    -- netwidgetWIFI,
    -- s == 1 and mysystray or nil,
    -- mytasklist[s],
    -- layout = awful.widget.layout.horizontal.rightleft
    end
    -- {{{ Mouse bindings
    root.buttons(awful.util.table.join(
    awful.button({ }, 3, function () mymainmenu:toggle() end),
    awful.button({ }, 4, awful.tag.viewnext),
    awful.button({ }, 5, awful.tag.viewprev)
    -- {{{ Key bindings
    globalkeys = awful.util.table.join(
    awful.key({ modkey, }, "Left", awful.tag.viewprev ),
    awful.key({ modkey, }, "Right", awful.tag.viewnext ),
    awful.key({ modkey, }, "Escape", awful.tag.history.restore),
    awful.key({ modkey, }, "j",
    function ()
    awful.client.focus.byidx( 1)
    if client.focus then client.focus:raise() end
    end),
    awful.key({ modkey, }, "k",
    function ()
    awful.client.focus.byidx(-1)
    if client.focus then client.focus:raise() end
    end),
    awful.key({ modkey, }, "w", function () mymainmenu:show() end),
    -- Layout manipulation
    awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end),
    awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end),
    awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end),
    awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end),
    awful.key({ modkey, }, "u", awful.client.urgent.jumpto),
    awful.key({ modkey, }, "Tab",
    function ()
    awful.client.focus.history.previous()
    if client.focus then
    client.focus:raise()
    end
    end),
    -- Standard program
    awful.key({ modkey, }, "Return", function () awful.util.spawn(terminal) end),
    awful.key({ modkey, "Control" }, "r", awesome.restart),
    awful.key({ modkey, "Shift" }, "q", awesome.quit),
    awful.key({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end),
    awful.key({ modkey, }, "h", function () awful.tag.incmwfact(-0.05) end),
    awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1) end),
    awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1) end),
    awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1) end),
    awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1) end),
    awful.key({ modkey, }, "space", function () awful.layout.inc(layouts, 1) end),
    awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(layouts, -1) end),
    awful.key({ modkey, "Control" }, "n", awful.client.restore),
    -- Prompt
    awful.key({ modkey }, "r", function () mypromptbox[mouse.screen]:run() end),
    awful.key({ modkey }, "x",
    function ()
    awful.prompt.run({ prompt = "Run Lua code: " },
    mypromptbox[mouse.screen].widget,
    awful.util.eval, nil,
    awful.util.getdir("cache") .. "/history_eval")
    end),
    -- Multimedia
    awful.key({ }, "XF86AudioLowerVolume", function () awful.util.spawn("amixer -q sset Master 2dB-") end),
    awful.key({ }, "XF86AudioRaiseVolume", function () awful.util.spawn("amixer -q sset Master 2dB+") end),
    awful.key({ }, "XF86AudioNext",function () awful.util.spawn( "mocp -f" ) end),
    awful.key({ }, "XF86AudioPrev",function () awful.util.spawn( "mocp -r" ) end),
    awful.key({ }, "XF86AudioPlay",function () awful.util.spawn( "mocp -G" ) end),
    awful.key({ }, "Print", function () awful.util.spawn("ksnapshot") end),
    awful.key({ }, "", function () awful.util.spawn("slimlock") end)
    clientkeys = awful.util.table.join(
    awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.fullscreen end),
    awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end),
    awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ),
    awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),
    awful.key({ modkey, }, "o", awful.client.movetoscreen ),
    -- awful.key({ modkey, "Shift" }, "r", function (c) c:redraw() end),
    awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end),
    awful.key({ modkey, }, "n",
    function (c)
    -- The client currently has the input focus, so it cannot be
    -- minimized, since minimized clients can't have the focus.
    c.minimized = true
    end),
    awful.key({ modkey, }, "m",
    function (c)
    c.maximized_horizontal = not c.maximized_horizontal
    c.maximized_vertical = not c.maximized_vertical
    end),
    awful.key({ modkey, "Shift" }, "f", fullscreens)
    -- Compute the maximum number of digit we need, limited to 9
    keynumber = 0
    for s = 1, screen.count() do
    keynumber = math.min(9, math.max(#tags[s], keynumber))
    end
    -- Bind all key numbers to tags.
    -- Be careful: we use keycodes to make it works on any keyboard layout.
    -- This should map on the top row of your keyboard, usually 1 to 9.
    for i = 1, keynumber do
    globalkeys = awful.util.table.join(globalkeys,
    awful.key({ modkey }, "#" .. i + 9,
    function ()
    local screen = mouse.screen
    if tags[screen][i] then
    awful.tag.viewonly(tags[screen][i])
    end
    end),
    awful.key({ modkey, "Control" }, "#" .. i + 9,
    function ()
    local screen = mouse.screen
    if tags[screen][i] then
    awful.tag.viewtoggle(tags[screen][i])
    end
    end),
    awful.key({ modkey, "Shift" }, "#" .. i + 9,
    function ()
    if client.focus and tags[client.focus.screen][i] then
    awful.client.movetotag(tags[client.focus.screen][i])
    end
    end),
    awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9,
    function ()
    if client.focus and tags[client.focus.screen][i] then
    awful.client.toggletag(tags[client.focus.screen][i])
    end
    end))
    end
    clientbuttons = awful.util.table.join(
    awful.button({ }, 1, function (c) client.focus = c; c:raise() end),
    awful.button({ modkey }, 1, awful.mouse.client.move),
    awful.button({ modkey }, 3, awful.mouse.client.resize))
    -- Set keys
    root.keys(globalkeys)
    -- Set Firefox to always map on tags number 2 of screen 1.
    -- { rule = { class = "Firefox" },
    -- properties = { tag = tags[1][2] } },
    -- {{{ Rules
    if screen.count() > 1 then
    awful.rules.rules = {
    -- All clients will match this rule.
    { rule = { },
    properties = { border_width = beautiful.border_width,
    -- border_color = beautiful.border_normal,
    focus = true,
    keys = clientkeys,
    buttons = clientbuttons } },
    { rule = { class = "MPlayer" },
    properties = { floating = true } },
    { rule = { class = "gimp" },
    properties = { floating = true } },
    { rule = { class = "Xdialog" },
    properties = { floating = true } },
    { rule = { class = "Firefox" },
    properties = { tag = tags[1][1] } },
    { rule = { name = "Thunderbird" },
    properties = { tag = tags[1][2] } },
    { rule = { instance = "plugin-container" },
    properties = { floating = true } },
    { rule = { class = "Luakit" },
    properties = { floating = true } }
    else
    awful.rules.rules = {
    -- All clients will match this rule.
    { rule = { },
    properties = { border_width = beautiful.border_width,
    -- border_color = beautiful.border_normal,
    focus = true,
    keys = clientkeys,
    buttons = clientbuttons } },
    { rule = { class = "MPlayer" },
    properties = { floating = true } },
    { rule = { class = "gimp" },
    properties = { floating = true } },
    { rule = { class = "Firefox" },
    properties = { tag = tags[1][2] } },
    { rule = { name = "Thunderbird" },
    properties = { tag = tags[1][3] } },
    { rule = { instance = "plugin-container" },
    properties = { floating = true, fullscreen = true } },
    { rule = { class = "Dolphin" },
    properties = { floating = false, fullscreen = false, tag = tags[1][4] } },
    { rule = { class = "Luakit" },
    properties = { floating = true } },
    { rule = { class = "Pidgin" },
    properties = { tag = tags[1][5] } }
    end
    -- {{{ Signals
    -- Signal function to execute when a new client appears.
    client.connect_signal("manage", function (c, startup)
    -- Add a titlebar
    -- awful.titlebar.add(c, { modkey = modkey })
    -- Enable sloppy focus
    c:connect_signal("mouse::enter", function(c)
    if awful.layout.get(c.screen) ~= awful.layout.suit.magnifier
    and awful.client.focus.filter(c) then
    client.focus = c
    end
    end)
    if not startup then
    -- Set the windows at the slave,
    -- i.e. put it at the end of others instead of setting it master.
    -- awful.client.setslave(c)
    -- Put windows in a smart way, only if they does not set an initial position.
    if not c.size_hints.user_position and not c.size_hints.program_position then
    awful.placement.no_overlap(c)
    awful.placement.no_offscreen(c)
    end
    end
    local titlebars_enabled = false
    if titlebars_enabled and (c.type == "normal" or c.type == "dialog") then
    -- Widgets that are aligned to the left
    local left_layout = wibox.layout.fixed.horizontal()
    left_layout:add(awful.titlebar.widget.iconwidget(c))
    -- Widgets that are aligned to the right
    local right_layout = wibox.layout.fixed.horizontal()
    right_layout:add(awful.titlebar.widget.floatingbutton(c))
    right_layout:add(awful.titlebar.widget.maximizedbutton(c))
    right_layout:add(awful.titlebar.widget.stickybutton(c))
    right_layout:add(awful.titlebar.widget.ontopbutton(c))
    right_layout:add(awful.titlebar.widget.closebutton(c))
    -- The title goes in the middle
    local title = awful.titlebar.widget.titlewidget(c)
    title:buttons(awful.util.table.join(
    awful.button({ }, 1, function()
    client.focus = c
    c:raise()
    awful.mouse.client.move(c)
    end),
    awful.button({ }, 3, function()
    client.focus = c
    c:raise()
    awful.mouse.client.resize(c)
    end)
    -- Now bring it all together
    local layout = wibox.layout.align.horizontal()
    layout:set_left(left_layout)
    layout:set_right(right_layout)
    layout:set_middle(title)
    awful.titlebar(c):set_widget(layout)
    end
    end)
    client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end)
    client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
    Here is also my slime config and my initrc
    ls -lisa .xinitrc
    3276814 4 -rwxr-xr-x ...
    #!/bin/sh
    xrdb -merge ~/.Xresources
    wicd-client --tray &
    exec awesome #>> ~/.cache/awesome/stdout 2>> ~/.cache/awesome/stderr
    # Path, X server and arguments (if needed)
    # Note: -xauth $authfile is automatically appended
    default_path /bin:/usr/bin:/usr/local/bin
    default_xserver /usr/bin/X
    xserver_arguments -nolisten tcp vt07
    # Commands for halt, login, etc.
    halt_cmd /sbin/shutdown -h now
    reboot_cmd /sbin/shutdown -r now
    console_cmd /usr/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -c "/bin/cat /etc/issue; exec /bin/login"
    #suspend_cmd /usr/sbin/suspend
    # Full path to the xauth binary
    xauth_path /usr/bin/xauth
    # Xauth file for server
    authfile /var/run/slim.auth
    # Activate numlock when slim starts. Valid values: on|off
    numlock on
    # Hide the mouse cursor (note: does not work with some WMs).
    # Valid values: true|false
    # hidecursor false
    # This command is executed after a succesful login.
    # you can place the %session and %theme variables
    # to handle launching of specific commands in .xinitrc
    # depending of chosen session and slim theme
    # NOTE: if your system does not have bash you need
    # to adjust the command according to your preferred shell,
    # i.e. for freebsd use:
    # login_cmd exec /bin/sh - ~/.xinitrc %session
    login_cmd exec /bin/bash -login ~/.xinitrc %session
    # Commands executed when starting and exiting a session.
    # They can be used for registering a X11 session with
    # sessreg. You can use the %user variable
    # sessionstart_cmd some command
    # sessionstop_cmd some command
    # Start in daemon mode. Valid values: yes | no
    # Note that this can be overriden by the command line
    # options "-d" and "-nodaemon"
    # daemon yes
    # Available sessions (first one is the default).
    # The current chosen session name is replaced in the login_cmd
    # above, so your login command can handle different sessions.
    # see the xinitrc.sample file shipped with slim sources
    sessions awesome,xfce4,icewm-session,wmaker,blackbox
    # Executed when pressing F11 (requires imagemagick)
    screenshot_cmd import -window root /slim.png
    # welcome message. Available variables: %host, %domain
    welcome_msg Welcome to %host
    # Session message. Prepended to the session name when pressing F1
    # session_msg Session:
    # shutdown / reboot messages
    shutdown_msg The system is halting...
    reboot_msg The system is rebooting...
    # default user, leave blank or remove this line
    # for avoid pre-loading the username.
    default_user kili
    # Focus the password field on start when default_user is set
    # Set to "yes" to enable this feature
    focus_password yes
    # Automatically login the default user (without entering
    # the password. Set to "yes" to enable this feature
    #auto_login no
    # current theme, use comma separated list to specify a set to
    # randomly choose from
    current_theme archlinux-simplyblack
    # Lock file
    lockfile /var/lock/slim.lock
    # Log file
    logfile /var/log/slim.log
    Thanks in advance!
    Edit:
    Besides a lot of other errors the problem was the systray. It was created 2 times, now login works again. I figured that out via enabling logging for awesome in the xinitrc again.
    Last edited by stubb (2013-01-08 23:20:05)

    Hi,
    I have the same kind of issue after updated slim from v1.3.4-4 to v1.3.5-1.
    see my topic  here :
    https://bbs.archlinux.org/viewtopic.php?id=156792
    Last edited by cedricl (2013-01-24 17:16:42)

  • Custom SharePoint 2010 designer page throws "The data source control failed to execute the insert command" exception while adding the new item after the August 13, 2013 CU has installed

    We have the SharePoint Server 2010 with SP1 environment on which the custom SP2010 designer pages were working as expected before the
    August 13, 2013 CU has installed. But, getting the below exception while trying to add the new item after the CU has installed.
    Error while executing web part: System.NullReferenceException: Object reference not set to an instance of an object.     at Microsoft.SharePoint.WebControls.SPDataSourceView.ExecuteInsert(IDictionary values)     at
    System.Web.UI.DataSourceView.Insert(IDictionary values, DataSourceViewOperationCallback callback) 3b64c3a0-48f3-4d4a-af54-d0a2fc4553cc
    06/19/2014 16:49:37.65  w3wp.exe (0x1240)                        0x1300 SharePoint Foundation        
     Runtime                        tkau Unexpected Microsoft.SharePoint.WebPartPages.DataFormWebPartException: The data source control
    failed to execute the insert command. 3b64c3a0-48f3-4d4a-af54-d0a2fc4553cc    at Microsoft.SharePoint.WebPartPages.DataFormWebPart.InsertCallback(Int32 affectedRecords, Exception ex)     at System.Web.UI.DataSourceView.Insert(IDictionary
    values, DataSourceViewOperationCallback callback)     at Microsoft.SharePoint.WebPartPages.DataFormWebPart.FlatCommit()     at Microsoft.SharePoint.WebPartPages.DataFormWebPart.HandleOnSave(Object sender, EventArgs e)    
    at Microsoft.SharePoint.WebPartPages.DataFormWebPart.RaisePostBackEvent(String eventArgument)     at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)     at System.Web.UI.Page.ProcessRequestMain(Boolean
    inclu... 3b64c3a0-48f3-4d4a-af54-d0a2fc4553cc
    06/19/2014 16:49:37.65* w3wp.exe (0x1240)                        0x1300 SharePoint Foundation        
     Runtime                        tkau Unexpected ...deStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 3b64c3a0-48f3-4d4a-af54-d0a2fc4553cc
    I have tried changing the "DataSourceMode" as below, now the insert command is working, but update command is not working.
    <SharePoint:SPDataSource runat="server" DataSourceMode="ListItem" />
    Also, the lookup dropdown fields are displaying the value as "<a href="Daughterhttp://cpsp10/sites/Employees/_layouts/listform.aspx?PageType=4&ListId={8F62F444-FB6A-4F03-9522-C4696B45DCD1}&ID=10&RootFolder=*">Daughter</a>"
    instead of only "Daughter".
    Please provide the solution to get rid of this issue.
    Thanks
    Ramasubbu

    Try below:
    http://social.technet.microsoft.com/Forums/en-US/ae910269-3a0c-4506-844b-e8bc89d95b71/data-source-control-failed-to-execute-the-insert-command
    http://blog.jussipalo.com/2012/01/sharepoint-2010-data-source-control.html
    While there can be many causes for this generic error message, in my case the first parameter or ddwrt:DataBind function inside the SharePoint:FormFields element was
    'i' and I was working with an Edit Form. Changing it to
    'u' as it was with every other FormField fixed the issue.
    <SharePoint:FormField runat="server" id="ff1{$Pos}" ControlMode="Edit" FieldName="Esittaja" __designer:bind="{ddwrt:DataBind('u',concat('ff1',$Pos),'Value','ValueChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@Esittaja')}"
    />
    Explanation:
    DataBind operation type parameters (the first parameter) are listed below:
    'i' stands for INSERT,
    'u' stands for UPDATE,
    'd' stands for DELETE.
    http://webcache.googleusercontent.com/search?q=cache:d9HHY4I7omgJ:thearkfloats.blogspot.com/2014/03/sharepoint-2010-data-source-control.html+&cd=4&hl=en&ct=clnk&gl=in
    If this helped you resolve your issue, please mark it Answered

  • "error: command failed to execute correctly" on several packages

    Last night, when I updated before shutting down, I got a few errors, as in the subject. As it was very late, I thought I'd pick it up today.
    Unfortunately, the pacman log only lists one of the ones that failed as libgpg-error. The other one that I remember erroring was gawk. There were a few others, maybe four or five, but I couln't reliably recall them all, so won't guess.
    Here's a new attempt to reinstall gawk with --debug. I did the same with libgpg-error and the error occurred at the same place, with very similar output, so I think the issue is the same for all failures.
    debug: pacman v4.2.1 - libalpm v9.0.1
    debug: parseconfig: options pass
    debug: config: attempting to read file /etc/pacman.conf
    debug: config: finish section '(null)'
    debug: config: new section 'options'
    debug: config: HoldPkg: pacman
    debug: config: HoldPkg: glibc
    debug: config: usedelta (default 0.7)
    debug: config: arch: x86_64
    debug: config: verbosepkglists
    debug: config: chomp
    debug: config: SigLevel: Required
    debug: config: SigLevel: DatabaseOptional
    debug: config: SigLevel: TrustedOnly
    debug: config: LocalFileSigLevel: Optional
    debug: config: finish section 'options'
    debug: config: new section 'core'
    debug: config file /etc/pacman.conf, line 78: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'core'
    debug: config: new section 'extra'
    debug: config file /etc/pacman.conf, line 81: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'extra'
    debug: config: new section 'xyne-x86_64'
    debug: config: finish section 'xyne-x86_64'
    debug: config: new section 'community'
    debug: config file /etc/pacman.conf, line 91: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'community'
    debug: config: new section 'multilib'
    debug: config file /etc/pacman.conf, line 100: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'multilib'
    debug: config: new section 'infinality-bundle'
    debug: config: finish section 'infinality-bundle'
    debug: config: new section 'infinality-bundle-multilib'
    debug: config: finish section 'infinality-bundle-multilib'
    debug: config: new section 'infinality-bundle-fonts'
    debug: config: finish section 'infinality-bundle-fonts'
    debug: config: new section '(null)'
    debug: config: finished parsing /etc/pacman.conf
    debug: setup_libalpm called
    debug: option 'logfile' = /var/log/pacman.log
    debug: option 'gpgdir' = /etc/pacman.d/gnupg/
    debug: option 'cachedir' = /var/cache/pacman/pkg/
    debug: parseconfig: repo pass
    debug: config: attempting to read file /etc/pacman.conf
    debug: config: finish section '(null)'
    debug: config: new section 'options'
    debug: config: finish section 'options'
    debug: config: new section 'core'
    debug: config file /etc/pacman.conf, line 78: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'core'
    debug: registering sync database 'core'
    debug: database path for tree core set to /var/lib/pacman/sync/core.db
    debug: "/var/lib/pacman/sync/core.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/core.db.sig could not be opened
    debug: missing optional signature
    debug: setting usage of 15 for core repoistory
    debug: adding new server URL to database 'core': http://arch.tamcore.eu/core/os/x86_64
    debug: adding new server URL to database 'core': http://mirror.one.com/archlinux/core/os/x86_64
    debug: adding new server URL to database 'core': http://mirror.gnomus.de/core/os/x86_64
    debug: adding new server URL to database 'core': http://mirror.js-webcoding.de/pub/archlinux/core/os/x86_64
    debug: adding new server URL to database 'core': http://archlinux.polymorf.fr/core/os/x86_64
    debug: config: new section 'extra'
    debug: config file /etc/pacman.conf, line 81: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'extra'
    debug: registering sync database 'extra'
    debug: database path for tree extra set to /var/lib/pacman/sync/extra.db
    debug: "/var/lib/pacman/sync/extra.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/extra.db.sig could not be opened
    debug: missing optional signature
    debug: setting usage of 15 for extra repoistory
    debug: adding new server URL to database 'extra': http://arch.tamcore.eu/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://mirror.one.com/archlinux/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://mirror.gnomus.de/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://mirror.js-webcoding.de/pub/archlinux/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://archlinux.polymorf.fr/extra/os/x86_64
    debug: config: new section 'xyne-x86_64'
    debug: config: SigLevel: Required
    debug: config: finish section 'xyne-x86_64'
    debug: registering sync database 'xyne-x86_64'
    debug: database path for tree xyne-x86_64 set to /var/lib/pacman/sync/xyne-x86_64.db
    debug: GPGME version: 1.5.4
    debug: GPGME engine info: file=/usr/bin/gpg2, home=/etc/pacman.d/gnupg/
    debug: checking signature for /var/lib/pacman/sync/xyne-x86_64.db
    debug: 1 signatures returned
    debug: fingerprint: EC3CBE7F607D11E663149E811D1F0DC78F173680
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1430676813
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: EC3CBE7F607D11E663149E811D1F0DC78F173680, Xyne. (key #3) <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: setting usage of 15 for xyne-x86_64 repoistory
    debug: adding new server URL to database 'xyne-x86_64': http://xyne.archlinux.ca/repos/xyne
    debug: config: new section 'community'
    debug: config file /etc/pacman.conf, line 91: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'community'
    debug: registering sync database 'community'
    debug: database path for tree community set to /var/lib/pacman/sync/community.db
    debug: "/var/lib/pacman/sync/community.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/community.db.sig could not be opened
    debug: missing optional signature
    debug: setting usage of 15 for community repoistory
    debug: adding new server URL to database 'community': http://arch.tamcore.eu/community/os/x86_64
    debug: adding new server URL to database 'community': http://mirror.one.com/archlinux/community/os/x86_64
    debug: adding new server URL to database 'community': http://mirror.gnomus.de/community/os/x86_64
    debug: adding new server URL to database 'community': http://mirror.js-webcoding.de/pub/archlinux/community/os/x86_64
    debug: adding new server URL to database 'community': http://archlinux.polymorf.fr/community/os/x86_64
    debug: config: new section 'multilib'
    debug: config file /etc/pacman.conf, line 100: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'multilib'
    debug: registering sync database 'multilib'
    debug: database path for tree multilib set to /var/lib/pacman/sync/multilib.db
    debug: "/var/lib/pacman/sync/multilib.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/multilib.db.sig could not be opened
    debug: missing optional signature
    debug: setting usage of 15 for multilib repoistory
    debug: adding new server URL to database 'multilib': http://arch.tamcore.eu/multilib/os/x86_64
    debug: adding new server URL to database 'multilib': http://mirror.one.com/archlinux/multilib/os/x86_64
    debug: adding new server URL to database 'multilib': http://mirror.gnomus.de/multilib/os/x86_64
    debug: adding new server URL to database 'multilib': http://mirror.js-webcoding.de/pub/archlinux/multilib/os/x86_64
    debug: adding new server URL to database 'multilib': http://archlinux.polymorf.fr/multilib/os/x86_64
    debug: config: new section 'infinality-bundle'
    debug: config: finish section 'infinality-bundle'
    debug: registering sync database 'infinality-bundle'
    debug: database path for tree infinality-bundle set to /var/lib/pacman/sync/infinality-bundle.db
    debug: checking signature for /var/lib/pacman/sync/infinality-bundle.db
    debug: 1 signatures returned
    debug: fingerprint: A9244FB5E93F11F0E975337FAE6866C7962DDE58
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1430276639
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: A9244FB5E93F11F0E975337FAE6866C7962DDE58, bohoomil (dev key) <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: setting usage of 15 for infinality-bundle repoistory
    debug: adding new server URL to database 'infinality-bundle': http://bohoomil.com/repo/x86_64
    debug: config: new section 'infinality-bundle-multilib'
    debug: config: finish section 'infinality-bundle-multilib'
    debug: registering sync database 'infinality-bundle-multilib'
    debug: database path for tree infinality-bundle-multilib set to /var/lib/pacman/sync/infinality-bundle-multilib.db
    debug: checking signature for /var/lib/pacman/sync/infinality-bundle-multilib.db
    debug: 1 signatures returned
    debug: fingerprint: A9244FB5E93F11F0E975337FAE6866C7962DDE58
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1430087321
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: A9244FB5E93F11F0E975337FAE6866C7962DDE58, bohoomil (dev key) <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: setting usage of 15 for infinality-bundle-multilib repoistory
    debug: adding new server URL to database 'infinality-bundle-multilib': http://bohoomil.com/repo/multilib/x86_64
    debug: config: new section 'infinality-bundle-fonts'
    debug: config: finish section 'infinality-bundle-fonts'
    debug: registering sync database 'infinality-bundle-fonts'
    debug: database path for tree infinality-bundle-fonts set to /var/lib/pacman/sync/infinality-bundle-fonts.db
    debug: checking signature for /var/lib/pacman/sync/infinality-bundle-fonts.db
    debug: 1 signatures returned
    debug: fingerprint: A9244FB5E93F11F0E975337FAE6866C7962DDE58
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1430276566
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: A9244FB5E93F11F0E975337FAE6866C7962DDE58, bohoomil (dev key) <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: setting usage of 15 for infinality-bundle-fonts repoistory
    debug: adding new server URL to database 'infinality-bundle-fonts': http://bohoomil.com/repo/fonts
    debug: config: new section '(null)'
    debug: config: finished parsing /etc/pacman.conf
    debug: loading package cache for repository 'core'
    debug: opening archive /var/lib/pacman/sync/core.db
    debug: added 208 packages to package cache for db 'core'
    debug: adding package 'gawk'
    debug: loading package cache for repository 'local'
    debug: added 1122 packages to package cache for db 'local'
    warning: gawk-4.1.2-1 is up to date -- reinstalling
    debug: adding package gawk-4.1.2-1 to the transaction add list
    resolving dependencies...
    debug: resolving target's dependencies
    debug: started resolving dependencies
    debug: checkdeps: package gawk-4.1.2-1
    debug: finished resolving dependencies
    looking for conflicting packages...
    debug: looking for conflicts
    debug: check targets vs targets
    debug: check targets vs targets
    debug: check targets vs db and db vs targets
    debug: check targets vs db
    debug: check db vs targets
    debug: checking dependencies
    debug: checkdeps: package gawk-4.1.2-1
    debug: found cached pkg: /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: setting download size 0 for pkg gawk
    debug: sorting by dependencies
    debug: started sorting dependencies
    debug: sorting dependencies finished
    Package (1) Old Version New Version Net Change
    core/gawk 4.1.2-1 4.1.2-1 0.00 MiB
    Total Installed Size: 2.19 MiB
    Net Upgrade Size: 0.00 MiB
    :: Proceed with installation? [Y/n] y
    debug: using cachedir: /var/cache/pacman/pkg/
    debug: using cachedir: /var/cache/pacman/pkg/
    checking keyring...
    debug: looking up key 771DF6627EDF681F locally
    debug: key lookup success, key exists
    checking package integrity...
    debug: found cached pkg: /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: sig data: iQEcBAABCAAGBQJVQNc+AAoJEHcd9mJ+32gfQZgH/jkRiirmPTb4nE0xgcFGKc8wrxw3k9ooGyMFoeqAthTICB/5dBzNfEQ8b4X74gi8KiYQVYm4WE8kWIidUj5ekJhGwngO6Gk+lwyBq+Uh8rUHDJKw557fImM2bBah2lxNUxqZzxYTA1FByq2lptLB5EPJgAPemyUXACMXITDfqtWMpuHIEPLZi5WW9+cB0eMKz5IeEEfZi4lO2fyfRqxNkRDNSmC5NEDkfhm+XVXBEd4gugSOmYpKzlA67mjw2HP+oOyNheL8st4SjgFr/qVDdbfiBbaTTujC4mF1n73z5qp4K5/xgHqk42ftoo003XFQYVOAg3bDWMvUF5d63D4+HKg=
    debug: checking signature for /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: 1 signatures returned
    debug: fingerprint: 5B7E3FB71B7F10329A1C03AB771DF6627EDF681F
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1430312766
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: 5B7E3FB71B7F10329A1C03AB771DF6627EDF681F, Tobias Powalowski <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    loading package files...
    debug: found cached pkg: /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target gawk
    debug: opening archive /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: starting package load for /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: found mtree for package /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz, getting file list
    debug: finished mtree reading for /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    checking for file conflicts...
    debug: looking for file conflicts
    debug: searching for file conflicts: gawk
    debug: searching for filesystem conflicts: gawk
    checking available disk space...
    debug: checking available disk space
    debug: discovered mountpoint: /tmp
    debug: discovered mountpoint: /sys/kernel/security
    debug: discovered mountpoint: /sys/kernel/debug
    debug: discovered mountpoint: /sys/kernel/config
    debug: discovered mountpoint: /sys/fs/pstore
    debug: discovered mountpoint: /sys/fs/cgroup/systemd
    debug: discovered mountpoint: /sys/fs/cgroup/net_cls
    debug: discovered mountpoint: /sys/fs/cgroup/memory
    debug: discovered mountpoint: /sys/fs/cgroup/freezer
    debug: discovered mountpoint: /sys/fs/cgroup/devices
    debug: discovered mountpoint: /sys/fs/cgroup/cpuset
    debug: discovered mountpoint: /sys/fs/cgroup/cpu,cpuacct
    debug: discovered mountpoint: /sys/fs/cgroup/blkio
    debug: discovered mountpoint: /sys/fs/cgroup
    debug: discovered mountpoint: /sys
    debug: discovered mountpoint: /run/user/1000
    debug: discovered mountpoint: /run
    debug: discovered mountpoint: /proc/sys/fs/binfmt_misc
    debug: discovered mountpoint: /proc
    debug: discovered mountpoint: /home/skanky/personal
    debug: discovered mountpoint: /home
    debug: discovered mountpoint: /dev/shm
    debug: discovered mountpoint: /dev/pts
    debug: discovered mountpoint: /dev/mqueue
    debug: discovered mountpoint: /dev/hugepages
    debug: discovered mountpoint: /dev
    debug: discovered mountpoint: /
    debug: loading fsinfo for /
    debug: partition /, needed 0, cushion 5121, free 1174711
    debug: installing packages
    reinstalling gawk...
    debug: reinstalling package gawk-4.1.2-1
    debug: opening archive /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: extracting: .INSTALL
    debug: removing old package first (gawk-4.1.2-1)
    debug: removing 110 files
    debug: unlinking /usr/share/man/man3/time.3am.gz
    debug: unlinking /usr/share/man/man3/rwarray.3am.gz
    debug: unlinking /usr/share/man/man3/revtwoway.3am.gz
    debug: unlinking /usr/share/man/man3/revoutput.3am.gz
    debug: unlinking /usr/share/man/man3/readfile.3am.gz
    debug: unlinking /usr/share/man/man3/readdir.3am.gz
    debug: unlinking /usr/share/man/man3/ordchr.3am.gz
    debug: unlinking /usr/share/man/man3/inplace.3am.gz
    debug: unlinking /usr/share/man/man3/fork.3am.gz
    debug: unlinking /usr/share/man/man3/fnmatch.3am.gz
    debug: unlinking /usr/share/man/man3/filefuncs.3am.gz
    debug: keeping directory /usr/share/man/man3/ (contains files)
    debug: unlinking /usr/share/man/man1/igawk.1.gz
    debug: unlinking /usr/share/man/man1/gawk.1.gz
    debug: keeping directory /usr/share/man/man1/ (contains files)
    debug: keeping directory /usr/share/man/ (contains files)
    debug: unlinking /usr/share/locale/vi/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/vi/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/vi/ (contains files)
    debug: unlinking /usr/share/locale/sv/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/sv/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/sv/ (contains files)
    debug: unlinking /usr/share/locale/pl/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/pl/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/pl/ (contains files)
    debug: unlinking /usr/share/locale/nl/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/nl/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/nl/ (contains files)
    debug: unlinking /usr/share/locale/ms/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/ms/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/ms/ (contains files)
    debug: unlinking /usr/share/locale/ja/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/ja/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/ja/ (contains files)
    debug: unlinking /usr/share/locale/it/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/it/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/it/ (contains files)
    debug: unlinking /usr/share/locale/fr/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/fr/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/fr/ (contains files)
    debug: unlinking /usr/share/locale/fi/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/fi/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/fi/ (contains files)
    debug: unlinking /usr/share/locale/es/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/es/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/es/ (contains files)
    debug: unlinking /usr/share/locale/de/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/de/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/de/ (contains files)
    debug: unlinking /usr/share/locale/da/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/da/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/da/ (contains files)
    debug: unlinking /usr/share/locale/ca/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/ca/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/ca/ (contains files)
    debug: keeping directory /usr/share/locale/ (contains files)
    debug: unlinking /usr/share/info/gawkinet.info.gz
    debug: unlinking /usr/share/info/gawk.info.gz
    debug: keeping directory /usr/share/info/ (contains files)
    debug: unlinking /usr/share/awk/zerofile.awk
    debug: unlinking /usr/share/awk/walkarray.awk
    debug: unlinking /usr/share/awk/strtonum.awk
    debug: unlinking /usr/share/awk/shellquote.awk
    debug: unlinking /usr/share/awk/round.awk
    debug: unlinking /usr/share/awk/rewind.awk
    debug: unlinking /usr/share/awk/readfile.awk
    debug: unlinking /usr/share/awk/readable.awk
    debug: unlinking /usr/share/awk/quicksort.awk
    debug: unlinking /usr/share/awk/processarray.awk
    debug: unlinking /usr/share/awk/passwd.awk
    debug: unlinking /usr/share/awk/ord.awk
    debug: unlinking /usr/share/awk/noassign.awk
    debug: unlinking /usr/share/awk/libintl.awk
    debug: unlinking /usr/share/awk/join.awk
    debug: unlinking /usr/share/awk/inplace.awk
    debug: unlinking /usr/share/awk/group.awk
    debug: unlinking /usr/share/awk/gettime.awk
    debug: unlinking /usr/share/awk/getopt.awk
    debug: unlinking /usr/share/awk/ftrans.awk
    debug: unlinking /usr/share/awk/ctime.awk
    debug: unlinking /usr/share/awk/cliff_rand.awk
    debug: unlinking /usr/share/awk/bits2str.awk
    debug: unlinking /usr/share/awk/assert.awk
    debug: keeping directory /usr/share/awk/ (in new package)
    debug: keeping directory /usr/share/ (contains files)
    debug: unlinking /usr/lib/gawk/time.so
    debug: unlinking /usr/lib/gawk/testext.so
    debug: unlinking /usr/lib/gawk/rwarray.so
    debug: unlinking /usr/lib/gawk/revtwoway.so
    debug: unlinking /usr/lib/gawk/revoutput.so
    debug: unlinking /usr/lib/gawk/readfile.so
    debug: unlinking /usr/lib/gawk/readdir.so
    debug: unlinking /usr/lib/gawk/ordchr.so
    debug: unlinking /usr/lib/gawk/inplace.so
    debug: unlinking /usr/lib/gawk/fork.so
    debug: unlinking /usr/lib/gawk/fnmatch.so
    debug: unlinking /usr/lib/gawk/filefuncs.so
    debug: keeping directory /usr/lib/gawk/ (in new package)
    debug: unlinking /usr/lib/awk/pwcat
    debug: unlinking /usr/lib/awk/grcat
    debug: keeping directory /usr/lib/awk/ (in new package)
    debug: keeping directory /usr/lib/ (contains files)
    debug: unlinking /usr/include/gawkapi.h
    debug: keeping directory /usr/include/ (contains files)
    debug: unlinking /usr/bin/igawk
    debug: unlinking /usr/bin/gawk-4.1.2
    debug: unlinking /usr/bin/gawk
    debug: unlinking /usr/bin/awk
    debug: keeping directory /usr/bin/ (contains files)
    debug: keeping directory /usr/ (contains files)
    debug: removing database entry 'gawk'
    debug: removing entry 'gawk' from 'local' cache
    debug: extracting files
    debug: opening archive /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: skipping extraction of '.PKGINFO'
    debug: extracting /var/lib/pacman/local/gawk-4.1.2-1/install
    debug: extracting /var/lib/pacman/local/gawk-4.1.2-1/mtree
    debug: extract: skipping dir extraction of /usr/
    debug: extract: skipping dir extraction of /usr/lib/
    debug: extract: skipping dir extraction of /usr/share/
    debug: extract: skipping dir extraction of /usr/include/
    debug: extract: skipping dir extraction of /usr/bin/
    debug: extracting /usr/bin/igawk
    debug: extracting /usr/bin/awk
    debug: extracting /usr/bin/gawk-4.1.2
    debug: extracting /usr/bin/gawk
    debug: extracting /usr/include/gawkapi.h
    debug: extract: skipping dir extraction of /usr/share/locale/
    debug: extract: skipping dir extraction of /usr/share/awk/
    debug: extract: skipping dir extraction of /usr/share/info/
    debug: extract: skipping dir extraction of /usr/share/man/
    debug: extract: skipping dir extraction of /usr/share/man/man3/
    debug: extract: skipping dir extraction of /usr/share/man/man1/
    debug: extracting /usr/share/man/man1/gawk.1.gz
    debug: extracting /usr/share/man/man1/igawk.1.gz
    debug: extracting /usr/share/man/man3/filefuncs.3am.gz
    debug: extracting /usr/share/man/man3/fnmatch.3am.gz
    debug: extracting /usr/share/man/man3/fork.3am.gz
    debug: extracting /usr/share/man/man3/inplace.3am.gz
    debug: extracting /usr/share/man/man3/ordchr.3am.gz
    debug: extracting /usr/share/man/man3/readdir.3am.gz
    debug: extracting /usr/share/man/man3/readfile.3am.gz
    debug: extracting /usr/share/man/man3/revoutput.3am.gz
    debug: extracting /usr/share/man/man3/revtwoway.3am.gz
    debug: extracting /usr/share/man/man3/rwarray.3am.gz
    debug: extracting /usr/share/man/man3/time.3am.gz
    debug: extracting /usr/share/info/gawk.info.gz
    debug: extracting /usr/share/info/gawkinet.info.gz
    debug: extracting /usr/share/awk/zerofile.awk
    debug: extracting /usr/share/awk/walkarray.awk
    debug: extracting /usr/share/awk/strtonum.awk
    debug: extracting /usr/share/awk/shellquote.awk
    debug: extracting /usr/share/awk/round.awk
    debug: extracting /usr/share/awk/rewind.awk
    debug: extracting /usr/share/awk/readfile.awk
    debug: extracting /usr/share/awk/readable.awk
    debug: extracting /usr/share/awk/quicksort.awk
    debug: extracting /usr/share/awk/processarray.awk
    debug: extracting /usr/share/awk/ord.awk
    debug: extracting /usr/share/awk/noassign.awk
    debug: extracting /usr/share/awk/libintl.awk
    debug: extracting /usr/share/awk/join.awk
    debug: extracting /usr/share/awk/inplace.awk
    debug: extracting /usr/share/awk/gettime.awk
    debug: extracting /usr/share/awk/getopt.awk
    debug: extracting /usr/share/awk/ftrans.awk
    debug: extracting /usr/share/awk/ctime.awk
    debug: extracting /usr/share/awk/cliff_rand.awk
    debug: extracting /usr/share/awk/bits2str.awk
    debug: extracting /usr/share/awk/assert.awk
    debug: extracting /usr/share/awk/group.awk
    debug: extracting /usr/share/awk/passwd.awk
    debug: extract: skipping dir extraction of /usr/share/locale/vi/
    debug: extract: skipping dir extraction of /usr/share/locale/sv/
    debug: extract: skipping dir extraction of /usr/share/locale/pl/
    debug: extract: skipping dir extraction of /usr/share/locale/nl/
    debug: extract: skipping dir extraction of /usr/share/locale/ms/
    debug: extract: skipping dir extraction of /usr/share/locale/ja/
    debug: extract: skipping dir extraction of /usr/share/locale/it/
    debug: extract: skipping dir extraction of /usr/share/locale/fr/
    debug: extract: skipping dir extraction of /usr/share/locale/fi/
    debug: extract: skipping dir extraction of /usr/share/locale/es/
    debug: extract: skipping dir extraction of /usr/share/locale/de/
    debug: extract: skipping dir extraction of /usr/share/locale/da/
    debug: extract: skipping dir extraction of /usr/share/locale/ca/
    debug: extract: skipping dir extraction of /usr/share/locale/ca/LC_MESSAGES/
    debug: extracting /usr/share/locale/ca/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/da/LC_MESSAGES/
    debug: extracting /usr/share/locale/da/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/de/LC_MESSAGES/
    debug: extracting /usr/share/locale/de/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/es/LC_MESSAGES/
    debug: extracting /usr/share/locale/es/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/fi/LC_MESSAGES/
    debug: extracting /usr/share/locale/fi/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/fr/LC_MESSAGES/
    debug: extracting /usr/share/locale/fr/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/it/LC_MESSAGES/
    debug: extracting /usr/share/locale/it/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/ja/LC_MESSAGES/
    debug: extracting /usr/share/locale/ja/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/ms/LC_MESSAGES/
    debug: extracting /usr/share/locale/ms/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/nl/LC_MESSAGES/
    debug: extracting /usr/share/locale/nl/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/pl/LC_MESSAGES/
    debug: extracting /usr/share/locale/pl/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/sv/LC_MESSAGES/
    debug: extracting /usr/share/locale/sv/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/vi/LC_MESSAGES/
    debug: extracting /usr/share/locale/vi/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/lib/gawk/
    debug: extract: skipping dir extraction of /usr/lib/awk/
    debug: extracting /usr/lib/awk/pwcat
    debug: extracting /usr/lib/awk/grcat
    debug: extracting /usr/lib/gawk/filefuncs.so
    debug: extracting /usr/lib/gawk/fnmatch.so
    debug: extracting /usr/lib/gawk/fork.so
    debug: extracting /usr/lib/gawk/inplace.so
    debug: extracting /usr/lib/gawk/ordchr.so
    debug: extracting /usr/lib/gawk/readdir.so
    debug: extracting /usr/lib/gawk/readfile.so
    debug: extracting /usr/lib/gawk/revoutput.so
    debug: extracting /usr/lib/gawk/revtwoway.so
    debug: extracting /usr/lib/gawk/rwarray.so
    debug: extracting /usr/lib/gawk/testext.so
    debug: extracting /usr/lib/gawk/time.so
    debug: updating database
    debug: adding database entry 'gawk'
    debug: writing gawk-4.1.2-1 DESC information back to db
    debug: writing gawk-4.1.2-1 FILES information back to db
    debug: adding entry 'gawk' in 'local' cache
    debug: executing ". /tmp/alpm_r21DA5/.INSTALL; post_upgrade 4.1.2-1 4.1.2-1"
    debug: executing "/usr/bin/bash" under chroot "/"
    debug: call to waitpid succeeded
    error: command failed to execute correctly
    debug: running ldconfig
    debug: executing "/usr/bin/ldconfig" under chroot "/"
    debug: call to waitpid succeeded
    debug: unregistering database 'local'
    debug: freeing package cache for repository 'local'
    debug: unregistering database 'core'
    debug: freeing package cache for repository 'core'
    debug: unregistering database 'extra'
    debug: unregistering database 'xyne-x86_64'
    debug: unregistering database 'community'
    debug: unregistering database 'multilib'
    debug: unregistering database 'infinality-bundle'
    debug: unregistering database 'infinality-bundle-multilib'
    debug: unregistering database 'infinality-bundle-fonts'
    pacman thinks the upgrade/reinstall was successful in that the latest version is installed.
    I did a search on the forums and the only other issue that I thought was connected might be microcode not up to date, but I had followed the update instructions some time back and as far as I can tell, the microcode  is up to date.
    I have two main questions:
    1) How do I work out what's causing the error, from above?
    2) Is there a way I can work out which packages gave the error, so I can make sure they're installed properly?
    Thanks.

    The following packages also had problems
    ( 2/17) upgrading glibc
    error: command failed to execute correctly
    ( 3/17) upgrading binutils
    error: command failed to execute correctly
    ( 4/17) upgrading coreutils
    error: command failed to execute correctly
    ( 8/17) upgrading gcc
    error: command failed to execute correctly
    ( 9/17) upgrading gcc-fortran
    error: command failed to execute correctly
    (10/17) upgrading gcc-libs
    error: command failed to execute correctly
    Does anybody have a clue?
    Thanks,

  • ORA 28112 - Failed to Execute Policy

    Hello All,
    Can you please help me in resolving the following issue:
    We are getting the ORA 28112 - Failed to Execute Policy error while running a custom BI Publisher report on production. However we are not facing the issue on test environment .
    Please let us know how to proceed about.
    Thank you.

    Prathima,
    I had the same issue few years back, query was woking in toad but not in Oracle Reports. A ticket was raised for the DBAs and they fixed the issue. How? I don't have any clue. Maybe they fixed the policy function. On my side i just gave them the table name which was raising this error. If you have any other enviroment like Development, Test, etc, log in to that environment and check if report still raises this error. When i had this issue, only one database was raising this error, all others were fine (by using report builder).
    FS

  • Process chain failing while executing DTP

    Hi All,
    My process chain is failing while executing DTP.
    Error i got is:  OBJECTS_OBJREF_NOT_ASSIGNED
    Access not possible using 'NULL' object reference.
    The dump is occuring in method : GET_FIELD_LIST_INBOUND
    TRY.
          CALL METHOD cl_rstran_model=>factory
            EXPORTING
              i_tranid  = i_tranid
            RECEIVING
              r_r_model = l_r_model.
        CATCH cx_rstran_exception.
          RAISE EXCEPTION TYPE cx_rs_step_failed
      ENDTRY.
    From SDN , i am quite sure that its a SAP problem and needs to apply some Note.
    Could anyone please tell me, which note i should apply ?
    Thanks.

    Hi,
    check the note note 1081884 it may help you ..
    check link ..
    /message/2817339#2817339 [original link is broken]
    Reagrds,
    Shikha
    Edited by: Shikha Goel on Oct 10, 2008 6:21 AM

  • RC-50004: Fatal: Error occurred in ApplyDatabase:  Control file creation failed  Cannot execute configure of database using RapidClone

    dear associates,
    linux version: red hat enterprise  linux 4.0.
    EBS version: 12.1.1
    RC-50004: Fatal: Error occurred in ApplyDatabase:
    Control file creation failed
    Cannot execute configure of database using RapidClone
    RW-50010: Error: - script has returned an error:   1
    RW-50004: Error code received when running external process.  Check log file for details.
    Running Database Install Driver for VIS instance

    dear associates,
    can u please assist me how can over come this error or problem.
    linux version: red hat enterprise  linux 4.0.
    EBS version: 12.1.1
    RC-50004: Fatal: Error occurred in ApplyDatabase:
    Control file creation failed
    Cannot execute configure of database using RapidClone
    RW-50010: Error: - script has returned an error:   1
    RW-50004: Error code received when running external process.  Check log file for details.
    Running Database Install Driver for VIS instance

  • What is the best Resolution for this Error: Failed to execute IS server package because of error 0x80131904. Server:

    Dear Forum Members,
    I have an SSIS running perfectly when i run it in Visual Studio Shell. I have organized it into a job which runs well on SQL Server agent at intervals. 
    However, suddenly, i started having this error as stated in the title. Please find details of the error below and kindly help resolve it ASAP.
    Error Details:
    Date 1/27/2015 11:24:00 AM
    Log Job History (FmdqSync)
    Step ID 1
    Server ITGTESTSERVER
    Job Name FmdqSync
    Step Name S1
    Duration 00:00:30
    Sql Severity 0
    Sql Message ID 0
    Operator Emailed
    Operator Net sent
    Operator Paged
    Retries Attempted 0
    Message
    Executed as user: NT Service\SQLSERVERAGENT. Microsoft (R) SQL Server Execute Package Utility  Version 11.0.2100.60 for 64-bit  Copyright (C) Microsoft Corporation. All rights reserved.    Started:  11:24:00 AM  Failed to execute
    IS server package because of error 0x80131904. Server: ., Package path: \SSISDB\FMDQSync\FMDQServerDataSync\FMDQServerDataSync1.dtsx, Environment reference Id: NULL.  Description: Timeout expired.  The timeout period elapsed prior to completion of
    the operation or the server is not responding.  The statement has been terminated.  Source: .Net SqlClient Data Provider  Started:  11:24:00 AM  Finished: 11:24:30 AM  Elapsed:  30.187 seconds.  The package execution
    failed.  The step failed.

    Hi Sadeeq,
    Based on your description and the error message, it should be a timeout issue when the ADO .NET Source connects to the source database. So, please refer to the following two suggestions:
    Double click on the ADO .NET Connection Manager, click the All tab, and set the “Connect Timeout” property to a bigger value. By default, it is 15 seconds.
    Increase the DefaultBufferSize value of the Data Flow Task. By default, the DefaultBufferSize is 10 (MB), you can increase it to a value that is less than 100 (MB).
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Failed to execute with the error Error occurred when starting the parser: t

    Dear All
    I am getting this error
    ""A database error occurred. The database error text is: The MDX query SELECT  { [DASKA1EDEL2DMLXTQ62S595QV].[DB7BP4A8AMQTUD3DPEEPS4J87] }  ON COLUMNS , NON EMPTY CROSSJOIN( CROSSJOIN( CROSSJOIN( CROSSJOIN( CROSSJOIN( [0CALMONTH].[LEVEL01].MEMBERS, [DASKFZ1TRFOLNTG78G0HH2B87].MEMBERS ), [0MATERIAL].[LEVEL01].MEMBERS ), [0PLANT].[LEVEL01].MEMBERS ), [0COMP_CODE].[LEVEL01].MEMBERS ), [0ACTDELDATE].[LEVEL01].MEMBERS ) DIMENSION PROPERTIES MEMBER_NAME, MEMBER_CAPTION ON ROWS FROM [0IC_C03/ZMATSTOCK]  failed to execute with the error Error occurred when starting the parser: timeout during allocate / CPIC-CALL: 'ThSAPCMRCV'. (WIS 10901)""
    I already went to similar kind of error solution in forum,but this error is coming for one web I query,all other reports are working fine.
    I already implemented note 1032461

    Hi,
    Under normal circumstances it should be enough to restart the connection service.
    As far as we know there is no formal solution to this problem from SAP yet but restarting the connection service is much less of an interuption compared to restarting the the SIA.
    Re-starting the connection service should resolve this issue. since, Connection service is only related to DeskI and Rich Client re-statrng wonu2019t impact other business objects components including java report panel.
    All the Best,
    Madhu....

  • Exchange 2010, khi: failed to execute Troubleshoot-DatabaseSpace.ps1 Error formatting a string: Format string is not supported

    Hi,
    Exchange 2010 MP fails to run Troubleshoot-DatabaseSpace.ps1. Results in a Warning with "Error formatting a string: Format string is not supported". The EventNumber is 402. The Microsoft article it points to is useless at http://technet.microsoft.com/en-us/library/749e0eac-ebb2-41e3-8fa2-4a03a1bd3571.aspx 
    Run ".\Troubleshoot-DatabaseSpace.ps1 -Server MailboxServer.domain.com -MonitoringContext" and works fine.
    Any help appreciated.
    thanks

    Hi,
    Before the newer MP release, we can disable  these 4 monitor via override and this should not run the Troubleshoot-DatabaseSpace.ps1 :
    KHI: Failed to execute Troubleshoot-DatabaseSpace.ps1.
    KHI: The database copy is low on database volume space and continues to grow. The volume is under 25% free
    KHI: The database copy is low on database volume space and continues to grow. The volume has reached error levels under 16% free.
    KHI: The database copy is low on database volume space and continues to grow. The volume has reached critical levels 8% free.
    Alex Zhao
    TechNet Community Support

  • Compilation failed while executing: ADT

    I have a project that I've been successfully compiling for iOS in Flash Professional 5.5, with uses AIR 2.6. I decided to try compiling in Flash Builder 4.6 using AIR 3.1. It runs fine on the desktop, no errors or warnings. When I try to do an Ad Hoc release build, it fails with java.lang.NullPointerException at java.util.TreeMap.getEntry(TreeMap.java:324), (The Export Release Build dialog does not let me select the text, otherwise I'd paste the stack here)starting at com.adobe.air.ipa.BitcodeGenerator.main(BitcodeGenerator.java:82) and saying  "Compilation failed while executing: ADT"
    Any suggestions would be appreciated!
    Regards,
    John

    Hi John,
    Could you please try packaging it on command line using ADT (available @ C:\Program Files\Adobe\Adobe Flash Builder 4.x\sdks\4.x\bin)
    # adt -package -target ipa-ad-hoc -provisioning-profile <path to mobileprovision> -storetype pkcs12 -keystore <path to p12> -storepass <password> hellworld.ipa hellworld-app.xml hellworld.swf
    Is it specific to ipa-ad-hoc target only? Could you try it with other targets like ipa-app-store or ipa-test-interpreter
    Please share the adt version by executing following command.
    # adt -version
    -Thanks
    Pahup

  • Compilation failed while executing : dsymutil

    Hi,
    Trying to compile a standard package for ios with major failure. The fast-version works perfectly without any errors.
    I'm on mac os x lion and using flash builder 4.5.1. The error I'm getting is as follows:
    Error occurred while packaging the application:
    /var/folders/n4/52v6ttx96c7bnw8vnysh5j780000gn/T/cmd460615453403880056.tmp: line 2: dsymutil: command not found
    Compilation failed while executing : dsymutil
    I can't find anything about it posted previously or anywhere actually.
    / Daniel

    I'm answering my own question here.
    Install Xcode from the appstore ( it's free ) and you will get dsymutil. Weird workaround considering I can run this setup on another computer that hasn't got xcode installed ( but still has dsymutil ).  But at least it solves the problem.

  • Compilation failed while executing : ld64

    I'm getting this error while packaging my application for iOS:
    Error occurred while packaging the application:
    Compilation failed while executing : ld64
    The application compiles and runs fine on my coworker's machine, but consistently does this on mine.  The research I've done on this suggests this has to do with ANE's.  I'm using 3- two require IOS Version 5.0, the third doesn't seem to specify anything.
    Is there anything I can do to get a more descriptive failure?
    Thanks, I've spent way too many hours trying to get past this.

    I'm getting this error while packaging my application for iOS:
    Error occurred while packaging the application:
    Compilation failed while executing : ld64
    The application compiles and runs fine on my coworker's machine, but consistently does this on mine.  The research I've done on this suggests this has to do with ANE's.  I'm using 3- two require IOS Version 5.0, the third doesn't seem to specify anything.
    Is there anything I can do to get a more descriptive failure?
    Thanks, I've spent way too many hours trying to get past this.

  • Compilation failed while executing: as

    I am getting the error of
    Compilation failed while executing: as
    when I try to compile an iOS project.  I am using AIR 3.8 with FlexSDk 4.5.1

    What do you mean 'what purpose' ????
    You need to see the error before anyone here on the forums can FIX IT
    Could be lots of errors.... so screenshot will tell us the exact one!

Maybe you are looking for

  • How  to Load  Hierarchies  from flatfile in BI7

    Hello Gurus,  How  to load  Hierarchies from flat  file  in  BI7 As  when  creating datasource  in  BI7, IT  GIVES  FOLLOWING  OPTIONS  TRANSCTION  DATA  MASTER  DATA  TEXTS MASTER  DATA  ATTRIBUTES... ALL  THESE   WE BRING  TO  PSA LEVEL BY  INFOPAC

  • Mtl_material_transactions.ship_to_location_id

    I am using R11.5.10.2 what is this field: mtl_material_transactions.ship_to_location_id link to? hr_location_id ? or mtl_item_locations? what is the expression to link the table? thanks.

  • I can't open a spreadsheet on numbers

    I can't open a spreadsheet on Numbers. I was using and it was perfect but now won't open. All the others spreadsheets are opening...

  • Clicking ALT to name a new adjustment layer

    In some tutorials, it says that holding the ALT key when clicking the add adjustment layer button at the bottom. will bring up a new layer dialogue box so that the adjustment layer can be named.   This does not seem to work in PS CC or CC 2014.  If y

  • IChat Theater Balks

    I am thrilled with the idea of iChat Theater, but I'm having performance troubles with it and I'm trying to figure out whether 1. I'm expecting too much of it, 2. I don't understand how to use it properly or 3. My internet connection is not up for th