Remote XML causes Exception Permission denied to call method XMLHttpRequest.open

Im using google page creator to host my domain, they don't
allow javascript or xml files (the correct mime type/content type
isnt presented so the browser just downloads the file). They do
however support html. I have uploaded the main html page to their
and the javascript files and xml files to my isp that allow .js
& .xml. However, when I call it I get a nice exception.
Exception caught while loading
http://www.logics.eclipse.co.uk/portfolio.xml:
Permission denied to call method XMLHttpRequest.open.
Any ideas how to get this working - full source to test is at
http://www.logics.co.uk/test.html
Cheers
Chris
Full source:
<script type="text/javascript" src="
http://www.logics.eclipse.co.uk/xpath.js"></script>
<script type="text/javascript" src="
http://www.logics.eclipse.co.uk/SpryData.js"></script>
<script type="text/javascript">
var dsCategories = new Spry.Data.XMLDataSet("
http://www.logics.eclipse.co.uk/portfolio.xml",
"portfolios/portfolio/site", { distinctOnLoad: true, sortOnLoad:
"site" });
var dsPortfolio = new Spry.Data.XMLDataSet("
http://www.logics.eclipse.co.uk/portfolio.xml",
"portfolios/portfolio");
</script>
<div spry:region="dsCategories dsPortfolio"
class="SpryHiddenRegion">
<div spry:repeat="dsCategories">
<div>{dsCategories::site}</div>
<div spry:repeat="dsPortfolio"
spry:test="'{dsCategories::site}' == '{dsPortfolio::site}'"
spry:setrow="dsPortfolio"><a href="{dsPortfolio::screenshot}"
target="_blank"><img src="{dsPortfolio::thumbnail}"
style="border: none;" alt=""/></a></div>
</div>
</div>

I'm getting really frustrated by the inability to pull files
from another domain. I downloaded DW and am testing with Spry to
pull property info from a remote site which has dynamic xml files.
It seems incredibly silly to allow http requests to load data if
you can't do it across domains. I just don't see the point. I just
checked your test url fingersuk and I see you stil don't have a
fix.
It seems pointless to me that you need to set up a CF or PHP
script to pull the remote files to your local server as a proxy!
Surely that defeats the purpose of the whole Spry http request
idea. It's creating more work instead of saving it. Maybe I'm
missing something, it's late and I'm tired and frustrated!
Is it possible to use a domain policy XML file or something
with Spry to include an IP in a sites 'trusted realm'?
btw, the link posted by ajpowellatl is dead,
cheers,
Mike

