Parameterized ArrayList in 1.5 but not in 1.4

I've been doing a lot of reading on the discussion about JDK 1.5 and JDK 1.4 here. I think I've dug myself into a hole that will be very hard to get out of. And yes, it's my fault, but this is my first time developing a real J2EE application... sigh.
Here's the problem: I have 3 months' of work written and compiled using JDK 1.5. The Tomcat server we run (that can NOT be modified) uses JDK 1.4. I stupidly did not bother finding that out before I wrote all this code. I've analyzed my code, and the only thing that does not compile is parameterization. I use Hashtables, ArrayLists, etc etc. Those two actually account for over 60% of my data structures.
In 1.5 ArrayList<String, String[]> was acceptable. This is not true in 1.4. I may have to resort to rewriting this code. But I am hoping there is another solution. Does anybody know what I can do, perhaps write my own data structure that can be parameterized in 1.4? Or is there something else I can use?
Thanks for the feedback.. and you may have to give me examples, I'm just a beginner heh.

If you're still struggling with this, check out Retroweaver.
I don't read this forum very often (like, once a month or something) so I'm unlikely to reply if you have any other queries.
But I'll happily accept your dukes! :-)

Similar Messages

  • Translation of parameters but not showed - Why ?

    Hello,
    there's a program write in deutch language.
    I translate it from DE to FR, and than from FR to IT.
    All it was ok.
    Now I make some modification in IT language: I mean the I changed some texte in IT, I actived the new text, but
    when I run the program in IT, the text is not reprised, is showed the parameter's technical name.
    Why ?
    What I have to check ??
    Tks,
    I translated some parameters in a z reports, but when I run the program

    no reply

  • In FormView Pager Template shown in design page but not shown in runtime.....

    //////////////////////MY TABLE//////////////////
    USE [logistics_tab]
    GO
    /****** Object:  Table [dbo].[dtype]    Script Date: 02/07/2015 10:19:00 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[dtype](
    [dtid] [int] IDENTITY(1,1) NOT NULL,
    [dtcd] [char](5) NOT NULL,
    [desp] [char](15) NOT NULL,
     CONSTRAINT [PK_dtype] PRIMARY KEY CLUSTERED 
    [dtid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY],
     CONSTRAINT [Uq_dtcd_Dtype] UNIQUE NONCLUSTERED 
    [dtcd] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    GO
    ////////////MY STORED PROCEDURE/////////////////////
    USE [logistics_tab]
    GO
    /****** Object:  StoredProcedure [dbo].[dtype_pro]    Script Date: 02/07/2015 10:21:42 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE PROCEDURE [dbo].[dtype_pro]
    @dtid as int=0,
    @dtcd as char(5)='',
    @desp as char(15)='',
    @status as varchar(50)=''
    AS
    BEGIN
    SET NOCOUNT ON;
    if(@status = 'Display')
    begin
    Select * from dtype
    end
    else if(@status = 'Add')
    begin
    Insert into dtype(dtcd,desp) values (@dtcd,@desp)
    end
    else if(@status = 'Update')
    begin
    Update dtype set dtcd=@dtcd, desp=@desp where dtid=@dtid
    end
    else if(@status = 'Delete')
    begin
    Delete from dtype where dtid=@dtid
    end
    END
    GO
    //////////MY DESIGN PAGE/////////////
    <%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="DestnType.aspx.cs" Inherits="LogisticsApp.DestnType" %>
    <asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
    </asp:Content>
    <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
    <asp:FormView ID="FormView1" runat="server" DataKeyNames= "dtid" GridLines="Both" 
            AllowPaging="True" PagerStyle-BorderStyle="NotSet" PagerStyle-ForeColor="Black">
            <FooterStyle BackColor="#CCCCCC" ForeColor="Black" />
            <PagerStyle BackColor="#B5C7DE" ForeColor="Black" HorizontalAlign="Center" Font-Bold="true" Font-Size="Large"/>
            <ItemTemplate>
                      <table>
                        <tr><td align="right"><b>Employee ID:</b></td><td><%# Eval("dtid") %></td></tr>
                        <tr>
                          <td colspan="2">
                            <asp:LinkButton ID="EditButton"
                                            Text="Edit"
                                            CommandName="Edit"
                                            RunAt="server"/>
                              &nbsp;
                            <asp:LinkButton ID="NewButton"
                                            Text="New"
                                            CommandName="New"
                                            RunAt="server"/>
                              &nbsp;
                            <asp:LinkButton ID="DeleteButton"
                                            Text="Delete"
                                            CommandName="Delete"
                                            RunAt="server"/>
                          </td>
                        </tr>
                      </table>                 
                    </ItemTemplate>
                    <PagerTemplate>
                    <table>
                        <tr>
                          <td><asp:Button ID="FirstButton1" CommandName="Page" CommandArgument="First" 
                          Text="<1<" RunAt="server" Font-Bold="True" />&nbsp;</td>
                          </tr>
                      </table>
                    </PagerTemplate>
    </asp:FormView>
    </asp:Content>
     ///////MY CODE///////////
        using System;
        using System.Collections.Generic;
        using System.Linq;
        using System.Web;
        using System.Web.UI;
        using System.Web.UI.WebControls;
        using System.Configuration;
        using System.Data;
        using System.Data.SqlClient;
        using System.Text.RegularExpressions;
        namespace LogisticsApp
            public partial class DestnType : System.Web.UI.Page
                public LogisticsApp.MyConnection.OfcConn constr = new MyConnection.OfcConn();
                SqlConnection con;
                SqlCommand com;
                SqlDataAdapter sqlda;
                DataSet ds;
                DataTable dt;//for form view
                protected void Page_Load(object sender, EventArgs e)
                    if (!IsPostBack)
                        BindGrid();
                protected void BindGrid()
                    try
                        con = new SqlConnection(constr.str);
                        dt = new DataTable();//for form view
                        com = new SqlCommand();
                        con.Open();
                        com.Connection = con;
                        com.CommandText = "dtype_pro";
                        com.CommandType = CommandType.StoredProcedure;
                        com.Parameters.Add(new SqlParameter("@status",             SqlDbType.VarChar, 50));
                        com.Parameters["@status"].Value = "Display";
                        sqlda = new SqlDataAdapter(com);
                        ds = new DataSet();
                        sqlda.Fill(dt);//for formview
                        sqlda.Fill(ds);
                        if (ds.Tables[0].Rows.Count > 0) //Check if DataTable returns data
                            FormView1.DataSource = dt;
                            DataBind();                
                    catch (Exception ex)
                        //lblerr.Text = ex.Message;
                        throw ex;
                    finally
                            if (con != null)
                                    if (con.State == ConnectionState.Open)
                                    con.Close();
                                    con = null;
                    protected void DtypeFormView_PageIndexChanging(object sender, FormViewPageEventArgs e)
                        FormView1.PageIndex = e.NewPageIndex;
                        BindGrid();
    //plz plz... help as soon as possible this is simple code but not show at run time....... :(
                        

    Good day uzma
    abidi
    It has been long time since I used Webforms but it look to me like you are using the default options and if there is no data that return in the query then you will not see the PagerTemplate.
    1. execute the SP from the SSMS.
    2. make sure that you pass the correct @status while executing the SP from the ASPX.
    3. check the SQL Server profiler, what query the SQL Server got.
    4. Check if DataTable (dt) has data after filling it. else you do not get the "DataBind" part, and the PagerTemplate will not display.
    * The basic code look ok in fast review. I might missed something. You should monitor it and get the line that make the issue.
      Ronen Ariely
     [Personal Site]    [Blog]    [Facebook]

  • [Solved] tun module was loaded but not in lsmod?

    Hi Everybody,
    I loaded the tun module with "sudo modprobe tun" without any error message but didn't see it anywhere in "sudo lsmod". What might be the problems? I'm using linux-ck and wondering if linux-ck does anything here.
    The reason I want to load the tun module is that I saw this error:
    [root@ArchCustom openvpn]# openvpn --config ibVPN-LU-Luxembourg-\(P2P\).ovpn
    Thu Jan 17 08:03:20 2013 OpenVPN 2.2.2 x86_64-unknown-linux-gnu [SSL] [LZO2] [EPOLL] [eurephia] built on Aug 18 2012
    Enter Auth Username:[email protected]
    Enter Auth Password:
    Thu Jan 17 08:03:30 2013 IMPORTANT: OpenVPN's default port number is now 1194, based on an official port number assignment by IANA. OpenVPN 2.0-beta16 and earlier used 5000 as the default port.
    Thu Jan 17 08:03:30 2013 NOTE: the current --script-security setting may allow this configuration to call user-defined scripts
    Thu Jan 17 08:03:30 2013 NOTE: --script-security method='system' is deprecated due to the fact that passed parameters will be subject to shell expansion
    Thu Jan 17 08:03:30 2013 LZO compression initialized
    Thu Jan 17 08:03:30 2013 Control Channel MTU parms [ L:1578 D:138 EF:38 EB:0 ET:0 EL:0 ]
    Thu Jan 17 08:03:30 2013 Socket Buffers: R=[212992->131072] S=[212992->131072]
    Thu Jan 17 08:03:30 2013 Data Channel MTU parms [ L:1578 D:1450 EF:46 EB:135 ET:32 EL:0 AF:3/1 ]
    Thu Jan 17 08:03:30 2013 Fragmentation MTU parms [ L:1578 D:1300 EF:45 EB:135 ET:33 EL:0 AF:3/1 ]
    Thu Jan 17 08:03:30 2013 Local Options hash (VER=V4): '9a22532e'
    Thu Jan 17 08:03:30 2013 Expected Remote Options hash (VER=V4): 'e2a912d8'
    Thu Jan 17 08:03:30 2013 UDPv4 link local (bound): [undef]:1194
    Thu Jan 17 08:03:30 2013 UDPv4 link remote: 212.117.165.18:1194
    Thu Jan 17 08:03:30 2013 TLS: Initial packet from 212.117.165.18:1194, sid=bfe5f406 752fd5e9
    Thu Jan 17 08:03:31 2013 VERIFY OK: depth=1, /C=US/ST=CA/L=SanFrancisco/O=Fort-Funston/CN=Fort-Funston_CA/[email protected]
    Thu Jan 17 08:03:31 2013 VERIFY OK: nsCertType=SERVER
    Thu Jan 17 08:03:31 2013 VERIFY OK: depth=0, /C=US/ST=CA/L=SanFrancisco/O=Fort-Funston/CN=server/[email protected]
    Thu Jan 17 08:03:31 2013 Data Channel Encrypt: Cipher 'BF-CBC' initialized with 128 bit key
    Thu Jan 17 08:03:31 2013 Data Channel Encrypt: Using 160 bit message hash 'SHA1' for HMAC authentication
    Thu Jan 17 08:03:31 2013 Data Channel Decrypt: Cipher 'BF-CBC' initialized with 128 bit key
    Thu Jan 17 08:03:31 2013 Data Channel Decrypt: Using 160 bit message hash 'SHA1' for HMAC authentication
    Thu Jan 17 08:03:31 2013 Control Channel: TLSv1, cipher TLSv1/SSLv3 DHE-RSA-AES256-SHA, 1024 bit RSA
    Thu Jan 17 08:03:31 2013 [server] Peer Connection Initiated with 212.117.165.18:1194
    Thu Jan 17 08:03:33 2013 SENT CONTROL [server]: 'PUSH_REQUEST' (status=1)
    Thu Jan 17 08:03:33 2013 PUSH: Received control message: 'PUSH_REPLY,redirect-gateway def1 bypass-dhcp,dhcp-option DNS 8.8.8.8,dhcp-option DNS 8.8.4.4,route 10.10.10.0 255.255.255.0 vpn_gateway,show-net-up,route-gateway 10.10.10.1,ping 2,ping-restart 120,ifconfig 10.10.10.18 255.255.255.0'
    Thu Jan 17 08:03:33 2013 Options error: Unrecognized option or missing parameter(s) in [PUSH-OPTIONS]:5: show-net-up (2.2.2)
    Thu Jan 17 08:03:33 2013 OPTIONS IMPORT: timers and/or timeouts modified
    Thu Jan 17 08:03:33 2013 OPTIONS IMPORT: --ifconfig/up options modified
    Thu Jan 17 08:03:33 2013 OPTIONS IMPORT: route options modified
    Thu Jan 17 08:03:33 2013 OPTIONS IMPORT: route-related options modified
    Thu Jan 17 08:03:33 2013 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified
    Thu Jan 17 08:03:33 2013 ROUTE default_gateway=192.168.4.1
    Thu Jan 17 08:03:33 2013 Note: Cannot open TUN/TAP dev /dev/net/tun: No such device (errno=19)
    Thu Jan 17 08:03:33 2013 /usr/sbin/ip link set dev up mtu 1500
    Usage: ip link add [link DEV] [ name ] NAME
    [ txqueuelen PACKETS ]
    [ address LLADDR ]
    [ broadcast LLADDR ]
    [ mtu MTU ]
    [ numtxqueues QUEUE_COUNT ]
    [ numrxqueues QUEUE_COUNT ]
    type TYPE [ ARGS ]
    ip link delete DEV type TYPE [ ARGS ]
    ip link set { dev DEVICE | group DEVGROUP } [ { up | down } ]
    [ arp { on | off } ]
    [ dynamic { on | off } ]
    [ multicast { on | off } ]
    [ allmulticast { on | off } ]
    [ promisc { on | off } ]
    [ trailers { on | off } ]
    [ txqueuelen PACKETS ]
    [ name NEWNAME ]
    [ address LLADDR ]
    [ broadcast LLADDR ]
    [ mtu MTU ]
    [ netns PID ]
    [ netns NAME ]
    [ alias NAME ]
    [ vf NUM [ mac LLADDR ]
    [ vlan VLANID [ qos VLAN-QOS ] ]
    [ rate TXRATE ] ]
    [ spoofchk { on | off} ] ]
    [ master DEVICE ]
    [ nomaster ]
    ip link show [ DEVICE | group GROUP ]
    TYPE := { vlan | veth | vcan | dummy | ifb | macvlan | can | bridge }
    Thu Jan 17 08:03:33 2013 Linux ip link set failed: external program exited with error status: 255
    Thu Jan 17 08:03:33 2013 Exiting
    And this is the content of ibVPN-LU-Luxembourg-\(P2P\).ovpn:
    [root@ArchCustom openvpn]# cat ibVPN-LU-Luxembourg-\(P2P\).ovpn
    remote lu1.ibvpn.com 1194 udp
    remote 212.117.165.18 1194 udp
    client
    dev tap
    resolv-retry infinite
    script-security 3 system
    explicit-exit-notify 3
    persist-key
    persist-tun
    mute-replay-warnings
    ca ibvpn.com.crt
    comp-lzo
    verb 3
    mute 20
    ns-cert-type server
    fragment 1300
    route-delay 2
    auth-user-pass
    auth-nocache
    reneg-sec 0
    up "/etc/openvpn/change_resolv_conf.sh up"
    down "/etc/openvpn/change_resolv_conf.sh down"
    Regards.
    Solved: didn't know what happened, installed linux-ck 3.7.3-1-ck, rebooted and everything was fine.
    Last edited by dxxvi (2013-01-20 06:10:47)

    Trilby wrote:
    Isn't this the same issue:
    https://bbs.archlinux.org/viewtopic.php … 1#p1217611
    If so, please search the forums before creating new threads of duplicate issues.
    It looks like the same issue. Actually, I did a search for "tun" in the Networking forum (but not the newbie forum) and still couldn't find an answer.
    My /usr/src/linux-3.7.2-2-ck/.config has CONFIG_TUN=m. Then is there any other reason I cannot load the tun module?
    Thanks.

  • Chararacteristic 0CALQUARTER is available in version M but not in version D

    Dear Sirs
    I hope you're doing fine. While activating InfoCube 0PUR_C01 I get the following error:
    <i><b>RSAU709 : Chararacteristic 0CALQUARTER is available in version M but not in version D.</b></i>
    (Yes, the word <i>characteristic</i> is misspelled in the message text)
    There is no more detailed information so I'm stuck..Please help.
    With best regards
    Manuel<i></i><i></i>

    Try executing the function module RSDG_IOBC_REORG function module in transaction SE37 (F8 -> single test) with the following parameters:
    Function module              RSDG_IOBC_REORG
    Import parameter             Value
    I_OBJVERS                    A
    I_PROGRESS
    I_IOBJTP                    *
    I_ALL_IOBJ                   X
    I_T_IOBJNM                  0 entries
    I_BYPASS_BUFFER
    F8 -> Execute

  • Can log into Yosemite server (4.0) VPN service with a Mavericks client, but not Yosemite client

    Sever Info:
    Yosemite Server 4.0 running on a late 2009 Mac Mini with 8 GB RAM with vpnd service enabled
    The server was upgraded to Yosemite - not clean install - this may not matter (see below)
    Airport extreme router with standard VPN UDP ports for L2TP forwarded to server (500, 1701, 4500)
    Client info:
    MB Air 13" early 2014 with 8 GB RAM
    Yosemite
    Mavericks 10.9.5 running as a Parallels virtual machine (don't ask - I need it to run an app for work that is not yet compatible with Yosemite)
    OD service is NOT running - no VPN connections ever occurred from ANY client with this service running - OD is not needed in my case fortunately
    With the OD service off, I can connect via the Mavericks virtual machine just fine, but not with Yosemite. With Yosemite, the ppp connection appears to occur, but server config requests appear to fall on deaf ears (client side doesn't appear to respond) until the connection times out. Can't figure out what triggers the client response to a server config request. Client side complains about no route to host and IP addresses don't get assigned to the connection.
    The connection happens successfully in an eyeblink with the Mavericks client. Same username/password/shared secret in both instances.
    Tried a generated .vpnconfig from the server, this also did not work.
    It's possible that it is an auth problem, but can't figure out how the process occurs or what may be going wrong. There does not seem to be an obvious way to increase the granularity of the logging such that it might give other hints - at least that I can find. I found plenty of references to VPN issues when people upgraded from Mountain Lion to Mavericks as well as work arounds for this. I tried the most promising looking of those - no love. I reverted everything back to stock install since I could at least connect with Mavericks.
    If log entries would be helpful, they are included below. I've stared at them long enough - perhaps a new set of eyes can provide a hint.
    In addition, I can find no documentation regarding the VPN service in Yosemite server so as to get a clue as to whether there have been changes in racoon since Mavericks.
    Thanks in advance for any suggestions. I would be glad to supply any other info needed for an accurate diagnosis .
    Pat
    ==
    Regarding the Yosemite client connection in the Yosemite server VPN Service log:
    2014-10-21 12:18:30 MDT
    Incoming call... Address given to client = 192.168.1.228
    Tue Oct 21 12:18:30 2014 : Directory Services Authentication plugin initialized
    Tue Oct 21 12:18:30 2014 : Directory Services Authorization plugin initialized
    Tue Oct 21 12:18:30 2014 : publish_entry SCDSet() failed: Success!
    Tue Oct 21 12:18:30 2014 : publish_entry SCDSet() failed: Success!
    Tue Oct 21 12:18:30 2014 : publish_entry SCDSet() failed: Success!
    Tue Oct 21 12:18:30 2014 : L2TP incoming call in progress from 'my.dotted.quad.address'...
    Tue Oct 21 12:18:30 2014 : L2TP received SCCRQ
    Tue Oct 21 12:18:30 2014 : L2TP sent SCCRP
    Tue Oct 21 12:18:30 2014 : L2TP received SCCCN
    Tue Oct 21 12:18:30 2014 : L2TP received ICRQ
    Tue Oct 21 12:18:30 2014 : L2TP sent ICRP
    Tue Oct 21 12:18:30 2014 : L2TP received ICCN
    Tue Oct 21 12:18:30 2014 : L2TP connection established.
    Tue Oct 21 12:18:30 2014 : using link 0
    Tue Oct 21 12:18:30 2014 : Using interface ppp0
    Tue Oct 21 12:18:30 2014 : Connect: ppp0 <--> socket[34:18]
    Tue Oct 21 12:18:30 2014 : sent [LCP ConfReq id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic 0x93542b1> <pcomp> <accomp>]
    Tue Oct 21 12:18:33 2014 : sent [LCP ConfReq id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic 0x93542b1> <pcomp> <accomp>]
    Tue Oct 21 12:18:36 2014 : sent [LCP ConfReq id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic 0x93542b1> <pcomp> <accomp>]
    Tue Oct 21 12:18:39 2014 : sent [LCP ConfReq id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic 0x93542b1> <pcomp> <accomp>]
    Tue Oct 21 12:18:42 2014 : sent [LCP ConfReq id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic 0x93542b1> <pcomp> <accomp>]
    Tue Oct 21 12:18:45 2014 : sent [LCP ConfReq id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic 0x93542b1> <pcomp> <accomp>]
    Tue Oct 21 12:18:48 2014 : sent [LCP ConfReq id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic 0x93542b1> <pcomp> <accomp>]
    Tue Oct 21 12:18:51 2014 : sent [LCP ConfReq id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic 0x93542b1> <pcomp> <accomp>]
    Tue Oct 21 12:18:54 2014 : sent [LCP ConfReq id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic 0x93542b1> <pcomp> <accomp>]
    Tue Oct 21 12:18:57 2014 : sent [LCP ConfReq id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic 0x93542b1> <pcomp> <accomp>]
    Tue Oct 21 12:19:00 2014 : LCP: timeout sending Config-Requests
    Tue Oct 21 12:19:00 2014 : Connection terminated.
    Tue Oct 21 12:19:00 2014 : L2TP disconnecting...
    Tue Oct 21 12:19:00 2014 : L2TP sent CDN
    Tue Oct 21 12:19:00 2014 : L2TP sent StopCCN
    Tue Oct 21 12:19:00 2014 : L2TP disconnected
    2014-10-21 12:19:00 MDT
       --> Client with address = 192.168.1.228 has hungup
    ==
    Client side log for this connection using the Yosemite client:
    Tue Oct 21 14:32:08 2014 : publish_entry SCDSet() failed: Success!
    Tue Oct 21 14:32:08 2014 : publish_entry SCDSet() failed: Success!
    Tue Oct 21 14:32:08 2014 : L2TP connecting to server 'myserver.com' (my.dotted.quad.address)...
    Tue Oct 21 14:32:08 2014 : IPSec connection started
    Tue Oct 21 14:32:09 2014 : IPSec connection established
    Tue Oct 21 14:32:10 2014 : L2TP connection established.
    Tue Oct 21 14:32:10 2014 : L2TP set port-mapping for en0, interface: 4, protocol: 0, privatePort: 0
    Tue Oct 21 14:32:10 2014 : Using interface ppp0
    Tue Oct 21 14:32:10 2014 : Connect: ppp0 <--> socket[34:18]
    Tue Oct 21 14:32:10 2014 : L2TP port-mapping for en0, interfaceIndex: 0, Protocol: None, Private Port: 0, Public Address: 3fe4b3e8, Public Port: 0, TTL: 0.
    Tue Oct 21 14:32:10 2014 : L2TP port-mapping for en0 inconsistent. is Connected: 1, Previous interface: 4, Current interface 0
    Tue Oct 21 14:32:10 2014 : L2TP port-mapping for en0 initialized. is Connected: 1, Previous publicAddress: (0), Current publicAddress 3fe4b3e8
    Tue Oct 21 14:32:10 2014 : L2TP port-mapping for en0 fully initialized. Flagging up
    Tue Oct 21 14:32:25 2014 : write: No route to host
    Tue Oct 21 14:32:25 2014 : write: Host is down
    Tue Oct 21 14:32:28 2014 : write: Host is down
    Tue Oct 21 14:32:28 2014 : write: Host is down
    Tue Oct 21 14:32:31 2014 : write: Host is down
    Tue Oct 21 14:32:31 2014 : write: Host is down
    Tue Oct 21 14:32:34 2014 : write: Host is down
    Tue Oct 21 14:32:34 2014 : write: Host is down
    Tue Oct 21 14:32:37 2014 : write: Host is down
    Tue Oct 21 14:32:37 2014 : write: Host is down
    Tue Oct 21 14:32:40 2014 : LCP: timeout sending Config-Requests
    Tue Oct 21 14:32:40 2014 : Connection terminated.
    Tue Oct 21 14:32:40 2014 : L2TP disconnecting...
    Tue Oct 21 14:32:40 2014 : L2TP error sending CDN (Host is down)
    Tue Oct 21 14:32:40 2014 : L2TP clearing port-mapping for en0
    Tue Oct 21 14:32:40 2014 : L2TP disconnected
    ==
    Pertinent client side log for connection of Mavericks client to Yosemite server:
    Tue Oct 21 13:29:13 2014 : Connect: ppp0 <--> socket[34:18]
    Tue Oct 21 13:29:13 2014 : L2TP port-mapping for en0, interfaceIndex: 0, Protocol: None, Private Port: 0, Public Address: 3fe4b3e8, Public Port: 0, TTL: 0.
    Tue Oct 21 13:29:13 2014 : L2TP port-mapping for en0 inconsistent. is Connected: 1, Previous interface: 4, Current interface 0
    Tue Oct 21 13:29:13 2014 : L2TP port-mapping for en0 initialized. is Connected: 1, Previous publicAddress: (0), Current publicAddress 3fe4b3e8
    Tue Oct 21 13:29:13 2014 : L2TP port-mapping for en0 fully initialized. Flagging up
    Tue Oct 21 13:29:21 2014 : local  IP address 192.168.1.229
    Tue Oct 21 13:29:21 2014 : remote IP address 192.168.1.2
    Tue Oct 21 13:29:21 2014 : primary   DNS address 192.168.1.2
    Tue Oct 21 13:29:21 2014 : secondary DNS address 8.8.8.8
    Tue Oct 21 13:29:21 2014 : l2tp_wait_input: Address added. previous interface setting (name: en0, address: 10.0.1.38), current interface setting (name: ppp0, family: PPP, address: 192.168.1.229, subnet: 255.255.255.0, destination: 192.168.1.2).
    Tue Oct 21 13:29:21 2014 : Committed PPP store
    Tue Oct 21 13:29:21 2014 : Committed PPP store
    Tue Oct 21 13:52:32 2014 : [DISCONNECT]
    Tue Oct 21 13:52:32 2014 : Hangup (SIGHUP)
    Tue Oct 21 13:52:32 2014 : Connection terminated.
    Tue Oct 21 13:52:32 2014 : Connect time 23.4 minutes.
    Tue Oct 21 13:52:32 2014 : Sent 2674664 bytes, received 10680854 bytes.
    Tue Oct 21 13:52:32 2014 : L2TP disconnecting...
    Tue Oct 21 13:52:32 2014 : L2TP clearing port-mapping for en0
    Tue Oct 21 13:52:32 2014 : L2TP disconnected
    ==
    Regarding the Mavericks client connection in the Yosemite server VPN Service log:
    2014-10-21 12:09:48 MDT Incoming call... Address given to client = 192.168.1.226
    Tue Oct 21 12:09:48 2014 : Directory Services Authentication plugin initialized
    Tue Oct 21 12:09:48 2014 : Directory Services Authorization plugin initialized
    Tue Oct 21 12:09:48 2014 : publish_entry SCDSet() failed: Success!
    Tue Oct 21 12:09:48 2014 : publish_entry SCDSet() failed: Success!
    Tue Oct 21 12:09:48 2014 : publish_entry SCDSet() failed: Success!
    Tue Oct 21 12:09:48 2014 : L2TP incoming call in progress from ‘my.dotted.quad.address’…
    Tue Oct 21 12:09:48 2014 : L2TP received SCCRQ
    Tue Oct 21 12:09:48 2014 : L2TP sent SCCRP
    Tue Oct 21 12:09:48 2014 : L2TP received SCCCN
    Tue Oct 21 12:09:48 2014 : L2TP received ICRQ
    Tue Oct 21 12:09:48 2014 : L2TP sent ICRP
    Tue Oct 21 12:09:49 2014 : L2TP received ICCN
    Tue Oct 21 12:09:49 2014 : L2TP connection established.
    Tue Oct 21 12:09:49 2014 : using link 0
    Tue Oct 21 12:09:49 2014 : Using interface ppp0
    Tue Oct 21 12:09:49 2014 : Connect: ppp0 <--> socket[34:18]
    Tue Oct 21 12:09:49 2014 : sent [LCP ConfReq id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic 0x4bc40d9f> <pcomp> <accomp>]
    Tue Oct 21 12:09:49 2014 : rcvd [LCP ConfReq id=0x1 <asyncmap 0x0> <magic 0x71598937> <pcomp> <accomp>]
    Tue Oct 21 12:09:49 2014 : lcp_reqci: returning CONFACK.
    Tue Oct 21 12:09:49 2014 : sent [LCP ConfAck id=0x1 <asyncmap 0x0> <magic 0x71598937> <pcomp> <accomp>]
    Tue Oct 21 12:09:49 2014 : rcvd [LCP ConfAck id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic 0x4bc40d9f> <pcomp> <accomp>]
    Tue Oct 21 12:09:49 2014 : sent [LCP EchoReq id=0x0 magic=0x4bc40d9f]
    Tue Oct 21 12:09:49 2014 : sent [CHAP Challenge id=0x73 <074a110a5e0620296b1937345c34090e>, name = “myserver.private”]
    Tue Oct 21 12:09:49 2014 : rcvd [LCP EchoReq id=0x0 magic=0x71598937]
    Tue Oct 21 12:09:49 2014 : sent [LCP EchoRep id=0x0 magic=0x4bc40d9f]
    Tue Oct 21 12:09:49 2014 : rcvd [LCP EchoRep id=0x0 magic=0x71598937]
    Tue Oct 21 12:09:49 2014 : rcvd [CHAP Response id=0x73 <dfed1e41e1fb8c1132387c3d7792b1880000000000000000b2b163259cbe410aae792093680ba7 a89da3b46737c0d8d200>, name = "somelocaluser"]
    Tue Oct 21 12:09:54 2014 : sent [CHAP Success id=0x73 "S=00EDB07933CE697641E2263A2A76386389512329 M=Access granted"]
    Tue Oct 21 12:09:54 2014 : CHAP peer authentication succeeded for somelocaluser
    Tue Oct 21 12:09:54 2014 : DSAccessControl plugin: User 'somelocaluser' authorized for access
    Tue Oct 21 12:09:54 2014 : sent [IPCP ConfReq id=0x1 <addr 192.168.1.2>]
    Tue Oct 21 12:09:54 2014 : sent [ACSCP ConfReq id=0x1]
    Tue Oct 21 12:09:54 2014 : rcvd [CHAP Response id=0x73 <dfed1e41e1fb8c1132387c3d7792b1880000000000000000b2b163259cbe410aae792093680ba7 a89da3b46737c0d8d200>, name = "somelocaluser"]
    Tue Oct 21 12:09:54 2014 : sent [CHAP Success id=0x73 "S=00EDB07933CE697641E2263A2A76386389512329 M=Access granted"]
    Tue Oct 21 12:09:54 2014 : rcvd [IPCP ConfReq id=0x1 <addr 0.0.0.0> <ms-dns1 0.0.0.0> <ms-dns3 0.0.0.0>]
    Tue Oct 21 12:09:54 2014 : ipcp: returning Configure-NAK
    Tue Oct 21 12:09:54 2014 : sent [IPCP ConfNak id=0x1 <addr 192.168.1.226> <ms-dns1 192.168.1.2> <ms-dns3 8.8.8.8>]
    Tue Oct 21 12:09:54 2014 : rcvd [IPV6CP ConfReq id=0x1 <addr fe80::021c:42ff:febf:bf66>]
    Tue Oct 21 12:09:54 2014 : Unsupported protocol 0x8057 received
    Tue Oct 21 12:09:54 2014 : sent [LCP ProtRej id=0x2 80 57 01 01 00 0e 01 0a 02 1c 42 ff fe bf bf 66]
    Tue Oct 21 12:09:54 2014 : rcvd [ACSCP ConfReq id=0x1 <route vers 16777216> <domain vers 16777216>]
    Tue Oct 21 12:09:54 2014 : sent [ACSCP ConfRej id=0x1 <route vers 16777216>]
    Tue Oct 21 12:09:54 2014 : rcvd [IPCP ConfAck id=0x1 <addr 192.168.1.2>]
    Tue Oct 21 12:09:54 2014 : rcvd [ACSCP ConfAck id=0x1]
    Tue Oct 21 12:09:54 2014 : rcvd [IPCP ConfReq id=0x2 <addr 192.168.1.226> <ms-dns1 192.168.1.2> <ms-dns3 8.8.8.8>]
    Tue Oct 21 12:09:54 2014 : ipcp: returning Configure-ACK
    Tue Oct 21 12:09:54 2014 : sent [IPCP ConfAck id=0x2 <addr 192.168.1.226> <ms-dns1 192.168.1.2> <ms-dns3 8.8.8.8>]
    Tue Oct 21 12:09:54 2014 : ipcp: up
    Tue Oct 21 12:09:54 2014 : found interface en0 for proxy arp
    Tue Oct 21 12:09:54 2014 : local  IP address 192.168.1.2
    Tue Oct 21 12:09:54 2014 : remote IP address 192.168.1.226
    Tue Oct 21 12:09:54 2014 : Received acsp/dhcp dictionaries
    Tue Oct 21 12:09:54 2014 : Received acsp/dhcp dictionaries
    Tue Oct 21 12:09:54 2014 : l2tp_wait_input: Address added. previous interface setting (name: en0, address: 192.168.1.2), current interface setting (name: ppp0, family: PPP, address: 192.168.1.2, subnet: 255.255.255.0, destination: 192.168.1.226).
    Tue Oct 21 12:09:54 2014 : rcvd [ACSCP ConfReq id=0x2 <domain vers 16777216>]
    Tue Oct 21 12:09:54 2014 : sent [ACSCP ConfAck id=0x2 <domain vers 16777216>]
    Tue Oct 21 12:09:54 2014 : Received protocol dictionaries
    Tue Oct 21 12:09:54 2014 : Committed PPP store
    Tue Oct 21 12:09:54 2014 : sent [ACSP data <payload len 24, packet seq 0, CI_DOMAINS, flags: START END REQUIRE-ACK>
        <domain: name private>
        <domain: name local>]
    Tue Oct 21 12:09:54 2014 : rcvd [IP data <src addr 192.168.1.226> <dst addr 255.255.255.255> <BOOTP Request> <type INFORM> <client id 0x08000000010000> <parameters = 0x6 0x2c 0x2b 0x1 0xf9 0xf>]
    Tue Oct 21 12:09:54 2014 : sent [IP data <src addr 192.168.1.2> <dst addr 192.168.1.226> <BOOTP Reply> <type ACK> <server id 0xc0a80102> <domain name "local">]
    Tue Oct 21 12:09:57 2014 : sent [ACSP data <payload len 24, packet seq 0, CI_DOMAINS, flags: START END REQUIRE-ACK>
        <domain: name private>
        <domain: name local>]
    Tue Oct 21 12:10:00 2014 : sent [ACSP data <payload len 24, packet seq 0, CI_DOMAINS, flags: START END REQUIRE-ACK>
        <domain: name private>
        <domain: name local>]
    Tue Oct 21 12:10:03 2014 : sent [ACSP data <payload len 24, packet seq 0, CI_DOMAINS, flags: START END REQUIRE-ACK>
        <domain: name private>
        <domain: name local>]
    Tue Oct 21 12:10:06 2014 : sent [ACSP data <payload len 24, packet seq 0, CI_DOMAINS, flags: START END REQUIRE-ACK>
        <domain: name private>
        <domain: name local>]
    Tue Oct 21 12:10:09 2014 : sent [ACSP data <payload len 24, packet seq 0, CI_DOMAINS, flags: START END REQUIRE-ACK>
        <domain: name private>
        <domain: name local>]
    Tue Oct 21 12:10:09 2014 : rcvd [LCP TermReq id=0x2 "User request"]
    Tue Oct 21 12:10:09 2014 : LCP terminated by peer (User request)
    Tue Oct 21 12:10:09 2014 : ipcp: down
    Tue Oct 21 12:10:09 2014 : sent [LCP TermAck id=0x2]
    Tue Oct 21 12:10:09 2014 : l2tp_wait_input: Address deleted. previous interface setting (name: en0, address: 192.168.1.2), deleted interface setting (name: ppp0, family: PPP, address: 192.168.1.2, subnet: 255.255.255.0, destination: 192.168.1.226).
    Tue Oct 21 12:10:09 2014 : L2TP received CDN
    Tue Oct 21 12:10:09 2014 : Connection terminated.
    Tue Oct 21 12:10:09 2014 : Connect time 0.4 minutes.
    Tue Oct 21 12:10:09 2014 : Sent 1003 bytes, received 646 bytes.
    Tue Oct 21 12:10:09 2014 : L2TP disconnecting...
    Tue Oct 21 12:10:09 2014 : L2TP disconnected
    2014-10-21 12:10:09 MDT   --> Client with address = 192.168.1.226 has hungup

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    Don't be put off by the complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. As I wrote above, it changes nothing. It doesn't send or receive any data on the network. All it does is to generate a human-readable report on the state of the computer. That report goes nowhere unless you choose to share it. If you prefer, you can act on it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of the script have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    5. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts SerialATA 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports ' com.clark.\* \*dropbox \*genieo\* \*GoogleDr\* \*k.AutoCAD\* \*k.Maya\* vidinst\* ' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 "` route -n get default|awk '/e:/{print $2}' `" 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB com.apple.AirPortBaseStationAgent 464843899 51 5120 files );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n-\t%s\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' s/[0-9A-Za-z._]+@[0-9A-Za-z.]+\.[0-9A-Za-z]{2,4}/EMAIL/g;/\/Shared/!s/(\/Users\/)[^ /]+/\1USER/g;s/[-0-9A-Fa-f]{22,}/UUID/g;' ' s/^ +//;/de: S|[nst]:/p;' ' {sub(/^ +/,"")};/er:/;/y:/&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: [^EO]|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Genesy|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { if(n<200) print "com.apple.";} ' ' $3~/[0-9]:[0-9]{2}$/ { gsub(/:[0-9:a-f]{14}/,"");} { print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { print "'${p[41]}'";if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$|'${p[41]}'/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:[^:]+//p ' '/^root$/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1100) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/{next};/(etc|Preferences|Launch[AD].+)\// { sub(".(/private)?","");n++;print;} END { print "'${p[41]}'.plist\t'${p[42]}'";if(n<500) print "Launch";} ' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| |\n","\\|\\|kMDItem'${p[35]}'=");sub("^...."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[43]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/{next};/%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|BKAg|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";p="uniq -c|sed -E '"'s/ +\\([0-9]+\\)\\(.+\\)/\\\2 x\\\1/;s/x1$//'"'";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]$1|p;b=b$1;} END { close(p);if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n   "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n   [N/A]";"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text$|(Bo|PO).+ sh.+ text ex)/) F=F" ("T")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n   ...and %s more line(s)\n",l-L);} ' ' s/^ ?n...://p;s/^ ?p...:/-'$'\t''/p;' 's/0/Off/p' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' / / { print "'"${p[28]}"'";exit;};1;' '/ en/!s/\.//p' ' NR!=13{next};{sub(/[+-M]$/,"",$NF)};'"`S0 39 40`" ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9;} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?Info\.plist$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' ' /l: /{ /DVD/d;s/.+: //;b0'$'\n'' };/s: /{ /V/d;s/^ */- /;H;};$b0'$'\n'' d;:0'$'\n'' x;/APPLE [^:]+$/d;p;' ' /^find: /d;p;' "`S0 44 45`" ' BEGIN{FS="= "} /Path/{print $2} ' ' /^ *$/d;s/^ */   /;' );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps sudo\ crontab sudo\ iotop top pkgutil 'PlistBuddy 2>&1 -c "Print' whoami cksum kextstat launchctl sudo\ launchctl crontab 'sudo defaults read' stat lsbom mdfind ' for i in ${p[24]};do ${c1[18]} ${c2[27]} $i;done;' defaults\ read scutil sudo\ dtrace sudo\ profiles sed\ -En awk /S*/*/P*/*/*/C*/*/airport networksetup mdutil sudo\ lsof test osascript\ -e );c2=(com.apple.loginwindow\ LoginHook '" /L*/P*/loginw*' "'tell app \"System Events\" to get properties of login items'|tr , \\\n" 'L*/Ca*/com.ap*.Saf*/E*/* -d 1 -name In*t -exec '"${c1[14]}"' :CFBundleDisplayName" {} \;|sort|uniq' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' :${p[35]}\" :Label\" '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$Message' -k Sender kernel -k Message Req 'bad |Beac|caug|corru|dead[^bl]|FAIL|fail|GPU |hfs: Ru|inval|jnl:|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|tim(ed? ?|ing )o|WARN' -k Message Rne 'Goog|ksadm|SMC:|suhel| VALI|xpma' -o -k Sender fseventsd -k Message Req 'SL' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cght] ! -name .?\* ! -name \*ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '/S*/*/Ca*/*xpc* >&- ||echo No' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,Ex}* {/,}L*/{A*d,Ca*/*/Ex,Co{mpon,reM},Ex,In{p,ter},iTu*/*P,Keyb,Mail/B,Pr*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -path \\*s/Resources -prune -o -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,{[lp],sy}*.conf,mach_i*/*,pam.d/*,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t {/S*/,/,}L*/Lau*/*t .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers\ "${p[N5]}" -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' '+c0 -i4TCP:0-1023' com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' "+c0 -l|awk '{print(\$1,\$3)}'|sort|uniq -c|sort -n|tail -1|awk '{print(\$2,\$3,\$1)}'" );N1=${#c2[@]};for j in {0..9};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents XPC\ cache Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching SATA Descriptors );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};';done;A7(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0() { [[ "$v" ]]&&sed -E "$s"<<<"$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v"|sed -E "$s";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "${s[63]}"<<<"$v"`&&C1 1 $1;};for i in 1 2;do for j in 0 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;D20 0 $((N1+1)) 2;D10 0 $N1 1;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;D13 0 $((N1+9)) 59 50;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 14 12 14;D22 6 36 13 15;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D22 35 49 61 51;D22 11 17 17 20;for i in 0 1;do D22 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A2 19 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;D13 24 24 32 31;D13 25 37 32 33;A2 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D13 21 0 32 19;D13 10 42 32 40;D22 29 35 46 39;};D23 14 1 62 42;D12 34 43 53 44;D12 22 20 32 25;D22 0 $((N1+8)) 51 32;D13 4 8 41 6;D12 26 28 35 34;D13 27 29 36 35;A2 27 32 39&&{ B2 19;A2 33 33 40;B2 20;B6 19 20 3;};C2 36;D23 33 34 42 37;B1&&D23 35 45 55 46;D23 32 31 43 38;D12 36 47 32 48;D13 20 42 32 41;D13 37 2 48 43;D13 4 5 32 1;D13 4 3 60 5;D12 26 48 49 49;B3 4 22 57;A1 26 46 56;B7 22;B3 0 0 58;C3 47;D22 4 4 50 0;D23 22 9 37 7;A7;C2 2;} 2>/dev/null|pbcopy;exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    8. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    9. If you see an error message in the Terminal window such as "Syntax error" or "Event not found," enter
    exec bash
    and press return. Then paste the script again.
    10. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return  three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    11. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report what happened. No harm will be done.
    12. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    13. When you post the results, you might see an error message on the web page: "You have included content in your post that is not permitted," or "You are not authorized to post." That's a bug in the forum software. Please post the test results on Pastebin, then post a link here to the page you created.
    14. This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Issue while calling the RFC in SAP quality system but not in SAP Dev sys

    Hi,
    Our scenario is FIle-RFC-File.
    We are calling the RFC from XI system in Development environment. This is working fine in Development environment, but not in Quality environment.
    This changes are moved/transported to Quality environment in both XI and SAP side. But we are getting the following error in Quality system:
    <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIAdapterFramework</SAP:Category>
      <SAP:Code area="MESSAGE">GENERAL</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText><b>com.sap.aii.af.ra.ms.api.DeliveryException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: functiontemplate from repository was <null></b></SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack />
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Please provide the inputs, what we can check at SAP side and XI side.
    We have tried to test from XI Development to SAP quality environment, but we are getting the same error message.
    Waiting for the precious inputs.
    Thanks,
    Ramesh.

    Hi Ramesh,
    This might be because your RFC adapter would not have been configured properly. Just do a check on it,in RWB(adapter monitoring) and activate it once more in ID.
    Also check RFC comm. parameters such as host name/user id/password etc..
    Also check whether your XML document is having a mismatch with your RFC XML.
    Check with your payload ( from SXMB_MONI) and test it in your message mapping.
    All the best!
    cheers,
    prashanth
    P.S Please mark helpful answers

  • Repeating error message: "acl found but not expected" during permissions repair

    repeating error message: "acl found but not expected" during permissions repair
    My iMac is running slow. Processor running all the time. I was told to do permissions repair, so I did that. I get 100's and 100's of "ACL found but not expected" while doing a permissions repair in 'utilities'. It says 1 minute to complete but runs for a half hour. When it finally completes, I can restart the permissions repair again and it starts all over with same endless messages. Even though its says 'repaired', these ACL issues keep coming.
    SEE BELOW ... What's wrong? And How do I fix it?
    Kind thanks for your suggestions,
    Vic
    Hardware Overview:  Model Name: iMac
      Model Identifier: iMac8,1
      Processor Name: Intel Core 2 Duo
      Processor Speed: 2.8 GHz
      Number Of Processors: 1
      Total Number Of Cores: 2
      L2 Cache: 6 MB
      Memory: 4 GB
      Bus Speed: 1.07 GHz
      Boot ROM Version: IM81.00C1.B00
      SMC Version (system): 1.30f1
    Serial Number (system): W884000HZE4  Hardware UUID: BF3B8113-E0F0-54DB-9062-B73A0E4DB0F2
    Repairing permissions for “Vic's iMac”ACL found but not expected on “Library/Printers”Repaired “Library/Printers”ACL found but not expected on “Library/Printers/Icons”Repaired “Library/Printers/Icons”Group differs on “Library/Printers/InstalledPrinters.plist”; should be 80; group is 0.Permissions differ on “Library/Printers/InstalledPrinters.plist”; should be -rw-rw-rw- ; they are -rw-r--r-- .Repaired “Library/Printers/InstalledPrinters.plist”ACL found but not expected on “private/etc/apache2/extra/httpd-ssl.conf”Repaired “private/etc/apache2/extra/httpd-ssl.conf”ACL found but not expected on “Library/Application Support/Apple/Remote Desktop”Repaired “Library/Application Support/Apple/Remote Desktop”ACL found but not expected on “Library/Application Support/Apple/Remote Desktop/Notify”Repaired “Library/Application Support/Apple/Remote Desktop/Notify”ACL found but not expected on “Library/Preferences/Xsan”Repaired “Library/Preferences/Xsan”ACL found but not expected on “Library/Printers/Canon”Repaired “Library/Printers/Canon”ACL found but not expected on “Library/Printers/Canon/IJScanner”Repaired “Library/Printers/Canon/IJScanner”ACL found but not expected on “Library/Printers/Canon/IJScanner/Frameworks”Repaired “Library/Printers/Canon/IJScanner/Frameworks”ACL found but not expected on “Library/Printers/Canon/IJScanner/Plugins”Repaired “Library/Printers/Canon/IJScanner/Plugins”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources”Repaired “Library/Printers/Canon/IJScanner/Resources”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/CIJIcons”Repaired “Library/Printers/Canon/IJScanner/Resources/CIJIcons”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScan5600F.icns”Repa ired “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScan5600F.icns”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScan9000F.icns”Repa ired “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScan9000F.icns”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScanLiDE100.icns”Re paired “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScanLiDE100.icns”AC L found but not expected on “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScanLiDE110.icns”Re paired “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScanLiDE110.icns”AC L found but not expected on “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScanLiDE200.icns”Re paired “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScanLiDE200.icns”AC L found but not expected on “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScanLiDE210.icns”Re paired “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScanLiDE210.icns”AC L found but not expected on “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScanLiDE700F.icns”R epaired “Library/Printers/Canon/IJScanner/Resources/CIJIcons/CIJCanoScanLiDE700F.icns”A CL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters”Repaired “Library/Printers/Canon/IJScanner/Resources/Parameters”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNCICA”Repaired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNCICA”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNCICA/ICACPG_07.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNCICA/ICACPG_07.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNCICA/ICACPG_08.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNCICA/ICACPG_08.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNCICA/ICADAT.DAT”Repair ed “Library/Printers/Canon/IJScanner/Resources/Parameters/CNCICA/ICADAT.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2413”Repaired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2413”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2413/CNQ2413N.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2413/CNQ2413N.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2413/CNQ2413P.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2413/CNQ2413P.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2414”Repaired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2414”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2414/CNQ2414N.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2414/CNQ2414N.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2414/CNQ2414P.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ2414/CNQ2414P.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4807”Repaired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4807”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4807/CNQ4807N.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4807/CNQ4807N.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4807/CNQ4807P.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4807/CNQ4807P.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4808”Repaired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4808”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4808/CNQ4808A.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4808/CNQ4808A.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4808/CNQ4808N.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4808/CNQ4808N.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4808/CNQ4808P.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4808/CNQ4808P.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4808/CNQ4808W.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4808/CNQ4808W.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4809”Repaired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4809”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4809/CNQ4809N.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4809/CNQ4809N.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4809/CNQ4809P.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ4809/CNQ4809P.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9601”Repaired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9601”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9601/CNQ9601N.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9601/CNQ9601N.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9601/CNQ9601P.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9601/CNQ9601P.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602”Repaired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602/CNQ1908D.TBL”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602/CNQ1908D.TBL”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602/CNQ9602A.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602/CNQ9602A.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602/CNQ9602N.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602/CNQ9602N.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602/CNQ9602P.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602/CNQ9602P.DAT”ACL found but not expected on “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602/CNQ9602W.DAT”Rep aired “Library/Printers/Canon/IJScanner/Resources/Parameters/CNQ9602/CNQ9602W.DAT”ACL found but not expected on “Library/Printers/PPDs”Repaired “Library/Printers/PPDs”ACL found but not expected on “Library/Printers/PPDs/Contents”Repaired “Library/Printers/PPDs/Contents”ACL found but not expected on “Library/Printers/PPDs/Contents/Resources”Repaired “Library/Printers/PPDs/Contents/Resources”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component”Repaired “Library/QuickTime/AppleIntermediateCodec.component”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Info.plist”Repaire d “Library/QuickTime/AppleIntermediateCodec.component/Contents/Info.plist”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/PkgInfo”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/PkgInfo”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/AppleInt ermediateCodec.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/AppleInt ermediateCodec.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Dutch.lp roj”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Dutch.lp roj”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Dutch.lp roj/Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Dutch.lp roj/Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/English. lproj”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/English. lproj”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/English. lproj/Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/English. lproj/Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/French.l proj”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/French.l proj”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/French.l proj/Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/French.l proj/Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/German.l proj”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/German.l proj”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/German.l proj/Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/German.l proj/Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Italian. lproj”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Italian. lproj”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Italian. lproj/Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Italian. lproj/Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Japanese .lproj”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Japanese .lproj”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Japanese .lproj/Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Japanese .lproj/Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Spanish. lproj”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Spanish. lproj”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Spanish. lproj/Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/Spanish. lproj/Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ar.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ar.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ar.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ar.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ca.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ca.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ca.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ca.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/cs.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/cs.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/cs.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/cs.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/da.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/da.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/da.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/da.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/el.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/el.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/el.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/el.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/fi.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/fi.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/fi.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/fi.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/he.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/he.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/he.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/he.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/hr.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/hr.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/hr.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/hr.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/hu.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/hu.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/hu.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/hu.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/id.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/id.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/id.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/id.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ko.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ko.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ko.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ko.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ms.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ms.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ms.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ms.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/no.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/no.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/no.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/no.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pl.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pl.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pl.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pl.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pt.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pt.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pt.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pt.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pt_PT.lp roj”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pt_PT.lp roj”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pt_PT.lp roj/Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/pt_PT.lp roj/Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ro.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ro.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ro.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ro.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ru.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ru.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ru.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/ru.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/sk.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/sk.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/sk.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/sk.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/sv.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/sv.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/sv.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/sv.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/th.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/th.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/th.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/th.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/tr.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/tr.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/tr.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/tr.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/uk.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/uk.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/uk.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/uk.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/vi.lproj ”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/vi.lproj ”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/vi.lproj /Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/vi.lproj /Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/zh_CN.lp roj”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/zh_CN.lp roj”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/zh_CN.lp roj/Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/zh_CN.lp roj/Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/zh_TW.lp roj”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/zh_TW.lp roj”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/zh_TW.lp roj/Localized.rsrc”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/Resources/zh_TW.lp roj/Localized.rsrc”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/_CodeSignature”Rep aired “Library/QuickTime/AppleIntermediateCodec.component/Contents/_CodeSignature”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/_CodeSignature/Cod eResources”Repaired “Library/QuickTime/AppleIntermediateCodec.component/Contents/_CodeSignature/Cod eResources”ACL found but not expected on “Library/QuickTime/AppleIntermediateCodec.component/Contents/version.plist”Repa ired “Library/QuickTime/AppleIntermediateCodec.component/Contents/version.plist”

    VicDesotelle wrote:
    repeating error message: "acl found but not expected" during permissions repair
    My iMac is running slow. Processor running all the time. I was told to do permissions repair, so I did that. I get 100's and 100's of "ACL found but not expected" while doing a permissions repair in 'utilities'. It says 1 minute to complete but runs for a half hour. When it finally completes, I can restart the permissions repair again and it starts all over with same endless messages. Even though its says 'repaired', these ACL issues keep coming.
    ACLs are just junk left over from previously installed OSXs. Just ignore. They have no impact.
    Describe your exact issue and computer specs and Linc may run you through a series of tests which may well help you find the problem to your issues. I agree, Permissions repair is rarely required.
    Cheers
    Pete

  • I can only backup the datafiles but not the control files and SPFiles

    Hello, all,
    I am using the Oracle 10g on a linux server which runs redhat 9. I want to backup the whole database to the disk, but not the flash recovery area. It is /rawdata. I will show how I configure the backup part in EM. Is there anything wrong?
    1. the ARCHIVELOG is on
    2. under Administration, in the All Initialization Parameters, I remove the string value of “log_archive_dest_1”. After that, I go to the SPFile and remove the string value of “log_archive_dest_1”
    3. configure backup settings and policies. The Disk Backup Location field is set to /rawdata. Select Image Copy for Disk Backup type. Test Disk backup is successful.
    4. go to Policy page. Select “Automatically backup the control file and server parameter file (SPFile) with every backup and database structural change.) input /rawdata into the filed: Autobackup Disk Location
    Select “Optimize the whole database backup by skipping unchanged files such as read-only and offline datafiles that have been backed up”
    Select “Retain backups that are necessary for a recovery to any time whin the specified number of days (point-in-time recovery)
    Accept the default of 31days
    5. go to Schedul Backup
    6. select customized from the backup Strategy drop-down menu. Select the Whole Database
    7. in the Options page, select “Full backup” in the Backup Type section. Select “Online Backup” in the Backup Mode section. Select “back up all archived logs on disk” in the Advanced section.
    8. in the Setting page, select “Disk”
    9. in the Schedule page, accept the default job name and description. Select Immediately to execute the job immediately.
    10. just submit the job.
    After several minutes, the job is failed while the Prebackup and Postbackup are succeeded. The log says:
    Recovery Manager: Release 10.1.0.2.0 - Production
    Copyright (c) 1995, 2004, Oracle. All rights reserved.
    RMAN>
    connected to target database: ORCL10G (DBID=770753237)
    using target database controlfile instead of recovery catalog
    RMAN>
    Starting backup at 11-OCT-06
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=268 devtype=DISK
    channel ORA_DISK_1: starting datafile copy
    input datafile fno=00001 name=+DATADG/orcl10g/system01.dbf
    output filename=/rawdata/data_D-ORCL10G_I-770753237_TS-SYSTEM_FNO-1_68hvin50 tag=BACKUP_ORCL10G_000_101106111844 recid=108 stamp=603544772
    channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:45
    channel ORA_DISK_1: starting datafile copy
    input datafile fno=00003 name=+DATADG/orcl10g/sysaux01.dbf
    output filename=/rawdata/data_D-ORCL10G_I-770753237_TS-SYSAUX_FNO-3_69hvin6d tag=BACKUP_ORCL10G_000_101106111844 recid=109 stamp=603544813
    channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:35
    channel ORA_DISK_1: starting datafile copy
    input datafile fno=00005 name=+DATADG/orcl10g/example01.dbf
    output filename=/rawdata/data_D-ORCL10G_I-770753237_TS-EXAMPLE_FNO-5_6ahvin7g tag=BACKUP_ORCL10G_000_101106111844 recid=110 stamp=603544829
    channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:15
    channel ORA_DISK_1: starting datafile copy
    input datafile fno=00002 name=+DATADG/orcl10g/undotbs01.dbf
    output filename=/rawdata/data_D-ORCL10G_I-770753237_TS-UNDOTBS1_FNO-2_6bhvin7v tag=BACKUP_ORCL10G_000_101106111844 recid=111 stamp=603544835
    channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:08
    channel ORA_DISK_1: starting datafile copy
    input datafile fno=00004 name=+DATADG/orcl10g/users01.dbf
    output filename=/rawdata/data_D-ORCL10G_I-770753237_TS-USERS_FNO-4_6chvin87 tag=BACKUP_ORCL10G_000_101106111844 recid=112 stamp=603544841
    channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
    Finished backup at 11-OCT-06
    Starting Control File and SPFILE Autobackup at 11-OCT-06
    piece handle=/rawdata/c-770753237-20061011-05 comment=NONE
    Finished Control File and SPFILE Autobackup at 11-OCT-06
    RMAN>
    Starting backup at 11-OCT-06
    current log archived
    using channel ORA_DISK_1
    archived log /rawdata/arch_D-ORCL10G_id-770753237_S-1062_T-1_A-586368151_cqhvf270 not found or out of sync with catalog
    trying alternate file for archivelog thread 1, sequence 1062
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup command at 10/11/2006 11:20:54
    RMAN-06059: expected archived log not found, lost of archived log compromises recoverability
    ORA-19625: error identifying file /rawdata/arch_D-ORCL10G_id-770753237_S-1062_T-1_A-586368151_puhkv41f
    ORA-27037: unable to obtain file status
    Linux Error: 2: No such file or directory
    Additional information: 3
    RMAN>
    Recovery Manager complete.
    It seems the system tries to find a file “arch_D-ORCL10G_id-770753237_S-1062_T-1_A-586368151_cqhvf270” in /rawdata. I just can not understand.
    What should I do? Any advice is highly appreciated!
    Qian

    the string value in the field of 'log_archive_dest_1" under "All Initialization parameters" is "LOCATION=+DATADG/orcl10g/". The same value was in the field under SPFile.
    I reset these values and tried to backup the whole database. The same error appeared. The log says:
    Recovery Manager: Release 10.1.0.2.0 - Production
    Copyright (c) 1995, 2004, Oracle. All rights reserved.
    RMAN>
    connected to target database: ORCL10G (DBID=770753237)
    using target database controlfile instead of recovery catalog
    RMAN>
    Starting backup at 11-OCT-06
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=245 devtype=DISK
    channel ORA_DISK_1: starting datafile copy
    input datafile fno=00001 name=+DATADG/orcl10g/system01.dbf
    output filename=/rawdata/data_D-ORCL10G_I-770753237_TS-SYSTEM_FNO-1_6ghvj9rd tag=BACKUP_ORCL10G_000_101106043753 recid=114 stamp=603563922
    channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:45
    channel ORA_DISK_1: starting datafile copy
    input datafile fno=00003 name=+DATADG/orcl10g/sysaux01.dbf
    output filename=/rawdata/data_D-ORCL10G_I-770753237_TS-SYSAUX_FNO-3_6hhvj9sq tag=BACKUP_ORCL10G_000_101106043753 recid=115 stamp=603563963
    channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:35
    channel ORA_DISK_1: starting datafile copy
    input datafile fno=00005 name=+DATADG/orcl10g/example01.dbf
    output filename=/rawdata/data_D-ORCL10G_I-770753237_TS-EXAMPLE_FNO-5_6ihvj9tu tag=BACKUP_ORCL10G_000_101106043753 recid=116 stamp=603563977
    channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:15
    channel ORA_DISK_1: starting datafile copy
    input datafile fno=00002 name=+DATADG/orcl10g/undotbs01.dbf
    output filename=/rawdata/data_D-ORCL10G_I-770753237_TS-UNDOTBS1_FNO-2_6jhvj9ud tag=BACKUP_ORCL10G_000_101106043753 recid=117 stamp=603563984
    channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
    channel ORA_DISK_1: starting datafile copy
    input datafile fno=00004 name=+DATADG/orcl10g/users01.dbf
    output filename=/rawdata/data_D-ORCL10G_I-770753237_TS-USERS_FNO-4_6khvj9uk tag=BACKUP_ORCL10G_000_101106043753 recid=118 stamp=603563990
    channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
    Finished backup at 11-OCT-06
    Starting Control File and SPFILE Autobackup at 11-OCT-06
    piece handle=/rawdata/c-770753237-20061011-07 comment=NONE
    Finished Control File and SPFILE Autobackup at 11-OCT-06
    RMAN>
    Starting backup at 11-OCT-06
    current log archived
    using channel ORA_DISK_1
    archived log /rawdata/arch_D-ORCL10G_id-770753237_S-1062_T-1_A-586368151_cqhvf270 not found or out of sync with catalog
    trying alternate file for archivelog thread 1, sequence 1062
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup command at 10/11/2006 16:40:05
    RMAN-06059: expected archived log not found, lost of archived log compromises recoverability
    ORA-19625: error identifying file /rawdata/arch_D-ORCL10G_id-770753237_S-1062_T-1_A-586368151_puhkv41f
    ORA-27037: unable to obtain file status
    Linux Error: 2: No such file or directory
    Additional information: 3
    RMAN>
    Recovery Manager complete.
    Why the system keeps trying to find files under /rawdata? It is the destination, not the source.
    Any help is appreciated!
    Qian
    Message was edited by:
    QianChen

  • Video plays in iTunes but not Apple TV.

    I'm having trouble with playing movies on Apple TV. I had a video that I converted to mpeg4 format. 640x384, 1138kbps total bitrate, 23 frames/sec. I can play it in iTunes and in quicktime but not through Apple TV. It just perpetually loads...
    I can play any of my music from the same home shared computer on my Apple TV with no noticeably loading time. The total file size of the movie is 785MB.
    Does anyone know why this can't play on Apple TV and if there's something else I need to be doing?

    Google and download Handbrake, and convert the video for AppleTV format.  Not everything that plays in itunes or QT plays on AppleTV.
    There are many variants of MPEG4 and parameters that can make AppleTV fail to play it.  Best to convert to the h264 variant which Handbrake will do by default using the AppleTV preset (don't use preset 2 for a silver AppleTV 1).
    Vieo specs for AppleTV are listed here:
    http://www.apple.com/appletv/specs.html

  • "No connectivity with the server" error for one document but not the other, in the same document library

    We have a number of users all of a sudden getting "No connectivity with the server.  The file 'xxx' can't be opened because the server couldn't be contacted." errors trying to open MS Office docs (Word, Excel, etc.) in SharePoint with IE,
    just by clicking the link and selecting the "Read Only" option.  If they select the "Check Out and Edit" option, they can open the document no problem.  One of my customers gets the error on one document but not the other, in
    the same document library!  The older document (a weekly report) was copied and renamed as per standard procedure.  She can read the older document, but not the new one.
    It is definitely a profile issue, as other people have logged onto the machines of the users with problems and do not get the error.  We have also renamed people's c:\user profile folders and the corresponding Profilelist registry entry and the newly
    created profile does not experience the error for these people.  Renaming the profile back restores all their personal settings but the error reappears.  When we copied the old profile's folder structure into the new profile, many of the user settings
    were restored (but not all, like Dreamweaver settings) but the error did not appear.  We think that the system folders files (like AppData) weren't totally copied over so we're going to run another test using xcopy.  We are rebooting between
    logons to make sure all files are unlocked.
    The laptops and computers are mainly 32bit, Win7 Enterprise running IE9 and Office 2010 Professional Plus, but there's a few 64bit machines as well. The SharePoint farm has 1 WFE, 1 App Server running search and CA, and a shared database server running SQL
    2005 SP4.  SharePoint is 64bit MOSS 2007 with the latest CU.
    We've checked the logs on the client as well as on the server and there aren't any helpful entries.  We've also run Process Monitor, also with no helpful entries.  We're planning to run something like Fiddler next.
    It's not everyone, because there are many people are accessing the SharePoint system and the same files.  It is also not a permission thing, as we've tested by giving the users elevated permissions with no changes.  One person experiencing
    the errors is a Site Collection Admin.  That same person ran a test where I coped a simple Excel file into a Document Library which contained a problem file.  They were able to open it Read Only no problems that day, but the next day, the same
    file gave them an error.   In their case, they usually get a "xxx is not checked out" error and only occasionally get the "No connectivity with the server" error.
    We've tried lots of things including:
    Deleting IE cache
    Deleting SharePoint Drafts and webcache folder contents
    Running IE without add-ons
    Upgrading and Downgrading IE
    Uninstalling and re-installing IE
    Reinstalling our SSL certs
    Repairing Office
    Removing and then adding back in the Microsoft Office "Microsoft SharePoint Foundation Support" Office Tool 
    Deleting all HKLM and HKLU Office registry settings
    Toggling IE Compatibility Settings
    Toggling the IE Automatic Logon option
    Toggling the location of checked out files
    Adding the site in the trusted sites list
    Adding the site to the WebClient\Parameters registry locations
    Making sure the WebClient service is started
    Rebooting the machine (lol :)
    This is becoming a serious issue, not just because of the inconvenience for the users having to check out every document they want to read, but we have some files with macros that open up other documents to run which are now failing.  There aren't
    "check out" workarounds for some of those macros.
    We're planning to open a ticket with Microsoft, but I'm throwing it out here first in case someone has run into this before, or may have some suggestions on what to try next.  Thanks!
    -Richard.
    PS  I think this needs to be in the "General" forum instead?

    It took three days of dedicated troubleshooting, but I have found the cause of the errors, and a couple of fixes.  It helped tremendously that my own machine was throwing the error.  I have scheduled a couple of users to work with me to test the
    various fixes, to see which one works best, so the story isn't over yet.
    I had backed up my c:\users profile folder and HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList registry key so I could restore my profile after I was done.  I made a copy of the profile folder and was using that for awhile,
    but then made another copy where I had deleted a lot of content out of it so that the copies would go faster.  Since a newly created profile did not have errors, I was trying to copy back as much of the profile as possible to make it easier for our users
    to get back to work.  Instead of blowing away their profile and starting from scratch (which we know worked) I wanted to narrow down what was causing the error and just skip that from the restore.  The concept was to keep as much as the users profile
    in tact (application settings, etc.) not just restoring their desktop and My Documents folders.
    When we first tested a few weeks ago, simply copying the folder contents didn't reproduce the error.  I then tried xcopy, but got the "can't read file" error.  Then I tried robocopy, and ran into the "junction" problem. 
    I went back to xcopy, and found that placing the excludes.txt file in the windows/system32 folder eliminated the error.
    So the process went as follows: 
    Reboot and log into the machine as another user
    Delete the profile and associated registry key
    Reboot and log into the machine as the affected user, creating a new profile, and there is no error
    Reboot and log in as the other user
    xcopy the contents of the skinned-down backed-up profile to the newly created profile
    Reboot and log in as the affected user, and the error occurs
    Repeat the above, but add items in the excludes.txt file to see what, when eliminated, causes the error not to appear in the last step
    I eventually found that skipping the c:\users\<profile folder>\appdata\local\Microsoft\office\14.0 folder allowed the entire profile to be copied over without the error occurring.  That was strange, because we've cleaned out the cache folders
    before which didn't fix the issue. 
    So I went about it the opposite way, and tried to delete the 14.0 folder from the restored profile, and after reboot, the error still occurred.
    What eventually worked was deleting the 14.0 folder and copying over a 14.0 folder from a newly created profile!
    One way to do this was to:
    Reboot and log in as another user
    Rename the c:\users profile folder
    Rename the appropriate [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList] registry key
    Reboot and log in as the affected user, confirm that there is no error
    Reboot and log in as the other user
    Copy the C:\Users\<profile folder>\AppData\Local\microsoft\Office\14.0 folder to the other user's desktop
    Delete new profile folder, and rename the backup to be the production folder
    Delete the C:\Users\<profile folder>\AppData\Local\microsoft\Office\14.0 folder and then paste the 14.0 copy from the desktop
    Reboot and log in as the affected user, confirm that there is no error
    We've tried this on a couple machines and it works.  I had to run Windows Explorer as Administrator to access the other profile's folders.
    We've also successfully copied a 14.0 folder created by one profile on one affected computer over another profile's folder on another computer, eliminating the error, so we're trying that first, as that is fewer steps.
    We may attempt to script this, but the self-help instructions are only 5 lines long:
    Reboot and log into the affected computer with another account
    Go to <link to location of 14.0 folder on network> and copy the 14.0 folder
    Run Windows Explorer as Administrator
    Go to c:\users\<profile folder>\appdata\local\microsoft\office and delete the 14.0 folder, and paste the copied 14.0 folder (trying to overwrite it makes Win7 want to merge the folders)
    Reboot and log into your normal account, and confirm the error is gone
    I'll come back and report after we go into the field with this fix, but after the few tests, I am cautiously optimistic that this is it.

  • Code working in ecc 6.0 but not on 4.6c

    Hi all
    I have written a small sample code in 4.6c and ecc 6.0
    CLASS c1 DEFINITION.
    PUBLIC SECTION.
    METHODS: constructor IMPORTING num TYPE i
                        EXCEPTIONS e,
              a.
    CLASS-METHODS: b.
      ENDCLASS.
    CLASS c1 IMPLEMENTATION.
    METHOD  constructor.
             WRITE :num.
             RAISE e.
             ENDMETHOD.
    METHOD a.
      WRITE:/ ' instance method :a '.
      ENDMETHOD.
      METHOD b.
      WRITE:/ ' static method: b '.
      ENDMETHOD.
             ENDCLASS.
    START-OF-SELECTION.
    PARAMETERS: p_par TYPE i.
    WRITE: / ' Hi '.
    DATA: obj TYPE REF TO c1.
    CREATE OBJECT obj EXPORTING num = p_par
                       EXCEPTIONS e = 5.
    CALL METHOD obj->a.
    this code is running fine in ecc 6.0 but not in 4.6c, in 4.6c it is giving a dump when the statement CALL METHOD obj->a. is executed, saying null reference.
    could any one explain me this behaviour
    Thanks & Regards

    hi
    see this diff
    https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=ecc6.0and+4.7&adv=false&sortby=cm_rnd_rankvalue
    <b>Reward if usefull</b>

  • My table of contents does not use the entry style I select for words in the paragraph that have character styles applied to them in the chapter, so some of the letters are showing up as green, which is fine in the chapter but not in the TOC.

    My table of contents does not use the entry style I select for words in the paragraph that have character styles applied to them in the chapter, so some of the letters, specifically parameters, are showing up green, which is fine in the chapter but not in the TOC. I can manually fix this in the TOC by changing the character style to none after the toc  has been generated, but I don't want to do this.

    What application are you running? Please ask this in the forum of the product you're using.

  • POST data as parameter but not in content?

    I need to send some data from a PDA to a server. This works ok via SOAP but is rather slow, so I want to use a more efficient approach: sending a custom XML directly to a servlet. For this I use the URLConnection and POST the XML directly.
    The data arrives in the servlet, but I am not able to extract it from the request. For some reason it is seen als a parameter but not in the content. I have captured the actual HTTP request being sent (stripped the remaining XML):
    POST /xxx/PdaOrder1Servlet HTTP/1.1
    User-Agent: Java1.3.0_02
    Host: localhost:8181
    Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2
    Connection: keep-alive
    Content-type: application/x-www-form-urlencoded
    Content-length: 541
    +<pdaorder pdaOrderNr="2" ...+
    As said, this arrives at the servlet, because when I print the parameter it has the data the was sent:
    DEBUG PdaOrder1Servlet.doPost(PdaOrder1Servlet.java:74) - -------------------------
    DEBUG PdaOrder1Servlet.doPost(PdaOrder1Servlet.java:75) - Processing request: POST http://localhost:8181/xxx/PdaOrder1Servlet / [<pdaorder  pdaOrderNr=>{"2" ...
    It maps the start of the XML "<pdaorder pdaOrderNr" as the key in the parameter and the remainder of the XML document as the value. But if I try to read the data using the reader:
                   BufferedReader in = new BufferedReader(request.getReader());
                   String decodedString;
                   while ((decodedString = in.readLine()) != null) System.out.println(decodedString);
                   in.close();I get nothing. How do I access the raw content being sent in the HTTP request? Why is the content of a POST interpreted as parameters?

    Sometimes typing a problem out helps: the content type of the request needed to be set to text/xml

  • Mail stopped working on iPad & iPhone, but not G5, after installing iOS 7.

    Here we have a G5, an iPhone-4 and an iPad all linked to the same POP account.  Mail fetching on all three devices had been working fine. 
    Earlier this week (10/23 or 10/24), however, Mail on both the iPhone and the iPad quit working shortly after our having installed iOS 7 on each of them.   This could be a coincidence, but Mail on a G5 running 10.5.8 linked to the same account is still fetching and sending mail just fine.
    Every time we swipe down on the message list (the gesture to fetch new mail) in Mail on the iPad, an error message appears,
    Cannot Get Mail
    The user name or password for
    "Primary Mail Account" is incorrect
    Settings   |    OK
    An analogous gesture on the iPhone produces the same message.
    But Mail on the G5 (running 10.5.8) still works fine to fetch mail from the same POP account.
    Here are some details:
    About two weeks ago, we installed iOS 7 on the iPad and the iPhone.  Mail continued to work after the installation.
    About a week later, last Wednesday, 10/23, the iPad went through a spontaneous installation event, in which the multilingual series of "Hello!" images familiar to those who install Mac operating systems floated across the screen.  Apparently, this event installed iOS 7.0.3.  There followed a short series of initialization dialogs, then everything seemed to work OK.
    Except that Mail wasn't working.  This could be a coincidence, but Mail on this iPad has not worked since last Wednesday.  The last message received is dated last Wednesday.
    We don't know whether the iPhone went through a similar event, but Mail quit working on it, as well.  Mail on this iPhone now gets the same message, above, as on the iPad.  The last message received by the iPhone was last Thursday, 10/24.  The iPhone's iOS is now 7.0.2.  The iPhone says that iOS 7.0.3 is downloaded, but not yet installed. 
    We compared the settings for Mail on the G5, on which Mail is still working, against the settings on the iPad and the iPhone.  They all seem pretty much the same.
    Have you heard of anyone else with this problem, or might you have an idea how to research it?
    --Gil

    That worked!  A couple of notes for anyone with the same problem:
    I thought I'd be clever and create a new account before deleting the old one.  That didn't work, as "Settings" kept insisting that the account had already been created.  I had actually to delete the old account and create a new one from nada.
    I was careful to write down all the settings parameters first.  Even so, it took a few tries to get everything spelled right.  Fortunately, "Settings" checked everything carefully and its messages pointed to the right places.
    I still got the same error message the first time i relaunched Mail.  However, this time I chose the "OK" option.  Since then and thereafter it seems to be working.
    Thanks for your help, lizdance40.
    --Gil

Maybe you are looking for