JBOSS startup slower when launched with JAVASERVICE

Hello,
We noticed that Jboss 3.2.3 is twice slower when started with javaservice than started from a dos console.
Does anyone had the same issue ?
Any hint ?
Reagrds,
R�mi

Use this : http://wrapper.tanukisoftware.org/doc/english/introduction.html instead of javaservice ;-)
R�mi

Similar Messages

  • InDesign CC 2014 is very very slow when working with a table.

    InDesign CC 2014 is very very slow when working with a table. Every 1/2 - 1 hour it nearly falls back, impossible to work with. While this project must be finshed quite soon..
    What the hell is the matter with this Creative Cloud. I havea very fast iMac form 2014. I closed all other programmes, even cannot listen to music now. More people with this problem??
    Martien

    @Martien – How complex is your table?
    How many cells? Merged ones as well?
    Complex formatting of texts inside the cells?
    Complex formatting rules of table rows and/or columns?
    Many images inserted?
    If yes, and the table is running through many text frames of many pages, I fear, you can do nothing against slowness.
    Nothing but: Greek text, not showing the page contents in the Pages Panel, in short: anything you can do to get better performance in redrawing of the screen.
    If you have the chance to break up one big table in several parts, do that and edit its parts one after another isolated. Pehaps in different documents.
    Then merge the parts in one table, if you want to flow it from page to page.
    Uwe

  • Vmware Horizon 3.3.0 - slow when launched from a VM (WS2008 R2) - any solutions ?

    Hi guys,
    We have a VMware Horizon setup that works quite well when accessed from our laptops.
    However, for a number of reasons we also need this environment accessed from a Windows Server 2008 R2 machine that resides as a VM on a hypervisor.
    But the problem is it is very very slow when launched like this (you can feel the mouse cursor lagging or whenever you open a window on the published Vmware View machine). I will point out that the connection to the client VM (WS2008R2) is done through RDP.
    The questions I have since I've not been able to find out so far are:
    1)     Is WS2008R2 x86-64 supported as a client ? Does installation of a VMware Horizon Client on it differ in any way than on a Windows 7 machine ?
    2)     Is the fact that it is virtualized the root cause of the slowness ? If yes, why is that and can I do something to fix it ?
    Thank you very much , I really appreciate your help.
    Jay.

    Ok, solved it myself
    It seems in the "Control Panel > Mouse Options > Pointers > Scheme" the "Windows Aero - System Scheme" was selected. The second I set that to None, the mouse cursor started behaving and it's moving normally.
    Jay.

  • LTFS is slow when dealing with many files

    Working with LTFS on Windows 7 64, I find find that it slows down significantly when dealing with many files (>1500)
    From the behaviour, I suspect that it has to do with the number of file handles.
    Some LTFS vendors have a copy utility that deals very well with this situation.
    I could not find anything like that for HP.
    Does it exist? Is there an open source solution?
    Thank you,
    - Bartels

    Can someone from the Experts please respond?
    Your LTFS solution is in certain situations much slower than the competitors; the difference is a huge factor three..
    I would really like to know if there is a solution or not. Either way.
    - Bartels

  • Premiere Pro 2.0 slows when dealing with larger video files

    I'm having issues with Premiere Pro 2.0 slowing to a crawl and taking 60-90 seconds to come back to life when dealing with larger .avi's (8+ mins). When I try to play a clip on the timeline, drag the slider over said clip, or play from a title into said clip on the timeline, Premiere hangs. The clips on question are all rendered, and the peak file has been generated for each different clip has well. This is a new problem; the last time I was working with a larger clip (45+ mins, captured from a Hi-8 cam), I had no problems. Now, I experience this slow down with all longer clips, although I've only dealt with footage captured from a Hi-8 cam and also a mini-DV cam. This problem has made Premiere nearly unusable. I'm desperate at this point.
    System:
    CPU: P4 HT 2.4ghz
    Ram: 2x 1gb DDR
    Video: ATI Radeon 9000 Series
    Scratch Disk: 250gb WD My Book - USB 2.0 (I suspect this might be part of the problem)
    OS: XP Pro SP2
    I'm not on my machine right now, and I can definitely provide more information if needed.
    Thanks in advance.

    Aside from some other issues, I found that USB was just not suited for editing to/from, and on a much faster machine, that you list.
    FW-400 was only slightly better. It took FW-800, before I could actually use the externals for anything more than storage, i.e. no editing, just archiving.
    eSATA would be even better/faster.
    Please see Harm's ARTICLES on hardware, before you begin investing.
    Good luck,
    Hunt
    [Edit] Oops, I see that Harm DID link to his articles. Missed that. Still, it is worth mentioning again.
    Also, as an aside, PrPro 2.0 has no problem on my workstation when working with several 2 hour DV-AVI's, even when these are edited to/from FW-800 externals.
    Message was edited by: the_wine_snob - [Edit]

  • Why is the Tick Count function slow when used with a .dll but fine with normal lab view code?

    when using the Tick Count millisecond timer with a .dll I've written in C, I'm getting some odd timing issues.
    When I code the function I want (I'll explain it below in case it helps) in LV and run it as a subVI, feeding it the Tick count as an argument, the function runs quickly, but not quite as quickly as I would like. When I feed this same subVI just an integer constant rather than the Tick Count, it takes about the same amount of time, maybe a tiny bit more on average.
    When I bring in my function from a .dll, however, I start to run into problems. When I feed my function an integer constant, it is much faster than my subVI written in LV. When I feel my .dll the Tick Count, however, it slows down tremendously. I'm including a table with the times below:
                 |  Clock   |   Constant   |
    SubVi:   | 450ms  |  465ms       |
    .dll         | 4900ms|  75ms         |
    This is running the function 100,000 times. The function basically shifts the contents of a 2-dimensional array one place. For this function, it probably won't be a huge deal for me, but I plan on moving some of my other code out of LV and into C to speed it up, so I'd really like to figure this out.
    Thanks,
    Aaron

    Hi Aaron,
    Thanks for posting the code -- that made things a lot clearer for me. I believe I know what's going on here, and the good news is that it's easy to correct! (You shouldn't apologize for this though, as even an experienced LabVIEW programmer could run into a similar situation.) Let me explain...
    When you set your Call Library Function Node to run in the UI Thread you're telling LabVIEW that your DLL is not Thread-safe -- this means that under no circumstances should the DLL be called from more than one place at a time. Since LabVIEW itself is inherently multithreaded the way to work with a "thread-unsafe" DLL is to run it in a dedicated thread -- in this case, the UI thread. This safety comes at a price, however, as your program will have to constantly thread-swap to call the DLL and then execute block diagram code. This thread-swapping can come with a performance hit, which is what you're seeing in your application.
    The reason your "MSTick fine behavior.vi" works is that it isn't swapping threads with each iteration of the for loop -- same with the "MSTick bad behavior.vi" without the Tick Count function. When you introduce the Tick Count Function in the for loop, LabVIEW now has to swap threads every single iteration -- this is where your performance issues originate. In fact, you could reproduce the same behavior with any function (not just TIck Count) or any DLL. You could even make your "MSTick fine behavior.vi" misbehave by placing a control property node in the for loop. (Property nodes are also executed in the UI thread).
    So what's the solution? If your DLL is thread-safe, configure the call library function node to be "reentrant." You should see a pretty drastic reduction in the amount of time it takes your code to execute. In general, you can tell if your DLL is thread-safe when:
    The code is thread safe when it does not store any global data, such as global variables, files on disk, and so on.
    The code is thread safe when it does not access any hardware. In other words, the code does not contain register-level programming.
    The code is thread safe when it does not make any calls to any functions, shared libraries, or drivers that are not thread safe.
    The code is thread safe when it uses semaphores or mutexes to protect access to global resources.
    The code is thread safe when it is called by only one non-reentrant VI.
    There are also a few documents on the website that you may want to take a look at, if you want some more details on this:
    Configuring the Call Library Function Node
    An Overview of Accessing DLLs or Shared Libraries from LabVIEW
    VI Execution Speed
    I hope this helps clear-up some confusion -- best of luck with your application!
    Charlie S.
    Visit ni.com/gettingstarted for step-by-step help in setting up your system

  • Hidden tools slow when selected with tablet pen

    I'm running Indesign CS3 on Windows Vista. The hidden tools in the toolbox are painfully slow to expand when I use my Wacom Graphire pen. They work fine with my mouse but take about 5 seconds to expand when I click with my tablet. The mouse is not sitting near the tablet and I haven't had this problem in Illustrator, only Indesign.

    One other tidbit; the "busy" spinning circle always appears when I hold down the mouse over the tool before the tools finally do pop out. I've tried turning off Vista's Aero theme, disabling the visual effects in the Indesign properties, and selecting "none" for the pointer scheme in the control panel/mouse.
    I've heard of others experiencing problems with aero and CS3 but I can't seem to get rid of that spinning circle in Indesign.

  • Mounting network drive failing when launched with "crontab"...

    Greetings!
    Here's my problem:
    I have a cron job (domain user) that launch a perl script.
    Somewhere in the script, I mount a network drive like this: "/sbin/mount_smbfs //user:pw@machine/path"
    I get the following error: mount_smbfs: server connection failed: broken pipe.
    -If I ssh to the mac, manually execute the Perl script, no problem, the drive is mounted and I am happy. But it constantly fails if I am not logged in.
    As a workaround, I tried to make my user automatically logged in when the Mac restart. But what do you know? Not working with my (domain) user. But it works fine with any other local users.
    Any ideas?

    Post to the Unix forum under OS X Technologies.

  • Yellow flashing on my transparent frame when launched with WebStart

    Hello,
    I am building a mind-map making program, and my app's frame is transparent with two black rectangles on it. When I launch the app through WebStart it blinks yellow on-and-off on my frame for about 3 sec after the frame appears. How can I get rid of this yellow blinking at start-up? Also, when the frame appears a little caution sign is in the top right corner of the frame. Although the yellow blinking quits, this little caution sign still stays. Is there any way to removing the initial yellow blinking and the caution sign? These two "things" really destroy the slick effect I am trying to create with a transparent frame, especially that stupid sign. This happens on both Windows XP and Vista
    Thanks for any help!
    Vance

    If you live near an Apple Store, make a Genius Bar appointment to have the computer tested. Supposedly there is no charge for testing. Use 2nd link if not near an Apple Store or aren’t in the US.
    Genius Bar Reservation US
    Authorized Service Provider

  • Motion 3 running slow when working with photos

    Hi all i am  new to posting question on this the forum so be nice.
    i have being using motion 3 to create a wedding video intro . i previously  create the background in motion and exported as a  pro res file. the background   has a camera dollying over a table and then zooms in to  a photo album on the table . i then imported the   background back intto motion as a new project, i am now  trying to create the effect of photos falling down on to the open photo album. Motion  was working fine until i got to the 12 photo. when i put in the next photo, motion start to slow down and is really slow to import the photos, playback is very slow as well. the photo in my project are jpeg and they size around  1.3 MB not massive fils.
    My question is, dose motion have a limitation on on the amour of photos it can work with in  a project.
    My setup is:
    2009 macbook pro
    2.8 intel core Duo
    8 Gb ram
    NVIDIA GeForce 9600M GT  Graphic card
    Mac OX 10.6.8
    Hope some one can help me on any tips on how to make my mac run more  efficiently when
    running  motion 3.

    As TVBeaumont said, lots going on. Also, take a look at render quality settings and see what difference on playback lowering those settings has. Disabling effects that aren't critical can also help playback.
    Good luck.
    Russ

  • Logic slow when working with video

    Hi there
    I'm trying to work with video in Logic 8 but it slows down pretty dramatically when I imported the video. Are there any settings I can tweak to get the action to run more smoothly. The playhead jumps very slowly around, it takes the video a few seconds to start to play after pressing play in Logic. The video file I'm using is a Quicktime Mp4, around 288 Mb in size. The details of my system are on the signature below. Any help is much appreciate it.
    Thanks - Gunnar

    Don't use mp4, this is most likely the cause of your problem, especially if the video codec of your file is H.264. Mp4 allows you to have better perceived video quality with a lower file size, but the tradeoff is that it makes your computer do a lot of work in real time to decode the video.. Thus the slowdown of logic.
    Try converting your video file to QuickTime DV, this is a much more performance-neutral format, your video file will be much bigger but it won't be making any huge demands on your system to play back.
    Also, if your movie is too long it can also cause slowdowns in your logic project. When working on feature length films, they are always divided into reels of around 25 minutes each which keeps things manageable. If your film is very long you should divide it up.

  • Gnome-terminal ignoring ssh keyring when launched with --maximize flag

    So I noticed something weird when I tried launching gnome-terminal with the --maximize flag my keyring for my  ssh rsa key stopped working. It would ask for the password, and would still ask for it after I've entered it once. It works fine when I launch it without the option, but I don't see how the maximize flag could do this. Any ideas on why this is happening and how to fix it?

    hiushoz wrote:Again if only the google search results were
    a) relevant
    b) understandable
    then i wouldn't be on here.
    All I'm trying to do is get an answer to my question yes good no oh well. I understand moderating a forum is tough. Just pleae have some tolerance.
    @Cerales.
    Which of the two criteria do you not understand.
    @defears.
    Thanks for the advice. The thing is when I go
    exec ck-launch-session gnome-session
    the terminal briefly whines about not being able to open the display and logs me out. Even sudoing the same command doesn't change that.
    Furthermore
    ck-launch-session gnome-session
    nor
    gnome-session
    do the job.
    The funny thing is when I add to ~/.xinitrc the line you mentioned it launches. There's no annoying login terminal spouting error messages. Sadly they still exist in the output of tty1. Also some panel widgets like the network widget still aren't working but that I'll go about fixing separately.
    I'm just wondering what is wrong. Can someone please help.

  • IPad Air 2 very slow when charging with iPad Mini Charger

    I just realized that my iPad Air 2 gets unusably slow (lag when scrolling and typing) when I use the 10W charger of an 1st generation iPad Mini instead of the also 10W (sic!) charger included with my Air 2.
    Anyone else having this problem? What does lead to this problem?
    I've already resetted my Air 2, but it didn't change anything.

    Use the charger and cable that came with the device to charge it.
    The first gen iPad mini came with the 5 watt charger and not the 10 watt. The 10 watt chargers come with the mini Retina (now called the mini 2) and mini 3.
    ID your chargers here: https://www.apple.com/power-adapters/
    That being said about the charger wattage, I see no reason why the Air 2 would react in the way you describe. My Air 2 simply says "Not Charging" when I use a 5 watt charger with it (which I do not normally do) but does not react any differently as you describe.
    If at all possible, I would make a Genius Bar reservation at your nearby Apple Store and take the whole lot of devices, chargers and cables in to have them evaluated & to possibly get to the root of the problem. It may be that the mini's charger is defective in some way and causes the Air 2 to react the way it does. I really doubt it's due to the wattage difference.
    https://www.apple.com/retail/geniusbar/

  • X freezes when launched with second GPU

    Hey fellow Archers!
    I've got a workstation with an AMD FirePro V4900 card that has been running fine with catalyst-test from the AUR for months now. For my current project, I am doing some heavy-duty OpenCL computation, and thus decided to buy the beefier FirePro W5000 and use it as a dedicated OpenCL GPU while keeping the V4900 for running X.
    After installing the card and rebooting, X will unfortunately no longer start. It just freezes completely, and cannot be killed with ^C or ^\, not can I switch to another VT with Ctrl+Alt+F*. The only way out is to press the power button and wait for the kernel to forcibly terminate X as a part of the shutdown procedure.
    No amount of Googling has led me to a solution to this particular problem, and I've been unable to figure out what is causing this on my own, but here's what I've come up with so far:
      - The kernel seems to recognize both cards (lspci: https://jon.tsp.io/share/firepro/lspci.log)
      - The driver seems to recognize the chipset of both cards (Xorg: https://jon.tsp.io/share/firepro/Xorg.0.log)
      - vgaarb is complaining about PCI devices not being VGA devices, but from what I've read, these messages may just be X probing for graphics devices (boot: https://jon.tsp.io/share/firepro/boot.log)
      - X hangs when trying to open /dev/ati/card1 (strace: https://jon.tsp.io/share/firepro/Xorg.trace)
      - When running catalyst-test, `aticonfig --lsa` says "No supported adapters detected"
      - When running catalyst-firepro, `aticonfig --lsa` only lists the V4900
      - Manually adding a Device section in xorg.conf for 6:0:0 makes no difference
    I'm completely at a loss at how to fix this, so any and all help is very welcome!
    Last edited by Jonhoo (2014-04-29 17:39:25)

    Upon closer inspection, it appears the card may have been dead-on-arrival as not even the BIOS POST screen is visible when using only the W5000.
    Will report back once I've gotten my hands on a new card.

  • Startup error when launching premier pro cc 2014

    I am able to launch earlier versions of premiere pro on my mac, but newly downloaded premiere pro hangs at startup.

    Without knowing what Mac exactly nobody can say anything. Either way, ask in the Premiere forum.
    Mylenium

Maybe you are looking for

  • Is this a PSE9 problem or a LR4 problem?

    When I export an image from LR4 to Bridge for final retouching in PSE9 (as a 16-bit PSD file), the file doesn't show a thumbnail image on Bridge, only static. I can call it up, do editing and change it to 8-bit, but when I try to save it, I get this

  • Selecting from two tables and confirming from them despites they not relate

    Please I need a query to select from two tables that are not related to each other. I also want to confirm data's as in verify wether what the user has entered is in accordance with what is in the tables Examples the first table is named "Card" and t

  • Save text to pc with password

    Am i able to transfer text msgs from phone to computer and stop other people accessing them. I have windows xp and a nokia 6230i with pc software. i know how to save word docs etc with passwords, but not sure how nokia pc suite stores the info. how d

  • SRM PO to ECC not desired

    Hi, I am working on a scenario where the client is not desiring the SRM PO created on the  SRM Portal to be replicated (reflected) in ECC. ECC should not contain any SRM POs. Is this possible? If yes, how can this be done? On the other hand they just

  • Deleting the old Archive Log Files from the Hard Disk

    Hello All, I want to delete the old archive files of Oracle. These files are very old and consuming very huge disk space. Is there any way by which I can delete these files from the Hard Disk? Can I directly delete them using the Operating System Com