Similar Messages

  • Spry and Permission denied to call method XMLHttpRequest.open

    hi all,
    I'm using Spry to call an RSS feed and display on a webpage.
    I'm running this locally on my computer for testing measures and it
    works fine in IE but i'm getting a message saying "Permission
    denied to call method XMLHttpRequest.open" when using FF.
    I googled around a bit and found that it has to do something
    with FF's cross domain security, but nothing much more than that. I
    was just wondering if anyone would be able to point me to a good
    resource that explains the issue more and how to fix it, keeping it
    in mind that i want to fix it using Dreamweaver's Spry
    options.

    5h4k42u1u wrote:
    > if i'd use the spry tables with an RSS feed, it'll work
    with IE but not with
    > FF, but then when i try it with a local XML file, it'll
    work with FF but not
    > IE? In fact, why does it have trouble at all with the
    local file, there should
    > be no cross domains to worry about, right?
    You're right that there should be no problem with a local
    file, but
    without seeing the XML file and your code, it's impossible to
    say what's
    causing the problem. I think your best bet is to post a more
    detailed
    question in the Spry forum.
    http://www.adobe.com/go/labs_spry_pr1_forum
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Permission Denied when calling a method from VB using WebLogic 8.1.2 JCOM

    Hi,
    We are calling an java/ejb methods from VB using WebLogic JCOM 8.1 SP2. But
    using JCOM, we are getting a error Permission denied when called from VB. We think
    that we should update pathch jintegra 2.0 or 2.1 in WebLogic 8.1.2 the to solve
    this issue, because we faced the same problen "permission denied" when we used
    JINTEGRA(third party software). Once we installed the JINTEGRA 2.1 it solved the
    issue.
    So, can anyone help on regard to this issue of "Permission denied" in WebLogic
    JCOM 8.1 SP2.
    Thanks & Regards
    Raghu

    I too am experiencing the jCOM error: "Run-time error '70': Permission Denied". The problem appears to be related to a Microsoft Security Patch KB835732 (MS04-011 which, as you indicated, has been fixed in J-Integra v2.1 (FYI, jCOM 8.1 is based on J-Integra 1.5.4, see J-Integra/jCOM versions.
    Did you ever get a resolution concerning 8.1 SP2? 8.1 SP3 is available now but I don't see any mention of jCOM updates in the WebLogic 8.1 What's New documention. I can't immediately upgrade (trying to stay on same version as a few other developers I work with) but I am hoping it is resolved in SP3.

  • Help!!getting Connection Exception &permission denied for my local system

    Hi,
    I am getting this connect Exception when i am running my RMI program.It is not comming when i am running all the programs[server,client] in my local system.
    When i put the server program in the server which is linux server and i am calling it from my local system its giving ConnectException permission denied to 127.0.0.1,no more further infoemation.
    These are the programs..
    server :
    import java.net.*;
    import java.rmi.*;
    public class AddServer
    public static void main(String args[])
         try
         AddServerImpl addServerImpl=new AddServerImpl();
         Naming.rebind("AddServer",addServerImpl);
         catch(Exception e)
         System.out.println("Exception :"+e);
    Implement:
    import java.rmi.*;
    import java.rmi.server.*;
    public class AddServerImpl extends UnicastRemoteObject
    implements AddServerIntf
    public AddServerImpl()throws RemoteException
    public double add(double d1,double d2)throws RemoteException
         return d1+d2;
    Interface:
    import java.rmi.*;
    public interface AddServerIntf extends Remote
         double add(double d1,double d2)throws RemoteException;
    Client Program :
    import java.rmi.*;
    import java.rmi.registry.*;
    public class AddClient
         public static void main(String args[])
         try
    //     String addServerURL="rmi://"+args[0]+"/AddServer";
         Registry r=LocateRegistry.getRegistry("rmi://"+args[0]);
    //AddServerIntf addServerIntf=(AddServerIntf)Naming.lookup(addServerURL);
    AddServerIntf addServerIntf=(AddServerIntf)r.lookup("AddServer");
    System.out.println("The firsrt number is"+args[1]);
    double d1 =Double.valueOf(args[1]).doubleValue();
    System.out.println("The second number is:"+args[2]);
    double d2=Double.valueOf(args[2]).doubleValue();
    System.out.println("The sum is:"+addServerIntf.add(d1,d2));
    catch(Exception e){
         System.out.println("Exception:"+e);
    Plese go thru it and tell what modifications that i have to do with it...
    regards,
    j.mouli

    You can specify a policy file and grant the following pemission in it:
    grant {
    permission java.net.SocketPermission "*:1024-65535","accept, connect, listen, resolve";
    Specify this policy file using "-Djava.security.policy=your policy file".
    BTW, don't forget to run rmiregistry before you launch your own RMI application.
    Good luck!
    Justine

  • Permission denied in calling ssh file from job

    hello
    i tried to create program and a job to execute ssh file using sql i am using oracle 10g R2
    as following :
    begin
    DBMS_SCHEDULER.create_program (
       program_name => 'START_SCRIPT_INVOIC',
       program_type => 'EXECUTABLE',
       program_action => 'root/[email protected]:/home/admin/services/fd_listener/INVOICStart.sh',
       number_of_arguments => 0,
       enabled => TRUE,
       comments => 'COMMENTS ABOUT THE SCRIPT ROLE');
    dbms_scheduler.create_job 
      (job_name => 'START_SERVICE_INVOIC', 
       program_name=> 'START_SCRIPT_INVOIC', 
       enabled=>true, 
       auto_drop=>false, 
       comments=>'Job used to run the program START_SCRIPT');
    end;
    then i tried to start to exec the job as follow
    BEGIN
    dbms_scheduler.RUN_JOB('START_SERVICE_INVOIC');
    END;
    and give me this error :
    >[Error] Script lines: 1-4 --------------------------
    ORA-27369: job of type EXECUTABLE failed with exit code: Permission denied
    ORA-06512: at "SYS.DBMS_ISCHED", line 150
    ORA-06512: at "SYS.DBMS_SCHEDULER", line 441
    ORA-06512: at line 2 
    please help me i need to execute  this urgently 

    user11114041 wrote:
    hello
    i tried to create program and a job to execute ssh file using sql i am using oracle 10g R2
    as following :
    begin
    DBMS_SCHEDULER.create_program (
       program_name => 'START_SCRIPT_INVOIC',
       program_type => 'EXECUTABLE',
       program_action => 'root/[email protected]:/home/admin/services/fd_listener/INVOICStart.sh',
       number_of_arguments => 0,
       enabled => TRUE,
       comments => 'COMMENTS ABOUT THE SCRIPT ROLE');
    dbms_scheduler.create_job 
      (job_name => 'START_SERVICE_INVOIC', 
       program_name=> 'START_SCRIPT_INVOIC', 
       enabled=>true, 
       auto_drop=>false, 
       comments=>'Job used to run the program START_SCRIPT');
    end;
    then i tried to start to exec the job as follow
    BEGIN
    dbms_scheduler.RUN_JOB('START_SERVICE_INVOIC');
    END;
    and give me this error :
    >[Error] Script lines: 1-4 --------------------------
    ORA-27369: job of type EXECUTABLE failed with exit code: Permission denied
    ORA-06512: at "SYS.DBMS_ISCHED", line 150
    ORA-06512: at "SYS.DBMS_SCHEDULER", line 441
    ORA-06512: at line 2 
    please help me i need to execute  this urgently
    This is a forum of volunteers.  There is no "urgent" here.

  • "Permission denied" error when trying to open Time Machine sparse backup image

    Hello,
    After a hard drive failiure, I'm trying to access my Time Machine backup from a different computer, but when double-clicking on the sparsebackup file I get the following error:
    The Time Machine backup was done wirelessly, to a hard drive plugged in via USB to an AirPort Extreme router. I've now connected the hard drive (via FireWire) to my backup computer.
    I suppose I could plug the drive back into the router and see if that works, but restoring via WiFi will take FOREVER — the sparsebundle is 750 GB.
    I've tried repairing permissions and rebooting, but that did not solve the problem.
    Any ideas?

    I think you will need to connect to the USB attached to the airport..
    But you can use ethernet not wireless.
    If you are using a Mac without an ethernet port then get a thunderbolt to ethernet or if no thunderbolt, then usb to ethernet adapter.. that is the second best by a long way.
    I have always been able to open the sparsebundle on disks .. So unfortunately the sparsebundle could be corrupt.. you can try to repair it.
    http://pondini.org/TM/A5.html
    Permissions problems.
    http://pondini.org/TM/E10.html

  • Navigate / Ajax / Permission Denied

    Greetings ...
    I am attempting to get an Ajax control working with
    Coldfusion.Navigate (see code below ) . I simply want to enter in
    data in a form, submit the form and have the output of the form
    submission in an Ajax control. I am getting a "Permission denied to
    call method XMLHttpRequest.open". I understand that this happens if
    you try to make an Ajax connection to a site that is not in your
    domain ... but this connection *is* in my domain ... so I don't
    understand what the problem is.
    I have a 3 tiered system - cold fusion is tier 2 - I hope
    that does not matter...
    -thank you for your assistance
    ------------------------------------------------------------------

    are you sure use can use js in form's ACTION attribute?
    use Coldfusion.navigate() function instead in, for example, a
    button's
    onClick event... you can also use
    ColdFusion.Ajax.submitForm() to submit
    the form asynchronously, whithout removing the form from the
    view...
    not sure though if any of this is related to your particular
    error...
    but this might:
    - is your form on a secure page? you need to make all ajax
    calls to urls
    to use full https://.... URIs.
    - are you viewing your form page through your http server or
    just by
    opening it as a file in your browser? you must use http
    server to open
    the url - ajax calls will not work if a page is opened as a
    file.
    - also make sure you are not accessing the page through
    http://127.0.0.1/... while the
    website is configured to use
    http://localhost/... - the 2 url
    will be considered by ajax to be 2
    different namespaces and it will fail.
    in general, though you are probably aware of this, if you use
    CFFORM
    inside an cf layout element (like cfdiv or cfwindow), it will
    submit to
    and show results in that element, while if you use a regular
    FORM, it
    will reload the whole page.
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com/

  • Sometimes: java.lang.SecurityException: Permission denied

    Hello,
    we are using a lot of signed applets in our Web application (used web server: JBoss 5.1).
    For example we use an applet in javascript code and call some of applet's methods. The called java methods are privileged code.
    Since Update to JRE 1.6.0_24 we are getting sometimes:
    Permission denied: null
    java.lang.SecurityException: Permission denied: null
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Ausnahme: java.lang.SecurityException: Permission denied: null
    java.net.MalformedURLException: no protocol: ./Test.jar
         at java.net.URL.<init>(Unknown Source)
         at java.net.URL.<init>(Unknown Source)
         at sun.plugin.util.GrayBoxPainter.setProgressFilter(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.setupGrayBoxPainter(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.showAppletException(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Test.jar is signed. Most of the time Test.jar can be found. The problem seems to appear in case of new JVM (and new java console).
    We arent't operating on the local file system.
    Are there any ideas, known problems?
    Thanks in advance.

    We've encountered the same problem
    exception: Permission denied: null.
    java.lang.SecurityException: Permission denied: null
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Exception: java.lang.SecurityException: Permission denied: null
    But seems to me, that the issue is related to combination of Java6 update 24 and Firefox 3.6.14. We tested on two stations, first FF3.6.14, java6u24, second FF3.6.14, java6u23. On the first station we got exception, but on the second java works fine. After reinstaling java on the first stations to verstion 6u23, everything works fine.

  • I get an error message when I try to revise items I am selling on ebay. eBay says it is my computer. This is the error message as follows lscgid: execve():/home/wwocom/public_html/style.cgi: Permission denied..What can I do

    I get an erro message when I try to revise my items while selling on ebay.
    The error message is as follows: lscgid: execve():/home/wwocom/public_html/style.cgi: Permission denied
    I called ebay they say it is my computer.
    What do I do to clear this message so I can sell on eBay?

    That's a server message : ebay's computers, rather than yours.
    You could try clearing cache & cookies for ebay in your browser : eg. Safari - Preferences - Privacy
    & if you still have problems, restart your modem/router.
    You're sure that the message shows at a genuine ebay site ? : see the recent replies at
    http://community.ebay.com/t5/Trust-Safety-Safe-Harbor/Fake-eBay-Sign-In/td-p/185 55847/page/2

  • Permission denied to HTMLDocument.form

    I have poral 10.1.4 installed on a windows machine. I have added the Login portlet to a page, but when anyone (even orcladmin) attempts to login, we get this error
    Error: uncaught exception: Permission denied to get property HTMLDocument.forms
    And it won't go anywhere.
    Anyone have any ideas?

    Hi, I have the same problem,
    I am opening a popup window and I want to setup a input field in the parent window which is inside in the portlet container.
    When I am doing this action I have this javascript error "Permission denied to HTMLDocument.form ."
    Thank you in advance for your help,

  • XML File in External Table - OS error permission denied.

    Hi.
    10g R2, Red Hat Linux
    I'm using the article (see below, taken from http://www.dbazine.com/olc/olc-articles/scardina1 by Mark Scardina) to create an external table where I'd store my XML file.
    So, I
    1. Created a directory xmlfile_dir
    2. Granted access to needed db user
    3. Created the table
    CREATE TABLE relayxml_xt (doc CLOB)
    ORGANIZATION EXTERNAL
    TYPE ORACLE_LOADER
    DEFAULT DIRECTORY xmlfile_dir
    ACCESS PARAMETERS
    FIELDS (lobfn CHAR TERMINATED BY ',')
    COLUMN TRANSFORMS (doc FROM lobfile (lobfn))
    LOCATION ('xml.dat')
    REJECT LIMIT UNLIMITED;
    4. mv relay.xml /xmlfile_dir/xml.dat
    When I run SELECT * FROM relayxml_xt I get this:
    Error starting at line 1 in command:
    select * from relayxml_xt
    Error report:
    SQL Error: ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04063: unable to open log file RELAYXML_XT_28773.log
    OS error Permission denied
    ORA-06512: at "SYS.ORACLE_LOADER", line 19
    29913. 00000 - "error in executing %s callout"
    *Cause:    The execution of the specified callout caused an error.
    *Action:   Examine the error messages take appropriate action.
    What am I doing wrong?
    Thanks,
    Using External Tables
    Introduced in Oracle9i, Oracle’s external table feature offers a solution to define a table in the database while leaving the data stored outside of the database. Prior to Oracle Database 10g, external tables can be used only as read-only tables. In other words, if you create an external table for XML files, these files can be queries and the table can be joined with other tables. However, no DML operations, such as INSERT, UPDATE, and DELETE, are allowed on the external tables.
    Note: In Oracle Database 10g , by using the ORACLE_DATAPUMP driver instead of the default ORACLE_DRIVER, you can write to external tables. In Oracle Database 10g, you can define VARCHAR2 and CLOB columns in external tables to store XML documents. The following example shows how you can create an external table with a CLOB column to store the XML documents. First, you need to create a DIRECTORY to read the data files:
    CREATE DIRECTORY data_file_dir AS 'D:\xmlbook\Examples\Chapter9\src\xml';
    GRANT READ, WRITE ON DIRECTORY data_file_dir TO demo;
    Then, you can use this DIRECTORY to define an external table:
    CREATE TABLE customer_xt (doc CLOB)
    ORGANIZATION EXTERNAL
    TYPE ORACLE_LOADER
    DEFAULT DIRECTORY data_file_dir
    ACCESS PARAMETERS
    FIELDS (lobfn CHAR TERMINATED BY ',')
    COLUMN TRANSFORMS (doc FROM lobfile (lobfn))
    LOCATION ('xml.dat')
    REJECT LIMIT UNLIMITED;
    The xml.dat file follows:
    customer1.xml
    customer2.xml
    If you describe the table, you can see the following definition:
    SQL> DESC customer_xt;
    Name Null? Type
    DOC CLOB
    Then, you can query the XML document as follows:
    SELECT XMLType(doc).extract('/Customer/EMAIL')
    FROM customer_xt;
    Though the query requires run-time XMLType creation and XPath evaluation, this approach is useful when applications just need a few queries on the XML data and don’t want to upload the XML data into database. In Oracle Database 10g, you cannot create external tables that contain pre-defined XMLType column types.
    Message was edited by:
    vi2167

    Your don't have the proper operating system privileges. Be sure that you (=oracle OS user / the OS Linux user that is starting the database) are allowed have read privs on the path and/or file.
    for example...
    chown -Rf /xxxxxxx/xxxx/etc
    ls -l file.xml
    file.xml    oracle:oinstall    rw-rw-rw

  • Permission Denied Error when calling Matlab script from LabWindows​/CVI

    Hello,
    I am reading in data from a DAQ and am writing it to a .csv file in LabWindows/CVI.  I am then sending this data to Matlab to be filtered.  I would like the filtered data to be accessed by LabWindows/CVI so that I can display it as a strip chart.  I have gotten everything to work except the writing to a file in a Matlab script that is called from LabWindows/CVI.  I am basically using the shipped example in found in the activex demo. (http://zone.ni.com/devzone/cda/epd/p/id/2994). I select the script that I want to run and each time it tries to open a file with write permissions I get a "Permission Denied" error.  This occurs when using fopen() in Matlab.  I have also tried using csvwrite() as well as dlmwrite().  Each one gives me a similar error.  The script currently does not try to do any data processing.  It just opens the file, if it is successful it then prints "hello" and then closes it.  The script works well when it is run in Matlab, just not when it is called in LabWindows/CVI.  Below is the script.  Any thoughts, comments or suggestions are greatly appreciated.  I am also open to using other approaches for sending data between Matlab and LabWindows/CVI.  Thanks in advance!!
    fclose('all');
    [file, errmsg] = fopen('out.txt', 'w');
    if(file<0)
        disp(errmsg)
    else
        fprintf(file, 'hello');
        fclose('all');
    end;
    [file, errmsg] = fopen('out.txt', 'w');
    if(file<0)    
    disp(errmsg)
    else  
     fprintf(file, 'hello');    
    fclose('all');
    end;

    I am using Windows 7.  I am running CVI as an administrator and was able to get rid of the "Permission Denied" error by going into the User Account Controls in windows and changing it to "Never Notify".  However, this did not fix the problem of Matlab not being able to write to a file when the script is run from CVI.  In the Matlab code below, It now gets in to the "else", suggesting that fopen() returns a good file handle.  After getting in to the else statement, it will not actually write to the file, nor does it create it.  However, I can make changes to the plot settings and those appear.  Everything is functional when run from Matlab but when run from CVI, things get screwy with opening the file for writing.  It handles the read well.  It seems like there would have to be some file permission errors but, in the CVI program, I open and write to the file "in.csv".  Any help is greatly appreciated.
    clear;
    fclose('all');
    t = zeros(1000);
    t = csvread('in.csv');
    for i=1:1000
        t(i) = t(i)*4;
    end;
    [file, errmsg] = fopen('out.txt', 'w');
    if(file<0)
        disp(errmsg)
    else
        fprintf(file, 'goodbye');
        for i=1:1000
            %t(i) = t(i)*3;
            fprintf(file, '%f,', t(i));
        end;
        fclose(file);
        plot(t/3, t);
        ylabel('t');
        xlabel('Time (s)');
        title('Is this really working?!?');
    end;
    Thanks,
    Chris

  • Subscription permission denied exception

    HI All,
    I am facing a problem with subscriptions
    I try to create subscription thru code ISubscription manager's  createsubscription ()api.
    But the followinf exception is thrown.The service permission for the user is 'full control' .But still the exception.
    Can anyone pls guide me on this....Its urgent.
    The initial exception that caused the request to fail, was:
       com.sapportals.wcm.repository.service.subscription.SubscriptionException: subscription: permission denied (sub_active)
        at com.sapportals.wcm.repository.service.subscription.wcm.SubscriptionPermission.check(SubscriptionPermission.java:252)
        at com.sapportals.wcm.repository.service.subscription.wcm.SubscriptionManager.createSubscription(SubscriptionManager.java:410)
        at com.sapportals.wcm.repository.service.subscription.wcm.SubscriptionManager.createSubscription(SubscriptionManager.java:471)
        at com.sapportals.wcm.repository.service.subscription.wcm.SubscriptionManager.createSubscription(SubscriptionManager.java:502)
    Many Thanks,
    Ashok

    wrong user .... i have to use an ServiceUser in this case "subscription_service"

  • Mac Windows Remote Desktop Permission Denied

    OS X Yosemite v10.10
    Microsoft Remote Desktop Version 8.0.10 (Build 25189)
    Please respond with a fix.
    [2014-Nov-15 04:49:45] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Nov-15 04:49:45] RDP (0): lo0 af=18 addr= netmask=
    [2014-Nov-15 04:49:45] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Nov-15 04:49:45] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Nov-15 04:49:45] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-15 04:49:45] RDP (0): lo0 af=2 (AF_INET) addr=127.94.0.2 netmask=
    [2014-Nov-15 04:49:45] RDP (0): lo0 af=2 (AF_INET) addr=127.94.0.1 netmask=
    [2014-Nov-15 04:49:45] RDP (0): gif0 af=18 addr= netmask=
    [2014-Nov-15 04:49:45] RDP (0): stf0 af=18 addr= netmask=
    [2014-Nov-15 04:49:45] RDP (0): en0 af=18 addr= netmask=
    [2014-Nov-15 04:49:45] RDP (0): en0 af=30 (AF_INET6) addr=fe80::6203:8ff:fe9d:9c6e%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-15 04:49:45] RDP (0): en0 af=2 (AF_INET) addr=192.168.1.23 netmask=255.255.255.0
    [2014-Nov-15 04:49:45] RDP (0): en1 af=18 addr= netmask=
    [2014-Nov-15 04:49:45] RDP (0): en2 af=18 addr= netmask=
    [2014-Nov-15 04:49:45] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Nov-15 04:49:45] RDP (0): awdl0 af=18 addr= netmask=
    [2014-Nov-15 04:49:45] RDP (0): awdl0 af=30 (AF_INET6) addr=fe80::7c06:30ff:febb:b081%awdl0 netmask=ffff:ffff:ffff:ffff::
    [2014-Nov-15 04:49:45] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Nov-15 04:49:45] RDP (0): vmnet1 af=18 addr= netmask=
    [2014-Nov-15 04:49:45] RDP (0): vmnet1 af=2 (AF_INET) addr=192.168.173.1 netmask=255.255.255.0
    [2014-Nov-15 04:49:45] RDP (0): vmnet8 af=18 addr= netmask=
    [2014-Nov-15 04:49:45] RDP (0): vmnet8 af=2 (AF_INET) addr=172.16.188.1 netmask=255.255.255.0
    [2014-Nov-15 04:49:45] RDP (0): --- END INTERFACE LIST ---
    [2014-Nov-15 04:49:45] RDP (0): correlation id: b4c9a4f5-7082-015d-ca07-b8aa6e330000
    [2014-Nov-15 04:49:45] RDP (0): Resolved '192.168.1.255' to '192.168.1.255' using NameResolveMethod_DNS(1)
    [2014-Nov-15 04:49:45] RDP (0): Exception caught: Exception in file '../../librdpclient/asiosocketendpoint.cpp' at line 589
    User Message : Permission denied
    [2014-Nov-15 04:49:45] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Nov-15 04:49:45] RDP (0): Protocol state changed to: ProtocolDisconnecting(7)
    [2014-Nov-15 04:49:45] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Nov-15 04:49:45] RDP (0): ------ END ACTIVE CONNECTION ------

    Hi,
    Thank you for posting in Windows Server Forum.
    Please check whether having enough permission to access the server\remote system?
    Can he access remote session from other device? Does other users can login well?
    Because the error defines that he don’t have enough permission to perform this task. On Remote System\Server side kindly check whether he has added under “Remote Desktop Users” local group for accessing remote session. In addition please check following
    article.
    Why can’t I connect using Remote Desktop Connection?
    http://windows.microsoft.com/en-in/windows7/why-can-t-i-connect-using-remote-desktop-connection
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    TechNet Community Support

  • BRARCHIVE is run by SIDADM instead of ORASID, causing permission denied

    Hi all,
    I have gotten this error this week, while I don't remember performing any change in the configuration.
    While doing whole database backup from T-Code DB13, backup is error caused by permission error in the target (the target is disk in another directory).
    Checking the target directory with orad11, it have all the authorization needed (read, write, delete). So, chmod 775 is performed in the target dir.
    After successfully performed datafile backup, it is seen that the file was written by d11adm instead of orad11. Which is strange.
    Currently, Redo-Log backup from DB13 cannot be performed because BRARCHIVE have to delete the archive files after the backup. I think it is not a good practice to set all archive files to be owned by d11adm.
    Here is the error message:
    BR0002I BRARCHIVE 7.00 (40)
    BR0006I Start of offline redo log processing: aefofhhp.svd 2011-03-31 16.34.17
    BR0484I BRARCHIVE log file: /oracle/D11/saparch/aefofhhp.svd
    BR0477I Oracle pfile /oracle/D11/102_64/dbs/initD11.ora created from spfile /oracle/D11/102_64/dbs/spfileD11.ora
    BR0101I Parameters
    Name                           Value
    oracle_sid                     D11
    oracle_home                    /oracle/D11/102_64
    oracle_profile                 /oracle/D11/102_64/dbs/initD11.ora
    sapdata_home                   /oracle/D11
    sap_profile                    /oracle/D11/102_64/dbs/initD11.sap
    backup_dev_type                disk
    archive_copy_dir               /sapbackup/arch
    compress                       no
    disk_copy_cmd                  copy
    cpio_disk_flags                -pdcu
    archive_dupl_del               only
    system_info                    d11adm/d11adm srmdev HP-UX B.11.31 U ia64
    oracle_info                    D11 10.2.0.4.0 8192 1508 49655535 srmdev UTF8 UTF8
    sap_info                       701 SAPSR3 0002LK0003D110011I13760381130015Maintenance_ORA
    make_info                      hpia64 OCI_102 Feb 21 2009
    command_line                   brarchive -u / -jid LOG__20110331163416 -c force -p initD11.sap -sd
    BR0280I BRARCHIVE time stamp: 2011-03-31 16.34.18
    BR0008I Offline redo log processing for database instance: D11
    BR0009I BRARCHIVE action ID: aefofhhp
    BR0010I BRARCHIVE function ID: svd
    BR0048I Archive function: save_delete
    BR0011I 107 offline redo log files found for processing, total size 4366.435 MB
    BR0112I Files will not be compressed
    BR0130I Backup device type: disk
    BR0106I Files will be saved on disk in directory: /sapbackup/arch
    BR0134I Unattended mode with 'force' active - no operator confirmation allowed
    BR0202I Saving init_ora
    BR0203I to /sapbackup/arch/D11 ...
    BR0278E Command output of 'LANG=C cd /oracle/D11/102_64/dbs && LANG=C cp initD11.ora spfileD11.ora /sapbackup/arch/D11':
    cp: cannot create /sapbackup/arch/D11/initD11.ora: Permission denied
    cp: cannot create /sapbackup/arch/D11/spfileD11.ora: Permission denied
    BR0280I BRARCHIVE time stamp: 2011-03-31 16.34.18
    BR0279E Return code from 'LANG=C cd /oracle/D11/102_64/dbs && LANG=C cp initD11.ora spfileD11.ora /sapbackup/arch/D11': 1
    BR0222E Copying init_ora to/from /sapbackup/arch/D11 failed due to previous errors
    BR0016I 0 offline redo log files processed, total size 0.000 MB
    BR0007I End of offline redo log processing: aefofhhp.svd 2011-03-31 16.34.18
    BR0280I BRARCHIVE time stamp: 2011-03-31 16.34.18
    BR0005I BRARCHIVE terminated with errors
    We have checked SAPNote 113747, which said that:
    brarchive, brbackup, and brconnect must have sticky bit. And this is already applied in the system.
    That note also said that brarchive can be started by orad11 or d11adm.
    So looks like if this kind of problem happened, we cannot blame d11adm who run the backup.
    Please help, moreover if you can give us understanding on what has happened.
    Thank you very much for any response.

    I did a few more checks. Please confirm that the brarvchive binary is owned by orasid.
    When i run brarchive from DB13, then the process is indeed owned by sidadm
    root# ps -ef|grep brarchive
      sidadm  1835  1834  0 08:31:23 ?         0:01 brarchive -u / -jid LOG__2011...
    The logfile of the brarchive run is owned by orasid with group sapsys (exactly the same as the brarchive binary).
    -rw-r--r--   1 orasid     sapsys        1967 Apr  1 08:31 aefojufd.svd
    Could you please check this on your box? It is still almost sure, that something with the file permissions is incorrect. There could be a few other very exotic reasons, like double entries of dba/sapsys groups in the /etc/group file.
    Cheers Michael

Maybe you are looking for

  • Itunes could not connect to the itunes store...only outside my network

    I can only connect to the itunes store inside my office network. Even if I create a new user, they can't connect to the store either. Also even at work, itunes crashed on average 3 or 4 times before it finally works. Any ideas on resolving this issue

  • Restriction on no. of WBS elements creation

    Hello Experts, Is there anyway can I restrict the no. of WBS elements that can be allowed to get created below a Superior WBS element ? Also, is there a way to restrict the no. of Orders in which a WBS can be assigned to ? Thanks. Bala

  • Broken document - Disco statement of direction

    http://www.oracle.com/technology/products/discoverer/pdf/discoverer-sod.pdf

  • Can a G5 run without problems with this damaged harddisk? (picture inside)

    Ok, so I took my G5 to my dealer cause the fans were revving way too much, and the apple hardware test found an error concerning cpu A. Remember, my G5 worked perfectly fine except for those two things. It was still blazing fast The dealer got back t

  • Camera roll question

    If I have an email with a couple pictures in it and I want to put them in my library each pictures goes into it's own roll. The same thing happens when I download from pictures from my camera or my iphone. I know have over 100 rolls and in each roll