JSP and Client/Server Compatibility Issues

For the new application that we have to design we have two groups of users
- Group A requires admin access, high response time, better user feel and special previledges and are a few in number at limited locations.
- Group B requires limited functionality, but are spread all over the world and they are huge in number.
We are planning to provide Applet/Swing based client server architecture for Group A and JSP/EJB based J2EE architecture for group B users. common webserver would be used.
Please advise what are are potential issues in this approach or do we have a better approach to achieve the same.

GUI based applications are good but do you think that will it be maintainable and portable?.. Some of the GUI based applications are build on higher Java like 1.5.. i Presume you have the latest and other workstation have only 1.4 or 1.3, this can be n issue on GUI based applications especially on installation on each workstation.

Similar Messages

  • ILife 08 and iMovie 06 compatibility issues?

    Sorry if any of this has already been covered in other threads...
    Has anyone had a chance to thoroughly test the 6.04 version of iMovie (download version if you install iLife 08) and know what compatibility issues there are?
    I.E. How well does iPhoto 08 play with iMovie 06, or iMovie 06 with iDVD 08. Are the third party plugins problematic with v6.04?
    From what I saw at the Apple store, iPhoto08 and iDVD08 would be the only apps that I would really want since iMovie08 seems to be a step backwards and iWeb is still lacking in everything that I wanted improved. But I don't want to waste the money to discover all sorts of "gotchas" with trying to get iMovie06 to play nice with the rest of iLife08...
    Also, has anyone done an install excluding iMovie08 entirely? Do you still need to download 6.04 if installed this way? Are there any pitfalls?
    This is like Deja vu or something...When iLife06 first came out, I installed everything but iMovie and stuck with iMovie05 for a long time cause of all the bugs and how long it took to get the third party plugins working...

    Of all the things for people to moan about with iMovie '08, the real unfortunate thing is it's inability to import effects, etc. (essentially your completed movie) from iMovie HD. One could somewhat forgive Apple for this debacle, if only it played nice with iMovie HD. Then it could be everything it's supporters say it is, i.e. "a different app," "a simple app for simpletons in a hurry" (although I find it's lack of tools and compatibility issues more difficult to manage).
    ...and a lot of us feel like this is the thing we're going to be stuck with going forward.
    I keep thinking that something else is going to happen, because this can't be right. I think this diver/video engineer who came up with this concept is suffering from the bends.
    Apple doesn't need the money, (as in making us buy Final Cut Pro for decent video editing), trust me, so I don't understand why it would take the PR hit.
    iMovie '08 spoofs are already on YouTube, etc.
    Message was edited by: rmig68

  • Final Cut Pro 4.5 and Quicktime 7 compatibility issues. Error 39!

    I see some people saying Quicktime 7 is not compatible with Final Cut 4.5 and some saying it is.
    I upgraded to 10.3.9 and then Quicktime 7 and I started getting error 39 at this one spot in my timeline and then crashing if I tried to play just a few seconds ahead of that spot. I tried trashing the prefs but that didn't do any good. The individual files play fine outside the timeline so it isn't corrupt media. I tried rerendering the effects that are at that point but that didn't help. I tried copying the entire timeline to a new sequence and that didn't help.
    The strange thing was that when I took the part of the movie that was having trouble and deleted it from the timeline it still got error 39 when just playing over the empty timeline where the media used to be! This led me to realize that the problem lay in some Quicktime audio effects I had about a second in front ot the error 39 spot. I took off the effects from that audio but it didn't help. Then I deleted that audio from the timeline and just pasted it back in from the original clip and then it finally got to working.
    Now I know nothing about the software, but I thought there might be some connection between the fact that I had effects that FCP labels as "quicktime effects" on there from my days in Quicktime 6.5, then upgraded to Q7, and perhaps those old effects don't work in Q7? I don't know.
    So, my immediate problem is solved but I thought this experience may be of use to someone else. And perhaps some compatibility issues can be brought to light.

    I would assume the Software Update program has sufficient logic within it to detect that my friend is running Final Cut Pro 4.0 and it would therefore be disastrous to install QuickTime 7.3, thus removing QuickTime 7.3 from her list of suggested updates. Would someone at Apple please fix this?
    Sorry, but Quicktime is a component for SO MANY things, not just FCP. Sorry, but the OS doesn't detect that older versions of software are on there and won't be compatible...this is where you need to have a little knowledge. And sorry, but you need to have a little knowledge. If things are working, DO NOT UPGRADE unless it has been tested and cleared. In the case of FCP 4...it has not.
    Rule of thumb...if you use older software, you have to stick to older versions of the OS and components that that software relies on.
    How many things were broken with Vista? So many that the HUGE community let out a cry and now XP is available again configured on machines or as a stand alone buy. And no, Vista didn't warn that certain applications wouldn't work either.
    You gotta research and find out. This place here...this forum...is a FANTASTIC place to find stuff like this out.
    BTW...Apple doesn't read these forums, only us users. Gotta submit feedback here:
    http://www.apple.com/feedback/finalcutpro.html
    Shane

  • Timezones and client/server issue

    We have a client process which runs on Windows PCs which are scattered among different timezones. These clients send data periodically to a server.
    The data includes timestamps indicating when certain events happened on each client PC. We need to know the timezone for each PC so that we can display those timestamps (stored on the server in GMT) in the timezone of each PC.
    The tricky bit: the clients are in C++ and the server is in Java. We cannot assume a JRE is installed on the clients.
    Our C++ client code can get the Windows timezone name as a string and pass that to our Java server code. What isn't obvious is how to translate that string to a Java TimeZone object. For example, the Windows string "Central Standard Time" maps to the Java TimeZone ID String "America/Chicago".
    I've done enough research to discover that the (relatively new) jre/lib/tzmappings file contains exactly these mappings. But it appears that the code which relies on that file is quite "under the hood" in java -- most likely in the unpublished sun.util.calendar package.
    Does anyone know of a way to map an O/S-specific timezone string to a Java TimeZone object? I know I can write my own code to read the tzmappings file myself, but that file explicitly states that "No applications should depend on this file in any form." I'd prefer a kosher solution.
    All ideas, suggestions, thoughts, links, etc. appreciated. Thank you!

    Thanks for the comments, everyone. Some responses:
    It seems the exact opposite to me. Relying on yourown file rather
    than using a file that explictly says "Don't useme!" seems less brittle.
    Both are brittle. By relying on the "one built into
    Java" I can rely on timezone additions and changes
    made by Sun without doing anything. Otherwise I have
    to be responsible for maintaining mine over time,
    noticing (for example) whenever Sun updates theirs
    and then updating and re-releasing mine.
    You either are going to be mixing data or not.Can you clarify for me what you mean by "mixing
    data"?
    We were planning to store all timestamps in the
    database in GMT with a timezone code. This allows
    queries to be based on normalized time (all use GMT),
    yet also allows us to know when an event happened in
    "local time" (on the PC where the event occurred) by
    converting the GMT value using the timezone code.There is a difference between doing a query and displaying the data.
    In terms of the query you don't need to access anything (special files.) You do the query in SQL, nothing more.
    In terms of displaying the data you have a number of choices.
    1. Don't display the time at all.
    2. Display it in reference to a specific timezone.
    3. Display each time in reference to the timezone that originated it.
    The last choice is not usable for users when the data is mixed in one display.
    >
    it is going to be a very large mistake to attemptto display each time in
    a different timezone (without categorizing it someother way.) It will be
    non-sensical to the users.What about when the clients ARE in various timezones?
    We have GUI screens and reports which show events on
    PCs in various continents. For example, showing:
    Again you are going to be doing one of the following.
    1. Data that is relative to them only.
    2. Data from all zones.
    If the first then just display the time relative to them in the first place (use the default for the VM.)
    If the second then you are back to the problem that I discussed above.
    MachineA 09:01 Service Started
    MachineA 10:32 Service Stopped
    MachineB 10:33 Service Stopped
    makes it look like the events (Service Stopped)
    happened about a minute apart on MachineA and
    MachineB. But they didn't, in this example, because
    the machines are in two different timezones. A user
    can't tell that above. But this clarifies it:
    MachineA 09:01 PST Service Started
    MachineA 10:32 PST Service Stopped
    MachineB 10:33 EST Service StoppedNote that I am not suggesting that you do not store your data in an absolute sense.
    But storage and display are two different things. And your example is flawed unless your database data is flawed.
    For example if you store the time in the database as GMT then the only way you can get case 1 is if you use the local timezone for each and then don't display the timezone.
    >
    In fact, the service stopped on MachineB before
    MachineA.
    The question begging to be asked is: what does the
    user expect to see? A list of events sorted relative
    to "wall time" (shown above), or a list sorted by
    absolute time? The latter looks like this:I think you will find that most users expect time to be relative to a certain timezone when times from different timezones are mixed in the same display.
    If grouped by timezone then they will accept timezone relative times even when there are different view with different timezones.

  • OraOledb, Linked Servers and SQL Server 2005 issues

    Some issues I've come across when using SQL Server 2005 (and SQL Server Express 2005), the OraOLEDB provider (10.2.0.1) and a linked Oracle database (8.1.7.4.0 64-bit)
    1) You must set the OraOledb.Oracle\AllowInProcess value to 1 to allow the OraOledb provider to run in SQL Server's process. Without doing this I receive an 'unspecified error' from the OLE DB provider when attempting to run a query
    2) When running a ' select * ' query across a linked server using the provider, I receive the following error: Msg 9803, Level 16, State 1, Line 1
    Invalid data for type "numeric". I can, however, select all of the columns by name and the query completes (no error). Sometimes the 'select *' query returns a few rows before the error, sometimes it doesn't. The Microsoft Provider for Oracle does not have this problem

    Okay... I've got a Win2K3 Std Ed server (x64) running 64-bit SQL Server 2005 Enterprise Edition. I've installed the Oracle 10g 10.2.1 full client and admin tools, added two named services via the NetConfig assistant, and successfully set up (and tested) a connection via the ODBC Administrator to an Oracle database.
    Now... when I try to create a new connection manager in SQL Server 2005 Integration Services, the OLEDB provider for Oracle can't be found, and when I try to manually add an underlying OLEDB connection to the database, SQL Server reports:
    Test connection failed because of an error in initializing provider. The 'OraOLEDB.Oracle.1' provider is not registered on the local machine.
    Does anyone know what I need to do to see my ODBC Server data connections in SQL Server 2005 (64 bit)? I don't have this issue on my 32-bit SQL Server 2005 servers.

  • Upstream and Downstream Server Configuration Issues

    Hello
    We're trying to configure an upstream and downstream server infrastructure.  We believe that we have this configured and working properly but our issue is that local clients and servers are appearing on the downstream server and not the upstream server. 
    It would be useful for all clients to be managed from the upstream server to reduce administration time.
    We manually assign computers to groups and use Group Policy to specify the client configuration. The client and server settings have these keys specified:
    HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate
    Name: WUServer    Type: REG_SZ    Data: (Downstream Server)
    HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate
    Name: WUStatusServer    Type: REG_SZ    Data: (Upstream Server)
    To me, this should mean that clients only get updates from the downstream server and are conmpletely managed from the upstream server but maybe it doesn't work that way?
    All downstream servers are set to replicas.
    Can anyone help?  I'm sure you shouldn't have to assign every client to group at downstream level.  I have thought about using GPO to assign to groups but it would be complicated with our structure due to testing containers and I think I would
    have the same result.
    Basically, I would like to assign computers to groups from all sites using the upstream server only.
    Thanks in advance,
    Luke

    our issue is that local clients and servers are appearing on the downstream server and not the upstream server.
    Number one cause associated with this symptom is not enabling Reporting Rollup on the upstream server in Options->Reporting Rollup.
    It would be useful for all clients to be managed from the upstream server to reduce administration time.
    This won't happen in any case. Clients are managed from the WSUS server they are assigned to. You can, however, register more than one WSUS server in the WSUS console and manage multiple WSUS servers from a single console.
    HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate
    Name: WUServer    Type: REG_SZ    Data: (Downstream Server)
    HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate
    Name: WUStatusServer    Type: REG_SZ    Data: (Upstream Server)
    This is not correct, but it's not a critical issue since "WUServer" is set correctly. The WUA is just ignoring the incorrect value for "WUStatusServer". Both of these strings should be set to the same value -- the assigned WSUS server.
    To me, this should mean that clients only get updates from the downstream server and are conmpletely managed from the upstream server but maybe it doesn't work that way?
    It doesn't.
    Basically, I would like to assign computers to groups from all sites using the upstream server only.
    Not an option. You have two choices with replica servers:
    Assign the group memberships from the assigned replica server.
    Assign the group memberships via Group Policy.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • PDK and Client/Server

    Hello,
    is it possible to create a portlet for a normal client/server application like MS Word oder PowerPoint to be displayed/used in Oracle Portal? Does the PDK solve the problem or do i need web-enabled versions of these programms?
    If it is possible do so, could you please give me a shot discription of how to do it.
    greeting
    Thomas

    GUI based applications are good but do you think that will it be maintainable and portable?.. Some of the GUI based applications are build on higher Java like 1.5.. i Presume you have the latest and other workstation have only 1.4 or 1.3, this can be n issue on GUI based applications especially on installation on each workstation.

  • Database Adapter and SQL Server procedure issue

    Hello,
    I am using Jdev 11.1.1.7.0 and SQL Server 2005.
    In the Database Adapter configuration wizard, Specify Stored Procedure step, I choose the “GEACupax” schema and got the following error after a click on “Procedure Browse” button:
    com.microsoft.sqlserver.jdbc.SQLServerException: Invalid object name 'GEACUPAX.INFORMATION_SCHEMA.SCHEMATA'.
    The command Database Adapter tried to execute was:
    (from jdev log:) select schema_name from GEACUPAX.INFORMATION_SCHEMA.SCHEMATA order by schema_name;
    Note, the schema name has changed to uppercase. I think that is the problem. If I try this query in SQLDeveloper, it returns the same error. I can fix it changing the schema name to “GEACupax”. The case matters.
    Any ideas?
    Leandro.

    Vijay,
    Thanks for you reply.
    I figure out a related bug:
    Bug 12859472: Cannot browse store procedure in case-sensitive MS SQL Database
    There are two possible workarounds:
    1. Use a database name with capital letters
    2. Do not use stored procedures, but access the tables directly.
    The notes on the Bug ticket describes that the issue would be scheduled to be fixed in PS7 which is 11.1.1.8.
    Cheers!
    Leandro.

  • Confusion about UEFI/BIOS and GPT/MBR compatibility issues

    So a user said in another post that they were NOT able to boot in UEFI mode and install Fedora even though it is UEFI compatible.  But this person was able to useLegacy mode and install Fedora, and furthermore, was able to "keep the Windows partition."  I'm guessing that means that Win 8 that came with it, which would be installed in UEFI/GPT mode, correct?  I'm specificly referring to the Y510P but from what I understand *every* laptop that comes preinstalled with Win 8 must be UEFI/GPT.
    So the way I understand it is that the installed Fedora is in "BIOS"/GPT mode rather than "BIOS"/MBR mode because you can't have both GPT and MBR on the same disc.
    I have just started learning about this UEFI/BIOS and MBR/GPT nonsense, and it's going to drive me crazy until I finally understand it. So I guess what I'm asking is:
    1) When I get my y510p I assume it will be in UEFI/GPT mode. Can I install non-UEFI distros alongside it as I take it was done with Fedora?
    2) If I install a linux distro alongside Win 8, do I have to worry about compatibility issues with a drive that is in GPT format? Or does the MBR/GPT issue have nothing to do with it, so I don't have to worry about ever changing my drive to MBR?  
    For example, I read that Win 7 must be installed either as BIOS/MBR or UEFI/GPT.  This can not be mixed and matched.  This means that if I could not get the Windows 7 installer to boot in UEFI I would have to install as MBR.  This also means I would have to format the drive and reinstall Win 8 on the MBR.  
    So my question is do other OS's like Linux have these restrictions?  (For example, if a particular distro will not boot in UEFI and therefor MUST install on MBR)
    3) I have a pendrive with YUMI installed with a ton of distros/tools/Win installs/etc. (It is a USB boot tool like unetbootin that allow you to add multiple bootable images.) When I tried it recently on my dad's laptop.  I have used it many, many times with my older computers, none of which were UEFI.  It works great.  Now that I've had a recent encounter with my dad's ASUS Windows 8 computer (not with the y510p yet) I found out that UEFI seems to be complicating the crap out of things (for me, at least.)
    So when I used this computer, I noticed that when I boot (with legacy mode enabled) and enter the "boot selection screen" in order to boot with USB, I have two options a) UEFI:"name of usb" and b) "name of USB". The UEFI option would NOT boot, but it would boot without the UEFI: option.
    So does this mean that I am booting in non-UEFI mode and once I have booted this way and choose a distro to install that it CANNOT install in UEFI mode?  I recently saw a tool called Rufus that I have yet to try that has an option to set the bootable USB to UEFI, so that would possibly work if I wanted to install a UEFI compatible distro (Arch linux is what I'm wanting.)
    4)  If installing a UEFI compatible distro (such as Arch) requires that the USB device be able to boot in UEFI mode has anyone been able to do this?  Has anyone even been able to boot a device in UEFI mode to do *anything* such as run a live linux?  
    I'm 99% sure I would be able to boot in legacy mode and run a live linux (because I did so on my dad's computer) but the problems arise when I consider how to INSTALL.
    I would really like to know the answers to these questions (as scattered as they are.) Any help would be appreciated!
    Unnecessary info:
    (I started learning about BIOS/UEFI and MBR/GPT the hard way a few days ago by trying for hours to install Windows 7 on my dad's Windows 8 laptop because I could NOT get Win 7 installation to work...it kept asking for drivers before I could install until I finally used the Windows USB install tool, put the stick in a different USB, AND formatted the drive as MBR because Windows 7 would NOT install on the existing GPT drive until I used diskpart.exe -clean. And I have read that Win 7 64 bit will work fine on a UEFI/GPT setup. I used the Windows 7 USB boot tool which did NOT give me a UEFI: and regular option. It showed up simply as "name of usb" without a UEFI in front. Since I read that Windows 7 must either be in BIOS/MBR mode or UEFI/GPT mode that this drive would not boot in UEFI mode, and I don't know why...Although I believe I read that Win 7 cannot be installed from a USB in UEFI/GPT mode, only BIOS/MBR.  UEFI/GPT mode requires a DVD install but I did not have a drive to test this.)

    I have a Y510p which is running dual boot Windows 8.1 and Arch Linux.   I think that it is strongly advised to do plenty of reading ahead of any install if you will be using UEFI and Linux so that you understand all the issued before making critical changes to the existing system.
    Yes, if the machine comes with Windows 8 (as mine did) then the disk will be formatted with a GPT partition table (instead of the old MBR partitioning scheme), and will boot using UEFI. If you are going to try to keep the existing Windows 8 system and add Linux then you will need to keep the disk with its GPT partition table and partition structure, but you can shrink the Windows 8 C: drive to make space for the Linux partitions that are needed ( a root partition and at least a /home and/or /opt partition and possibly a linux swap partition also ).  If you want to boot the Linux install via UEFI then you can simply add the required boot directory to the EFI System Partition (ESP).
    However it is very important that before trying to do any linux install that you switch off Fastboot from within WIndows 8 (or 8.1). Also most Linux distributions are in some difficulty booting using Secure Boot, though a few such a Ubuntu and Fedora are supposed to be able to do so. Hence it is much easier to work with Linux if Secure Boot is first switched off from the BIOS settings menu.
    The order of operations that I used was;
    1) Switch off Secure Boot from the BIOS - and boot back into the Windows 8 system to check that it boots OK.
    2) With Windows 8 running go into the settings and switch off Fastboot (which does a hybrid suspend when it shuts down instead of a full normal shutdown - if you don't do this then the memory gets overwritten when booting Linux in the future which means booting back into Windows will fail). 
    3) Reboot back into WIndows and check all is well, and if so then use the disk management facility within Windows 8 to shrink the C: drive to make room for the Linux partitions.
    4) Reboot to check Windows 8 still boots OK.  
    5) If you are going to update to Windows 8.1 then do so, and then update everything once it is booted (it is a huge update and takes ages!). Once done then you will likely have to update drivers for the graphics cards, the clickpad and possibly the wireless chip and ethernet chip. I found that I needed to get drivers that were newer than were available on the Lenovo website, by going to the relevant hardware manufacturer website (eg for synaptics for the clickpad). Then spent a week or so in the evenings getting Windows 8.1 configured the way I like it.
    6) Then I did a lot of reading about the various options for the boot manager that would suit a UEFI boot for a dual boot system for Windows 8.1 and Arch Linux and there was a choice of Grub, Gummiboot, rEFInd, and others - and after reading the details I decided on rEFInd as my boot manager which can boot not only any new Arch Linux install but automatically finds the Windows UEFI boot files and presents the options in a nice graphical window once the system gets past POST at bootup.
    7) It was important to check which partition was the ESP and to know what partitions I needed to create for the Arch Linux system.  Then I went ahead and booted from a usbkey to a uefi install system, and very carefully proceeded with a standard Arch Linux install, being particularly careful to know where to put the rEFInd boot manager files and the kernel and initrd files. Also I used efibootmgr to write the appropriate NVRAM boot entry in the motherboard memory so that the uefi boot system knows where to find the rEFInd uefi boot files in the ESP.
    8) Once complete the system boots to Arch Linux as the default, with a nice Windows icon which you can select with the arrow keys within the boot timeout period (default 20 seconds).
    I noted also that it is possible to create boot stanzas in the rEFInd boot manager config files which allow rEFInd to chain load other Linux systems or even other bootloaders if you wish - so it is very flexible. So if you want to you could install a grub standalone set of diretories/files so that if the normal linux boot fails then you can select the grub icon from rEFInd and chainload grub to boot either the same Archlinux install, or point to a third linux distribution if you have more partitions containing that third install which might be Ubuntu or Mint or ....
    Either way although getting to understand how uefi boot works is a learning curve it is actually generally simpler than the old legacy BIOS boot. With uefi you no longer need an MBR on the drive, and only a suitable EFI System Partition which has to be VFAT formatted. However if you want to have one of the linux distributions booting from legacy MBR then you need to create an MBR at the start of the drive - so you would need to move the start of the first partition and create a suitable sized Master Boot Record otherwise MBR boot can't work. If you do that then of course you have to be careful if the Windows partition is the one being re-sized that it doesn't mess up the Windows boot! However since using uefi to boot rEFInd allows a chainload to grub/gummiboot or other bootloaders then there should be no need to mess with MBR booting if you go down that route.
    If you are interested in rEFInd then the author Rod Smith has a good set of documentation that describe the details at http://www.rodsbooks.com/refind/
    He is also the author of a really excellent disk partitioner for GPT disks - http://www.rodsbooks.com/gdisk/
    Clearly it is necessary to read up on the boot facilities available for any linux distribution that you plan to put on the system.
    One nice thing is that uefi boot with an efistub supported kernel build is really fast on the Y510p. My system boots Arch linux in about 7 seconds to the KDE login prompt once the POST is complete and that only takes a couple of seconds.  Of course Windows is much slower once it is selected at the rEFInd screen and takes somewherearound 40 seconds or so to boot, but at least Linux is super fast!
    Anyway I hope that this helps.

  • WLS Admin and managed server startup issue

    Hi ,
    In one of WLS Domain both the Admin Server and Managed Server startup is just hanging at the below mentioned point :
    <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    After this there are no error messages or logs being generated and the server start up is not proceeding .
    Only message shown a while after this is :
    Warning : domain runtime mbean server has not been found after trying for 600 seconds
    Please provide some inputs on how to troubleshoot this issue .
    Checked the AdminServer.log and there are no errors reported there as well .
    Some more data from AdminServer.log :
    <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1336448845368> <BEA-090516> <The Authenticator provider has preexisting LDAP data.>
    <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1336448845632> <BEA-090516> <The Authorizer provider has preexisting LDAP data.>
    <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1336448846193> <BEA-090516> <The CredentialMapper provider has preexisting LDAP data.>
    <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1336448846208> <BEA-090516> <The RoleMapper provider has preexisting LDAP data.>
    <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1336448846433> <BEA-090093> <No pre-WLS 8.1 Keystore providers are configured for server AdminServer for security realm myrealm.>
    <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1336448846433> <BEA-090082> <Security initializing using security realm myrealm.>
    Thanks
    Srinath
    Edited by: Srinath Menon on May 8, 2012 9:36 AM

    Hi Ashish ,
    Thanks for the inputs.
    Tried the same steps as mentioned but the issue still remains like that .
    Posting the thread dump collected for AdminServer:
    ===== FULL THREAD DUMP ===============
    Tue May 8 10:04:58 2012
    Oracle JRockit(R) R28.1.3-11-141760-1.6.0_24-20110301-1430-linux-ia32
    "Main Thread" id=1 idx=0x4 tid=9341 prio=5 alive, waiting, native_blocked
    -- Waiting for notification on: weblogic/t3/srvr/SubsystemRequest@0x9f81d3c0[fat lock]
    at <unknown>(???.c)@0xb7fe9410
    at eventTimedWaitNoTransitionImpl+79(event.c:90)@0xb7d6bae0
    at syncWaitForSignalNoTransition+81(synchronization.c:28)@0xb7ee7c62
    at syncWaitForSignal+157(synchronization.c:85)@0xb7ee7dbe
    at syncWaitForJavaSignal+53(synchronization.c:93)@0xb7ee7ea6
    at RJNI_jrockit_vm_Threads_waitForNotifySignal+53(rnithreads.c:72)@0xb7eb78a6
    at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
    at java/lang/Object.wait(J)V(Native Method)
    at weblogic/t3/srvr/SubsystemRequest.rendezvouz(SubsystemRequest.java:100)
    ^-- Lock released while waiting: weblogic/t3/srvr/SubsystemRequest@0x9f81d3c0[fat lock]
    at weblogic/t3/srvr/SubsystemRequest.action(SubsystemRequest.java:81)
    at weblogic/t3/srvr/SubsystemRequest.start(SubsystemRequest.java:51)
    at weblogic/t3/srvr/ServerServicesManager.startService(ServerServicesManager.java:459)
    at weblogic/t3/srvr/ServerServicesManager.startInStandbyState(ServerServicesManager.java:166)
    ^-- Holding lock: java/lang/Class@0x9fa95598[biased lock]
    at weblogic/t3/srvr/T3Srvr.initializeStandby(T3Srvr.java:879)
    at weblogic/t3/srvr/T3Srvr.startup(T3Srvr.java:566)
    at weblogic/t3/srvr/T3Srvr.run(T3Srvr.java:467)
    at weblogic/Server.main(Server.java:71)
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    -- end of trace
    "(Signal Handler)" id=2 idx=0x8 tid=9342 prio=5 alive, native_blocked, daemon
    at <unknown>(???.c)@0xb7fe9410
    at sigiSignalHandlerThread+135(signalhandler.c:131)@0xb7ec2fd8
    at thread_stub+146(lifecycle.c:808)@0xb7e2c333
    at start_thread+225(:0)@0x515832
    at __clone+93(:0)@0x46ae0e
    "(OC Main Thread)" id=3 idx=0xc tid=9343 prio=5 alive, native_waiting, daemon
    at <unknown>(???.c)@0xb7fe9410
    at eventTimedWaitNoTransitionImpl+79(event.c:90)@0xb7d6bae0
    at syncWaitForSignalNoTransition+81(synchronization.c:28)@0xb7ee7c62
    at innerNativeDoWait+894(nativelock.c:614)@0xb7e78caf
    at nativeWait+71(nativelock.c:721)@0xb7e79008
    at ocMainThread+663(gcthreads.c:581)@0xb7d8a098
    at thread_stub+146(lifecycle.c:808)@0xb7e2c333
    at start_thread+225(:0)@0x515832
    at __clone+93(:0)@0x46ae0e
    "(GC Worker Thread 1)" id=? idx=0x10 tid=9344 prio=5 alive, daemon
    at <unknown>(???.c)@0xb7fe9410
    at eventTimedWaitNoTransitionImpl+79(event.c:90)@0xb7d6bae0
    at eventTimedWaitNoTransition+62(event.c:72)@0xb7d6bb3f
    at eventWaitNoTransition+32(event.c:62)@0xb7d6bc31
    at mmGCWorkerThread+134(gcthreads.c:797)@0xb7d89d67
    at thread_stub+146(lifecycle.c:808)@0xb7e2c333
    at start_thread+225(:0)@0x515832
    at __clone+93(:0)@0x46ae0e
    "(GC Worker Thread 2)" id=? idx=0x14 tid=9345 prio=5 alive, daemon
    at <unknown>(???.c)@0xb7fe9410
    at eventTimedWaitNoTransitionImpl+79(event.c:90)@0xb7d6bae0
    at eventTimedWaitNoTransition+62(event.c:72)@0xb7d6bb3f
    at eventWaitNoTransition+32(event.c:62)@0xb7d6bc31
    at mmGCWorkerThread+134(gcthreads.c:797)@0xb7d89d67
    at thread_stub+146(lifecycle.c:808)@0xb7e2c333
    at start_thread+225(:0)@0x515832
    at __clone+93(:0)@0x46ae0e
    "(Code Generation Thread 1)" id=4 idx=0x18 tid=9348 prio=5 alive, native_waiting, daemon
    at <unknown>(???.c)@0xb7fe9410
    at eventTimedWaitNoTransitionImpl+79(event.c:90)@0xb7d6bae0
    at syncWaitForSignalNoTransition+81(synchronization.c:28)@0xb7ee7c62
    at innerNativeDoWait+894(nativelock.c:614)@0xb7e78caf
    at nativeWait+71(nativelock.c:721)@0xb7e79008
    at cg_thread+380(compilerqueue.c:203)@0xb7d4be5d
    at thread_stub+146(lifecycle.c:808)@0xb7e2c333
    at start_thread+225(:0)@0x515832
    at __clone+93(:0)@0x46ae0e
    "(Code Optimization Thread 1)" id=5 idx=0x1c tid=9349 prio=5 alive, native_waiting, daemon
    at <unknown>(???.c)@0xb7fe9410
    at eventTimedWaitNoTransitionImpl+79(event.c:90)@0xb7d6bae0
    at syncWaitForSignalNoTransition+81(synchronization.c:28)@0xb7ee7c62
    at innerNativeDoWait+894(nativelock.c:614)@0xb7e78caf
    at nativeWait+71(nativelock.c:721)@0xb7e79008
    at cg_thread+380(compilerqueue.c:203)@0xb7d4be5d
    at thread_stub+146(lifecycle.c:808)@0xb7e2c333
    at start_thread+225(:0)@0x515832
    at __clone+93(:0)@0x46ae0e
    "(VM Periodic Task)" id=6 idx=0x20 tid=9350 prio=10 alive, native_blocked, daemon
    at <unknown>(???.c)@0xb7fe9410
    at block_for_safepoint+106(safepoint.c:34)@0xb7ebad5b
    at eventTimedWait+239(event.c:83)@0xb7d6bd30
    at periodic_task_thread+627(periodictask.c:367)@0xb7e90dd4
    at thread_stub+146(lifecycle.c:808)@0xb7e2c333
    at start_thread+225(:0)@0x515832
    at __clone+93(:0)@0x46ae0e
    "Finalizer" id=7 idx=0x24 tid=9351 prio=8 alive, native_waiting, daemon
    at <unknown>(???.c)@0xb7fe9410
    at eventTimedWaitNoTransitionImpl+79(event.c:90)@0xb7d6bae0
    at syncWaitForSignalNoTransition+81(synchronization.c:28)@0xb7ee7c62
    at innerNativeDoWait+894(nativelock.c:614)@0xb7e78caf
    at nativeWait+71(nativelock.c:721)@0xb7e79008
    at RJNI_jrockit_memory_Finalizer_waitForFinalizees+211(finalhandles.c:1007)@0xb7d751f4
    at jrockit/memory/Finalizer.waitForFinalizees(J[Ljava/lang/Object;)I(Native Method)
        at jrockit/memory/Finalizer.access$700(Finalizer.java:12)
        at jrockit/memory/Finalizer$4.run(Finalizer.java:189)
        at java/lang/Thread.run(Thread.java:662)
        at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
        -- end of trace
    "Reference Handler" id=8 idx=0x28 tid=9352 prio=10 alive, native_waiting, daemon
        at <unknown>(???.c)@0xb7fe9410
        at eventTimedWaitNoTransitionImpl+79(event.c:90)@0xb7d6bae0
        at syncWaitForSignalNoTransition+81(synchronization.c:28)@0xb7ee7c62
        at innerNativeDoWait+894(nativelock.c:614)@0xb7e78caf
        at nativeUnlockAndWait+71(nativelock.c:686)@0xb7e790a8
        at RJNI_java_lang_ref_Reference_waitForActivatedQueue+38(semiref.c:342)@0xb7ebd9b7
        at java/lang/ref/Reference.waitForActivatedQueue(J)Ljava/lang/ref/Reference;(Native Method)
        at java/lang/ref/Reference.access$100(Reference.java:11)
        at java/lang/ref/Reference$ReferenceHandler.run(Reference.java:82)
        at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
        -- end of trace
    "(Sensor Event Thread)" id=9 idx=0x2c tid=9353 prio=5 alive, native_blocked, daemon
        at <unknown>(???.c)@0xb7fe9410
        at eventTimedWaitNoTransitionImpl+79(event.c:90)@0xb7d6bae0
        at eventTimedWaitNoTransition+62(event.c:72)@0xb7d6bb3f
        at eventTimedWait+138(event.c:56)@0xb7d6bccb
        at eventWait+32(event.c:50)@0xb7d6bd81
        at sensor_event_loop+37(sensor.c:68)@0xb7ebfda6
        at thread_stub+146(lifecycle.c:808)@0xb7e2c333
        at start_thread+225(:0)@0x515832
        at __clone+93(:0)@0x46ae0e
    "VM JFR Buffer Thread" id=10 idx=0x30 tid=9354 prio=5 alive, in native, daemon
        at <unknown>(???.c)@0xb7fe9410
        at bufferthread+2135(vmjfr.c:1008)@0xb71744b8
        at run_agent_thread+128(jvmtithreads.c:524)@0xb7e1f361
        at thread_stub+146(lifecycle.c:808)@0xb7e2c333
        at start_thread+225(:0)@0x515832
        at __clone+93(:0)@0x46ae0e
    "Timer-0" id=13 idx=0x34 tid=9358 prio=5 alive, waiting, native_blocked, daemon
        -- Waiting for notification on: java/util/TaskQueue@0x9f9fc350[fat lock]
    at <unknown>(???.c)@0xb7fe9410
    at eventTimedWaitNoTransitionImpl+79(event.c:90)@0xb7d6bae0
    at syncWaitForSignalNoTransition+81(synchronization.c:28)@0xb7ee7c62
    at syncWaitForSignal+157(synchronization.c:85)@0xb7ee7dbe
    at syncWaitForJavaSignal+53(synchronization.c:93)@0xb7ee7ea6
    at RJNI_jrockit_vm_Threads_waitForNotifySignal+53(rnithreads.c:72)@0xb7eb78a6
    at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
    at java/lang/Object.wait(J)V(Native Method)
    at java/lang/Object.wait(Object.java:485)
    at java/util/TimerThread.mainLoop(Timer.java:483)
    ^-- Lock released while waiting: java/util/TaskQueue@0x9f9fc350[fat lock]
    at java/util/TimerThread.run(Timer.java:462)
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    -- end of trace
    "Timer-1" id=14 idx=0x38 tid=9363 prio=5 alive, waiting, native_blocked, daemon
    -- Waiting for notification on: java/util/TaskQueue@0xa20ee240[fat lock]
    at <unknown>(???.c)@0xb7fe9410
    at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
    at java/lang/Object.wait(J)V(Native Method)
    at java/util/TimerThread.mainLoop(Timer.java:509)
    ^-- Lock released while waiting: java/util/TaskQueue@0xa20ee240[fat lock]
    at java/util/TimerThread.run(Timer.java:462)
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    -- end of trace
    "[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'" id=15 idx=0x3c tid=9364 prio=5 alive, waiting, native_blocked, daemon
    -- Waiting for notification on: netscape/ldap/LDAPResponseListener@0x9724f0c8[fat lock]
    at <unknown>(???.c)@0xb7fe9410
    at eventTimedWaitNoTransitionImpl+79(event.c:90)@0xb7d6bae0
    at syncWaitForSignalNoTransition+81(synchronization.c:28)@0xb7ee7c62
    at syncWaitForSignal+157(synchronization.c:85)@0xb7ee7dbe
    at syncWaitForJavaSignal+53(synchronization.c:93)@0xb7ee7ea6
    at RJNI_jrockit_vm_Threads_waitForNotifySignal+53(rnithreads.c:72)@0xb7eb78a6
    at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
    at java/lang/Object.wait(J)V(Native Method)
    at java/lang/Object.wait(Object.java:485)
    at netscape/ldap/LDAPMessageQueue.waitForMessage(LDAPMessageQueue.java:200)
    ^-- Lock released while waiting: netscape/ldap/LDAPResponseListener@0x9724f0c8[recursive]
    at netscape/ldap/LDAPMessageQueue.waitFirstMessage(LDAPMessageQueue.java:101)
    ^-- Lock released while waiting: netscape/ldap/LDAPResponseListener@0x9724f0c8[fat lock]
    at netscape/ldap/LDAPConnection.sendRequest(LDAPConnection.java:1796)
    ^-- Holding lock: netscape/ldap/LDAPConnection@0x9721f310[biased lock]
    at netscape/ldap/LDAPConnection.simpleBind(LDAPConnection.java:1763)
    at netscape/ldap/LDAPConnection.authenticate(LDAPConnection.java:1264)
    at netscape/ldap/LDAPConnection.authenticate(LDAPConnection.java:1273)
    at netscape/ldap/LDAPConnection.bind(LDAPConnection.java:1562)
    at weblogic/security/providers/authentication/LDAPAtnDelegate$LDAPFactory.newInstance(LDAPAtnDelegate.java:4134)
    at weblogic/security/utils/Pool.newInstance(Pool.java:37)
    at weblogic/security/utils/Pool.getInstance(Pool.java:33)
    at weblogic/security/providers/authentication/LDAPAtnDelegate.getConnection(LDAPAtnDelegate.java:3478)
    at weblogic/security/providers/authentication/LDAPAtnDelegate.getConnection(LDAPAtnDelegate.java:3470)
    at weblogic/security/providers/authentication/LDAPAtnDelegate.authenticate(LDAPAtnDelegate.java:3522)
    at weblogic/security/providers/authentication/LDAPAtnLoginModuleImpl.login(LDAPAtnLoginModuleImpl.java:227)
    at com/bea/common/security/internal/service/LoginModuleWrapper$1.run(LoginModuleWrapper.java:110)
    at jrockit/vm/AccessController.doPrivileged(AccessController.java:254)
    at jrockit/vm/AccessController.doPrivileged(AccessController.java:268)
    at com/bea/common/security/internal/service/LoginModuleWrapper.login(LoginModuleWrapper.java:106)
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    at jrockit/vm/Reflect.invokeMethod(Ljava/lang/Object;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun/reflect/DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java/lang/reflect/Method.invoke(Method.java:597)
        at javax/security/auth/login/LoginContext.invoke(LoginContext.java:769)
        at javax/security/auth/login/LoginContext.access$000(LoginContext.java:186)
        at javax/security/auth/login/LoginContext$4.run(LoginContext.java:683)
        at jrockit/vm/AccessController.doPrivileged(AccessController.java:254)
        at jrockit/vm/AccessController.doPrivileged(AccessController.java:268)
        at javax/security/auth/login/LoginContext.invokePriv(LoginContext.java:680)
        at javax/security/auth/login/LoginContext.login(LoginContext.java:579)
        at com/bea/common/security/internal/service/JAASLoginServiceImpl.login(JAASLoginServiceImpl.java:113)
        at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
        at jrockit/vm/Reflect.invokeMethod(Ljava/lang/Object;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun/reflect/DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java/lang/reflect/Method.invoke(Method.java:597)
        at com/bea/common/security/internal/utils/Delegator$ProxyInvocationHandler.invoke(Delegator.java:57)
        at $Proxy28.login(Ljava/lang/String;Ljavax/security/auth/callback/CallbackHandler;Lweblogic/security/service/ContextHandler;)Lcom/bea/common/security/service/Identity;(Unknown Source)
        at weblogic/security/service/internal/WLSJAASLoginServiceImpl$ServiceImpl.login(WLSJAASLoginServiceImpl.java:89)
        at com/bea/common/security/internal/service/JAASAuthenticationServiceImpl.authenticate(JAASAuthenticationServiceImpl.java:82)
        at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
        at jrockit/vm/Reflect.invokeMethod(Ljava/lang/Object;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun/reflect/DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java/lang/reflect/Method.invoke(Method.java:597)
        at com/bea/common/security/internal/utils/Delegator$ProxyInvocationHandler.invoke(Delegator.java:57)
        at $Proxy46.authenticate(Ljavax/security/auth/callback/CallbackHandler;Lweblogic/security/service/ContextHandler;)Lcom/bea/common/security/service/Identity;(Unknown Source)
        at weblogic/security/service/WLSJAASAuthenticationServiceWrapper.authenticate(WLSJAASAuthenticationServiceWrapper.java:40)
        at weblogic/security/service/PrincipalAuthenticator.authenticate(PrincipalAuthenticator.java:348)
        at weblogic/security/service/CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:929)
        at weblogic/security/service/CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1050)
        at weblogic/security/service/SecurityServiceManager.initialize(SecurityServiceManager.java:873)
        at weblogic/security/SecurityService.start(SecurityService.java:141)
        at weblogic/t3/srvr/SubsystemRequest.run(SubsystemRequest.java:64)
        at weblogic/work/ExecuteThread.execute(ExecuteThread.java:207)
        at weblogic/work/ExecuteThread.run(ExecuteThread.java:176)
        at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
        -- end of trace
    "JFR request timer" id=16 idx=0x40 tid=9365 prio=5 alive, waiting, native_blocked, daemon
        -- Waiting for notification on: java/util/TaskQueue@0xa2049280[fat lock]
    at <unknown>(???.c)@0xb7fe9410
    at eventTimedWaitNoTransitionImpl+79(event.c:90)@0xb7d6bae0
    at syncWaitForSignalNoTransition+81(synchronization.c:28)@0xb7ee7c62
    at syncWaitForSignal+157(synchronization.c:85)@0xb7ee7dbe
    at syncWaitForJavaSignal+53(synchronization.c:93)@0xb7ee7ea6
    at RJNI_jrockit_vm_Threads_waitForNotifySignal+53(rnithreads.c:72)@0xb7eb78a6
    at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
    at java/lang/Object.wait(J)V(Native Method)
    at java/lang/Object.wait(Object.java:485)
    at java/util/TimerThread.mainLoop(Timer.java:483)
    ^-- Lock released while waiting: java/util/TaskQueue@0xa2049280[fat lock]
    at java/util/TimerThread.run(Timer.java:462)
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    -- end of trace
    "weblogic.time.TimeEventGenerator" id=18 idx=0x44 tid=9366 prio=9 alive, waiting, native_blocked, daemon
    -- Waiting for notification on: weblogic/time/common/internal/TimeTable@0xa2089c70[fat lock]
    at <unknown>(???.c)@0xb7fe9410
    at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
    at java/lang/Object.wait(J)V(Native Method)
    at weblogic/time/common/internal/TimeTable.snooze(TimeTable.java:286)
    ^-- Lock released while waiting: weblogic/time/common/internal/TimeTable@0xa2089c70[fat lock]
    at weblogic/time/common/internal/TimeEventGenerator.run(TimeEventGenerator.java:117)
    at java/lang/Thread.run(Thread.java:662)
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    -- end of trace
    "JMAPI event thread" id=19 idx=0x48 tid=9367 prio=5 alive, in native, daemon
    at <unknown>(???.c)@0xb7fe9410
    at eventTimedWaitNoTransitionImpl+79(event.c:90)@0xb7d6bae0
    at syncWaitForSignalNoTransition+81(synchronization.c:28)@0xb7ee7c62
    at innerNativeDoWait+526(nativelock.c:614)@0xb7e78b3f
    at nlMonitorWaitInner+79(nativelock.c:1112)@0xb7e78df0
    at nlMonitorWaitNoTransition+38(nativelock.c:1132)@0xb7e78e47
    at nativeRawMonitorWait+78(rawmonitor.c:161)@0xb7ea8caf
    at jvmti_RawMonitorWait+111(jvmtirawmonitors.c:95)@0xb7e1b420
    at threadProc+291(jmapi.c:305)@0x90452bd4
    at run_agent_thread+128(jvmtithreads.c:524)@0xb7e1f361
    at thread_stub+146(lifecycle.c:808)@0xb7e2c333
    at start_thread+225(:0)@0x515832
    at __clone+93(:0)@0x46ae0e
    "weblogic.timers.TimerThread" id=20 idx=0x4c tid=9368 prio=9 alive, waiting, native_blocked, daemon
    -- Waiting for notification on: weblogic/timers/internal/TimerThread@0xa203dbf0[fat lock]
    at <unknown>(???.c)@0xb7fe9410
    at jrockit/vm/Threads.waitForNotifySignal(JLjava/lang/Object;)Z(Native Method)
    at java/lang/Object.wait(J)V(Native Method)
    at weblogic/timers/internal/TimerThread$Thread.run(TimerThread.java:262)
    ^-- Lock released while waiting: weblogic/timers/internal/TimerThread@0xa203dbf0[fat lock]
    at jrockit/vm/RNI.c2java(IIIII)V(Native Method)
    -- end of trace

  • IFS Server and Weblogic Server compatibility.

    We are planning to host IFS Server on one Machine and Weblogic Server on another machine. Can we access IFS Server from Weblogic Server, which resides in another machine?
    Presently we have installed Oracle IFS along with apache and we are comfortable running our programs developed using the IFS Java API, JSP and Java Beans.
    Please let us know whether it is possible for the same, where Oracle IFS is installed in another machine and Weblogic is installed in another machine.
    Best Regards
    Sujeem Haries

    It's not advisable, the general advice is to try to keep the SharePoint servers as clean as possible for both stability and security.
    Having said that it is possible to install the Office suite on a SharPoint server and there are no massive gotchas i'm aware of. It is also worth noting that MS do not support automated (unattended) use of office applications.
    http://support.microsoft.com/kb/257757/en-gb

  • E2100L Cisco Connect and Network Magic compatibility issues with Mac OS X 10.7 Lion

     When you will release the latest version for Wireless router Linksys E2100L?, because I bought a MAC with Lion and I can´t use my Router.
    Regards,
    Daniel

    Older versions of Cisco Connect for Mac computers have compatibility issues with the latest release of Mac OS X (10.7 “Lion”). Only Cisco Connect versions 1.4.11222 and newer are compatible with the Lion operating system.
    Here is the link to ensure that Cisco Connect can be installed on your Mac: http://www6.nohold.net/Cisco2/ukp.aspx?vw=1&docid=a4e763be954243cfa0ab960c0fac7105_KB_23xxx_EN_v1.xm...
    There is no such information about the release of Cisco Connect for E2100L for the Mac OS X (10.7 “Lion”) compatibility, so you need to wait for further release of the firmrware for E2100L. 

  • Premiere CS6 and CC: any compatibility issues working back and forth between both versions?

    Hello,
    What are the compatibility issues with Premiere CS6 and CC versions?  Can the user go back and forth?  I run a computer lab at a college and we will be upgrading to CC but many students will still be using the older CS6 version of Premiere until we update all the computers....  Will students run into problems?
    Thanks,
    dmichael

    My concern is going back and forth between the versions...  I read somewhere there are compatibility issues with Premiere....Can the user working in CC go back to premiere CS6? and vice versa?
    Thanks,
    dmichael

  • Uml  and client server programming

    I m developing chat messenger. i am finding difficult to apply uml on this type of software (client server).can any one give me sample documentation or tutorials

    UML can express and communicate your
    ideas for sure, but it's not where to start with the
    high level architecture unless you have an idea about
    how to achieve it.
    Once you have an idea of how it should work, then the
    activity diagrams/sequence diagrams/collaboration
    diagrams will just drop out of you and into the model.Actually, UML usually is the first place to start. Specifically, the Use Case diagram is often the starting point in designing a system. The first iteration of these diagrams will be very rough for sure, but what better way to begin discovering the functionality of a system than to (at a very high level) determine who's gonna use the system and how they are going to use the system.
    A common practice is to get a sheet of paper and draw a line down the middle (making two column). Label them actors (left colum) and processes (right column). Starting with the right column, list (again, at a very hight level) the thins that your system should do. Repeat this for the left column, this time thinking of the "types" of users that will use the processes you've just listed. Then you draw lines from the actors to the processes and this is the begining of your use cases. The next steps is to start storyboarding the use cases. This forces you to think of what each process does in in a little more detail. From there, you will begin to see common behavior and even new use cases. It takes a few iterations to fully discover and realize use cases, but you start with the 10,000' view of it this way.
    For example (and this is just an example):
    actors               processes
    System               Post a message
    Authenticated User   Read a message
    Anonymous User       Delete a message thread
    Administrator        Login
                         Logout
                         Register
                         Update Profile
                         Generate Audit EntryWhen you draw the lines from actors to processes in the above example, you'll note some the following:
    1. System can Generate Audit Entry
    2. Authenticated User can Post a message, Read a message, Logout and Update Profile
    3. Anonymous User can Reade a message, Login and Register
    4. Administrator can Post a message, Read a message, Delete a message thread, Logout and Update Profile
    Again, this is just an example. You should see that it give you a bird's eye view of the services to be provided by your system and who can use those services. When you begin realizing your use cases (the processes in the above example), you will begin to see behavior that is common to many services. These behaviors are what will begin helping you to eventually make architecture level decisions.

  • Headstart and Client/Server (C/S)

    Hi 'Generators',
    I have a question related to running Headstart generated Forms within a C/S environment. Is it possible to get a stable C/S environment?
    I have checked the Headstart installation manual and there is a chapter "Using Headstart 6.5 in a Client/Server Environment". I have implemented the changes to the object library (where can i find "progress_indicator.amount" by the way???) but the forms are still not very stable in the client server mode. When i run the form in Oracle forms developer standalone there are no problems. When i run the form from the start form it crashes almost immediately. HEEEEEEEEEEEEEEEEEELLLLLUUUPPPPPP!!!!! Have i missed an undocumented change to the object library????
    If somebody was able to create a stable C/S environment!!! Please let me know!!!!
    Gr.
    Louk

    Hi Lauri,
    First of all, thanks for your information and your e-mail.
    This is what i have tried at the beginning of this week. To see if text "automatic" was still in my forms i converted my forms from FMB to FMT format and did a search and replace on "automatic". For every text "automatic" found i have changed it to some kind of default color and then converted the forms back to FMB and then i have tried them to run again. The forms still crash. The strange thing is that they run correct within the FORM builder as stand-alone forms (open form in forms builder and then hit the traffic light to run the form). When i run them within the main form (start-form with menu's to call my forms) things start to go wrong. What is the difference? Is there something i forget? Can you tell me if there is someone out there who was able to get a stable environment at all?
    Our plan to run the forms in a C/S environment using Citrix seems to be over when it is not possible to get it stable. We have to use the WEBFORMS environment instead and this means we have to invest in the Forms Server. Or are there other alternatives?
    Gr.
    Louk

Maybe you are looking for