HELP!!! URGENT!!!! convert a jpg CMYK to jpg RGB

Hello i need to convert to image jPG CMYK to jpg RGB..y try with this code:
<code>
RenderedOp image = JAI.create("fileload", "C:/Documents and Settings/rsornes/Desktop/Imagenes/fondo grde con simb_copei.jpg");
JAI.create("filestore", convertCMYKtoRGB(image), "C:/Documents and Settings/rsornes/Desktop/001.jpg", "JPEG", null);
.....>
public static RenderedOp convertCMYKtoRGB(RenderedOp op) {
try {
// -- Convert RGBA to CMYK
// -- because JAI reads CMYK as RGBA
ICC_Profile cmyk_profile = ICC_Profile.getInstance("C:/Documents and Settings/rsornes/Desktop/jai/CMYK.pf");
ICC_ColorSpace cmyk_icp = new ICC_ColorSpace(cmyk_profile);
ColorModel cmyk_cm =
RasterFactory.createComponentColorModel(op.getSampleModel().getDataType(),
cmyk_icp,
false,
true,
Transparency.OPAQUE);
ImageLayout cmyk_il = new ImageLayout();
cmyk_il.setColorModel(cmyk_cm);
RenderingHints cmyk_hints = new RenderingHints(JAI.KEY_IMAGE_LAYOUT, cmyk_il);
ParameterBlockJAI pb = new ParameterBlockJAI("format");
pb.addSource(op);
pb.setParameter("datatype", op.getSampleModel().getDataType());
op = JAI.create("format", pb, cmyk_hints);
// -- Convert CMYK to RGB
ColorSpace rgb_icp = ColorSpace.getInstance(ColorSpace.CS_sRGB );
ColorModel rgb_cm =
RasterFactory.createComponentColorModel(op.getSampleModel().getDataType(),
rgb_icp,
false,
true,
Transparency.OPAQUE);
ImageLayout rgb_il = new ImageLayout();
rgb_il.setSampleModel(rgb_cm.createCompatibleSampleModel(op.getWidth(),
op.getHeight()));
RenderingHints rgb_hints = new RenderingHints(JAI.KEY_IMAGE_LAYOUT, rgb_il);
pb = new ParameterBlockJAI("colorconvert");
pb.addSource(op);
pb.setParameter("colormodel", rgb_cm);
op = JAI.create("colorconvert", pb, rgb_hints);
} catch(Exception ex) {
ex.printStackTrace();
return op;
</code>
With this code work but de image jpg RGB result is not have the same color that of the original jpg CMYK...the image result (jpg RGB ) is very dark is almost black color....please i need urgen to resolve this
if you kwon whta happends with my code thanks and if exist other code that you have...thanks
thanks
Rafael

thanks but I need to pass a CMYK to RGB

Similar Messages

  • PLEASE HELP!!! URGENT!!!! convert a jpg CMYK to jpg RGB

    Hello i need to convert to image jPG CMYK to jpg RGB..y try with this code:
    <code>
    RenderedOp image = JAI.create("fileload", "C:/Documents and Settings/rsornes/Desktop/Imagenes/fondo grde con simb_copei.jpg");
    JAI.create("filestore", convertCMYKtoRGB(image), "C:/Documents and Settings/rsornes/Desktop/001.jpg", "JPEG", null);
    .....>
    public static RenderedOp convertCMYKtoRGB(RenderedOp op) {
    try {
    // -- Convert RGBA to CMYK
    // -- because JAI reads CMYK as RGBA
    ICC_Profile cmyk_profile = ICC_Profile.getInstance("C:/Documents and Settings/rsornes/Desktop/jai/CMYK.pf");
    ICC_ColorSpace cmyk_icp = new ICC_ColorSpace(cmyk_profile);
    ColorModel cmyk_cm =
    RasterFactory.createComponentColorModel(op.getSampleModel().getDataType(),
    cmyk_icp,
    false,
    true,
    Transparency.OPAQUE);
    ImageLayout cmyk_il = new ImageLayout();
    cmyk_il.setColorModel(cmyk_cm);
    RenderingHints cmyk_hints = new RenderingHints(JAI.KEY_IMAGE_LAYOUT, cmyk_il);
    ParameterBlockJAI pb = new ParameterBlockJAI("format");
    pb.addSource(op);
    pb.setParameter("datatype", op.getSampleModel().getDataType());
    op = JAI.create("format", pb, cmyk_hints);
    // -- Convert CMYK to RGB
    ColorSpace rgb_icp = ColorSpace.getInstance(ColorSpace.CS_sRGB );
    ColorModel rgb_cm =
    RasterFactory.createComponentColorModel(op.getSampleModel().getDataType(),
    rgb_icp,
    false,
    true,
    Transparency.OPAQUE);
    ImageLayout rgb_il = new ImageLayout();
    rgb_il.setSampleModel(rgb_cm.createCompatibleSampleModel(op.getWidth(),
    op.getHeight()));
    RenderingHints rgb_hints = new RenderingHints(JAI.KEY_IMAGE_LAYOUT, rgb_il);
    pb = new ParameterBlockJAI("colorconvert");
    pb.addSource(op);
    pb.setParameter("colormodel", rgb_cm);
    op = JAI.create("colorconvert", pb, rgb_hints);
    } catch(Exception ex) {
    ex.printStackTrace();
    return op;
    </code>
    With this code work but de image jpg RGB result is not have the same color that of the original jpg CMYK...the image result (jpg RGB ) is very dark is almost black color....please i need urgen to resolve this
    if you kwon whta happends with my code thanks and if exist other code that you have...thanks
    thanks
    Rafael

    I don't know anything about this topic, but I've seen a lot of posts about it.
    http://www.google.com/search?q=convert+cmyk+site:forum.java.sun.com&sourceid=opera&num=0&ie=utf-8&oe=utf-8

  • Can anyone help me figure out how to copy .jpg (pictures) from my PC to my IPAD2?

    Can anyone help me figure out how to copy .jpg (pictures) from my PC to my IPAD2? 

    Create a folder on you PC and copy the pictures you want on the iPad into that folder. Then start iTunes and plug in your iPad. In the column on the left (about half way down) click on the name of your iPad.   Then click on the photos tab near the top and to the right of the screen.  Check the box that says Sync photos and then select the folder you put your pictures in from the drop down menu on the screen. Then click Apply down at the bottom right hand side of the screen. Hope that helps!

  • How do I convert web archive photos to jpg?

    How do I convert web archive photos into .jpg or .jpeg format?

    Hi,
    Load the webarchive in a Browser, Right click on the Picture, see if Save As... is an option.

  • I just downloaded Adobe DC Pro with my creative suite. This NEW edition cannot convert a PDF to a JPG that Corel Photoshop can read properly. What gives

    I just downloaded Adobe DC Pro with my creative suite. This NEW edition cannot convert a PDF to a JPG that Corel Photoshop can read properly. What gives?

    [discussion moved to Creating, Editing & Exporting PDFs forum]

  • CSS Layout issue!! Help Urgent!!

    I am having a problem with creating a css layout, in the past i used tables and am trying to convert my sites for my customers. I have layed out the website using divs and css and it looks great until i put in the cosing of the menu bar. when i put in the coding for the menu bar suddenly the bar has a padding around it but i cannot find a padding that would change this in the css coding. I need this done asap! so please help. ill show my coding below:
    this is the div coding:
    <div id=Nav>
       <ul class="dropdown" id="Bar"; width: 879px" name="Bar">
             <li class="style16" style="width: 161px; height: 22px">
       <a href="default.html" style="width: 146px">Home</a></li>
             <li class="style10" style="width: 169px; height: 23px">
       <a href="about.html" style="width: 153px">About</a></li>
         <li class="" style="height: 31px; width: 175px; left: 0px; top: 0px">
       <a href="Equipment.html" class="style18">
       <div class="style10" style="width: 156px; height: 20px;">
        Equipment</div>
       </a> <ul class="sub_menu">
                <li><a href="compressor.html">Air Compressors</a></li>
                <li><a href="compactions.html">Compaction</a></li>                            
                <li><a href="concrete.html">Concrete Equipment</a></li>
                <li><a href="forklifts.html">Fork Lifts</a></li>
                <li><a href="generators.html">Generators</a></li>                            
                <li><a href="groundthawing.html">Ground Thawing</a></li>
                <li><a href="heaters.html">Heaters</a></li>
                <li><a href="scissorlifts.html">Scissor Lifts</a></li>                            
                <li><a href="boomlifts.html">Boom Lifts</a></li>
                <li><a href="lighttowes.html">Light Towers</a></li>
                <li><a href="misc.html">Misc.</a></li>                            
                <li><a href="dirtequipment.html">Dirt Equipment</a></li>
                <li><a href="powertools.html">Power Tools</a></li>
                <li><a href="pumps.html">Pumps | Saws | Welders</a></li>                              
                     </ul>
             </li>
             <li style="width: 165px"><a href="locations.html">
       <div class="style10" style="width: 154px">
        Locations</div>
       </a>
               </li>
                 <li style="width: 180px"><a href="contact.html">
       <div class="style16" style="height: 24px">
        Contact Us</div>
       </a>         </li>
            </ul>
      </div>
    This is the css coding:
    #wrapper {
    width: 880px;
    margin-right: auto;
    margin-left: auto;
    background-color: #f4f4f4;
    #Navigation {
    background-image: url(Images/NAvigation%20BAr.jpg);
    background-repeat: no-repeat;
    width: 880px;
    visibility: visible;
    height: 3-px;
    vertical-align: top;
    Nav {
    vertical-align: top;
    margin: 0px;
    padding: 0px;
    clear: both;
    height: 20px !important;
    #wrapper1 {
    width: 876px;
    margin-right: auto;
    margin-left: auto;
    color: #F4F4F4;
    /* IE10 Consumer Preview */
    background-image: -ms-linear-gradient(left, #716375 0%, #E8E8E8 100%);
    /* Mozilla Firefox */
    background-image: -moz-linear-gradient(left, #716375 0%, #E8E8E8 100%);
    /* Opera */
    background-image: -o-linear-gradient(left, #716375 0%, #E8E8E8 100%);
    /* Webkit (Safari/Chrome 10) */
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #716375), color-stop(1, #E8E8E8));
    /* Webkit (Chrome 11+) */
    background-image: -webkit-linear-gradient(left, #716375 0%, #E8E8E8 100%);
    /* W3C Markup, IE10 Release Preview */
    background-image: linear-gradient(to right, #716375 0%, #E8E8E8 100%);
    margin-bottom: auto;
    #Bar {
    background-repeat: no-repeat;
    width: 880px;
    height: 28pt;
    overflow: visible;
    background-image: url(Images/NAvigation%20BAr.jpg);
    position: relative;
    vertical-align: top;
    #container {
    width: 880px;
    color: #000;
    background-color: #EDEDED;
    dominant-baseline: 578px;
    /* IE10 Consumer Preview */
    background-image: -ms-linear-gradient(left, #716375 0%, #E8E8E8 100%);
    /* Mozilla Firefox */
    background-image: -moz-linear-gradient(left, #716375 0%, #E8E8E8 100%);
    /* Opera */
    background-image: -o-linear-gradient(left, #716375 0%, #E8E8E8 100%);
    /* Webkit (Safari/Chrome 10) */
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #716375), color-stop(1, #E8E8E8));
    /* Webkit (Chrome 11+) */
    background-image: -webkit-linear-gradient(left, #716375 0%, #E8E8E8 100%);
    /* W3C Markup, IE10 Release Preview */
    background-image: linear-gradient(to right, #716375 0%, #E8E8E8 100%);
    margin-bottom: auto;
    #content {
    float: left;
    color: #090;
    width: 580px;
    padding-right: 6px;
    background-color: #033;
    margin-top: 20px;
    .container {
    color: #000;
    background-color: #ff6;
    width: 876px;
    #expect {
    height: 164px;
    width: 294px;
    float: right;
    position: relative;
    background-color: #C90;
    margin-left: 582px;
    padding-top: 10px;
    #hours {
    float: left;
    height: 55px;
    width: 294px;
    line-height: 4px;
    word-spacing: normal;
    white-space: normal;
    display: inline;
    letter-spacing: normal;
    padding-top: 10px;
    font-size: 13pt;
    color: #000;
    margin-left: 586px;
    background-color: #F99;
    #footer {
    height: 76px;
    width: 880px;
    background-color: #CC0;
    clear: both;
    #cards {
    float: right;
    height: 31px;
    width: 294px;
    margin-left: 582px;
    padding-top: 10px;
    background-color: #F36;
    #contact {
    float: left;
    height: 328px;
    width: 293px;
    word-spacing: normal;
    white-space: normal;
    line-height: 1px;
    color: #000;
    display: inline;
    font-size: 14pt;
    background-color: #FFF;
    padding-top: 10px;
    margin-top: 20px;
    #header {
    background-image: url(Images/Proquip%20Logo/Proquip%20logo2.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    width: 885px;
    height: 126px;
    background-color: #000;
    margin-right: 2.5px;
    margin-left: 0px;
    #wrapper #container #contact p strong {
    color: #800000;
    font-size: 14pt;
    #wrapper #container #contact blockquote p a {
    color: #000;
    #wrapper #container #expect div {
    color: #900;
    font-size: 14pt;
    font-weight: bold;
    #wrapper #container #hours div {
    color: #900;
    font-size: 14pt;
    font-weight: bold;
    #box2 {
    background-image: url(Images/Option%201/Services/whitebox2.jpg);
    #box3 {
    background-image:url(Images/Option%201/Services/redbox2.jpg);
    background-repeat:no-repeat;
    background-position: center center;
    #gold {
    background-image:url(Images/Option%201/Logos/gold.gif);
    background-repeat:no-repeat;
    #white {
    background-image:url(Images/Option%201/ProQuip-Pics/box1.gif);
    background-repeat:no repeat;
    #forklift {
    background-image:url(Images/Option%201/ProQuip-Pics/34-01-4380.jpg);
    background-repeat:no-repeat;
    #scissorlift {
    background-image:url(Images/Option%201/ProQuip-Pics/jlg-scissor-lifts-21.jpg);
    background-repeat:no-repeat;
    /* Navigation Menu- Level one */
    ul {
    list-style: none
    ul.dropdown {
    font-size: 13pt;
    color: #000000;
    height: 25px;
    text-decoration: none !important;
    width: 860px;
    position: relative;
    vertical-align: top;
    ul#Bar.dropdown {
    width: 878px;
    position: relative;
    vertical-align: top;
    ul.dropdown li {
    font-weight: 600;
    float: left;
    zoom: 1;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13pt;
    display: block;
    width: 175px;
    color: #000000;
    top: 25px;
    text-decoration: none !important;
    text-align: center;
    ul.dropdown a:hover {
    color:#cc0000;
    ul.dropdown a:active {
    color: #000000;
    ul.dropdown li a {
    display: block;
    border-right: 1px solid#333;
    color: #000000;
    border-right-width: 1px;
    text-decoration: none !important;
    text-align: center;
    ul.dropdown li:last-child a {
    border-right:none; /* does not wotk in IE */
    text-decoration:none !important; } 
    ul.dropdown li.hover,
    ul.dropdown li.hover {
    color: #000000;
    position: relative;
    height: 28px;
    top: 0px;
    ul.dropdown li.hover a {
    color:#800000;
    /* Level Two Navigation */
    ul.dropdown ul {
    width: 180px;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 36%;
    display: block;
    float: left;
    color: #000000;
    text-decoration: none !important;
    height: 25px;
    ul.dropdown ul li {
    font-weight: normal;
    color: #000000;
    border-bottom: 1px solid #ccc;
    float: left;
    border-bottom-color: #c0c0c0;
    border-bottom-style: groove;
    display: block;
    background-color: #dbdbdb;
    text-decoration:none !important;
    /* IE 6&7 needs inline block */
    ul.dropdown ul li a {
    border-right: none;
    display: inline-block;
    height: 18px;
    line-height: 16px;
    color: #000000;
    width: 100%;
    text-decoration: none !important;
    /* Level Three Navigation */
    ul.dropdown ul ul {
    top: 100%;
    color: #000000;
    text-decoration: none !important;
    ul.dropdown li:hover>ul {
    visibility: visible;
    color: #000000;
    top: 30px;
    text-decoration: none !important;

    I have the site using tables up and running, this is a website for a client so I cant make a test site using that domain would it be ok if I screen shot'ed the problem?
    Date: Thu, 24 Apr 2014 12:19:44 -0700
    From: [email protected]
    To: [email protected]
    Subject: CSS Layout issue!! Help Urgent!!
        Re: CSS Layout issue!! Help Urgent!!
        created by Jon Fritz II in Dreamweaver support forum - View the full discussion
    Well, you're not using position:absolute, so you've got a big thumbs up from a bunch of us for that.
    Is there any chance you could post a link to this page on your server? It's much easier to troubleshoot from a browser than it is to rebuild the page from code fragments.
    If you haven't gone live with the page yet, create a folder called TEST in your site and save copies of the page and css there. Upload TEST and post a link to it here. Once the problem is found/fixed, delete TEST from the server.
    You can also attempt to use Firefox or Chrome to find your issue by right clicking > Inspect Element. All CSS that affects a given element will be displayed with file name and line numbers there.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6327947#6327947
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6327947#6327947
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6327947#6327947. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Dreamweaver support forum at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • How do I convert an AI - CMYK file to an editable PSD - RGB file ?

    Trying to design my online components from a AI CMYK poster for an event...but I'm getting terrible pixaltion when I drag and drop the different elements into PSD...so clearly its not converting.
    Is there a way to convert the Illustrator - CMYK file into and editable PSD file in RGB?
    Any help would be awesome.
    Cheers
    Kirby

    Here is a bit more detail, posted in teh /r/graphicdesign on Reddit
    "Not sure if this is the right sub but I'm wondering if anyone else has experienced pixilation when uploading banner images for event with Facebook?
    I'm exported this image http://imgur.com/vWV5OnN but when posted to Facebook it comes out like thishttp://imgur.com/sbhz94e
    Any ideas whats happening?"
    I designed the main poster as CMYK in AI- CS6
    Then dragged and dropped the layers into a new PSD - CS6 file.
    Maybe they arent' web safe colours?

  • Need help urgently with OS X and Windows 7

    I need help urgently.
    I installed Windows 7 on my macbook pro with OS X Lion. After installing Windows7, I accidently converted the basic volumes to dynamic volumes and now i can't even boot to OS X.
    Please help me how to recover my OS X Lion. If I have to delete Windows and bootcamp partitions, it is OK.
    I just want to get back my OS X bootable.
    Thanks

    thihaoo wrote:
    Sorry
    I can't even see the OS X partition when I hold down the "Option" key.
    I could see OS X and Windows partitions if I hold down Option key before changing the partitions to Dynamic partitions from Basic in Windows 7.
    Now can't see OS X partiton and only see Winodws partition but when I tried to boot onto Windows7 , I got BSOD and macbook pro restart.
    Please help
    The usual reason for the OSX partition to be invisible under these circumstances is that it has been trashed by Windows.
    Do you have a backup?

  • Photoshop CS2 opens but wont perform any task (open jpgs, create new jpgs etc). Other CS2 progs such as indesign are fine. MAC shop, couldn't fix, said I should ty install op system 4 Powerbook G4-dont have discs- can I get them?other solution? OS 10.4.11

    Photoshop CS2 opens but wont perform any task (open jpgs, create new jpgs etc). Other CS2 progs such as indesign are fine. MAC shop, couldn't fix, said I should try install op system 4 Powerbook G4-dont have discs- can I get them? or other solution? Am using OS 10.4.11 Thanks for any help

    Hi
    I actually dont think its Lion (sorry i put that as couldn't remember) as not on that computer at the moment, its at home, I am at work. I know CS2 is compatable with whatever OS I am using because I can using CS2 indesign etc and I was able to use CS2 photoshop until I updated the Camino browser (I believe this is when it stopped working). I have CS5 but it wont work at all on my Powerbook G4.
    I can send a message later with the OS I am using and maybe you can suggest other help? They told me in the MAC shop to try and get the installation discs. They also said I would be able to get these via Apple's 'media replacement programme' which I cannot find anyway! To be honest, I am not even sure getting the install discs will work but I'll try whatever I need to try and get Photoshop working on it again!
    Thanks

  • I am trying to save a photoshop CS6 psd file to jpg and get an option jpg, jpg2000 or jpg stereo, I choose jpg and then Mac 256 colours, normal or interlaced.  I just want regular jpg with a high resolution.  What am I doing wrong, never had this problem

    I am trying to save a photoshop CS6 psd file to jpg and get an option jpg, jpg2000 or jpg stereo, I choose jpg and then Mac 256 colours, normal or interlaced.  I just want regular jpg with a high resolution.  What am I doing wrong?  , never had this problem before.  Help!!! 

    Your description of the issue is not clear:
    What format, bit depth and color was your original file "from the net"?  It sounds like it was a Color Indexed GIF, which would cause what you are describing.
    In the Macintosh Finder, select said "net image" and do a Get Info on it (Command+i). When the Info box appears in the Finder, take a screen shot and upload it here by using the little camera icon in the Reply Editor in the forum's web interface.
    If the image is a 256-color GIF, remember the rule:  GIGO = garbage in, garbage out.

  • Convert RBG to CMYK in photoshop elements 7...

    Convert RBG to CMYK in Photoshop elements 7.....could not find how to do this in help...thanks

    Sorry, but this is one of the very hard lines that Adobe draws between PS and PSE. You simply can't do it in PSE, because they want you to buy PS for that.

  • HT1338 Photoshop CS2 opens but wont perform any task (open jpgs, create new jpgs etc). Other CS2 progs such as indesign are fine. MAC shop, couldn't fix, said I should ty install op system 4 Powerbook G4-dont have discs- can I get them? or other solution?

    Photoshop CS2 opens but wont perform any task (open jpgs, create new jpgs etc). Other CS2 progs such as indesign are fine. MAC shop, couldn't fix, said I should ty install op system 4 Powerbook G4-dont have discs- can I get them? or other solution?

    Hi
    I actually dont think its Lion (sorry i put that as couldn't remember) as not on that computer at the moment, its at home, I am at work. I know CS2 is compatable with whatever OS I am using because I can using CS2 indesign etc and I was able to use CS2 photoshop until I updated the Camino browser (I believe this is when it stopped working). I have CS5 but it wont work at all on my Powerbook G4.
    I can send a message later with the OS I am using and maybe you can suggest other help? They told me in the MAC shop to try and get the installation discs. They also said I would be able to get these via Apple's 'media replacement programme' which I cannot find anyway! To be honest, I am not even sure getting the install discs will work but I'll try whatever I need to try and get Photoshop working on it again!
    Thanks

  • Username and password- Need help urgently!

    Hi
    1) First of all, i have received an email stating that my account under Removed personal information to comply withCommunity GuidelinesandTerms and Conditions of Use.
    is being banned as there is multiple obsence post. I need to clarify that i have never used my account to post in BBM forum before. Even if i did, is when i need help urgently for my BBM application. Currently i am holding 4 bbms now. Have never came across this issue. Pls check and advise
    2) I urgently need to setup my email accounts. But this time round, when i logged in, they required for my email id and password. And yes my email id is Removed personal information to comply withCommunity GuidelinesandTerms and Conditions of Use. all the while for the past 4 years. I am unable to log in. I tried all kinds of password but unable to log into my mobile settings
    Verfiy Blackberry ID
    This application requires u to verify ur blackberry id to continue.
    blackberry ID username:
    Removed personal information to comply withCommunity GuidelinesandTerms and Conditions of Use.
    password:
    I went to the forget password option, unfortunately as i have never retrieved my password before, i am unable to remember the security question as i did not use it for the past 4 years.
    Pls advise.
    Urgent and thanks

    Hi,
    I have been trying this technique for the past 4 days. It doesnt work no matter how i change the password at the link that u gave me. Even though it's being reset accordingly, i am still unable to log in the password at my mobile. i am 100% sure that i have entered the correct password at my mobile. ( verify blackberry id) . I want to setup new email accounts under "setup" . Upon me clicking " email accounts", it prompt for the one key password. I have never faced this issue before. I am very very sure that my password is correct. Pls advise as i need to add email accounts. Other programs are working fine without any password required being prompt. ie. blackberry world
    This is very very urgent to be resolved. Pls help.

  • PASSWORD FOR FLODERS  PLEAse  HELP URGENT

    HI ALL
    please tell me the method of implementing password
    provision for some folders/files in the system.
    it should ask for password authentification before
    opening when i click on the folder.
    please help urgent
    thanks
    belur

    Hi Swaroopba,
    It can be very well done thru Form based Authentication.
    For eg let me explain with respect to Tomcat.
    Go to
    $TOMCAT_HOME/webapps/examples/WEB-INF directory.
    Please add the following code in it.
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Protected Area </web-resource-name>
    <!-- Define the context URL's to be protected -->
    <url-pattern>/jsp/security/protected</url-pattern>
    </web-resource-collection>
    </security-constraint>
    Please add the following code in it. And you have to specify the roles for it.
    I hope this will be helpful for you.
    Or if you want it in an application, please let me know.
    Thanks
    Bakrudeen

  • I need help in converting a pdf to a fillable form in my adobe

    I need help in converting a pdf to a fillable form in my adobe

    "Adobe" is a company. If you mean "Adobe Reader" then you can't (at least not easily). You need Adobe Acrobat for that.

Maybe you are looking for

  • How will i combine Purchasing and inventory datasources

    Dear Folks, I created one ODS based on 2lis_02_HDR and 2lis_02_itm and other ODS based on 2lis_03_bf and 2lis_03_bf here requirement is display a report with contract no,validity end date,material grp,vendor,pur grp,cost breakup(subtotal 1---6), Targ

  • Communications Express config error

    I am unable to configure Communications Express. I install JES2005Q1 on Sparc Solaris 9 - one-host install. Patches are up to date but when I want to configure with no display I receive Java exeptions. It doesn't matter wheter there is a "-nodisplay"

  • Apple is disable on ipad and cannot download apps

    Hello, I have no idea if anyone has had this problem but I purchased something on my ipad through itunes and I realized after that the my payment account was linked through paypal throught my checking account. If that makes any sense. I was given the

  • No address record error during installation

    Definitely new to linux I'm following the beginners' guide.  I've got to the point in which I Select Packages and get the error: Packman preparation failed! Check /dev/tty7 for errors When I check /dev/tty7 I see: Using mirror: ftp://mirrors2.kernel.

  • [SOLVED] UEFI doesn't "see" the 'EFI System' partition

    My BIOS/UEFI stop from "see" the 'EFI System' partition, there's shellx64.efi and a gummiboot installation and when I try to launch the shell only get "Not found" message. Here's the GPT: $ sudo gdisk -l /dev/sda GPT fdisk (gdisk) version 0.8.10 Part