Running two rpd in obiee at same time in same machine.

can OBIEE run two rpd files at the same time?
if can, how to config it?
I need to run these rpds in a single machine so how is it possible.
could u plz sort out the issue.

Yes,you can run two rpd files in single OBI server.But you need to have two different presentation server(machines) to access the web.
Star     =     paint.rpd, DEFAULT;
Star     =     Personal.rpd ;
while configuring the ODBC select the option -CHANGE DEFAULT RPD TO : type the RPD name.
This is simple and i don't see any performance or other issues

Similar Messages

  • Merging two rpds in OBIEE 11g

    Hi,
    To merge two RPDs in OBIEE 11g, do I need to have both RPDs online? What are the pre requecities? Do I need to modify ini file to mention those RPDs.? Please tell me the steps involved.
    Thanks and Regards
    Santosh

    Q1. If I create a merge RPD from two independent sources, then, how does the physical layer is built?
    A1.
    Q2. Does it creates separete schema in physcial layer for tables from first source and another schema for other source?
    A2.
    Q3. If two separate schemas are built then does those schema pull data from there respective sources independently in Answer?
    A3.
    Q4. If it create combined schema, then hw is data fetched in Answer? Is there any link created by default or developer need to create a common link between two schemas?
    Hw will it fetch data from two seperate data sources during runtime?
    A4.
    Please provide some conceptual understanding for above queries.
    As far as I understand with my knowledge in OBIE, separate connection pool is required for each source when you create merged RPD since tables are from two separate DB sources even if being in the single rpd after merge. If my conceptual understanding is wrong then, guys, please help me to understand.
    Thanks
    Santosh

  • Communication between Two WebLogic instances on the same machine

    Hi,
    We're having a problem with communication between two copies of Weblogic on
    the same machine. They are configured with seperate ports (regular and SSL).
    Independantly, they run fine. I can access EJBs running on either of them.
    The problem is that a bean in one of them has code which attempts to access
    an EJB on the other one. The procude fails when trying to obtain the initial
    context. This same code works if compilied independantly of WebLogic on the
    same machine.
    Are there any known issues regards communication between two running
    instances of Weblogic on the same machine?
    Thanks in advance,
    Randy Yarger
    marchFIRST
    [email protected]

    Thanks for the prompt reply.
    There is one IP address (internal address 10.227.1.34) one the machine. WLS1
    is set up at ports 7001 and 5133. WLS2 is setup at ports 7004 and 7005.
    When WLS1 attempts to obtain a context to WLS2 with the URL
    t3://10.227.1.34:7004/ it pauses for a long period of time. Running truss
    on the both WLS processes shows communication occuring between the two
    followed by long periods of silence. Finally WLS2 spits out the error
    ConnectionException[7001,7001,5133,5133,7001,7001] (paraphrased, I can get
    the entire error if it would help).
    After another long pause, WLS1 quits trying with the error 'Server
    10.227.1.34:7004 not found' (again paraphrased).
    Among the things we've tried:
    * Changing the URL from the IP to 127.0.0.1
    * Enabling/disabling SSL on either or both WLSs.
    * Changing the server name in WLS2's copy of weblogic.properties from
    'myserver' to 'myserver2' (previously they were both 'myserver')
    * Upgrading WLS2 to 5.1.0sp5 (Tried upgrading WLS1, but was getting class
    not found errors and quit because that WLS is being used by other people)
    This is a Solaris server. WLS1 is running 5.1.0 and WLS2 is running 5.1.0sp5
    Any suggestions would be appreciated.
    Best,
    Randy Yarger
    marchFIRST
    [email protected]
    "Michael Girdley" <[email protected]> wrote in message
    news:[email protected]...
    >
    >
    There should not be. What is your network configuration? Are they on
    separate IP addresses?
    Thanks,
    Michael
    Michael Girdley
    BEA Systems Inc
    "Randy Jay Yarger" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    We're having a problem with communication between two copies of Weblogicon
    the same machine. They are configured with seperate ports (regular andSSL).
    Independantly, they run fine. I can access EJBs running on either of
    them.
    The problem is that a bean in one of them has code which attempts toaccess
    an EJB on the other one. The procude fails when trying to obtain theinitial
    context. This same code works if compilied independantly of WebLogic onthe
    same machine.
    Are there any known issues regards communication between two running
    instances of Weblogic on the same machine?
    Thanks in advance,
    Randy Yarger
    marchFIRST
    [email protected]

  • Two server sockets on the same machine, one not working.

    Dear forum users.
    I'm currently having a problem with running two server sockets on the same computer.
    It gives no exceptions or anything, just that if i connect with another machine, the last serversocket that started,
    will not accept connections..
    Scenario:
    Computer 1: Main server.
    Computer 1: Game server.
    Computer 2: Client
    Computer 2 connects first to the main server (lets say port 13371)
    Then connects to game server (port 6112).
    Computer 2 failes to connect to the Game server for some reason.
    But if i open a client at Computer 1, connects to main server, and then game server, it
    works fine.
    And if I put computer 2 as a Game server,
    then everything works fine.
    Working scenario:
    Computer 1: Main server.
    Computer 2: Game server
    Computer 2: Client
    Computer 1: Client
    Now, however many that wants to connect to game server, works.
    I have gone through the code 100 times now it feels like. And still dont see why this happends.
    Anyone know if it is "working as intended"? Or just me doing something completely wrong that i cant see myself?
    Sorry for not posting code, its too much code to post.

    Oh, sorry.
    TCPServer:
    protected ServerSocket serverSocket;
    public abstract void processConnection(Socket client);
        public void listen() {
            try {
                report("Listening to clients on port: " + portNumber);
                while (serverSocket != null && acceptConnections) {
                    processConnection(serverSocket.accept());
                    report("Client accepted on serverSocket.");
            } catch (SocketException e) {
                report("TCPServer/listenForClients : SocketException.", e);
            } catch (Exception e) {
                report("TCPServer/listenForClients : Unknown Exception.", e);
            cleanUp();
            report("Stopped listening on port: " + portNumber);
        }MainServer extends the TCPServer:
        public void processConnection(Socket client) {
            try {
                MainServer_Client tmp = new MainServer_Client(client, this);
                synchronized (clients) {
                    clients.add(tmp);
                Thread th = new Thread(tmp);
                th.start();
            } catch (Exception e) {
                report("MainServer/processConnection : Unknown Exception", e);
        }GameServer extends TCPServer
        public void processConnection(Socket client) {
            try {
                client.setTcpNoDelay(true);
                GameServer_ServerClient tmp = new GameServer_ServerClient(client, this);
                synchronized(clients) {
                    clients.add(tmp);
                Thread th = new Thread(tmp);
                th.start();
            } catch(Exception e) {
                report("GameServer_Host/processConnection : Unknown Exception",e);
                e.printStackTrace();
        }Edited by: Lgeee on Apr 30, 2010 2:57 AM

  • How to run 2 weblogic instance in the same machine

    is it possible to run 2 weblogic instance in the same machine ?
    I have created 2 domains ...domain-1 and domain-2 in my hard disk and both of them have startWeblogic.cmd in them..
    but i cant run them simultaneously though individually they run.
    they differ by HTTP port and Debug port but still they dont run simultaneously
    can you please comment ?

    yea...i thought about it .
    but as both of them are same application and they are using the same DB connection pool , JMS queue ....i just dont want to mix all these.
    so i have created two seperate domian . and i run them individually and they work fine.
    However , they are having different ports though .
    But when i run the second one while the first one is running ....the second one does not starts up
    here is the error when i click on startsWeblogic.cmd when the other is already running.
    java version "1.4.2_08"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_08-b03)
    BEA WebLogic JRockit(TM) 1.4.2_08 JVM R24.5.0-61 (build ari-49095-20050826-1856-win-ia32, Native Threads, GC strategy: pa
    Starting WLS with line:
    d:\bea\JROCKI~1\bin\java -jrockit -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=8453,server=y,suspend=n -Djava.
    === Debugging ===
    This window is necessary for debugging code using WebLogic Workshop
    ERROR: Proxy already running...
    weblogic.debugging.comm.TransportException
    at weblogic.debugging.comm.ServerConnectInfo.createTransport()Lweblogic/debugging/comm/CommTransport;(ServerConne
    at weblogic.debugging.engine.ProxyThread.run()V(ProxyThread.java:77)
    at java.lang.Thread.run()V(Unknown Source)
    at java.lang.Thread.startThreadFromVM(Ljava/lang/Thread;)V(Unknown Source)
    Caused by: java.net.BindException: Address in use
    at jrockit.net.SocketNativeIO.bind(ILjava/net/InetAddress;I)I(Unknown Source)
    at jrockit.net.SocketNativeIO.bind(Ljava/io/FileDescriptor;Ljava/net/InetAddress;I)I(Unknown Source)
    at java.net.AbstractSocketImpl.bind(Ljava/net/InetAddress;I)V(Unknown Source)
    at java.net.PlainSocketImpl.bind(Ljava/net/InetAddress;I)V(Unknown Source)
    at java.net.ServerSocket.bind(Ljava/net/SocketAddress;I)V(ServerSocket.java:318)
    at java.net.ServerSocket.<init>(IILjava/net/InetAddress;)V(ServerSocket.java:185)
    at java.net.ServerSocket.<init>(I)V(ServerSocket.java:97)
    at weblogic.debugging.comm.ServerConnectInfo.createTransport()Lweblogic/debugging/comm/CommTransport;(ServerConne
    ... 3 more
    Could not bind to Weblogic server (Error attaching to Weblogic Server.).
    Message was edited by:
    Unknown_Citizen

  • I want to run IIS and Form Server on same machine

    Dear follows
    I have problems , porblems is that i want to run IIS and Form
    Server at same machine but i m facing some problems so please
    inform me right proceduers to run this services at same machnine
    now i m using Windows NT .
    My secone problems is that i want to send emai via oracle
    reports , actuall condition is that i have oracle report and i
    want to add button and behind this boutton i want to add trigger
    to send this report as a emai to client as txt/html format.

    There shouldn't be any problem running both forms server and IIS
    on the same machine. Just make sure the ports that are used are
    different. IIS's default port is 80, so either change this port
    number or change it for the Forms server's web listener.
    You can send reports to email if you use DESTYPE=MAIL.

  • Is it possible to run VLM and lmtools on the same machine

    hi together ... is it possible to run VLM and lmtools on the same machine without any problems?
    the running system will be Windows Server 2008 R2 x64! maybe we will install the license server on the virtual server.

    Hi SvenNittmann,
    in general, it should be possible to run both tools (VLM and lmtools for FlexNet) on the same machine. But I wouldn't recommend you this way, because NI VLM is also build on top of FlexNet and sometimes you will receive ugly problems with the installation of both tools on the same PC. It is possible to use VLM in a virtual machine without any problems or restrictions. NI provides information about the usage of VLM in a virtual machine, like you can see here:
    Volume License Manager on a Virtual Machine - National Instruments
    http://digital.ni.com/public.nsf/allkb/5730FDDC97F9157E8625755F00749CFF?OpenDocument
    I also use VLM in a virtual machine and I could recommend you the same solution.
    Regards, Stephan

  • Can a mac mini be set up to run two separate users at the same time?

    I work for a middle school and we need to purchase 20 computers that will just be used to run internet apps. Though we have all Macs, we don't have a big budget and for this one use only, we are condsidering purchasing inexpensive HP all-in-ones for about $450 each. However, I was wondering if a Mac Mini can be first set up with 2 partitions, install the OS on both partitions, then run two different users, with two separate monitors and keyboards, at the same time? This way, instead of purchasing 20 Windows computers, we could purchase 10 Mac Mini's (and displays) and save money, and still be supporting just one OS throughout the campus.

    If you setup a server, as in the Mac OS X Server Installation, pages 23ff show configurations, you can have multiple users, but they must all have computers.  Some installations can be done with dumb terminals but that is not what you seem to want.  Unix machines do have a multiple simultaneous user capability but you still have to have a computer for each user, again, not what you seem to want to do.  Right now there are two other users logged in on my Sun workstation on the desk behind me...they are logged in because I permit them to do so.
    And last night for an experiment I connected my iMac and MBP by ethernet wire, logged in on the iMac, then logged in on the MBP and from there on the iMac...but I set up the network to permit that and then disabled it again.  You can create security holes doing things like this.
    As dwb points out switching from Apple to PC equipment is a false economy that lures in administrators.  In our county school system we had a superintendent who hired a good friend...who had PC-industry ties.  Decided to remove all Apple equipment from the elementary schools and switch to PCs.  It wasn't long before they ended up going on a 4-year cycle of "refreshing" the equipment, i.e., completely replacing all hardware in every school on a four year cycle.  Since my wife was a Media Specialist, aka librarian, and responsible for technology in her school, every four years she had to develop a complete school map of where each teacher wanted the computers in their classrooms, complicated by where the technicians predetermined the locations of the network wire drops, of course.  then teachers get shuffled over the summer and all the plans are for naught.
    Anyway, there really isn't a solution to your problem except to buy a large number of computers and let each student use one and have them networked to a server, print server, printers, etc.  This is not inexpensive and cutting corners will only cause headaches for you.

  • Running two stepper motors at the same time from one port

    Hello,
    I have to run two motors at the same time - one used to move a linear ball screw and one to turn a grip. I am doing tension and torsion testing on small wires, but tension and torsion have to be done at the same time. I also have to build in the ability for each motor to take multiple steps, ie. have a motor take x number steps at y velocity and then move x number of steps at z velocity. Both motors need to be able to do this. However, I am having problems getting the motors to run at the same time and to take all the steps. The motors are connected to two RMS Technologies R356 controllers. Both of the controllers are then connected to one RS485 to USB converter card, and that card is connected to one of the USB ports in the computer. Currently, I pass an array of commands to two for loops each containing VISA read and writes. I've attached the vi to look at. All of the timing stuff in the code is because a new command cannot be sent to the controller before the motor is done executing the previous command. If commands are sent right after one another, the controller will only execute the first command and then return with an error. 
    Does anyone have a suggestion as to what I am doing wrong?
    Thanks in advance for any help. 
    Solved!
    Go to Solution.
    Attachments:
    Motor Controller (Sub VI 3).vi ‏41 KB

    I'm not too clear on exactly what you are trying to accomplish or some of the details.
    Are there equal number of torsion and tension steps?
    Is there a pairing between a torsion and tension?  For example, you want to tension and torsion simultaneously, but those two together make a complete step?
    Do you want to wait until both the torsion and tension have completed before moving on to the next torsion/tension pair?
    Is there any time delay you want to hold at before moving on to the next step.
    When working with state machines, it is important not only to define the states, but also the logical stepping from one state to the next, or alternatives based on conditions.  It could be flowchard, but sometimes people call them state charts.
    Right now your latest posting has goes to "Write to Motor" event though and will wait there forever because there is nothing in the queue to write out through the VISA port.
    Let's assume your first state would happen to be Enqueue Tension (in order to get something in the queue), you will actually queue up all your tension commands at once with the For loop.  Then i will be 1 less than the size of the array it always will be because for an array size n, i will go from 0 to n-1 on each iteration.  So your false case will run and you will go to "Write to Motor".  Write to Motor will run and dequeue the first command then go to Waiting for Response.  Waiting for response will iterate through the while loop until 66 or 67 comes back.  I assume only 66 will come back for tension since you have yet to write a torsion command.  Once that comes back, it will go to Enqueue Tension again and insert a whole other series of commands.  Then go back to write Motor and will take out the 2nd queue element from the first set of commands your wrote.  It will stay in a Tension mode and the Queue will grow endlessly putting in a whole new series for each element that you dequeue.
    A state machine is the way to go, but I can't really sketch one out for you because I'm not sure exactly how your applications is supposed to work.  If a tension and torsion command are paired together,  perhaps you should just queue them together and write them out at once.   But the key thing is to sketch out on paper your application and flowchart exactly how the program should progress from step to step.
    PS:  One other thing, make sure you wire the queue reference wire through all states.

  • Two running instances of Weblogic on the same machine

    I need to run at least two instances of Weblogic on the same machine. My Company GE Capital purchases the Clustered version and the BEA Engineer who did the install did not know Unix and could not intall the instances. Could you please give pointers to on how to do this? You can also write me to [email protected]
    Thanks,
    John G

    ....plus, you have to consider the license issue.
    Vidar wrote:
    >
    It does not sound to bad, but would it not be hard to cooperate with other
    people, since you will often use API's and EJB's developed and deployed by
    other team-members?
    Does anybody have any documents or ideas on what the best way to cooperate
    in a development-team is?
    "Michael Girdley" <[email protected]> skrev i melding
    news:39e15942$[email protected]..
    Yes, that is the best way to do it.
    In practice, we have found that each developer having their ownworkstation
    with an instance of WLS works best.
    Thanks,
    Michael
    Michael Girdley
    BEA Systems Inc
    "newbie" <[email protected]> wrote in message
    news:[email protected]..
    I am also pondering on the same problem right now...
    I am trying to get an environment setup so that multiple
    developers can have their own weblogic "instances" to play
    with - so that each of them can start/stop the server,
    deploy EJBS etc without affecting one another in a UNIX
    environment. to accomplish this - do I just install the
    server multiple times with different port numbers on the
    same machine or is there a a better way to do this?
    Appreciate any input.
    Thanks
    "john Gongora" <[email protected]> wrote:
    I need to run at least two instances of Weblogic on the same machine.
    My
    Company GE Capital purchases the Clustered version and the BEA Engineerwho
    did the install did not know Unix and could not intall the instances.Could
    you please give pointers to on how to do this? You can also write me to
    [email protected]
    Thanks,
    John G

  • Run two different verion jasperreports from same webapplication

    Dear Expers,
    i have two xml file one was developed using old veriosn of jasperreoprts , itext (0.92) ...
    and new one is build using very new release of japserreports and itex(1.13..)
    when i run my application using old itext , my old one works fine but new one get error but when i use new version of itext , new one work fine but old one get error .
    now i want to run both of them from the same webapplication. how can i run ....................................

    I'm loading cumulative/planned transactions from 0FI_AA_11 to 0FIA_DS11 just filtering by depreciation area on data package. Data is being successfully load and activated into this data provider.
    From 0FIA_DS11 to 0FIA_DS12 I am loading data without filtering and load is finishing successfully.
    From 0FIA_DS11 to 0FIA_DS13 I am not using any filter on DTP. I'm removing data with transaction type 'PLN' into start routine, but load is not even achieving this point. It stops during data source extraction.
    Any more ideas?
    Thanks for your previous reply!!

  • Two different projects in the same machine sharing some objects

    Hello dear all
    I got this scenario:
    Same machine;
    2 clients (70 and 80);
    2 Projects
    -     AR Payment Process (prototype) for an existing company
    -     New company configuration
    Coding Block (e.g.: for experiences in AR - prototype )
    In the end - same Production machine
    Projects running simultaneously
    AR payment project (prototype) > New company configuration (in terms of duration)
    Description
    I got 2 projects running at the same time. At least somewhere in the time they will run simultaneously. One will consist in a new AR-Payment process for an existing company, and another one consisting in a creation of a new company.
    So, Iu2019m afraid that those projects cannot run simultaneously once for payment process we will use coding block for sure.
    We will have to change some standard tables (e.g. SPL Table) with different fields (two, to be more precise) u2026.. We do not have time to make one, and after another one, and then put them together and adjust it.
    So, at this point Iu2019m not pretty sure about the direct influences, and in case of influence occur, what can be the solutions to avoid them.
    Is there any way of controlling all the possible changes that will be made in the shared objects?
    We really need to run these projects.
    Thank you all in advance

    The fastest way I can advice is...
    1. edit your credits sequence (the clips you want to keep going as your credits roll)
    2. nest the clips in a new sequence then you have a timeline with a nested sequence in your track 1...
    3. Select your nested sequence in the track 1 and use the motion tab to scale/rotate/crop/move your image wherever you want in the canvas...
    3. create a second track for your rolling credits...
    4. create your rolling credits
    5. if you have different clips for your rolling credits you may want to nest these too...
    6. select your rolling credits and use the motion tab again to scale/crop/rotate/move your credits wherever you want in the canvas
    Hope this help...

  •  Ps installation on two different boot volumes of same machine?   Ps 11.0.2 Mac PPC  and then...

    Hello, I'm new to this forum.
    My goal here is to have two different Photoshop 11.0.2 installations on two different boot volumes of one and the same Power Mac (PPC) G5 Quad, one being a Tiger 10.4.11 system and the other one a Leopard 10.5.8 system, for the purpose of installing two different modalities of the same Epson Photo Stylus 2200 printer, one with the printer set to use the photo black ink cartridge for luster and glossy papers, and the other one using the matte blank ink.
    This is because I prefer to simply change the startup disk when switching inks rather than having to delete and re-add the necessary printers.  (This particular printer does not support ink cartridge switching under any version of Mac OS X.)
    Photoshop is currently only used on this one machine.  Obviously this intended scheme fits well within the EULA conditions.
    My three questions are:
    (a) whether there is any technical issue I have failed to consider,
    (b) whether each copy of Photoshop on the same machine will have to be activated separately (in other words, is the activation tied to the CPU or to the boot volume drive?), and
    (c) if the answer to the latter question is yes, whether this will count as one or two activations for purposes of later installing a single instance of the Photoshop 13.x ("CS6") upgrade on an Intel- MacBook, since obviously C6 will not run on my PPC Mac.  Again in sum, will I be able to continue to run Photoshop 11.0.2 on two different volumes of the same PPC machine and the Photoshop 13.x upgrade on the laptop?
    As further explanation, I would use Photoshop 13.x on the Mac-Intel laptop only in order to run ACR 7.x, but would keep my PPC G5 Quad as my photo editing and printing machine running Photoshop 11.0.2, since an upgrade of my desktop machine to a comparably powerful Mac Pro is simply not an option for both financial and technical reasons (the Classic environment is essential).
    Any and all input and guidance will be appreciated.
    Message was edited by: station_one

    Thank you for the lightning-fast response—and on a Sunday morning too!
    MichaelKazlow wrote:
    …Is it technically a violation, that is something I'd leave Adobe to answer.
    From my previous visits to other forums as a lurker, I was under the firm impression you were in fact an Adobe employee, Mr. Kazlow.  I hope that is still the case and you are only referencing your participation in these user-to-user forums as a volunteer, not as an official representative of the corporation. 
    Much obliged.

  • Running multiple instances of OIM on same machine

    I have two instances running on same machine. I made the following changes in JBoss to achieve it:
    * deploy/jboss-web.deployer/server.xml
    o change 8080 to 18080
    o change 8443 to 18443
    o change 8009 to 18009
    * deploy/http-invoker.sar/META-INF/jboss-service.xml
    o change 8080 to 18080
    * deploy/jbossws.sar/jbossws.beans/META-INF/jboss-beans.xml
    o change 8080 to 18080
    o change 8443 to 18443
    * deploy/ejb3.deployer/META-INF/jboss-service.xml
    o change 3873 to 13873
    * deploy/jms/uil2-service.xml
    o change 8093 to 18093
    * conf/jboss-service.xml
    o change 8083 to 18083
    * conf/jboss-minimal.xml
    o change 1099 to 11099
    o change 1098 to 11098
    * conf/jboss-service.xml
    o change 1099 to 11099
    o change 1098 to 11098
    o change 4444 to 14444
    o change 4445 to 14445
    o change 4446 to 14446
    Both servers startup properly but after startup I get following exception:
    Server 1
    22:45:01,120 ERROR [ACCOUNTMANAGEMENT] Class/Method: tcDefaultSignatureImpl/verifySignature encounter some problems: CN=Custome
    OU=Customer, O=Customer, L=City, ST=NY, C=US
    22:45:01,121 ERROR [ACCOUNTMANAGEMENT] Class/Method: Authenticate/connectSignature encounter some problems: CN=Customer, OU=Cus
    er, O=Customer, L=City, ST=NY, C=US
    22:45:01,122 ERROR [ACCOUNTMANAGEMENT] Class/Method: Authenticate/connect encounter some problems:
    com.thortech.xl.security.tcLoginException:
    at com.thortech.xl.security.tcLoginExceptionUtil.createException(Unknown Source)
    at com.thortech.xl.security.tcLoginExceptionUtil.createException(Unknown Source)
    at com.thortech.xl.security.Authenticate.connectSignature(Unknown Source)
    at com.thortech.xl.security.Authenticate.connect(Unknown Source)
    at com.thortech.xl.security.Authenticate.connect(Unknown Source)
    at com.thortech.xl.security.jboss.UsernamePasswordLoginModule.login(Unknown Source)
    Server 2
    22:45:01,214 ERROR [DATABASE] Class/Method: tcDataBaseClient/bindToInstance encounter some problems: SecurityException; nested exc
    eption is:
    com.thortech.xl.security.tcLoginException:
    java.rmi.AccessException: SecurityException; nested exception is:
    com.thortech.xl.security.tcLoginException:
    at org.jboss.ejb.plugins.LogInterceptor.handleException(LogInterceptor.java:388)
    at org.jboss.ejb.plugins.LogInterceptor.invokeHome(LogInterceptor.java:136)
    at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invokeHome(ProxyFactoryFinderInterceptor.java:107)
    at org.jboss.ejb.SessionContainer.internalInvokeHome(SessionContainer.java:637)
    at org.jboss.ejb.Container.invoke(Container.java:981)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    Can any one help me to resolve this?

    I also change the ports in internal-settings.xml for IIOP, rarely used but sometimes necessary.
    --olaf                                                                                                                                                                                                                               

  • Install two oracle8i database on the same machine

    Hi
    I am currently running oracle 8i on hp unix 11i.
    I would like to ask whether I could run another instance(another oracle 8i database ) on the same machine.
    In another word can I run two database on the same machine?
    Is there any implication by doing so?
    Thanks in advance

    Hi
    I am currently running oracle 8i on hp unix 11i.
    I would like to ask whether I could run another instance(another oracle 8i database ) on the same machine.
    In another word can I run two database on the same machine?
    Is there any implication by doing so?
    Thanks in advance Hi,
    You can create multiple databases on the same machine, if you have sufficient resources.

Maybe you are looking for