What JMX is in reality ?

Hi,
I'm working on a very complex software project design. For my project, a monitoring tool will be crucial ; that's why I'm trying to understand what JMX is. But, I did not find any document explaining what JMX is in reality.
I have three crucial questions :
1) What JMX is in reality ? Do someone know concrete and real situations where JMX has been used and How ?
2) What really is the difference between MBeans and EJBs ?
3) Could I use JMX wnhen in my architecture when there is 50% J2EE and 50% .NET ?
Thanks in advance for any helpful feedback.

1) What JMX is in reality ? JMX is a technology that lets you implement management interfaces for
Java application.
The Management Interface is composed of named objects - called MBeans
(Management Beans). MBeans are registered with a name in an MBeanServer.
The content of the MBeanServer can then be exposed through various
protocols, implemented by protocol connectors, or protocol adaptors.
A protocol connector (e.g. the JMX RMI Connector) exposes the MBeans
as they are - so a remote client sees the same model than a local client.
A protocol adaptor (e.g. an SNMP adaptor) performs (or provides hooks to
let you perform) a model mediation - to adapt the model to what a client
of that protocol (e.g. SNMP Manager) would expect to see.
Today there is one standard connector defined for JMX - which is the
RMI Connector, and comes in two flavors: RMI/JRMP and RMI/IIOP.
There's also a JMX WebServices Connector in the making - which is being
defined by JSR 262.
http://www.jcp.org/en/jsr/detail?id=262
https://ws-jmx-connector.dev.java.net
There are also a number of non-standard connectors, either free or commercial
that have been implemented by the community.
More on JMX:
http://blogs.sun.com/jmxetc/entry/looking_for_jmx_overview_examples
Do someone know concrete
and real situations where JMX has been used and How
?You will find more on tools/products using JMX on the JMX Home Page:
http://java.sun.com/products/JavaManagement/index.jsp
Among other things, JMX is used today to manage the JVM itself. It is also
widely used in the management of application servers.
See:
http://java.sun.com/j2se/1.5.0/docs/tooldocs/index.html#manage
http://java.sun.com/developer/technicalArticles/J2SE/jconsole.html
http://weblogs.java.net/blog/mandychung
Understanding JMX Technology
http://java.sun.com/developer/EJTechTips/2005/tt0222.html#1
Getting Started with Java Management Extensions (JMX): Developing Management and Monitoring Solutions
http://java.sun.com/developer/technicalArticles/J2SE/jmx.html
Managing and Monitoring Web Services in Project GlassFish
http://developers.sun.com/prodtech/appserver/reference/techart/ws_mgmt.html
Using Custom MBeans to Extend the GlassFish Administration System
http://java.sun.com/developer/EJTechTips/2006/tt0327.html#2
2) What really is the difference between MBeans and
EJBs ?An EJB lives in an Application Server container. It usually implement business
logic. An MBean lives in an MBeanServer, and usually implement management
logic (configuration, monitoring, etc)...
3) Could I use JMX wnhen in my architecture when
there is 50% J2EE and 50% .NET ?I am not a .NET user so I'm afraid I can't provide much advice here.
It may depends on the means you have to reach out for your .NET resources
from within your Java/JMX application. If you know how to get at your .NET
resources from Java, then it should be easy to expose them through JMX.
hope this helps,
-- daniel
JMX, SNMP, Java, etc...
http://blogs.sun.com/jmxetc
Thanks in advance for any helpful feedback.Message was edited by:
dfuchs: see also http://blogs.sun.com/jmxetc/entry/what_is_jmx

