SOA services become inactive after bouncing SOA

Hello Experts:
Environment:
SOA 11.1.1.6.0
Web Logic 10.3.6
2 Node Cluster
Node1 --> Admin Server, Node Manager, Managed Server 1
Node2 --> Node Manager, manager Server 2
http Proxy Host --> node.domain.com
2 managed servers and 1 VIP pointing to BOTH node1 node 2.
For example:
Managed Server 1--> node1.domain.com
Managed Server 2 --> node2.domain.com
VIP (http proxy) --> node.domain.com
(This points to node1 and node2)
We are able to create service, deploy and use it successfully. The issue is, Once we bounce the SOA server, the services become inactive and the ONLY way to make ti work is to re-deploy!!!
Note:
This issue happens ONLY when we use the VIP
Anyone seen this before??
Any help is appreciated..

@Sri_Sonti
In the Admin Console, I can see both users in the security realm with the following configs:
weblogic:
all atributes with the "value" column blank
groups: Administrators
OracleSystemUser
all atributes with the "value" column blank
groups: OracleSystemGroup
Also I have not found the system-jazn-data.xml file you mentioned. In that folder there's only a readme.txt file.
Best Regards,
luismcs
Enter Cookie as format:
(ex: name=val;) separate with ';'
OKCancel

Similar Messages

  • Any active window becomes inactive after 10+ seconds.

    Any active window becomes inactive after 10+ seconds. This doesn't just affect the Finder. It makes it very difficult to type an email or post to this forum.
    No matter what window I select with the mouse, it will become deselected in a few seconds. I've ruled out the mouse and the keyboard. I don't know of any settings that would cause this. Can anyone offer a solution short of reinstalling the OS. I just finished installing my apps from receiving this computer at work on Friday.

    I just reinstalled the OS, as Archive Install with Preserve User settings checked, without running System Update to 10.5.1. All is well now. Though I haven't run all of the installed apps since reinstalling. Some of my apps are not Universal Binary (ex. QuarkXPress 6, MS Office 2004, Adobe ImageReady CS2), though that shouldn't be a problem. Right now I will be ignoring the 10.5.1 update.

  • GlassPane becomes inactive after clicking JInternalPane's resize border

    Hi all,
    I wrote a program which has a JFrame with a JDesktopPane on it's content pane.
    Then I add two JInternalFrames on the desktop pane, and my own glass pane by JFrame's setGlassPane() method.
    In my glass pane, I intercept all mouse events for the glass pane and If the event comes up NOT on the JDesktopPane, I convert and forward the event to component beneath the glass pane.
    This almost works fine except two problems.
    One is that once I pressed mouse button on the resize border of a JInternalFrame, the glass pane stops forwading event. It seems to become inactive.
    Second, if I move mouse cursor on the JinternalFrame's resize-border, the cursor does not change to resize-cursor, while it changes to resize-cursor If I remove the glass pane.
    Attached is the sample program (in one file) to recreate the problems.
    If glass pane is working, the message "forward <EVENT_TYPE> event to <COMPONENT_CLASS_NAME>" will be shown on stdout.
    I have a serious and very complecated reason to use glass pane. So I must overcome thease problems anyhow.
    I appreciate any idea or help. Thanx in advance.
    package GlassPaneTest;
    import java.awt.Component;
    import java.awt.Dimension;
    import java.awt.Point;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseMotionListener;
    import javax.swing.JComponent;
    import javax.swing.JDesktopPane;
    import javax.swing.JFrame;
    import javax.swing.JInternalFrame;
    import javax.swing.SwingUtilities;
    public class GlassTest extends JFrame {
        public static void main( String[] args ) {
            SwingUtilities.invokeLater( new Runnable() { public void run() {
                new GlassTest();
        public GlassTest() {
            super("");
            JDesktopPane desktop = new JDesktopPane();
            getContentPane().add(desktop);
            JInternalFrame frame1 = createFrame("1",  50, 20);
            JInternalFrame frame2 = createFrame("2", 300, 20);
            desktop.add(frame1);
            desktop.add(frame2);
            Glass glass = new Glass(desktop);
            setGlassPane(glass);
            glass.setVisible(true);
            setDefaultCloseOperation(EXIT_ON_CLOSE);
            setSize(600,300);
            setVisible(true);
        private JInternalFrame createFrame(String title, int x, int y) {
            JInternalFrame f = new JInternalFrame(title,true,true,true,true);
            f.setPreferredSize(new Dimension(200,200));
            f.setLocation(x, y);
            f.pack();
            f.setVisible(true);
            return f;
        public class Glass extends JComponent
                        implements MouseListener, MouseMotionListener {
            JDesktopPane     desktop;
            public Glass(JDesktopPane desktop){
                this.desktop = desktop;
                addMouseListener(this);
                addMouseMotionListener(this);
            public void mouseMoved(MouseEvent e) { redispatch(e); }
            public void mouseDragged(MouseEvent e) { redispatch(e); }
            public void mouseClicked(MouseEvent e) { redispatch(e); }
            public void mouseEntered(MouseEvent e) { redispatch(e); }
            public void mouseExited(MouseEvent e) { redispatch(e); }
            public void mousePressed(MouseEvent e) { redispatch(e); }
            public void mouseReleased(MouseEvent e) { redispatch(e); }
            private void redispatch(MouseEvent e) {
                Point p = e.getPoint();
                int id = e.getID();
                long when = e.getWhen();
                int mod = e.getModifiers();
                int clicks = e.getClickCount();
                boolean trigger = e.isPopupTrigger();
                Component c = SwingUtilities.getDeepestComponentAt(desktop, p.x, p.y);
                Point cp = SwingUtilities.convertPoint(this, p, c);
                if (c==null) return;
                showEvent(c, id);
                MouseEvent me = new MouseEvent(c, id, when, mod, cp.x, cp.y, clicks, trigger);
                c.dispatchEvent(me);
            public void showEvent(Component target, int id) {
                String E="UNKNOWN";
                switch (id) {
                case MouseEvent.MOUSE_CLICKED: E="CLICKED"; break;
                case MouseEvent.MOUSE_DRAGGED: E="DRAGGED"; break;
                case MouseEvent.MOUSE_ENTERED: E="ENTERED"; break;
                case MouseEvent.MOUSE_EXITED: E="EXITED"; break;
                case MouseEvent.MOUSE_MOVED: E="MOVED"; break;
                case MouseEvent.MOUSE_PRESSED: E="PRESSED"; break;
                case MouseEvent.MOUSE_RELEASED: E="RELEASED"; break;
                if (target instanceof JDesktopPane) return;
                System.out.println("forwad "+E+" event to "+target.getClass().getName());
    }

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Finder and application windows, become inactive after a few seconds

    I just finished restoring a G4 from a disk crash, installed new disk drive and a clean OS X 10.3.9. Than I restored the user's home directory and all end user applications. I am not exactly sure when I noticed this behavior, but I performed the basic troubleshooting steps below already :
    • Removed any third party System Control panel
    • AppleJack complete routine
    • Removed Finder plist
    • Switched to another user, with same result
    • Booted up in SAFE MODE, no change either
    • Reviewed system logs and other logs, and found no hint to his problem
    • Monitored Activity Viewer for unknown services running
    About every 15 seconds, the foremost window becomes grayed out/inactive. Clicking on it makes it active again, and if you start typing anything, it will not complete, due to the window going inactive again.
    I have researched the net, but found not similar issue reported.
    So if anyone can shed some light on this, short of re-installing the OS, it would make my long day or night by now.
    Thanks in advance.

    Will I lose my emails I have on there? I have numerous client email files and can't afford to lose any of them. I do have everything backed up but I'm fearful of losing important client info. What if something happened during the back up and it doesn't have my files?

  • OID not resloving service names after bouncing repository

    I installed and configured OID(10g) and repository is oidtest on hpux 11.1.
    1)Before shutting down the repository
    C:\Oracle\ora92\network\ADMIN>tnsping dbtest1
    TNS Ping Utility for 32-bit Windows: Version 9.2.0.1.0 - Production on 30-NOV-20
    07 16:34:05
    Copyright (c) 1997 Oracle Corporation. All rights reserved.
    Used parameter files:
    c:\oracle\ora92\network\admin\sqlnet.ora
    Used LDAP adapter to resolve the alias
    Attempting to contact (DESCRIPTION=(ADDRESS_LIST=(address=(protocol=tcp)(host=xx
    xxxx.xx.xxx.com)(port=1533)))(CONNECT_DATA=(SID=DBTEST1)(GLOBAL_NAME=DBTEST1.xx
    xx.xx.com)))
    OK (60 msec)
    2)after restarting the repository
    C:\Oracle\ora92\network\ADMIN>tnsping dbtest1
    TNS Ping Utility for 32-bit Windows: Version 9.2.0.1.0 - Production on 30-NOV-20
    07 16:37:24
    Copyright (c) 1997 Oracle Corporation. All rights reserved.
    Used parameter files:
    c:\oracle\ora92\network\admin\sqlnet.ora
    TNS-03505: Failed to resolve name
    $ ps -ef|grep pmon
    oracle 29430 1 0 22:35:23 ? 0:00 ora_pmon_oidtest
    oracle 29756 21439 2 22:38:16 pts/2 0:00 grep pmon
    $ opmnctl status
    Processes in Instance: panther_oid_a.panther.am.kwe.com
    ------------------------------------------------+---------
    ias-component | process-type | pid | status
    ------------------------------------------------+---------
    DSA | DSA | N/A | Down
    LogLoader | logloaderd | N/A | Down
    dcm-daemon | dcm-daemon | 26840 | Alive
    HTTP_Server | HTTP_Server | 26704 | Alive
    OID | OID | 26435 | Alive
    Please Any ideas why it can't resolve service name anymore after bouncing the repository?

    Below is the error that i am getting when trying to startup all the services.Please let me know where i am going wrong with this,everything was working fine until i shutdown(sqlplus) the repository to test if it still resolve the name and then i restarted the repository using sqlpus and its failing to resolve the names so i had to stopped everything with below command and when starting it with opmnctl startall it failed with the below error.
    $ opmnctl stopall
    opmnctl: stopping opmn and all managed processes...
    $ opmnctl startall
    opmnctl: starting opmn and all managed processes...
    ================================================================================
    opmn id=panther:6200
    1 of 2 processes started.
    ias-instance id=panther_oid_a.panther.am.kwe.com
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    OID/OID/OID
    Error
    --> Process (pid=0)
    database dependency failed
    oidtest
    failed to start a managed process because a dependency check failed
    Log:
    none
    Thanks

  • AIA 2.0.1 O2B Order synchronization fails after the SOA Upgrade to 10.1.3.4

    Hi,
    I have the AIA 2.0.1 installed on the system with the Order to Bill PIP flow working fine until I upgraded the SOA Suite from 10.1.3.3 to 10.1.3.4.
    After the SOA upgrade the order synchronization from CRM(8.1.1) to BRM(7.3) fails with the error message
    "exception on JaxRpc invoke: HTTP transport error: java.net.MalformedURLException: no protocol: eis/BRM"
    I have checked the Application Server for the availability of BRM Adapter.
    The BRM Adapter is available and properly configured. The JNDI Location for the BRM Adpater is eis/BRM itself.
    Can anyone please help resolve this issue.
    Thanks in Advance

    Don't upgrade your Leopard clients. While running Xsan 1.4.2 on G5 Xserves running 10.4.11 works, it is preferred to keep your server running a newer OS than the clients. Again, Mac OS X 10.5.2 does work with Xsan 1.4.2 and MDCs running 10.4.11 but who knows if an upgrade will break this? Alternatively you could buy a couple seats of Xsan 2 and change your controllers to be newer intel Macs (Mac Pro or Xserve).

  • How I can find standard SOA services for SAP HR?

    How I can find standard SOA services for SAP HR?
    There is a list of services?

    how about tcode SOAMANAGER ?
    Good luck.

  • Is service registry a part of SOA suite?

    Hi,
    It is a bit unclear to me if service registry is a part of SOA Suite.
    According to the SOA suite homepage (http://www.oracle.com/technologies/soa/soa-suite.html) it is not a SOA suite component.
    However it is mentioned in the description of this SOA Suite forum(http://forums.oracle.com/forums/category.jspa?categoryID=13) and also on the homepage of SOA suite installation.
    There are also some contradicting posts in this forum.
    Can anyone clarify this issue?
    TIA

    Hi,
    The UDDI registry is part of the SOA architecture. It is however a separate download and installation in respect to the Oracle SOA Suite package.
    Kind regards,
    H

  • SOA service receives only part of the payload posted

    Hi all,
    Our SOA architecture consists of SOA and OSB. The external system hits the SOA service via OSB with the large payload of size around 12 MB.
    The issue is that the external system posted a payload of 9 MB and received only 5 MB of it.The external system also received success response for the posted payload.But we received incomplete payload.
    I think the issue must be because of the large size of the payload.
    If I am not wrong, there should be some configuration settings that we have missed out.
    Kindly advice.
    Regards,
    Goutam

    What phone do you have, and your husband have?
    How long (in characters) is the message that gets trucated?
    If you add an emoji or photo attachment (which forces the message to be sent via MMS) does it still happen?
     

  • How to consume SOA service in SSRS

    0
    Hi,
    I am working on SSRS.I deployed my application in reporting server 2012 R2.I am having only RDL files and HTML file.Through HTMl with parameters i am calling RDL files.
    Now i need to consume SOA service for the live data.Please help me how to consume SOA service in SSRS.
    Thanks,
    Vijay

    Hi RSingh,
    Thanks for your help and could you please let me know how exactly we need to consume SOA service.
    In my datset Query part i am having the Query like this
    <Query>
    <Method Name=""   Namespace="http://tempuri.org/">
    <Parameters>
    <Parameter Name=""></Parameter>
    </Parameters>
    </Method>
    <SoapAction>
    </SoapAction>
    </Query>
    Is this the way of consuming SOA??.Please let me know on this.
    Thanks,
    vijay

  • Does User Messaging Service come by default in SOA Suite?

    Does User Messaging Service come by default in SOA Suite?

    Yes, UMS is a feature available as part of SOA suite installation.
    You should be able to see the UMS related configuration features in the EM Console.
    Please visit the following link for more information.
    Configuring Oracle User Messaging Service
    Thanks,
    Wajid
    Middleware Integration - YouTube

  • Can a sprite become visible after a certain amount of user inactivity?

    Can a sprite become visible after a certain amount of user inactivity? like a timer triggering an event?

    Hi Kevin,
    You can look at the on timeOut event. (This is not to be confused with timeOut objects)
    There are a number of related properties, which date back from the early days of Director, and which seem to have been omitted from recent versions of the documentation, even though they still function. I give them here with their original names (prior to Director 10):
    the timeOutKeyDown
    the timeOutLapsed
    the timeOutLength
    the timeOutMouse
    the timeOutPlay
    the timeOutScript
    the lastClick
    the lastEvent
    the lastKey
    the lastRoll
    (You can also use the more recent DOM style for these last four properties: _player.lastXXX)
    Here's a very simple script which will make sprite 1 disappear when the movie starts, and reappear if the user does nothing for 5 seconds:
    on startMovie()
      sprite(1).visible = FALSE
      the timeOutLength = 300 -- = 5 seconds * 60 ticks / second
    end startMovie
    on timeOut()
      sprite(1).visible = TRUE
    end timeOut
    If you click the mouse at intervals of less than 5 seconds after starting the movie, then the sprite will remain invisible.
    NOTE: Using sprite(x).visible = FALSE will make the entire sprite channel invisible everywhere in the Score. It's better to use sprite(x).blend = 0, unless the sprite must not react to the mouse while it is invisble, in which case it is better to move it off-stage.
    Is this what you are looking for?
    James

  • Apart from the lock button problem in iphone 5 the display brightness suddenly goes blank and becomes normal after locking and unlocking the iphone. The Apple service centre in India is denying to service the iphone as it was purchase in USA even thoug it

    Apart from the lock button problem in iphone 5 the display brightness suddenly goes blank and becomes normal after locking and unlocking the iphone. The Apple service centre in India is denying to service the iphone as it was purchase in USA even though the iphone is in warranty.

    iPhones do not have an international warranty.  Warranty is valid only for the country of purchase.  This is most likely because different countries require different iPhone models.  Not reasonable to expect all countries to maintain stock for all models.

  • Print Services inactive after server reboot

    Hi,
    after each server (10.4.7) reboot, the Print Services remain inactive. I have to stop/start the Print Services using Server Admin to resume normal operations.
    Is this a bug or a feature?
    Regards,
    Andre
    Mac Mini PPC, 1,25 GHZ   Mac OS X (10.4.7)  

    I have the exact same issue. With the help of another discussion thread, I discovered the following:
    1) After restarting the server, if you use Network Utility to port scan your server, you'll probably find that port 515 ("LPR Printing") is blocked. This was true for me even when I turned the Firewall service off altogether.
    2) After stopping and restarting the Print Service in Server Admin, if you port scan your server again, you'll find that port 515 is now open.
    Strange...
    -- Steve

  • Practical Enterprise Service Bus Use Cases for SOA & writing for Dev2Dev

    Dev2Dev has just published:
    Practical Enterprise Service Bus Use Cases for SOA
    http://dev2dev.bea.com/pub/a/2006/06/service-bus-use-cases.html
    "What is the role of an ESB within SOA? In this article, Kenny Shin provides some practical advice, illustrating how an ESB adds aspects such as transport security, data validation, and messaging patterns to Web services"
    Check it out. If you'd like to write for Dev2Dev, please contact me - I have plenty of ALSB topics to choose from.
    Regards,
    Jon
    Jon Mountjoy - http://dev2dev.bea.com/pub/au/13

    I also think that same way. I do not know what is so apecial about BEA Aqualogic ESB and other market matured ESB products such as TIBCO & SONIC. The samples which BEA has given in their evaluation guide are very simplistic. BEA should do more to provide extensive knowledge/features about their Aqualogic line of products.

Maybe you are looking for