JVMTI Based Profiler problem

Hi to all,
I am working on a JVMTI based profiler agent library, using this i am trying to achieve the BCI during runtime.
I am using JVMTI's redefine class features and instrumenting the bytecode during runtime.
Now i am facing a realy weird problem consider my first scenario:
1) I run a sample application (consider class A) that prints a simple message inside an infinite loop, this method is called from another threaded class (consider class T).
2) After the sample application (class A) starts up i immediately change its bytecode, redefines the sample loaded class & reloads it.
3) After Reloading the sample class (class A) with instrumented class i got the desired instrumented output.
This is the way i wanted it to always behave, but consider another scenario:
1) I run a sample application (consider class A) that prints a simple message inside an infinite loop, this method is called from another threaded class (consider class T).
2) After the application (class A) starts up, i wait for some time doing nothing and let the application run for quite some time (8-10 minutes).
3) Now change its bytecode, redefines the sample loaded class & reloads it.
4) After Reloading the sample class (class A) with instrumented class what i saw that it still executes the older class only, this is not what i expected it to do.
I can't understand the 2nd scenario behaviour as i already checked the stack overflow during sample method call in my base class, which never occurs.
I use asm classes to invoke the instrumented byte code methods at runtime, which works fine till i instrument the class immediately.
Any help in this regard would be appreciated.
Thanks
bharat...

