Giving AuthenticationFailedException !!!!

Hi every body I am new in JavaMail , I am trying to send a mail in java .
Here is my code :
import javax.mail.*;
import javax.mail.internet.*;
import javax.activation.*;
import java.io.*;
import java.util.Properties;
public class MailClient
     public void sendMail(String mailServer, String from, String to,String subject, String messageBody) throws MessagingException, AddressException
         // Setup mail server
         Properties props = System.getProperties();
         props.put("mail.smtp.host", mailServer);
         props.put("mail.smtp.user", from);
         props.put("mail.smtp.password", "myPass");
         props.put("mail.smtp.port", "25");
         props.put("mail.smtp.auth", "true");
         props.setProperty("mail.debug", "true");
         // Get a mail session
         Session session = Session.getDefaultInstance(props, null);
           session.setDebug(true);
         // Define a new mail message
         Message message = new MimeMessage(session);
         message.setFrom(new InternetAddress(from));
         message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
         message.setSubject(subject);
         // Create a message part to represent the body text
         BodyPart messageBodyPart = new MimeBodyPart();
         messageBodyPart.setText(messageBody);
         //use a MimeMultipart as we need to handle the file attachments
         Multipart multipart = new MimeMultipart();
         //add the message body to the mime message
         multipart.addBodyPart(messageBodyPart);
         // Put all message parts in the message
         message.setContent(multipart);
         // Send the message
         Transport.send(message);
     public static void main(String[] args)
         try
             MailClient client = new MailClient();
             String server="server.com";                              
             String from="[email protected]";
             String to = "[email protected]";
             String subject="Test";
             String message="Testing";
             client.sendMail(server,from,to,subject,message);
         catch(Exception e)
             e.printStackTrace(System.out);
}When I am trying to run my application it gives me a run time exception :
DEBUG: JavaMail version 1.4.1
DEBUG: not loading file: C:\Program Files\Java\jdk1.6.0_01\jre\lib\javamail.providers
DEBUG: java.io.FileNotFoundException: C:\Program Files\Java\jdk1.6.0_01\jre\lib\javamail.providers (The system cannot find the file specified)
DEBUG: URL jar:file:/C:/Documents%20and%20Settings/satyab/Desktop/java%20mail/javamail-1.4.1/lib/pop3.jar!/META-INF/javamail.providers
DEBUG: successfully loaded resource: jar:file:/C:/Documents%20and%20Settings/satyab/Desktop/java%20mail/javamail-1.4.1/lib/pop3.jar!/META-INF/javamail.providers
DEBUG: URL jar:file:/C:/Documents%20and%20Settings/satyab/Desktop/java%20mail/javamail-1.4.1/lib/smtp.jar!/META-INF/javamail.providers
DEBUG: successfully loaded resource: jar:file:/C:/Documents%20and%20Settings/satyab/Desktop/java%20mail/javamail-1.4.1/lib/smtp.jar!/META-INF/javamail.providers
DEBUG: successfully loaded resource: /META-INF/javamail.default.providers
DEBUG: Tables of loaded providers
DEBUG: Providers Listed By Class Name: {com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun Microsystems, Inc], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun Microsystems, Inc], com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun Microsystems, Inc], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun Microsystems, Inc]}
DEBUG: Providers Listed By Protocol: {imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun Microsystems, Inc], imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc], smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun Microsystems, Inc], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun Microsy stems, Inc], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun Microsystems, Inc]}
DEBUG: successfully loaded resource: /META-INF/javamail.default.address.map
DEBUG: URL jar:file:/C:/Documents%20and%20Settings/satyab/Desktop/java%20mail/javamail-1.4.1/lib/smtp.jar!/META-INF/javamail.address.map
DEBUG: successfully loaded resource: jar:file:/C:/Documents%20and%20Settings/satyab/Desktop/java%20mail/javamail-1.4.1/lib/smtp.jar!/META-INF/javamail.address.map
DEBUG: not loading file: C:\Program Files\Java\jdk1.6.0_01\jre\lib\javamail.address.map
DEBUG: java.io.FileNotFoundException: C:\Program Files\Java\jdk1.6.0_01\jre\lib\javamail.address.map (The system cannot find the file specified)
DEBUG: setDebug: JavaMail version 1.4.1
DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
DEBUG SMTP: useEhlo true, useAuth true
javax.mail.AuthenticationFailedException
                    at javax.mail.Service.connect(Service.java:319)
                    at javax.mail.Service.connect(Service.java:169)
                    at javax.mail.Service.connect(Service.java:118)
                    at javax.mail.Transport.send0(Transport.java:188)
                    at javax.mail.Transport.send(Transport.java:118)
                    at MailClient.sendMail(MailClient.java:49)
                    at MailClient.main(MailClient.java:87)
