ADR running on Weblogic developer vs SQL

Hello

I try to use options dev REST of the developer SQL (4.1.1.19) with ADR 3.0.2. Everything's fine, all using instances local and remote stand-alone ords.war through the role created by java-jar ords.war user devlistener "SQL Developer". However, when I go to WLS 12 c (I suppose that file the same credentials must be used because it is deployment the same ords.war that is used in the case of standalone), Developer SQL cannot authenticate and displays an authorized 401/no error message. Ideas in this regard will be appreciated. Thank you.

Thanks Ganesh. You are absolutely right.

Tags: Database

Similar Questions

  • How to run the VI developed in labVIEW 2011 in its previous versions

    Hi all

    I am currently using LabVIEW 2011 in my PC at home.

    But, all my school's computers are installed with LabVIEW 2010 and 2010 SP1.

    How to run the VI developed in LabVIEW 2011 in its previous versions?

    Is there any conveter why?

    Concerning

    Prasanth T

    Open the VI in LabVIEW 2011 and use the file menu option, save for the previous Version.

  • WHAT APPLICATIONS CAN BE DEVELOPED FROM SQL SERVER 2012

    I need to know what applications can be developed using SQL SERVER 2012.

    Hi, Chris,.

    This is an overview of SQL Server 2012

    http://www.Microsoft.com/sqlserver/en/us/product-info/overview-capabilities.aspx

    SQL Server 2012 application development

    http://social.technet.Microsoft.com/wiki/contents/articles/6982.SQL-Server-2012-Developer-Training-Kit-BOM-en-us.aspx#Module_5_SQL_Server_2012_Application_Development

    Post your query on TechNet Forum to get help

    http://TechNet.Microsoft.com/en-us/SQLServer/ff898410.aspx

  • Error message when I run delete the query in SQL Server 2008.

    Error message when I run delete the query in SQL Server 2008 SP3.

    Error message:

    MSG 0, level 11, State 0, line 0
    A serious error occurred on the current command.  The results, if any, should be discarded.

    I never got any problem since 5 years.

    Please let me know what is the cause of the problem.

    You can get a response better/faster if repost you your question in the instances of SQL Server dedicated from Microsoft here:

    http://social.technet.microsoft.com/Forums/en-us/category/sqlserver .

    Thank you.   :)

    (I'm sorry, but I can't move this thread for you because the two forums are working on separate platforms)

  • Getting error: cannot run on the development web server configured

    I installed Visual studio 2012 and IIS 7 on Windows 7 Ultimate version. I get the error message 'Cannot run on the development Web server configured' and 'Impossible to run IIS Express' when I tried to run a web application from VS2012. If anyone knows how to fix it please tell me.

    Hello

    It is not a community forum for VS.

    Try the Visual Studio Forums

    Visual Studio development category:
    http://social.msdn.Microsoft.com/forums/en-us/category/VisualStudio

    Don

  • How to run Javascript in a PL/SQL Page process?

    Hi all
    I developed a page that calls Adaptive API of PayPal payment and I had success by posting to PayPal and get a response with a valid "Paykey" using a process of PL/SQL page. I leaned heavily on 'Express Application Integration with PayPal Payments Pro' at http://www.oracle.com/technetwork/developer-tools/apex/integrating-application-express-wit-129259.pdf


    Now I need to call again PayPal (to process page) for my user to approve the payment set up exactly.

    PayPal's API doc says to run the following Javascript code, but I can't understand how to call her leave in a PL/SQL Page process...:


    function javascriptLaunch()
    {
    flow_Javascript = new PAYPAL.apps.DGFlow ({expType: "light"});
    flow_Javascript.startFlow ("< paykey returned earlier > https://www.sandbox.paypal.com/webapps/adaptivepayment/flow/pay?paykey=");
    }
    javascriptLaunch(); -For auto-run function


    Note: The 'src' in the header is:
    < head >
    < script src = "https://www.paypalobjects.com/js/external/dg.js" type = "text/javascript" > < / script >
    < / head >


    So if I take the URL in the startFlow (and provide a paykey valid) and put it in my browser the page URL approval as expected, but I need to have the "pop up" approval in a lightbox of a PL/SQL Page process.

    I think that it is something simple, but I need your help.

    Thank you
    Russ

    Below, I've included the entire contents of a local file, I created to prove the javascriptLaunch works and isn't the problem (of course PayPal gives an error in the light table, because he can't find a 'junk' paykey):

    < html >
    < head >
    < script src = "https://www.paypalobjects.com/js/external/dg.js" type = "text/javascript" > < / script >
    < / head >

    < body >

    < script type = "text/javascript" >
    function javascriptLaunch()
    {
    flow_Javascript = new PAYPAL.apps.DGFlow ({expType: "light"});
    flow_Javascript.startFlow ("https://www.sandbox.paypal.com/webapps/adaptivepayment/flow/pay?paykey=junk");
    }
    javascriptLaunch();

    < /script >



    < / html >

    Why should it be run from pl/sql process?

    What is the process? What is a button on the page?
    Could this button call a dynamic action that fires to javascript, and then a few plsql, then call your required javascript API?

    Scott

  • How to test the stored procedure in SQL Developer or SQL Plus

    Hello

    It's small, but I am confused. Can someone give me the EXACT command to run to test my stored procedure described below. Please don't refer me to the documentation or offer some sort of pseudocode. I've been through the documentation - and through it again - and I just don't get it. I know that the procedure works in general because I'm calling ColdFusion, but I want to test developer SQL or SQL more before I call my ColdFusion page - it only makes sense. I'm probably not initialize variables right or something - not sure.

    You will see that it is a line right insert in the firstname and lastname data base and there are 2 IN OUT values as well. Please use a fake name for the firstname and lastname values to demonstrate. I appreciate it!

    create or replace
    procedure sp_insertDirector_A)
    vFirstname IN Directors.Firstname%TYPE,
    vLastname IN Directors.Lastname%TYPE,
    vInsertStatus in on NUMBER,
    vNewDirectorID IN OUT NUMBER
    )
    IS
    row_count NUMBER;
    BEGIN
    SELECT Count (*) FROM directors WHERE Lastname vLastname = row_count;
    IF row_count > 0 THEN
    vInsertStatus: = - 1;
    RETURN;
    END IF;

    INSERT INTO administration)
    FirstName, Lastname)
    VALUES)
    vFirstname, vLastname
    );

    SELECT Directors_Seq.CURRVAL INTO vNewDirectorID FROM DUAL;
    vInsertStatus: = 1;
    END;

    If someone can tell me exactly how to test, I'd appreciate it. I asked on another site and got many responses that I tried and did not work due to various errors. Once I get a working example, I'm sure I can get the idea and continue on. I mainly use the SQL Developer.

    Thank you, mallethead

    p.s. I think that my if - THEN followed by the instruction INSERT is fixed - it is woring. Seems a little odd to me however.
    declare
       l_instatus  number;
       l_newdirid  number;
    begin
       sp_insertDirector_A('bob','smith',l_instatus,l_newdirid);
       dbms_output.put_line(l_instatus);
       dbms_output.put_line(l_newdirid);
    end;
    /
    
  • Cannot see the developer plus sql or sql table

    I created a folder in the application designer. Then I built the table. I can close the file and then find it in the application designer. But if I go to sql plus and sql developer, I do not see it. Am I missing a step?

    You can probably see all the tables of the sysadm because someone else give you good grant for objects of this existing on sysadm.
    For the purpose of new or modified (drop + create) you should:
    1. log in as sysadm and run

    grant select on new_table_name to your_own_user;
    

    2. connect with your own user and run

    create synonym new_table_name for sysadm.new_table_name;
    

    Then you will be able to query this table without using schema name alias.
    Some admin also have a ddl trigger to make it automatically.
    You can also work with a role and a public synonym if more than one user needs access to the objects of sysadm.

    Nicolas.

  • No advantage to run a vi developed by LabVIEW 32-bit on windows 64-bit with 64-bit LabVIEW?

    The vi is developed with LabVIEW 32-bit on a 32-bit computer, windows 7.

    It is going to be any advantage to run this vi on a 64-bit on a 64 - bit windows machine LabVIEW 7?

    THX.

    Only if you are running out of ram and if you use one of the kits of tools that has a 64-bit version that can make use of the extra RAM.

  • VISA writing differs between TS and LV Run - Time Engine development agencies

    Hi all

    I made a request on LabVIEW to test the BERs (Bit error rate), and I used the Write VISA between two COM ports to Exchange data.

    Everything works great using just of LabVIEW.

    Later, I used TestStand to call my application (VI). Adapters of LabVIEW TestStand have been set by default on the development system , and everything works OK!

    Finally, I had to disable the development system and to define the types of adapters LabVIEW of TestStand for LabVIEW Run-Time Engine and I noticed that the speed of the exchange of data between two COM ports significantly decreased.

    The only difference was the speed... because all data (changed slowly in this case) happened correctly on the other COM port too.

    The symptom was the same that decrease baud rate... but baud rate and all other configurations remained the same. The only difference was the change between the development system for the runtime to notice this reduced speed between the data exchanged using VISA Write.

    All the solutions for this?

    Thanks in advance

    João

    Hi all!

    I'm sorry, I forgot to reply to this thread...

    Solution was change the way VISA WRITE of "asynchronous" to "synchronous" to book a thread just to WRITE visa.

    The problem here was something like this (?): TestStand used all available threads and when we wanted to WRITE of VISA, the thread has been busy and VISA would wait until the wire emerges. After changing to syncrhonous, there was a thread dedicated to this process (?).

    Now, everything works the same using LabVIEW Run-Time Engine or system deployment.

    Thanks for the help Chris and Norbert :-)

    João

  • Implementation of development / test SQL Sever DB

    Hello

    I want to copy my production sql server database on another computer.

    In this way I would be in a separate environment of production total and I can run test restorations and maybe even set up a cloning every night.

    What I read online her seems simple enough to copy a database to another machine, backup the DB production and restore the .bak to the new computer.

    I have problems with putting in place the new database on the test computer.

    When I run SQL Server 2008 Management Studio it asks to connect to a server.

    Because I don't want to use my production server, I need to create a new one, but how?

    I can't find anywhere online where it tells you how to make a new server, an article said to put a "." in the name of the server, but that has not worked.

    Each article I find on this subject begins this process from the inside of the file structure of the DB server, which means their already connected to a server.

    Then they just say right click on databases - new... then make a right click on new database - restore... Yes YEA I get it.

    I can understand how to restore my .bak files, but how to a new 'server' to do in?

    Any help would be appreciated.

    Thank you

    Hi Tim,.

    The question you posted would be better suited in the Msdn Forums. I suggest you to ask your question in the Msdn Forums for assistance.

    http://social.msdn.Microsoft.com/forums/en-us/home?category=SQLServer&filter=AllTypes&sort=lastpostdesc

    I hope it helps. If you have any questions about Windows in the future, please let us know. We will be happy to help you.

    Thank you

    Kulu Sharma.

  • Why can't I just run the code developed in Lookout Lookout 6.5 6.2?

    Our client has developed the code in point 6.2 Lookout. Now that they have purchased Lookout Run Time 6.5 and they are unable to run their code. Is there a limitation that could cause this kind of behavior?

    Thank you...

    They should be able to run the .lks file.

    The .l4p file is not compatible.

    What is the error, they got?

  • run a group of files sql in the background in order

    Hey,.

    I made a simple script tries to run a group of files sequentially, sql

    It looks like


    $cat run_background.sh

    nohup sqlplus < user name > / < password > @ < db_name > @1.sql &
    nohup sqlplus < user name > / < password > @ < db_name > @2.sql &
    nohup sqlplus < user name > / < password > @ < db_name > @3.sql &

    what I worry is: I don't want 1.sql, 2 sql and sql 3. run in parallel on data base.

    so is this okay script to run as I want?

    Thank you very much.

    ground. Beach wrote:

    2949037 wrote:

    Hey,.

    I made a simple script tries to run a group of files sequentially, sql

    It looks like

    $cat run_background.sh

    nohup sqlplus /@ @1.sql &
    nohup sqlplus /@ @2.sql &
    nohup sqlplus /@ @3.sql &

    what I worry is: I don't want 1.sql, 2 sql and sql 3. run in parallel on data base.

    so is this okay script to run as I want?

    Thank you very much.

    make the file all.sql

    that contains the following lines

    @1.sql

    @2.sql

    @3.sql

    output

    nohup sqlplus /@ @all.sql &

    You don't want the password of the user ID on the command line for safety reasons ;-)

  • Error when run embedded weblogic

    Hello

    I have JDeveloper 12 c, when I run application this error pops up

    oracle.security.opss.tools.lifecycle.LifecycleException: JPS-01047: cannot persist the wallet. Reason for java.io.IOException: ICP-02010: invalid MAC for the portfolio. Portfolio audit has no...

    Try to rename the file cwallet.sso (for example rename cwallet.sso_bkp) you can find it in (\config\fmwconfig)

    because of use you embedded Weblogic, you will find the path of the field like this:

    C:\Users\\AppData\Roaming\JDeveloper\system12.1.3.0.41.140521.1008\DefaultDomain\config\fmwconfig

    After you rename the file as run Weblogic once again the new cwallet.sso file should automatically created

    refer to this link:

    The main idea of the blog is to share solutions to the problems that I had before: Weblogic Admin Server issues

  • How do you set up ADR in a Weblogic Cluster? On the second server, get "this facility has not yet been configured '...

    We currently have ADR installed 2.0.9 on WLS 10.3.6 running on Windows 2008R2 behind a F5 load balancer. When load balancing sends connections to the server, we have configured everything first, everything works fine. When load balancing sends connections to the server to scale, we get the ADR page with "this facility has not yet been configured. The defaults.xml and related directories were created automatically on the second server. We tried to change the debug.debugger and debug.printDebugToScreen entries in the second server defaults.xml, but nothing happened. What do we lack? How set us the second server?

    The problem has been resolved. After looking at the directories and defaults.xml WLS created on the server to scale out, we thought that the configuration files were not created/copied from the original server. We ran the configuration of 'java-jar ords.war setup' on the second server, restarted the application of WLS and everything started working as expected.

Maybe you are looking for

  • Having a lot of problems with iMovie 10.1.2 recently

    I did the OS update recently and also up-to-date iMovie to the latest version so I was home. It was fine for about 2 weeks but then suddenly decided to stop allowing me to create a new project. Fortunately I have previous projects, that I can use for

  • Need a stronger battery for satellite L35-S2151

    Hi, I just buy a satellite L35-S2151 (SN: 96074254W), this is my first Toshiba laptop. Everything is great, except for the battery, it will last a little short. So I need to add another battery, my question is what is model number of batteries can be

  • Google Chrome Pixelated problem

    I recently bought the v7 - 581 (touchscreen) Acer i7 series. out with the windows 8 OS. I downloaded the Google Chrome browser and discovered that the browser text and the entire screen of chrome are pixelated. I mean not clear. It only happened in M

  • How can I go back and edit a video to change the music

    Hello, I'm using Windows Live movie Marker and I made a video, so I save it but I was not to keep the work I just keep the video on media player, unfortunately I have to change the song, I chose but I don't know how to get back to the work a modifica

  • error C00D1178

    This happens when I try to sync with my phone, how to fix?