Hi Dan,
answers to the questions you asked are below:
dcubed wrote:bharat,
I'm trying to understand your scenarios. A couple of questions embedded below.
bharat.gusain wrote:
1) I run a sample application (consider class A) that prints a simple message inside an infinite loop, this method is called from another threaded class (consider class T).So class T has a method that calls a method in class A. The methodin class A executes an infinite loop printing a simple message. Just
to confirm: the method in class T is not calling the method in class A
from an infinite loop.No Actually the class T runs the infinite loop (inside the run method since its a thread), inside this infinite loop i am calling a method of class A(Which prints the message).
yes class T's run method is calling from an infinite loop, class A's method.
2) After the sample application (class A) starts up i immediately change its bytecode, redefines the sample loaded class & reloads it.What do you mean by "starts up"? Do you mean that you redefinethe sample loaded class before the method with the infinite loop is
called?NO class T started the thread which calls infinitely the class A's method, hence both class T and class A were loaded and executing when i redefined the class A's method.
3) After Reloading the sample class (class A) with instrumented class i got the desired instrumented output.So did you get some of the original output followed by the desiredinstrumented output?Yes, I get the original message followed by the instrumented output.
This is the way i wanted it to always behave, but consider another scenario:
1) I run a sample application (consider class A) that prints a simple message inside an infinite loop, this method is called from another threaded class (consider class T).
2) After the application (class A) starts up, i wait for some time doing nothing and let the application run for quite some time (8-10 minutes).
3) Now change its bytecode, redefines the sample loaded class & reloads it.
4) After Reloading the sample class (class A) with instrumented class what i saw that it still executes the older class only, this is not what i expected it to do.In this scenario, the method with the infinite loop is running before the redefine and after the redefine, the output doesn't change. Do I have that right?Yes the class T's run method is running an infinite loop(which inturn keeps on calling class A's method), i have not redefined the class A yet.
Now after waiting for 10 minutes i finaly redefines the class A.
After redefinition the method of class A is still displaying the same old message output, and class T's thread is still running the infinite loop, just i am missing the instrumented output.
I can't understand the 2nd scenario behaviour as i already checked the stack overflow during sample method call in my base class, which never occurs.I'm not sure what "stack overflow" has to do with anything. I'm guessing you mean that you checked for errors and didn't get any.I thought because i am calling the method infinitely after sometime it might happened that stack got full and hence i am getting this weird issue, so now i check for stack overflow exception each time i am calling the class A's method.
I use asm classes to invoke the instrumented byte code methods at runtime, which works fine till i instrument the class immediately.The above sentence doesn't quite match the scenarios described above.According to the above, immediate redefinition worked and redefinition
after a delay did not work.
Any help in this regard would be appreciated.I'm guessing that we'll get to the bottom of this with answers to the above questions.DanSorry for misunderstanding... what i meant was, immediate redefinition worked and redefinition
after a delay did not work.
Regards
bharat..
Edited by: bharat.gusain on Jan 20, 2009 11:47 PM

Similar Messages

  • JVMTI - JVMTI Based profiler, Various rules of BCI

    Hi All,
    i am doing project on profiling an application based on JVMTI.
    i want to avoid profiling of the JDK calls without using Event based approach. and i want to do it using BCI approach.
    i am having sample "java_crw_demo" code But it is difficult to digest(Understand).
    i have a .class build from java code, which i want to profile.
    my need is to insert a bytecode at the start and end of a method(A) in this .class file. so that my another method(B) will be called which will give me start and end time of that method(A).
    So Questions are:
    1) How would i know in .class file that this particular method's(A) bytecode has started and ended.
    2) How would i get byte code for method (B) to insert in .class file.
    3) How would i know format(structure) of the .class file.
    4) are there any Specific rule for BCI that must be followed.
    e.g. particular method with specific signature must be implemented or this sequence must be follow or this part of the .class file must not be changed or any other.
    Please give guide me.
    also Please let me know if you have any simple sample code which fulfills above requirement.
    Thanks

    Hi All,
    i am doing project on profiling an application based on JVMTI.
    i want to avoid profiling of the JDK calls without using Event based approach. and i want to do it using BCI approach.
    i am having sample "java_crw_demo" code But it is difficult to digest(Understand).
    i have a .class build from java code, which i want to profile.
    my need is to insert a bytecode at the start and end of a method(A) in this .class file. so that my another method(B) will be called which will give me start and end time of that method(A).
    So Questions are:
    1) How would i know in .class file that this particular method's(A) bytecode has started and ended.
    2) How would i get byte code for method (B) to insert in .class file.
    3) How would i know format(structure) of the .class file.
    4) are there any Specific rule for BCI that must be followed.
    e.g. particular method with specific signature must be implemented or this sequence must be follow or this part of the .class file must not be changed or any other.
    Please give guide me.
    also Please let me know if you have any simple sample code which fulfills above requirement.
    Thanks

  • How to do profiling for Java 1.6... (JVMTI-based profiler)

    As Java1.6 uses JVMTI instead of JVMPI, I am not able to find an open source tool which can profile my application. Can some body help me to find a tool or pugin for eclipse(TPTP is trying to fix it in coming 4.5 release) or Netbeans.
    Ananth Chellathurai

    Does jmap and jhat meet your requirement? I found them very useful, even better than some commercial tools.
    http://java.sun.com/javase/6/docs/technotes/tools/share/jmap.html
    http://java.sun.com/javase/6/docs/technotes/tools/share/jhat.html
    Regards
    -Jiaqi

  • Roaming profile problem?

    I'm not sure it's a roaming profile problem or not, but I need help to fix it.
    we use MetaFrame citrix to connect a remote computer running a medical program. Every computer has Citrix online plug-in.
    If user uses computer user always use, everything will be fine.
    It will be failed login Citrix if user need to login to anther computer to load the medical program.  uninstall and re-install Citrix online plug-in will fix it.  There's lots computers and users, I can't fix it by this way, need to find
    out why.
    Windows 2008 R2 + windows 7 pro & 8.1 pro.
    Thanks for any suggestion,
    ITdragon

    seems no related to profile...
    you can recreate a user account to test.
    just a thoght...
    create a script to uninstall this application. set it as logon script via gpo. when all uninstall, reinstall it...
    Best,
    Howtodo

  • Color profile problem/question.

    These two exports of the same file were taken on my spouse's D300s, and are good examples of a profile problem I cannot seem to solve.  This is the identical problem I also experience on the Nikon D700 and D3.  The following was exported with the "Camera Standard" profile, and notice the yellow sun reflection on the door panels:
    The following was exported with a xrite generated lightroom profile. Notice the better overall contrast, but also the horrendous unnatural yellow on the same door:
    This difference causes all sorts of distortion in natural animal hair that contains any red-orange.  I use these doors  because they are such a stark example.  Any attempts to correct with the WB will usually result in too much blue elsewhere.  Also I have created many test profiles under many light conditions (both manually and from LR), and they all cause this problem in all three cameras.  This is not a matter of one bad cameral, or one erroneously created profile.
    I have two questions:  Does this example show up well enough to see what I am talking about?   If so, can anyone speculate as to the problem or solution?  Even guesses would be appreciated since I am out of my own, and not expert in this sort of thing.   Thanks!

    George, thank you for this information. I have a couple of things for you to try and another question. The ColorChecker Passport color patches are small, so I would suggest trying to reshoot a calibration image with the ColorChecker Passport in the center and filling at least 1/3 of the picture width. In the image you provided the ColorChecker Passport is about 1/8 the image width and far left of center. I know, I know, it should not matter, but give it a try. This is what I'm doing to create camera profiles for all three of my camera bodies (Canon 300D, 600D, 5D MKII), and I have not had a single problem with "color matching" using this procedure AND what I will describe next.
    Concerning white balance procedure you say:
    Using the grey card of the same product placed just outside the subject crop.
    I assume you are referring to the large 60% reflectance white balance card on one side of the ColorChecker Passport, but you do not mention how you set white balance. I suggest using the LR white balance eyedropper tool with the smaller 80% reflectance gray scale patch on the ColorChecker Classic target side. This is the 2nd patch from the left bottom in your picture right next to the brightest 90% white patch. Two reasons for doing this! A higher reflectance patch reduces the influence of camera noise in the image with the LR 5 x 5 pixels eyedropper tool. Here's a LR forum post with a heated discussion on these issues (or lack thereof): http://forums.adobe.com/thread/854734?tstart=60 The second purely empirical reason is the "Classic" target side provides me with more accurate white balance than using the larger 60% card. Perhaps this is a defect with my ColorChecker Passport target, but I don't know.
    When setting white balance with the LR eyedropper tool I suggest taking at least five (5) samples of the 80% patch. I use the center, TL, TR, BR and BL corner areas of the patch. Do not use any reading that has a large variation from the others. Please remember that the eyedropper tool is sampling a very small 5 x 5 (25 pixels) area, and image noise or a target paint defect can give you a bogus reading. Write down the temp and tint for each of the five (5) readings, add them, and divide by five to get the "average" white balance temp and tint. Enter the temp and tint values manually into the white balance tool. I create a user preset for each profile which contains only the ColorChecker created camera profile and manually adjusted white balance settings.
    I would also suggest you check the readings of all six (6) grayscale patches for neutrality (R=G=B) using your new camera profile and white balance settings. I have found in some cases using the 65% reflectance patch (3rd patch in) provides the most neutral “overall” white balance setting for the six (6) patches. This is despite the fact it contains more camera noise than the 80% patch next to it. Again, this observation is purely empirical – I am not writing a scientific thesis! It works for me and hopefully it will get you closer to what you want.
    One thing I am going to do tomorrow is borrow a friends color checker to rule out the possibility mine is defective. It doesn't look defective, but the problem is so consistent.
    This is a very good idea! Having worked in a manufacturing environment for over 45 years, trust me when I tell you defective product from even the largest company ends up in the consumer’s hands. Please let us know what you find.

  • Constant IP Profile Problems

    Good Morning Everyone,
    I seem to have constant IP Profile problems where I have to keep contacting the Broadband Helpdesk to get the IP Reset every few weeks.  It seems to do it if the weather is bad (like over the past couple of days) or if i watch videos streamed from  YouTube.  I told the operator this the last time i called, but it was just dismissed and they just reset the profile.
    Last night everything seemed so slow, so i ran a speedtest and yep the profile has dropped again and has been set to 2mbps.  I connect at 8mbps and normally my download speed is around the 7.30mbps mark.  What could be causing this?
    Many Thanks, Steve  
    Here's my first lot of settings as requested;
    BT Speedtest Results (Current - Normal Socket)
     Download speed achieved during the test was - 2.1 Mbps
     For your connection, the acceptable range of speeds is 0.4 Mbps-2 Mbps.
     Additional Information:
     Your DSL Connection Rate :8.13 Mbps(DOWN-STREAM), 0.45 Mbps(UP-STREAM)
     IP Profile for your line is - 2 Mbps
    Quiet Line Test (Current - Normal Socket)
    Call break up when first connected, slight crackling and hissing
    Connection Plate
    Master Plate with Test Socket, but no seperate microfibre socket.
    Home Hub Version
    BT Home Hub v2 with Broadband Telephone
    ADSL Stats (Current - Normal Socket)
    Line state
    Connected
    Connection time
    0 days, 0:39:41
    Downstream
    8,128 Kbps
    Upstream
    448 Kbps
    ADSL settings
    VPI/VCI
    0/38
    Type
    PPPoA
    Modulation
    ITU-T G.992.1
    Latency type
    Fast
    Noise margin (Down/Up)
    5.9 dB / 22.0 dB
    Line attenuation (Down/Up)
    21.0 dB / 12.5 dB
    Output power (Down/Up)
    19.8 dBm / 11.9 dBm
    Loss of Framing (Local)
    22
    Loss of Signal (Local)
    2
    Loss of Power (Local)
    0
    FEC Errors (Down/Up)
    0 / 0
    CRC Errors (Down/Up)
    0 / 2147480000
    HEC Errors (Down/Up)
    nil / 0
    Error Seconds (Local)
    2

    BT Speedtest Results (Test Socket)
     Download speedachieved during the test was - 2.05 Mbps
     For your connection, the acceptable range of speeds is 0.4 Mbps-2 Mbps.
     Additional Information:
     Your DSL Connection Rate :8.13 Mbps(DOWN-STREAM), 0.45 Mbps(UP-STREAM)
     IP Profile for your line is - 2 Mbps
    Quiet Line Test (Test Socket)
    Very slight crackling and hissing
    ADSL Stats (Test Socket)
    Line state
    Connected
    Connection time
    0 days, 0:15:12
    Downstream
    8,128 Kbps
    Upstream
    448 Kbps
    ADSL settings
    VPI/VCI
    0/38
    Type
    PPPoA
    Modulation
    ITU-T G.992.1
    Latency type
    Fast
    Noise margin (Down/Up)
    6.0 dB / 22.0 dB
    Line attenuation (Down/Up)
    21.0 dB / 12.5 dB
    Output power (Down/Up)
    19.8 dBm / 12.0 dBm
    Loss of Framing (Local)
    34
    Loss of Signal (Local)
    3
    Loss of Power (Local)
    0
    FEC Errors (Down/Up)
    0 / 0
    CRC Errors (Down/Up)
    0 / 2147480000
    HEC Errors (Down/Up)
    nil / 0
    Error Seconds (Local)
    3

  • Color profile problem after installing CS4

    OK.
    First, let me post these side-by-side comparisons:
    As you can see in Image 1 (the "before," left-side photo in each comparison), the colors and overall appearance are distorted. I've read things about gamma but it's all confusing to me. This is surely a color profile problem, right? The transition among pixels that involve colors of yellow and gray is rocky, grainy, and the flat out color is just wrong. Now this color problem affects pictures when opened in both Photoshop 7.0 and the standard Windows Photo Viewer. Meaning, whenever I open pictures in both PS 7.0 and Windows Photo Viewer (my default viewer), this color problem totally messes up certain photos and really damages my ability to edit. I'm an avid photo editor and it's imperative I have proper color display so that I can accurately edit. Keep in mind that certain pictures do not take on this error. When a photo is generally brighter, the distortion is basically invisible. It's photos that are dark or have dark portions in them that display the distortion.
    *Note: I took these before-and-after pictures with my camera, because screencapping would not work, since you all don't have the same color profile issue on your computer. That's the only way I can show you!
    HOWEVER, when I open photos in another standard Windows application, "Microsoft Office Picture Manager," the color problem is magically erradicated altogether. It shows photos as I've been seeing them all along, until I installed CS4 about two weeks ago. Before installing CS4, everything was fine and I had been using Photoshop 7 for years and have never had a problem. I'm guessing CS4 messed something up. It had to have. Just FYI, I uninstalled CS4, hoping it would reverse the problem. But still, the color issue persists in PS 7 and in my regular Windows Photo Viewer.
    Since images display their true form in Windows Office Picture Manager, I don't think I need to calibrate my screen. Or do I? I've read things about it, and to some people, it's not necessary. Right? Okay. I really hope someone can give some advice! Thank you!
    P.S. Here's the original photo. On my screen, it looks distorted when opened in photoshop or opened w/the viewer. However, here on Firefox, it's fine.

    You should try to familiarize yourself with the concepts of color management.
    It's kind of too in-depth a subject to walk you through from a cold start here...  There are a lot of good resources out there to help you get started.  For example, in just a few seconds Google turned up this:
    http://www.adobepress.com/articles/article.asp?p=1315593
    The one thing to remember is this:  There is NO quick solution, easy set of defaults, or direct answer to making your setup do what you want without your having to understand color management.
    People may tell you to calibrate your monitors, or use a particular color profile as a default, or whatever, and they may have good, solid reasons for telling you those things, but if you don't attempt to get your mind around color management it will always seem as though something isn't working right, or is simply magic, which will be frustrating to you.
    Here are some basic questions to ponder:
    What image color profile is your image carrying?
    Is your monitor a wide-gamut display and do you have a color profile set up for it?  What kind of monitor is it?
    What version of Windows are you running?
    Do you know the difference between a color-managed app and one that is not color-managed?
    Which of the apps you're using/showing above are color-managed?
    What are your settings in Edit - Color Settings?
    Take some time and do some research, get your head around the concepts, and it will all make more sense I promise you.
    -Noel

  • How to solve the Embed Color Profile problem...

    Hi Everyone,
    This vijay from Chennai. I have one doubt for rectify the Embed color Profile problem, that's is how can i judges whether the file had Embed Color Profile or not. anyone solve this problem.
    Thanks in Advance.
    -yajiv

    I used another profiles name, because I dont have the old one installed anymore, Youll have to be exact about the letters though.
    And from a prepress-standpoint Id like to point out that removing the profile as opposed to »Convert to Profile« seems a peculiar practice, though of course Your reasons for doing so may be valid indeed.
    You could try:
    var myDocument = app.activeDocument;
    if (myDocument.colorProfileName == "U.S. Web Coated (SWOP) v2") {
    // =======================================================
    var idassignProfile = stringIDToTypeID( "assignProfile" );
    var desc2 = new ActionDescriptor();
    var idnull = charIDToTypeID( "null" );
    var ref1 = new ActionReference();
    var idDcmn = charIDToTypeID( "Dcmn" );
    var idOrdn = charIDToTypeID( "Ordn" );
    var idTrgt = charIDToTypeID( "Trgt" );
    ref1.putEnumerated( idDcmn, idOrdn, idTrgt );
    desc2.putReference( idnull, ref1 );
    var idmanage = stringIDToTypeID( "manage" );
    desc2.putBoolean( idmanage, false );
    executeAction( idassignProfile, desc2, DialogModes.NO );
    else {

  • Full screen colour profile problem

    I just posted this as feedback to Apple and was curious to see if anyone was having the same problem:
    I have a dual monitor setup: One Eizo CG222W and one Eizo CG210. The 222W is my primary display (menu bar on this one). Both monitors are calibrated and profiled with a Spyder3 and ColorEyes Display Pro. I have the profiles loaded on both displays. It is worth noting that both (particularly the 222W) are wide gamut, so you may well not see this happening if you are looking at an Apple Cinema display (no offence, but you're just not going to see this so pronounced on an Apple display). To put it into perspective, I have just bought the CG222W and was not noticing any issues with the CG210 because its gamut is narrower (but still wider than a cinema display).
    So, if I view an image within Aperture (not full screen), then it looks normal, but when I hit full screen and look at the same image (on the same display), it is noticeably over-saturated. As a check I also opened the same image in Photoshop (on the same display) and it looks exactly the same as when viewed in the normal (non full screen) view of Aperture.
    It is clear that there is a colour profile problem with Aperture. It appears that when full screen mode is selected, a different profile is loaded for the display, or a different working space (if Aperture provides such functionality). I won't be doing any image adjustments in full screen mode until this has been corrected.

    There is well documented issue with this problem. The fix is to set your default monitor to whichever monitor you are using to view Aperture in full screen, using color sync utility.
    The reason you don't have this problem in PS is because it has its own color management within the software.
    Hope this helps,
    Cheers

  • SSO Certificate-based authentication problem

    Hello,
    I have successfully configured certificate-based authentication, and I am able to authenticate with a user certificate that I created with OCA which is stored in the user's profile in OID. Here lies my problem, it seems as if the authentication module (ssomappernickname) only validates against the first certificate stored in the user's profile(userCertificate attribute). This is after I add another certificate to the user's profile. Below is the problem I am describing during my tests:
    Order of certificates stored in user's profile.
    1. valid cert, invalid cert -> successful authentication
    2. invalid cert, valid cert -> unsuccessful authentication (it should STILL be successful here)
    Shouldn't the SSO authentication module search each binary certificate in the multi-value attribute for the correct certificate? Or is there some LDAP control that I need to set in order to get this problem solved? Basically, I need to be able let user's perform certificate authentication against multiple certificates in their profiles.

    For the benefit of anyone finding this, in my case this problem was resolved by reimporting my internal CA's Cert into the ASA.
    I suspect I had inadvertently imported an expired CA Cert into the ASA and this rather un-informative error 1838 is trying to tell you this. 

  • Aperture and dual monitor ICC profile problem

    I am using an Epson Stylus Pro 3800 and run Aperture 2.1 from a MBP with a Cinema Display 23". I calibrated both displays (the 23" and the MBP display) with my ancient but working ColorVision Spyder, using OptiCal 3.7. I calibrated for a gamma of 2.2. and native white point. I check the results with various test images.
    Here is the problem: the calibration produces a perfectly calibrated display, but when I open Aperture some color change is taking place, as if Aperture pulls in a wrong profile for the display (which then also leads to wrong colors in the prints): sometimes the photo which I have printed out before in perfect quality displays with either a nasty yellow cast or with totally oversaturated colors. I have used ColorSync utility to make the 23" the default display and I have also tried to simply close the MBP to work only with the 23", and sometimes either of these this did the trick. Most of the times, however, I get these color casts or oversaturation of the photos which I had worked on for a while and printed earlier with perfection.
    I ran Disk Utility to Repair Disk Permissions (many Epson-related permissions were wrong, for example "Library/Printers/EPSON/InkjetPrinter/Libraries/UtilityCore.framework/Versions/ A/Resources/Icon8007.png", should be -rw-rw-r-- , they are -rwxrwxr-x ) and reinstalled the latest Epson driver for 10.5 repeatedly.
    Even more surprising, at times the color of the full screen image can be off at the same time the thumbnail looks perfect! How is this possible? It seems as if thumbnail and full image use different display profiles. In addition, if I export the Master and display it in Lightroom or CS2 it looks perfectly fine and prints as expected. (I use the appropriate "canned" ICC profiles for the printer-paper combination).
    The most surprising happens, however, when I drag the image from the 23" to the MBP: when the image is about half-way between the two displays (that is, one part is displayed on the 23", the other on the MBP scree) it suddenly changes from off-color or oversaturated to the correct color on the 23". If I then move the image up to the 23" again, the wrong display colors appear again.
    I am at a loss: I have spent a lot of money on the gorgeous screen, the great printer, and Aperture (which is a great program), but I cannot get Aperture to print reliably, or rather, I cannot get Aperture to use the right display profile to display the image correctly in a reliable way.
    I have read kbeat's color management blog and many entries on this blog here, but I have not found a solution. I appreciate your help.

    Kai,Simon,
    This is the problem i have been having.Colour profiling is correct,prints are rubbish.I run a fuji frontier
    as well as epson printers.Anything from aperture is not what you see on screen.I am running aperture2.1.
    Today we are removing 2.1 and doing a reinstall of 1.1 but not upgrading to 2 to test run prints.I have been looking for answers to this for sometime.
    Simon,the problems we are have are very similar to you clients,photoshop fine,aperture not.I also have 20"external apple monitor attached which is used as the colour correcting monitor ( as the imac screen is not that good for criticl work ) I will post my findings here.
    Simon, if you wish to investigate further,e-mail me,i am in leeds
    daisy ( not a happy printer )

  • Mogrify ICC Profile problem

    I have been using Mogrify on export from LR, and I love it. Only one problem. On B&W conversions, when I open them in PS, I get an error box saying "The embedded ICC profile cannot be used because the ICC profile is invalid. Ignoring the profile." Clicking on OK, it will open, but it is Grayscale instead of RGB. I only have to click on Image>Mode>RGB to get it back to normal, but we do a LOT of B&W, and it would be nice not to have to do this every time.
    I am on a PC, XP. I have tried directing Mogrify to all of the sRGB profiles I can find on my computer, using Mogrify format options>Convert to colorspace. No help. I have tried just clicking on the Grayscale button in LR, and also converting to B&W by using a preset that moves all the saturation sliders to -100 (I like the tones I get this way better). The same results on both. Interestingly, if I move only one slider to -99, I get a good export. No error message, and an RGB file.

    Hi Marty,
    Did you ever find a solution to this problem. I, too, ran into this and it drove me nuts since Photoshop or my online photo site could not display the images. Photoshop complained of a missing ICC profile. After experimenting, I found that setting the Lightroom/Mogrify plugin to No Sharpening did the trick. Also, when using Basic Sharpening, any sharpening value below .2 had this problem. Once I bumped it up beyond that, the images magically started working again and Photoshop was happy with them. I have no explanation and couldn't find one in web searches. But, once I found a solution that did work, I stuck with it.
    I would still be interested in knowing if I did something wrong or if its just a bug in Mogrify.
    Del

  • Acrobat 9 Pro....Distiller / ICC Profile Problem

    I have loaded Acrobat 9 Pro 3 times and continue to get following error message every time I reboot computer:  "Distiller can not find your ICC profiles.  Please reinstall the software." Acrobat opens ok but will not print or perfom perform email forwarding as an attachment; Distiller will not initialize.
    Does anyone have a fix???

    Adobe Tech support was most helpful on this.  First download the updated
    Distiller ICC profile files at:
    http://www.adobe.com/support/downloads/thankyou.jsp?ftpID=4075&fileID= 3790
    Unzip the file and copy only the *.icc files (without regard to the subfolders that they are in - in other words, take the files out of each of the subfolders) to the followng folder in Windows 7:
    c:\windows\system32\spool\drivers\color
    These new files will probably overwrite some old ones.
    This solved the problem for me.
    This is actually the best solution though I found that instead of copying all the .icc files to the windows\sys...  folder, all you need to do is copy the 3 Video files from the RGB folder (VideoHD.icc, VideoNTSC.icc, and VideoPAL.icc).  Once you add these three files to  c:\windows\system32\spool\drivers\color  you will be good to go.
    It seems that this was an error on the part of Adobe in that there is no reason to include Video files for printing.  Nevertheless, the distiller will look for these and return the ICC profile error message if those files are not present.

  • 5800 XM WPA-PSK and network profiles problem

    Hi,
    I've just purchased a 5800XM phone, with the idea of setting up my personal email account on the device, using my office's network access point.
    The access point / router is a Comtrend 5361. The SSID is set to hidden (no broadcast), and the security is set to WPA-PSK (pre-shared key).
    On the Nokia phone I go to 'Settings -> Connectivity -> Wireless LAN' and choose 'Other (hidden netw.)'.
    Then I choose 'Connect', set the WLAN network name, the phone shows a message 'No WLAN network found', but then prompts to choose network mode (Infrastructure - Hidden),  and then password. It connects succesfully and asks for storing the network profile under offline mode, I tell it to do so, and the new profile appears under 'Network destinations -> Internet'. So until now everything seems ok.
    The problem is that after the phone disconnects from the internet, the stored profile seems to be useless, since the phone never connects automatically even if the AP is available and always shows 'Search for WLAN'. In the list the hidden access point never shows up so the only choice is repeating the steps that I mentioned above, creating a new profile every time I want to surt the net.
    Is there a solution to this, or a third party software that can do the trick?, I have OS V21.0.25, custom version 21.0.025.219.06 from Vodafone, no updates available as of today, but I've tested it with a phone that has the latest OS v30 and it shows the same behavior.
    I can't change the access point settings, so I must stick to WPA and hidden SSID, so for me this is almost a deal breaker.

    Ok, I was testing the wifi part without a sim card inserted, with a sim, the phone connects to the profile properly, but without the sim it has an odd behavior, not loading the profile and wrongly stating that it can't connect when it does (but disconnects randomly).
    So the problem is that wireless lan management doesn't work properly without a sim card.

  • Role Based Access problem in forms

    This would be a long reading.
    I'm having a problem with forms Role Based Access.
    We have two databases, one in London and one in Zurich. We have installed
    application server and oracle forms on London database. We have implemented
    Role Based Access to forms. For this we have created a database role (say ZUR_USER)
    in both databases. The view FRM50_ENABLED_ROLES which is used by forms role based access control
    is also created in both databases with a 'grant select to public'.
    Our form system has a menu and forms under that menu. Both menu and the underlying forms have been
    assigned Menu Security/Item Roles to the above mentioned ZUR_USER role and the role is assigned
    to various users.
    Now a Zurich user is trying to login to Zurich database using the URL for forms installation
    in London server. He can login successfully and can see the menu heading in the main screen but
    when he clicks the menu he doesn't see the underlying forms list.
    When we try the same user id and database from London (using the same URL) we see all the forms.
    Any idea what are we missing. The Menu Security is setup at menu level as well as the form level under
    that menu. User can see the menu but not the form under that menu from Zurich. No such problem while
    login from London.

    I'm using the Forms 10g
    and yes the only difference is between login from Zurich and London.
    Problem definitely is due to Role Based Access setup.
    The user in Zurich can see the Menu but not the items under that menu.
    I have set the security set up at both menu and menu item(i.e. form name) level.

Maybe you are looking for