For ur kind information am using JDK 1.6 .
Please help me out ,
Satya .

Appreciate for the reply ,
See I have read the FAQ , but not found any proper solution , so I think I should comment out the printstack(System.out);
Is there any better solution dude ?
S

Similar Messages

  • Reciving mail via IMAP giving authentication error with valid details

    Hi all,
    Thanks to shannon,i changed the imap .. bt now error is with the connect method, the username,password,whcih iam passing as a parametre.Its giving error as authentication error, login failed.. but the username and password were corret..
    store.connect(Host,username,password);
    Host value iam passing is the server ipaddress,even i tried with 4 parameters including portas int type no use.
    Please ,help to cross over this bug.
    Thanks for you ll n advance.
    Regards,
    Chintu

    Sorry for this late post but this is what debug says:
    DEBUG: getProvider() returning javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc]
    * OK [CAPABILITY IMAP4rev1 UIDPLUS CHILDREN NAMESPACE THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT QUOTA IDLE ACL ACL2=UNION STARTTLS] Courier-IMAP ready. Copyright 1998-2005 Double Precision, Inc. See COPYING for distribution information.
    A0 CAPABILITY
    * CAPABILITY IMAP4rev1 UIDPLUS CHILDREN NAMESPACE THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT QUOTA IDLE ACL ACL2=UNION STARTTLS
    A0 OK CAPABILITY completed
    A1 LOGIN user password
    A1 NO Login failed.
    Script threw exception: Sourced file: mail.java : Method Invocation store.connect : at Line: 11 : in file: mail.java : store .connect ( "host" , "user" , "password" )
    Target exception: javax.mail.AuthenticationFailedException: Login failed.
    javax.mail.AuthenticationFailedException: Login failed.
    at com.sun.mail.imap.IMAPStore.protocolConnect(IMAPStore.java:293)
    at javax.mail.Service.connect(Service.java:234)
    at javax.mail.Service.connect(Service.java:135)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at bsh.Reflect.invokeMethod(Unknown Source)
    at bsh.Reflect.invokeObjectMethod(Unknown Source)
    at bsh.Name.invokeMethod(Unknown Source)
    at bsh.BSHMethodInvocation.eval(Unknown Source)
    at bsh.BSHPrimaryExpression.eval(Unknown Source)
    at bsh.BSHPrimaryExpression.eval(Unknown Source)
    at bsh.Interpreter.eval(Unknown Source)
    at bsh.Interpreter.source(Unknown Source)
    at bsh.Interpreter.main(Unknown Source)

  • AuthenticationFailedException-invalid username format..?

    Hi gurus;
    Well i am facing a problem in trying to retrieve mail but can not be authenticated.It is giving only this exception
    AuthenticationFailedException-invalid username format
    I don't know what does invalid username format it means.
    I have make following code..
    ////////////////////////RecieveMail////////////////////////////
    public class RecieveMail extends javax.servlet.http.HttpServlet{
    public void doGet(javax.servlet.http.HttpServletRequest req,javax.servlet.http.HttpServletResponse res){
    try{
    Properties props = System.getProperties();
    props.put("mail.protocol.store","pop3");
    props.put("mail.pop3.auth", "true");
    Authenticator myAuthenticator = new Authentication("jawwad_33","super@12");
    Session session=Session.getDefaultInstance(props,myAuthenticator);
    Store store = session.getStore("pop3");
    store.connect("pop.themail.com","jawwad_33","super@12");
    }catch(Exception e){
    System.out.println("Exception is e"+e);
    /////////////////////////////Authentication/////////////////////////////
    public class Authentication extends Authenticator {
    public static String user;
    public static String pwd;
    public Authentication(String userid,String pwd){
    this.user=userid;
    this.pwd=pwd;
    public PasswordAuthentication getPasswordAuthentication() {
    return new PasswordAuthentication(this.user,this.pwd );
    Will be very thankful for any kind of help.
    Thanks
    Jawwad Ahmed

    Hi;
    I found the mistake right now.I have to use [email protected] so it will work.
    Thanks
    Jawwad Ahmed

  • I am trying to open CR2 files from a Cannon EOS 1DX camera in Photoshop CS6 and I have already updated the Camera Raw Plug in but Photoshop is still giving me the cannot open files dialog box? Help?

    I am trying to open CR2 files from a Cannon EOS 1DX camera in Photoshop CS6 and I have already updated the Camera Raw Plug in but Photoshop is still giving me the cannot open files dialog box? Help?

    Canon 1DX support was added to ACR in version 6.7, 7.1.  An updated CS6 should be at level ACR 8.6.  If your ACR is not at level 8.6 try using CS6 menu Help>Updates.  If that does not install ACR 8.6 try downloading the ACR and DNG 8.6 converter and see if ACR 8.6 will install into your CS6.
    Adobe - Adobe Camera Raw and DNG Converter : For Windows
    Adobe - Adobe Camera Raw and DNG Converter : For Macintosh

  • My Mozzilla crashed: "We're Sorry....Firefox had a problem..." I download the new version and it is still giving me the crash report.

    My Mozzilla crashed: "We're Sorry....Firefox had a problem..." I download the new version and it is still giving me the crash report.
    I tried to loading in "safe mode" but I still could not open Firefox.
    I never received a crash i.d.

    It is possible that there is a problem with the files [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    Delete [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.
    Deleting sessionstore.js will cause App Tabs and Tab Groups to get lost, so you will have to create them again (make a note).
    See:
    * http://kb.mozillazine.org/Session_Restore

  • How can I remove an iTunes account from a computer I'm giving away?

    How do I remove my iTunes account from a computer that I am giving to a student in my school? I want the music I purchased to play, but I don't want the student to have access to my email address or my credit card that is tied to "my account". I went through the steps to deauthorize a computer but encountered two problems:  1) The only command offered was "deauthorize all". There was no list of the authorized computers where I could check a box to select the one to deauthorize.  2) If I want to leave the music with the computer, but remove the authorization.

    If you are giving the computer away you should not include music you've purchased: the purchase doesn't include the right to make copies to give to other people, which is what you would in effect be doing. The same applies to any purchased sofrtware which wasn't bundled with the computer when new.
    The proper procedure when selling or giving a computer is to erase it completely and restore it to its out-of-the-box condition from the original disks. You should also make sure to include the disks which came with the computer.

  • How can I make an iTunes/Store account without giving my credit card?

    Hi everyone,
    We recently decided to start giving out iPhones at work on our company cell plan to employees.
    Along with this, we're using one of the AppStore apps to do user tracking/maintenance on the phone, and I was curious if there was any way to make the Apple IDs/Appstore accounts without giving a credit card number to verify the account.
    We don't want to have everyone use their own credit cards, nor do we want to use the company cards to register, in case someone gets crazy and starts buying paid apps.
    Is there any way around this?

    tmartinpa wrote:
    All of those choices (from what I can see) still involve using a credit card at some point to make the Store account.
    Is there a way to not use a credit card?
    The articel entitled:"
    Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card"
    Describes exactly how to make an account without a credit card.  DO as the articles says.

  • Creation of triggers using CFQUERY tag is giving error

    Hi,
    I am creating triggers and stored procedure on ORACLE data
    base using <CFQUERY>.
    <CFQUERY DATASOURCE="CRM">
    create or replace trigger AWC_ACCOUNTINGPERIODSID_TRI
    before insert on AWC_ACCOUNTINGPERIODS
    for each row
    begin
    select AWC_ACCOUNTINGPERIODSID_SEQ.nextval into :new.AP_ID
    from dual;
    end;
    </CFQUERY>
    But the created trigger is not compiled, it is giving the
    following error
    "Line # = 1 Column # = 6 Error Text = PLS-00103: Encountered the
    symbol "" when expecting one of the following: begin case declare
    exit for goto if loop mod null pragma raise return select update
    while with <an identifier> << close current delete
    fetch lock insert open rollback savepoint set sql execute commit
    forall merge pipe The symbol "" was ignored."
    If I edit that trigger in enterprise manager console by
    pressing space and compile that, it is working fine with out any
    error. If i run the above statement in sql *plus, It is working
    fine with out any error. Can you please tell me why this is
    happening if i run it using cfquery tag and also the possible
    solutions.
    Thanks in advance,
    Vinod

    I can't tell you why your particular trigger is failing, but
    here is some "typical" reasons from Oracle's metalink.
    Common reasons for PLS-00103
    Error Summary
    PLS-00103 Encountered the symbol "%s" when expecting one of
    the following (Oerr
    LS.103)
    Error Details
    ~~~~~~~~~~~~~
    Error: PLS-00103
    Text: Encountered the symbol "%s" when expecting one of the
    following:
    Cause: This error message is from the parser. It found a
    token
    (language element) that is inappropriate in this context.
    Action: Check previous tokens as well as the one given in the
    error message. The line and column numbers given in the
    error
    message refer to the end of the faulty language construct.
    PLS-00103 errors can often be difficult to localize what the
    error is so here are some
    common reasons for PLS-00103 errors..
    A very common reason for PLS-00103 is when a reserved word is
    used, with a reserved word
    means words that names an oracle object or a built in
    procedure, for example MOD, ABS,
    TABLE, VIEW etc..
    When trying to use SQL*PLUS commands in PL/SQL procedures,
    like SPOOL, SET and other
    commands that belongs to SQL*PLUS can result in this error.
    Using parameter declaration at the IN/OUT clause in a
    procedure, this works in versions
    prior to 8.0.4, but it just ignored the declaration.
    Using DDL commands in PL/SQL will fail in PLS-00103, the way
    to use DDL commands is
    to build a procedure in dynamic sql.
    When creating package specification and a package body, a
    PLS-00103 error will occur
    if there is no slash, '/', after the package specification.
    Phil

  • After downloading & installing application of adobe creative suite cs2 version 6,  screen of adobe photoshop cs2 is not opened by clicking icon . message is giving " ausba4.dll " was not present. Please guide me.?

    I have downloaded & installed adobe creative suit cs2 version 6 but when I click the icon of adobe photoshop in desktop it is not opened & giving message " this application has failed to start because " ausba4.dll " was not found. reinstalling of the application may fix the problem " I have reinstall & opened many times but even then it is not opened. Please guide me accordingly.

    I'd try disabling the Twain_32.8BA plugin in
    C:\Program Files\Adobe\Adobe Photoshop CS2\Plug-Ins\Import-Export
    You can disable the plugin by putting an ~ (tilde) in front of the name or moving the plugin to your desktop.
    Then try photoshop cs2 and see if you still get the error message.
    I suspect the error has to do with your scanner driver, since photoshop cs2 does not have an ausba4.dll

  • Custom error message in user exit is giving Short dump

    Hi All,
    We have a scenario where in if any user try to create/Change/Delete particular types of contract in SAP system we have to issue error message
    saying ZIN/ZIR contract creation/Change/Deletion is blocked in SAP. This has to be done from the web application. So we are putting below code
    in user exit MV45AFZZ in the form USEREXIT_SAVE_DOCUMENT_PREPARE.
    CONSTANTS: lc_vbcpic01 TYPE sy-uname VALUE u2018VBCPIC01u2019, u201CWeb application user ID
             lc_zin           TYPE vbak-auart VALUE u2018ZINu2019,
                         lc_zir            TYPE vbak-auart VALUE u2018ZIRu2019,
                         lc_text(32)    TYPE c VALUE u2018Check long text for more detailsu2019.
    DATA: l_uname TYPE sy-uname.
    CLEAR: l_uname.
    MOVE sy-uname TO l_uname.
    *If user ID is not the Web application ID then block the creation/Change/Deletion
    IF   l_uname NE lc_vbcpic01
    AND ( vbak-auart EQ lc_zin
    OR    vbak-auart EQ lc_zir ).
    MESSAGE e830(zv) WITH lc_text.
    ENDIF.
    This code is working fine while creating/Changing the contract i.e. Giving us error message so that user wonu2019t be able to create/change the contract.
    But when we delete the contract from VA42, Control is coming to this message statement and is giving Short dump. Below is the error analysis of the dump.
    Error Analysis:
    During "Exit Command" processing, the program tried to send a " " message.
    This is not allowed at this point in processing.
    The program had to be terminated.
    Screen name.............. "SAPMV45A"
    Screen number............ 4001
    If any one has come across such scenario/any work around for this problem please let me know your inputs. Your inputs are highly appreciated.
    I am working on 4.6C version of SAP.
    Note: When i issue information/Warning message contract is getting deleted after displaying the message.
    Thanks,
    Vinod.

    I exactly replicated the same in DELETE_DOCUMENT also
    I am getting the Dump. I tried with exit also , but it continued and deleted. To avoid deletion we have to use Leave program or LEAVE TO CURRENT TRANSACTION.
    Delete Function is Defined as EXIT command. so it is not possible to give error message. To convice you i just copied demo program and raised the error message.
    it is also giving the dump.
    copy the demo program DEMO_DYNPRO_AT_EXIT_COMMAND and make this change , information to error .
    MODULE cancel INPUT.
      MESSAGE e888(sabapdocu) WITH text-001 ok_code input1 input2.
      IF ok_code = 'CANCEL'.
        CLEAR ok_code.
        LEAVE PROGRAM.
      ENDIF.
    ENDMODULE.
    and see...

  • In SMARTFORMS when openee a Text Node,   Giving a Short Dump

    Hi
    I am getting Short Dump in SMARTFORMS Transaction, when ever I opened a Text Node and made some changes in it.
    With out opening a Text Node I can able to change and activate the SmartForm.
    But if I open a Text Node I can able to make changes in the Text Node but later if i click on any other Node, it is giving a Short Dump.
    But all other systems in my office are working fine.
    I have tried the Utilities->Settings-> and changed the editor also. 
    I have also Installed the SAPGUI once again for this Issue. But still I am getting the same problem.
    Can anyone Please help me on this Issue.
    I am sending the error enalysis of the Short Dump.
    Error analysis
        Short text of error message:
        Control Framework : Error processing control
        Long text of error message:
         Diagnosis
             An error occurred when the system tried to process the commands
             from the Automation Queue on the presentation server.
             There are several possible reasons for this:
             - The installation of the SAP GUI on the presentation server is
             faulty or obsolete.
             - There is an error in the application program
             - There is an error in the SAPGUI or an integrated control
         Procedure
             1. Make sure that you have imported the appropriate Support
             Package, the current kernel, and GUI patch for the release of your
             system
             2. Check whether the error occurs locally on one or a few PCs, or
             generally on all PCs. Note whether the error only occurs for some
             users, for example because of a specific Customizing setting.
             If it only occurs locally, this suggests an installation problem
             with the PC. Check the installation; if necessary, reinstall the
             software. In the dump, search for the SY-MSGLI field, since it may
             point to the cause of the error.
             3. Activate the Automation Trace (in accordance with SAP Note
             158985).
             4.Start the transaction and continue until the screen immediately
             before the dump.
             5. From the System -> Utilities menu, choose Autom. Queue,
             Synchronous Processing.
             The status bar of the GUI displays the text:
                "Automation synchron flush mode on"
             6. If you now proceed with the application, the short dump will
             display the ABAP call that caused the error; the Automation Trace
             will contain the error on the presentation server.
             7. If necessary, load the short dump and trace files on to
             sapservX, so that SAP can analyze them.
        Technical information about the message:
        Message class....... "CNDP"
        Number.............. 006
    Thanks in Advance.

    Hi
    I think dump is because of SAP GUI. If you are ECC 6.0 then install SAP GUI 710 with patch level  2 or more and check
    Regards
    Shiva

  • I downloaded and bought a movie from iTunes on my iPad and now want the same movie on my MacBook Pro but its not offering me to download it, it giving me the options of buying it which I already did. How I get the movie onto my MacBook?

    I downloaded and bought a movie from iTunes on my iPad and now want the same movie on my MacBook Pro but its not offering me to download it, it giving me the options of buying it which I already did. How I get the movie onto my MacBook?

    You can connect the iPad to your Mac's iTunes and do File > Devices > Transfer Purchases, that should copy it over to the Movies part of your library.
    Depending upon what country that you are in, and whether the film studio allows it, you might also be able to re-download it on your Mac via the Purchased link under Quicklinks on the right-hand side of the iTunes store home page.

  • Windows Server 2012 R2 with Exchange Server 2013 SP1 Completely fresh install giving errors signing into EAC

    Hi,
    I am struggling with a completely clean installation of Server 2012 R2 and Exchange 2013 SP1.  I followed these steps:
    Installed Server OS
    Windows Updates
    Added Active Directory Role (This is a single standalone server that would have been SBS until it was dropped)
    Added DHCP & DNS
    Added Certificate Services
    Added Windows Server Update Services (WID Database & WSUS Services)
    Windows Updates
    Added Media Foundation
    Added File Server Resource Manager and Work Folders
    Added Windows Server Backup
    Windows Updates
    Checked all running without errors in Server Manager and performed a full bare bones backup.
    Ran Setup.exe from Exchange 2013 SP1 disc.
    Installed Pre-requisites and then rebooted
    Windows Updates
    Ran Setup.exe from Exchange 2013 SP1 disc.
    Installation completed without errors
    Rebooted
    Checked all running without errors in Server Manager.
    I Launch Exchange Administrative Center and get "problem with website's server certificate error" (normal on machine with self-assigned certificates).  Click Continue to Website and get:
    Windows Security dialog box:
    iexplore - "The server localhost is asking for your username and password.  The server reports that it is from Digest"
    however no username and password combination will work:  have tried [Administrator]; [Domain\Administrator] even created a user to no avail.
    I believe the issue is somewhere in the IIS configuration because I also get the same error when trying to log into the server website from either the server or another machine on the network.
    I have tried the complete installation three times now:  (full disclosure not all of the same features/roles each time).  On the first attempt I got this error immediately and on try number 2 was able to get into the EAC and created the mailboxes
    but then it started giving the same error.  The above steps are try number 3.
    Any ideas?
    Thanks in advance.
    Andy Halford
    P.S. A Follow up which might be significant:  The Default Web Site is not running and will not start (it was previously running before the Exchange installation) and when I try I get the message that Another Website may be using the same port however none
    of the others (Exchange Back End or WSUS Administration) are using ports 80 or 443 and I still get the error when they are both stopped.

    Could you post the list of sites:
    appcmd list site
    The ones listening on port 80:
    appcmd list site /bindings:http/*:80:
    And on port 443:
    appcmd list site /bindings:https/*:443:
    Step by Step Screencasts and Video Tutorials

  • My original Apple ID is giving me grief when I try to log on to Support- Communities.  Can somebody help?

    I had to create a new email address, then using the new email address I created this Apple ID to log in here.  But my normal email address (and original Apple ID) is giving me nothing but grief when I try to log on to support->communities.  On my iPhone: [ When I type in my normal email address and password, I'm taken to another login page that says in red letters "Please sign in again.  For added security, we need to reconfirm your Apple ID."  When I re-enter my password, I get an error "Safari cannot open the page. The error was: "cannot decode raw data". " ]
    On my iMac running Firefox, same story but the error is something about unable to load data because of an unsupported compressed format, and it says to contact the web administrator (which would be Apple) - when I press the button "try again" it gets me to the appleid.apple.com page that asks me to pick a user name (to be seen by other members of the community).  From there I also run in circles (see below):
    Telephone tech support keeps sending me to appleid.apple.com which also gives me nothing but grief:  it asks me to pick a user id (a nickname to be used in the forums) but when I do, I get the error message in red font telling me that there is already somebody using my Apple ID (which is of course my email and therefore is my account)  -- so why are they asking me to pick a user ID if I already have one?  This is very frustrating.  When I call and talk to tech support, they try to get me to buy extended service to help me log in, but the reason I'm trying to log in to support->communities is because I can't afford extended service.  The people patient enough to stay on the phone tell me to go to iTunes and fill out a support request, but there's no option to fill out a support request for website difficulties.  Please help!
    I think this is probably because my original Apple ID was "mtalldude" and instead of creating a new account when Apple switched to using email addresses as Apple IDs I just changed my ID to my email address. My original ID may be ten or twenty years old. I don't mind saying that my new login id (the one I'm having trouble with) is sal_mander at hotmail in case a website administrator is reading this and can help me and needs this info and can reset whatever is broken and is not allowing me to pick a user name.  Please don't spam me fellow humans!

    Thanks for the flag J.K. - they contaced me and solved my problem.  On this account (which I created just to ask this question), I log in with my email rather than my user name (mtalldud). On the account that I was having trouble with, they told me to use my user ID instead of my email to log in and it worked. This is a bit confusing and seems a bit inconsistent but at least I don't need this temporary account any more to get into this community and find answers!

  • User cannot change password option is automatically getting unchecked while giving domain admin rights

    user cannot change password option is automatically getting unchecked while giving domain admin rights

    Greetings!
    "Domain Admins" falls into the category of protected groups and it is included in ADminSDHolder process. It is normal and was designed in order to prevent the modification to these privileged groups. More information on the link below:
    AdminSDHolder, Protected Groups and SDPROP
    Regards.
    Mahdi Tehrani   |  
      |  
    www.mahditehrani.ir
    Please click on Propose As Answer or to mark this post as
    and helpful for other people.
    This posting is provided AS-IS with no warranties, and confers no rights.
    How to query members of 'Local Administrators' group in all computers?

Maybe you are looking for

  • HP C309a - Blue screen - C2FE0100 Error code- 7 blinking lights!

    HP 309a - Photosmart - Up-to-date drivers, New ink too. Cleaned print head with alcohol wipes. Will not print. Control panel screen displays HP logo for about 7 seconds, then the display turns blue with white letters/numbers : C2FE0100, then same pan

  • Which battery model should I buy?

    I have a 2007 17-inch macbook pro which the battery just died. The model number is A1189 and I would like to know which battery model is compatible that can replace it. Thanks!

  • The difference in calling an application module from a backing bean

    Hello everybody! I don't understand exactly, where is the difference in calling an application module from a backing bean in the following ways. Example 1 FacesContext context = FacesContext.getCurrentInstance(); ValueBinding vb = context.getApplicat

  • Copying table stg to datamart

    below is the code and preview of the stg to datamart.It is returning nme null values in destinayion.What do you think is wrong. Thanks. SELECT [BATCH_AGENCY] ,[BATCH_DATE] ,[BATCH_TYPE] ,[BATCH_NO] ,[DOC_INDEX] ,[LINE_NO] ,[FUND_SPLT_SEQ_NO] ,[DUP_RE

  • Please suggest me Any Java Software Testing Tool

    my application has many customize UI Swings components, so please specify any suitable testing tool for Java Desktop apllication