Similar Messages

  • Is this what JMX is for?

    I have been reading a little into JMX but I am not sure if it is what I am looking for. What I am looking to do is have a Server in my network and a set of clients running on different PC's within my network. I want to monitor things the client apps are doing and send the data off the my server which will do something with the collected data (ie write to file or DB).
    is JMX the right type of solution for something like this?

    JConsole is an example (perhaps the best known and most commonly used example) of a JMX Client that is capable of remotely accessing instrumented JMX MBeans hosted on a remote JMX server. You are correct that you'd essentially replace JConsole with your own client code for accessing these JMX MBeans. A thorough introduction to how to do this is available in the [JMX Tutorial|http://java.sun.com/javase/6/docs/technotes/guides/jmx/tutorial/tutorialTOC.html] under the section [JMX Connectors|http://java.sun.com/javase/6/docs/technotes/guides/jmx/tutorial/connectors.html#wp5529]. Wherever you see reference to an "RMI Client" or "JMX Client," you can think of it as being the same role JConsole plays but with your own code. A resource that I found particularly useful when learning about developing my own JMX Client is the [Java Tutorial - JMX: Remote Management|http://java.sun.com/docs/books/tutorial/jmx/remote/index.html] lesson. While the section [Creating a Custom JMX Client|http://java.sun.com/docs/books/tutorial/jmx/remote/custom.html] is what you're specifically looking for, I recommend reading the entire "Remote Management" lesson because it is fairly small, very straight-forward, and gives a complete picture. You'll likely want to download the associated code to get an overall picture of how it all goes together.

  • What is the mechanism behind processing credit card payment on net?

    Excuse my ignorance, i just completely dont have any knowledge about it. Here is what i thought: when a customer submit his/her credit card information on a e-commerce site, the site's server will make remote request to Bank's(?) server, which would verify the information user has provided, payment would be proceeded if those information is correct and sends message back to the e-commerce site's server. Or if the payment cant not be proceeded,the e-commerce site's server receives error message possibly saying the user's credit card info can not by verified. someone plz correct me if there are any mistake.
    So, how can i simulate this mechanism on a single pc? What i thought was i need to set up a db on mysql which simulates the bank's db, stores people's credit card info. For the e-commerce site i run on Tomcat, i may set up db connection(JDBC) to this db and verify user's credit card info. But i dont think this is how it works in reality, isn it? It would be possibly using java RMI(i am just guessing, havent digged into this area yet) to complete the task. So, if this is the case, can i simulate it on a single pc? Or do i have to phycially have two PCs, have both of them connected to my house's LAN, one runs e-commerce website on tomcat, the other runs mysql db server, then i can start simulating it by using java RMI? This is just something i've been wondering these day. As the uni's long holiday getting closer, i am thinking of giving myself a project gotta be something like this, so i would not get bored during the holidays. I really wish someone would explain me some ideas. Many many thanks...

    If you're asking if you can run the database server on
    the same machine as Tomcat, yes you can. (Although in
    a real e-commerce site, that would be less secure than
    having the database server behind a firewall.)
    yes, i am runing both mysql db and Tomcat on my pc. So, i am wondering that i could possibly set up two separate databases, one holds data for whatever e-commerce site i am going to build, and the other simulates the bank's database that stores peope's credit card information, which can be accessed by the e-commerce site's JSP pages thru RMI for the purpose of validating credit card information. On the other hand, honestly, i am even asking myself what's the point or purpose of doing it in such a way? In fact, this is one of my subjects' project, that we've been given much flexibility about the way we simulate/implement the interaction between e-commerce site and bank's database. The goal is just trying to make it as close to what's happening in reality as possible. I was thinking of just creating a table that holds users' credit card information and put it with other e-commerce's site db tables altogether. But that just sounds like too far away from how it is done in reality, doesnt it? That's why i came up with the above ideas, what still not sure if it's proper way of doing it. Jesus, i am missed....
    If you are asking how an e-commerce site really
    interacts with a bank for credit card validation, I
    have no idea. But you could simulate that with a
    database, although I'm pretty sure the real method
    doesn't involve JDBC or RMI or any Java-specific
    technology.so, does anyone have ideas about how it is implemented in real life?
    many many thanks...

  • Preflight color image resolution warning

    I've designed a book cover in ID CS3 for a client who wants to publish her book with Createspace.com. I've exported the file to pdf per Createspace's speciifcation. When doing a preflight in Acrobat 9, using a profile provided by Createspace, I get a warning that the graphics are less than 280 ppi ,specifcally 149 ppi which is about half of what they are in reality (ID preflight specifies that my two graphics are 300 x 300 ppi). Why am I getting this figure from Acrobat? Could it be that the Createspace profile expects a higher resolution than 300 ppi (although their file preparation instructions specify 300 ppi)?

    Hi guys,
    I offer the following approach to solve the problem:
    var myDoc = app.activeDocument;
    var myAllGraphics = myDoc.allGraphics;
    var myGraphic = myAllGraphics[0];
    var myLink = myGraphic.itemLink;
    var myLinkXmp = myLink.linkXmp;
    var myCreator = myLink.linkXmp.creator;
    if (myCreator.indexOf("Adobe Illustrator") != -1) {
        alert("The first link was created in Illustrator");
    else if (myCreator.indexOf("Adobe Photoshop") != -1) {
        try {
            var myXres = myGraphic.actualPpi[0];
            var myYres = myGraphic.actualPpi[1];
        catch(err) {
            if (err == "Error: A value is not available for this type of image.") {
                var myXres = myLinkXmp.getProperty("http://ns.adobe.com/tiff/1.0/", "tiff:XResolution");
                var myYres = myLinkXmp.getProperty("http://ns.adobe.com/tiff/1.0/", "tiff:YResolution");
        alert("Resolution of the first link:\nX: " + eval(myXres) + " ppi\nY: " + eval(myYres) + " ppi");
    Kasyan

  • LIghtRoom color problem vs PhotoShop CS2 on Nikon RAW

    I recently bought Adobe Lightroom and I was surprised to notice some huge color differences compared to PhotoShop CS2.
    Im using Nikon D80 and shooting RAW. I have calibrated semi-pro monitor.
    The same RAW file opens in LightRoom pretty well until you get the rendering preview. Once the preview is done, the picture becomes desaturated in red and blue and has a green cast especially in the shadows with much lower contrast. If I use Edit in PhotoShop option, the picture becomes even worse (even more desaturated and greenish) when opens in PhotoShop. If I open the same RAW in PhotoShop directly (using the NEF plug-in, not CameraRaw!) everything is just fine. The picture looks as opened in Nikon Picture Project or as I saw it when I took the picture.
    After doing some research, I think that my problem relates to the way that Adobe Camera RAW, Bridge and LightRoom open a Nikon sRGB 4.0.0.3001 (D80) raw file. However, all the things being equal, PhotoShop CS2 (using the NEF plug-in) renders the same colors as Picture Project does (and what I saw on my camera and in reality). I also noticed that choosing sRGB in Camera Raw bring the things closer to the Picture Project colors but far from identical. Anyways, there is no way to change anything in LightRoom, outer than manually twicking all colors until I think it looks good. Which, I think Is very subjective and is different for every picture.
    Right now, my Creative Suite Color Settings is North America General Purpose 2 (synchronized for all CS applications) and no application asks me anything about changing the color profile when opening the file. I shoot (with D80) in raw, Normal camera mode (no saturation / contrast, color profile change). I opened the same file in all mentionned applications (LightRoom, CameraRaw from Bridge, PhotoShop and Picture Project) and save them as .jpeg (same size, dpi, etc.) without changing anything (no camera calibration in ACR or LR; no printer profile in PhotoShop). I sent the .jpegs to my local Costco and printed them on glossy paper. All of them printed the same way that they look on the screen. LR, ACR - desaturated on red&blue, color cast on green and low contrast, while great vivid colors and contrast from PhotoShop and Picture Project. For me it looks pretty much as Adobe applications convert Nikon sRGB into a very unappealing Adobe sRGB (and way different from what I saw in reality). I know this is very subjective; some people may argue that Nikon profile is too reddish and oversaturated. But I find the whole story rather unusual. They all work in the sRGB space and there shouldn't be any differences. I've done lot of testing with color profiles and replacing the Camera Raw plugin file format (common files) with Nicon plugins and vice-versa. But still the same result.
    I create a User Profile in LightRoom and I get pretty decent colors now, but when I want to edit the file in PhotoShop (from LightRoom) I get the same green and desaturated version.
    What do you think?

    >Regarding LR, what I'm looking here is a "factory made" solution; something that can give consistent results in the initial conversion (like Nikon plugin for PhotoShop, for e.g.)
    The problem with that conversion is that you cannot change it. In lightroom you change the actual conversion parameters, which gives you far more leeway and allows for far better conversions in the end. Currently (this will change with Lightroom 2.0 apparently) the only recourse you have if you prefer Nikon's colors is to shoot jpeg, or run your NEFs through capture and create 16-bit tiffs. This is just the way it is. A hammer gives a different result than a screwdriver.
    >It's hard for me to believe that Adobe has invested so much energy and resources in color profiling but it's unable to get nearly close to the Nikon raw colors.
    Nikon's colors are far from colorimetrically correct which you can see in many tests. Here is an example for the D300: http://www.imaging-resource.com/PRODS/D300/D300IMATEST.HTM It is off in the deep reds, the saturated blues, and the Olive-like colors. Profiling the camera does not help you get close to Nikon's colors, but it will get you closer to the ideal colors. I doubt it has been Adobe's goal to get close to the in-camera rendering with Lightroom upto 1.4. They profile all the cameras and make some value judgments on what is more important. Skin tones vs saturated colors etc just like Nikon does.
    Regarding getting close to camera colors, there is a trick that you can do to get close to the camera jpeg that involves the ACR calibration scripts. You do need PS CS3 though.
    >I find rather strange that apparently there is no way to get professional conversion. This is defying the main purpose of Color Profiling, I think.
    Why is Nikon's conversion professional and Adobe's not? They are both just interpretations of the sensor data. Adobe's is actually colorimetrically more correct in many cases. Colorimetrically correct often means boring unfortunately. This has to do with the fact that our eyes are not color measurement devices but that we have brains interpreting the data. To get pleasing results, Color Profiling does not help as much as you'd like. My issue with the in-camera or Nikon software approach is that it locks you down creatively to the
    creative choices the Nikon folks made. Now, be aware that in the Lightroom 2.0 forum the Adobe folks have hinted at major changes to the rendering engine that will bring colors closer to the vendor rendering. How they will do this is unknown right now.

  • Rendering diagnostics not working in AIR 2.6

    I'm trying to move my pfi application over to AIR 2.6 and am experiencing a huge drop in frame rate.  I worked quite hard to make sure everything was cached with the GPU when working with pfi and found the rendering diagnostics to be invaluable in helping me nail down areas where the graphics weren't being cached properly.  I thought I would check to make sure that the graphics are still being cached in AIR 2.6 but when I built the application with the flag enabled, the rendering diagnostics didn't turn on.  The flag is CTTextureUploadTracking and is part of the application xml:
    <InfoAdditions>
    <![CDATA[
    <key>UIStatusBarStyle</key>
    <string>UIStatusBarStyleBlackOpaque</string>
    <key>UIRequiresPersistentWiFi</key>
    <string>NO</string>
    <key>UIDeviceFamily</key>
    <array>
    <string>1</string>
    <string>2</string>
    </array>
    <key>CTTextureUploadTracking</key>
    <true/>
    ]]>
    </InfoAdditions>
    I also tried adding the -renderingdiagnostics flag to the command line as indicated in http://download.macromedia.com/pub/labs/packagerforiphone/packagerforiphone_devguide.pdf but I get an error telling me that "The -renderingdiagnostics flag is no longer supported".  Does anyone know how to enable this now?

    If Adobe ever wants developers to properly utilize the GPU then a tool like rendering diagnostics needs to exist.  Flash has a terrible stigma of being a processor hog, slow and glitchy.  Flash doesn't need to be like this but lots and lots of sloppy coding have helped this become what people perceive as reality.  Even if 2.7 is leaps and bounds above 2.6, if no one can properly figure out how to keep data cached with the gpu then Flash apps will still be slow, battery hogs.  A visual troubleshooting tool for gpu caching problems is really essential.  If it hadn't been for that I would never have been able to figure out some of the bizarre quirks in caching.  For instance, if you have an opaque background in a Sprite and you add something to it as a child, the gpu will never be able to cache either of them correctly.  Why? I don't know, it doesn't make sense but the rendering diagnostics helped me find the problem quickly.  Please add this tool or something like it back in.  You're doing your devs a serious disservice and, consequently, helping push the idea that Flash is a technology that is no longer relevant.

  • CS6: cropping bitmaps in lower resolution, then applying to original bitmaps?

    Hi,
    as first step I have to crop over 1000 images (JPEGs) and saving the cropped areas as new JPGs (same filename, new directory).
    So I open e.g. 100 images of them -- each 5 MB -- in Photoshop, select the area to which I want to crop to image, switch to the next image and repeat these two steps. After that I crop the images, save and close them with an "Action" automatically.
    Question: is there a possibility NOT working with the original high-resolution bitmaps but with lower ones and afterwars let Photoshop (action, script, ...) apply my individual croppings/selections to the original files?
    Advantage: less memory needed (RAM) resulting in a better performance.
    At the moment, opened 100 images:
    Thanks!
    mtemp

    There is a  big difference between what you write and reality. Your way you have to wait for the 100 images documents you select to be open in Photoshop. Then manually make the crop,them  manually save out a the new image where you want it saved. Then  manually close the document. And you must manually do those three  manual steps 99 more time. For a total of 300 manual steps.
    With  the Image processor and action. You set the image processor dialog for the process and click OK, Then select the 100 crops areas by transforming the crop selection everything else is automated.
    Interactive means you control the crop selection the action just initiates the interactive selection process for you..  I often do this by recordings a selection of some aspect ratio. Then record transform selection rotating it 180. Followed by recording Image crop as the actions last step.  Then I  turn on the transform selection step dialog to make that step interactive. When the action is played you get to set the selection by manually transforming the selected  area. That will be the area cropped....
    The Image process processor Opens each image one at a time. The action sets up a selection which you transform for the crop. The action then crops the document. Then the script  saves out the new document and closes the original document and moves onto the next image document.
    All you do manually is make 100 transform everything else is automated. 100 manual operation rather then 300 manual operations
    Both ways 100 image documents are opened, 100 image are cropped,  100 image documents are saved and 100 image document are closed. .
    300 manual steps will take more time then  100 manual steps. Your write up left out 200 required manual steps. The save and closes operation required.

  • Monitoring, resource managing & logging application for desktop apps.

    Hi,
    I am newbie as far as health checking, monitoring applicartions are concerned.
    Actually we have several services written in java, & those services/apps. normally runs on differnet machines as a windows service.
    I have to write a monitoring & controlling application for all those services.
    The monitoring application can atleast
    1) Start stop the services(apps) remotely
    2) Check the health of all the services running on separate machines.(heart beat)
    3) log the details provided by those application so track down if any problem occurs.
    Which J2EE technology is usefull for htis, is JMX can used for standalone apps?
    -Thanks.
    Edited by: kashif10 on Feb 18, 2008 5:56 AM

    kashif10 wrote:
    HI jtahlborn,
    actually lets take an example.
    LIke I have a samle java console apploication which is running in lopp & printing some thing.
    Now I expose it using JMX by exposing the RMI service url.
    Now I can see that the application is running using the jconsole remotely.
    Now my task is to stop that application or start the application usng jcolsole or any JMX adapter UI.
    I can't find any builtin start(), stop() method.are you attempting to start/stop the entire jvm, or a "service" within the jvm? the former will be tricky (or impossible via java alone), whereas the latter is exactly what jmx is designed for.
    note, jboss actually accomplishes jvm restarts via jmx by running the jvm within a script which monitors the return code. a specific return code from the jvm will cause the script to loop and respawn the java process.
    As far as logging is concerned.
    I mean that the application running remotely send some log messsages to adapter which can be usefull to track where any request stuck. I think notification is the best way to do it.
    Or JMS can be useful.jms would probably be overkill for remote logging, but certainly doable. the complication with remote logging is that you probably want to internally buffer some amount of the logs (in case the remote service seems to be hanging), so that you can access some amount of historical information. if you just log through some simple messaging protocol, when you attach to the log, you will only get new messages. like i said, it's not necessarily a trivial thing to implement, so using a 3rd party solution is preferable. for an example of what i'm talking about, check out the jboss jmx appender (adapter for log4j). although i don't think this does any buffering, it can feed another table (the AlarmTable) which can be queried for the current system status.
    http://wiki.jboss.org/wiki/Wiki.jsp?page=JMXNotificationAppender

  • How can I setup Datalist's itemrenderers in Flash catalyst so Flex can use it as Skin ?

    Hello Everyone !
    I'm struggling with Flash Catalyst / Flex, as long as repeating google request in the objective to find an answer, but nothing so far...
    Here is the deal : i want to have a clear Workflow between Catalyst and Builder. Therefore, i have two separates projects : one is modified by catalyst only and contains all my application's skins and design. The other one is edited by Flex Builder and contains all the logic. But i run into a very annoying problem, when it comes to Datalist !
    I have an itemrenderer in a datalist that displays 3 information in 3 differents fields. Catalyst handles this good with it's conception time data panel. But, when you look at the source code, text properties of the created itemrenderer are binded to some stupide data object : {data.text1}, {data.text2}. That's great, but... In my Flex application, the real data object is more like data.name, data.firstname, data.score...
    Is there a way i can tell Catalyst to use some {data.name} for its binding, so when the project is imported into Flash i can use Catalyst's generated code as "Skin" instead of modifying the catalyst's generated code ? That would break the workflow making iterative work impossible ?
    Thanks in advance for information sharing or any solution to this...

    There is no ddns setup in the TC so how are you going to get your public IP??
    Port forwarding works ok.. give us a few screen shots of what you are doing..
    And of course you need to make sure the target IP has a static IP address.. preferably set on the TC itself.
    Overall though the Cisco router is probably better for this job.. just bridge the TC and use it as a backup device.. which is much closer to what it is in reality.

  • CS6 cropping

    How do I turn the crop tool back to what it was like in CS5? and please don't say go into classic mode as this is not the same, the new crop tool is absolutely HORRIBLE like mind bogglingly HORRIBLE I crop at my work all day and this is just ridculous. Please change it back my sanity demands it.
    "If it aint broke don't fix it" kind of pops into my head when thinking of this change.

    There is a  big difference between what you write and reality. Your way you have to wait for the 100 images documents you select to be open in Photoshop. Then manually make the crop,them  manually save out a the new image where you want it saved. Then  manually close the document. And you must manually do those three  manual steps 99 more time. For a total of 300 manual steps.
    With  the Image processor and action. You set the image processor dialog for the process and click OK, Then select the 100 crops areas by transforming the crop selection everything else is automated.
    Interactive means you control the crop selection the action just initiates the interactive selection process for you..  I often do this by recordings a selection of some aspect ratio. Then record transform selection rotating it 180. Followed by recording Image crop as the actions last step.  Then I  turn on the transform selection step dialog to make that step interactive. When the action is played you get to set the selection by manually transforming the selected  area. That will be the area cropped....
    The Image process processor Opens each image one at a time. The action sets up a selection which you transform for the crop. The action then crops the document. Then the script  saves out the new document and closes the original document and moves onto the next image document.
    All you do manually is make 100 transform everything else is automated. 100 manual operation rather then 300 manual operations
    Both ways 100 image documents are opened, 100 image are cropped,  100 image documents are saved and 100 image document are closed. .
    300 manual steps will take more time then  100 manual steps. Your write up left out 200 required manual steps. The save and closes operation required.

  • Insufficient resources error - Speedgrade - Premiere Pro dynamic link

    Morning all,
    I'm getting an error as follow:
    Insufficient Resources - GPU-enabled rendering disabled due to insufficient GPU recources. Relaunch SpeedGrade to re-enable GPU rendering.
    I've tried rebooting and I get the same problem. It means that this workflow between PP and SG are no longer viable. Is my system struggling with the volume of data?
    Media is from a Sony FS700 (AVCHD files) and 5dmk3 (h.264). I work using the dynamic link between PP and SG. I used SG to colour my rough edits from PP. Have used this technique for a long time and not had an issue. The only difference about this project is the volume of media is very high. I've shot around 250gb of data. This is broken up in the project into short timelines, edits etc and I'd assumed that the volume of media in the PP project wouldn't influence the dynamic link to SG connection but this is the only thing I can think of that's different about this project. Not knowing how the system processes that connection via dynamic link leads me to thing that SG is struggling to read such a big PP project but I might be wrong here. 
    Anyone got any ideas what causes this error and if there is anything I can do to rectify it?
    Ta,
    Alan
    My system is as follows:
    Windows i7 3770 3.4Ghz
    16GB RAM
    Nvidia GTX 680 Graphics card
    Editing from a Lacie RAID via usb 3 connection
    Latest version of Adobe creative cloud for PP and SG
    The error I'm getting...

    As dummergold notes, this has been an irritating problem for some, and a complete show-stopper for a select few lucky folks. I "caught" this on the initial release, and for a month, I couldn't work Direct Link at all. I could work Sg in a native mode (creating an Sg project) ... but then of course, you either have to get Sg to accept an EDL from PrPro (which can be tricky at times, smooth as silk others) or grade the footage then render/export to work in PrPro, or export a completed file from PrPro in a codec Sg takes, use the clip-detection feature in Sg, and grade then export. It's how "we" did it before, of course, but it's a PAIN now.
    So ... hopefully, in a couple days at most, after starting & stopping the thing a few times, maybe trying the alt/shift hold-down while starting thing to void the preferences file. A couple people had it stop on signing out & back into their CC account. Or maybe even using the Adobe CC Cleaner tool to uninstall both PrPro & Sg, then download & re-install. There's always the possibility of going back to 2014.1 BUT ... you have to do that with both PrPro & Sg, and if you use say Ae or Audition, them also ... and any project started in 2014.2 won't work in 2014.1.
    They showed off the new release at NAB, which is an amazing new tool ... literally ... and they think they've got this nailed down in that release so it will finally STOP happening. However, the date it goes public is anybody's guess. They demo'd last year at NAB, and it was sometime in June that 2014 "launched" publicly. Wish I could be more help, but yes ... do look back through that post above. Your machine is very much like mine except for the video card, and I would note ... even a hard-drive RAID via a USB3 connection isn't giving a great sustained throughput. eSATA would be near to double the sustained in/out, and Thunderbolt rather a bunch more than USB3. I'd suggest going to the Tweaker's Page and finding the stuff on disk in/out & types of connections tested and such.  Note, unlike the Theory of disk in/out & connection performance (manufacturers and MANY "knowledgeable" types), their data is from thousands of tests on real machines running specially designed sequences with logging programs "on" that check out what doth happen in reality.
    Tweaker's Page ...
    http://ppbm7.com/index.php/tweakers-page
    Neil

  • Experience Required for SAP SD Job in USA from India!!

    Hi All,
    I have started my SAP career in SAP SD as a trainee. I had always planned to go to USA. But for that u need a job offer in company in USA.
    I need to plan everything way before the time comes for me to search a job in USA.
    Details about myself first:
    Live in India.
    Fresh Passport- Never been to any other country... Dont pity me!!!
    BBA 2011
    MBA 2013
    One year of ERP experience as an end user of MS Navision (SD module)
    SAP SD...1 month.. most prob I would be working for Automotive industry.
    Money and location do not matter while looking for a job in USA
    Type of SAP company in USA does not matter.
    Will get certified by May 2015.
    Now I have the following questions:
    How much experience do we need to be good enough to secure a job?
    What kind of experience?
    Any special skill that could give me an edge?
    Is there a enough demand for SAP SD consultants there that they may be willing to sponsor foreign professionals?
      Really appreciate your help here. Thanks a ton in advance!!!

    Hello Ravi sir,
    I really admire you and your opinions. They are the foundation of what I am today, (Not kidding, I read so much that you have taught us)
    With all due respect, I would like to put forth my opinion on what is being perceived about me or for that matter, anyone desiring a similar goal.
    Working in USA is not the Pinnacle of life. Neither are the superbikes and Money. The term what I should have used is Financial Freedom. I have my personal likes and dis likes towards certain 'Material stuff' but that as well in not the pinnacle of life. It is a part of life. As a matter of fact, you cannot put one thing as a pinnacle of life. We should have a balance of all; work, family, friends , personal hobbies and personal development.
    If I have to have to work, I would love to be paid my worth, which is not happening in India, due to stiff competition. Earn good enough to pursue my hobbies of riding on a superbike is a way of living which I would like to pursue. This is not a suggestion I am giving to those who are reading.
    This being said, it shows that I do not care about SAP as a career, instead I am using it as a tool. So let me clear this out. I had other tempting options as well, which could have led me to a better financial freedom in or out of the country. I had an option to be as a Navision consultant way before I could have gotten a job in SAP. Realizing the fact that I have to work for 8 hours a day for the rest of my life, I would choose to do something that I like. I do like SAP. It's challenging but I like it. I would not strive any career if I don't like it.
    And I believe you are living in UK?
    I would, with all due respect, ask you to come to India and
    1. Work passionately.
    2. Learn on a daily basis
    3. Try to learn niche skills in your area
    4. Help others and try to mentor the juniors
    5. Next five years learning is the only way you live
    My intentions are not to doubt about your objectives of living there. I really respect the decision you took. I'm sure you would have your reasons which are very specific to your needs.
    Simply put:
    This goal is pushing me to work harder, staying focused, and achieving new things. If I get this, I will look for a new goal, and push myself even further. This might not make sense to everyone, but honestly I am doing what I believe would make my life better.
    I put this question up, just to understand the job market out there and how can I make what I like a reality. I'm sorry if this question sent a different signal out there all together.
    Ravi sir, I respect u a lot and will follow your advice. I will work hard for sure.
    Thanks for your attention on this thread.
    I hope it, any of my opinion did not offend you. If so, I would really like to apologies.
    I would really like to know your opinion on my thoughts and guide me, after knowing that I don't keep it as an ultimate goal, as to what would best be of value to my intent to go out.
    I would also like to share this beautiful post How to be successful in life ? which talks about what is success in life, and not only SAP. He just might have presented my opinion in a better manner.
    PS- I do workouts every morning just so that I stay fit. I really am serious about my fitness, but it doesn't make fitness the pinnacle of life.

  • Can Mocha Pro object removal be achieved with AE CC 2014?

    There's no doubt that Mocha Pro is a great program used in several major productions, but I was wondering, when it comes to object removal, can the same be done, even if it takes more time, with After Effects, and what tools in it would you use for that?

    Thank you Rick for your great insight into the process. I really like Mocha, but even $400 (when they offer the 50% discount again) is not money to spend lightly, at least for me, so I really appreciate your input.
    As for 3D trackers, recently I tested a few with the same footage, and the two that gave me the best results are the tracker in CC 2014, which solved really well a couple of takes that the others had trouble with, and the Blender tracker. I also tested Mocha Pro and The Foundry's Camera Tracker. I'm sure that if I spent more time with both of those I could probably get a good track as well, but the tracker Mocha gave me was messed up, and Mary told me most likely I would need to setup a lot of planes to make it work. I'll make sure to test that before my trial runs out.
    But what I don't see in any tracker, which to me is something so basic that I don't understand how it's not a feature in them, is the ability to manually position trackers in a 3D space. Let's say for example that you shot something in a place where you know exactly where the origin is, and where the tracking points are, meaning the exact distance between the origin and each tracking point. You even setup markers and you do it, if possible, in a way that signifies the X and Z axes. So when it comes to the camera tracker, you can tell it, OK, this point is the origin, tracker A is exactly 10 meters from the origin, tracker B is 15 meters, and so on. You can also tell it that tracker C and D, for example, are the X axis, and trackers D and E are the Z axis. If possible, you can also tell it that trackers F and G are the Y axis.
    So the tracker, knowing these things beforehand, can perform a much more accurate tracking and solving. The tracker in AE CC introduced the ability to set the origin, but other than that is very basic and the distances, when taken into a real 3D program, have nothing to do with the real distances in reality. The only one I tried that approximates to this feature is the Blender tracker, which allows to set a scale, and it gets close to what it is in reality, and it is the best tracker I've tried, because it offers a lot of manual features to fine tune. It also takes much longer to setup, but provides a lot of user control.
    But if any company could come up with a tracker like that, where you enter the distances manually, I'm sure it would be far more accurate than any other tracker. Is there any tracker like that in the market?

  • What are the capabilities of JMX

    I am a student in the final year and i want to know what are the capabilities (what can i do with it) of JMX.
    Some of my teachers are interested on this subject, but unfortunately this technology lacks massive documentation. Can you give me some examples of projects that can be created with JMX ? Maybe I can use JMX in this year project.

    The following resources provide useful information regarding Java Management Extensions.
    [JMX Technology Overview|http://java.sun.com/javase/6/docs/technotes/guides/jmx/overview/JMXoverviewTOC.html]: Includes sections "What is JMX Technology?" and "Why Use JMX Technology?"
    [Java Tutorial: JMX Trail|http://java.sun.com/docs/books/tutorial/jmx/index.html]
    [What is JMX?|http://blogs.sun.com/jmxetc/entry/what_is_jmx]
    [JMX Documentation|http://java.sun.com/javase/6/docs/technotes/guides/jmx/index.html]
    [Online JMX Resources|http://marxsoftware.blogspot.com/2008/03/online-jmx-resources.html]
    JMX can be used for many things, but an obvious strength is the ability it provides for Java-based applications to be monitored and managed by software external to the application being monitored and managed.

  • Monitoring JMX with What's Up Gold v11

    I'm not a Java developer but work with a lot of them (I am in IT, not dev). We use What's Up Gold to monitor our servers and applications. We would like to monitor our Java application with What's Up Gold. This includes monitoring Java and Tomcat.
    Any help would be appreciated!
    We've not been able to even get simple SNMP monitoring going. Would like something more like the JConsole within What's Up Gold.
    Thanks,
    Chris

    Hi,
    I am not too sure about how you could possibly plug any of this in "What's Up Gold" as I don't
    know this product, but the apache site has some doc about monitoring Tomcat with JMX, using
    a JMX ant task on the client side.
    http://tomcat.apache.org/tomcat-5.5-doc/monitoring.html
    I have also written some example to show how to get at the JVM information using java, or jruby..
    See:
    http://blogs.sun.com/jmxetc/entry/a_small_program_that_prints
    http://blogs.sun.com/jmxetc/entry/how_to_retrieve_jvm_information
    http://blogs.sun.com/jmxetc/entry/how_to_retrieve_remote_jvm
    Hope this helps,
    -- daniel
    http://blogs.sun.com/jmxetc

Maybe you are looking for

  • Excise Reg at Depot

    Hi all, We have Excise REg no for Plant. But plant does not have Excise reg no. Material is shipped to Depot with excise invoice. What is the procedure at depot for GR. Do i need to capture the excise invoice?. From Depot, there is no excise invoice

  • Serial number in standard report

    Hi We are using serial number for most of the materials. Whenever material movement happens, system asks for the serial number. But the serial number which is used for this material movement is not appearing in any of the standard report - COOIS-Comp

  • Web services configuration fails !!!!!!

    hi all, i have tried many times to configure the web server in foundation services ( oracle HTTP server ) either on essbase or OBIEE 11g ( OPNMCTL and Oracle AS Instance in particular ) the problem is the configuration fails and opmnctl also fails I

  • Hello, experts, i have an problem about interrupt()

    here is my code, i wanna test what the client requested/posted ,but it seems that i can't interreput other thread which in io blocked ,how can i solve this? thanks! package yestalk.playground; import java.io.InputStream; import java.io.InputStreamRea

  • Booting i7 iMac - Can't Get past "white screen" unless i unplug peripherals

    This has been an intermittent but regular problem recently. upon startup, my iMac gets hung at the white screen. unless i unplug my external drives, usb devices and monitor. didn't happen for the first couple of months with this machine, but recently