Vista clients not authenticating against WPA

I have an 1100 AP that works fine for XP and 7920 phones using WPS-PSK, but NONE of the Vista machines, whether they are home or business edition can connect. The SSID is not broadcast, the error I get is out of range, yet the AP is less than 10 feet away. When I enable broadcast I get encryption errors, but nothing tells me what kind. Is there a fix for this?
My conclusion is that Vista plain downright sucks.

Make sure you don't have CCKM on, as this was a large issue for our wireless deployment. We have 4000+ AP's and some 2000-4900 concurrent users of which a growing number are using Vista. From what I have seen is that any driver from 2006 or the early part of 2007 will not work for WPA/WPA2 reliably. From about May on there have been drivers that have worked pretty well for Atheros, Broadcom, and Intel.

Similar Messages

  • Client not authenticated.

    Hi Guys,
    i have the following program
    import sun.net.smtp.SmtpClient;
    import java.io.PrintStream;
    public class EmailExample {
    public static void main(String[] args) {
    try{
    SmtpClient send = new SmtpClient("mySMTPIpAddress");
    //assumes localhost has the SMTP
    send.from("[email protected]");
    send.to("[email protected]");
    PrintStream message = send.startMessage();
    message.println("To: [email protected]");
    message.println("From: [email protected]");
    message.println("Subject: Hi");
    message.println("Hai man How is life")
    send.closeServer();
    catch(Exception e) {
    System.out.println(e.toString());
    e.printStackTrace();
    i get the following error:
    sun.net.smtp.SmtpProtocolException: 454 5.7.3 Client was not authenticated.
    sun.net.smtp.SmtpProtocolException: 454 5.7.3 Client was not authenticated.
    at sun.net.smtp.SmtpClient.issueCommand(SmtpClient.java:51)
    at sun.net.smtp.SmtpClient.from(SmtpClient.java:102)
    at EmailExample.main(EmailExample.java:11)
    any comments would be really appreciated.

    You can find a SMTP Mailer Component that will easily send email messages, including attachments, at http://www.codecadet.com/components/ComponentDetail.aspx?ComponentID=ei47v8RePm0=. This component provides an easy to use interface/wrapper to the Java Mail API. Souce code and documentation is included.

  • Error: "javax.mail.MessagingException: 505 5.7.3 Client not Authenticated

    While trying to run a program to sent sms to mobile(with airtel connection)it shows the Error:
    "javax.mail.MessagingException: 505 5.7.3 Client was not Authenticated.
    If anyone knows how to resolve this problem please reply.
    The Code is as follows:
    import java.io.*;
    import java.net.InetAddress;
    import java.util.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    public class EmailSMS
    String TO;
    String FROM;
    String SUBJECT,TEXT,MAILHOST,LASTERROR;
    public static void main(String [] args) throws Exception
         EmailSMS SMS=new EmailSMS();
         SMS.setMailHost("kcsl.com");
         SMS.setTo("[email protected]");
         SMS.setFrom("[email protected]");
         SMS.setSubject("");
         SMS.setText("Hello World");
         boolean ret = SMS.send();
         if(ret){
              System.out.println("SMS was sent");
         else
              System.out.println("SMS was not sent"+SMS.getLastError());
    public EmailSMS()
         TO=null;
         FROM=null;
         SUBJECT=null;
         TEXT=null;
         LASTERROR="No methods calls";
    public void setTo(String to){TO=to;}
    public String getTo(){return TO;}
    public void setFrom (String from){FROM=from;}
    public String getFrom(){ return FROM;}
    public void setSubject(String subject){SUBJECT=subject;}
    public String getSubject(){return SUBJECT;}
    public void setText(String text){TEXT=text;}
    public void setMailHost(String host){MAILHOST=host;}
    public String getMailHost(){return MAILHOST;}
    public String getLastError(){return LASTERROR;}
    public boolean send()
         int maxLength;
         int msgLength;
         //Check to make sure that the parameters are correct
         if(TO.indexOf("mobile.att.net")>0)
              maxLength=140;
         else if(TO.indexOf("messaging.nextel.com")>0)
         {maxLength=280;}
         else if(TO.indexOf("messaging.sprintpcs.com")>0)
         {maxLength=100;}
         else maxLength=160;
         msgLength=FROM.length()+1+SUBJECT.length()+1+TEXT.length();
         if(msgLength>maxLength)
              LASTERROR="SMS length too long";
              return false;
         //set email properties
         Properties props=System.getProperties();
         if(MAILHOST!=null){props.put("mail.smtp.host",MAILHOST);}
         Session session=Session.getDefaultInstance(props,null);
         try{
              Message msg=new MimeMessage(session);
              if(FROM!=null){msg.setFrom(new InternetAddress(FROM));}
              else{msg.setFrom();}
              msg.setSubject(SUBJECT);
              msg.setText(TEXT);
              msg.setRecipients(Message.RecipientType.TO,InternetAddress.parse(TO,false));
              msg.setSentDate(new Date());
              Transport.send(msg);
              LASTERROR="Success";
              return true;
         catch(MessagingException max ){LASTERROR=max.getMessage();
         return false;}
    thanku

    Hi,
    it seems to me that you must authenticate with your smtp host. In order to do so, try following:
    While trying to run a program to sent sms to
    mobile(with airtel connection)it shows the Error:
    "javax.mail.MessagingException: 505 5.7.3 Client was
    not Authenticated.
    If anyone knows how to resolve this problem please
    reply.
    The Code is as follows:
    import java.io.*;
    import java.net.InetAddress;
    import java.util.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    public class EmailSMS
    String TO;
    String FROM;
    String SUBJECT,TEXT,MAILHOST,LASTERROR;
    public static void main(String [] args) throws
    Exception
         EmailSMS SMS=new EmailSMS();
         SMS.setMailHost("kcsl.com");
         SMS.setTo("[email protected]");
         SMS.setFrom("[email protected]");
         SMS.setSubject("");
         SMS.setText("Hello World");
         boolean ret = SMS.send();
         if(ret){
              System.out.println("SMS was sent");
         else
    System.out.println("SMS was not
    t sent"+SMS.getLastError());
    public EmailSMS()
         TO=null;
         FROM=null;
         SUBJECT=null;
         TEXT=null;
         LASTERROR="No methods calls";
    public void setTo(String to){TO=to;}
    public String getTo(){return TO;}
    public void setFrom (String from){FROM=from;}
    public String getFrom(){ return FROM;}
    public void setSubject(String
    subject){SUBJECT=subject;}
    public String getSubject(){return SUBJECT;}
    public void setText(String text){TEXT=text;}
    public void setMailHost(String host){MAILHOST=host;}
    public String getMailHost(){return MAILHOST;}
    public String getLastError(){return LASTERROR;}
    public boolean send()
         int maxLength;
         int msgLength;
         //Check to make sure that the parameters are correct
         if(TO.indexOf("mobile.att.net")>0)
              maxLength=140;
         else if(TO.indexOf("messaging.nextel.com")>0)
         {maxLength=280;}
         else if(TO.indexOf("messaging.sprintpcs.com")>0)
         {maxLength=100;}
         else maxLength=160;
         msgLength=FROM.length()+1+SUBJECT.length()+1+TEXT.leng
    h();
         if(msgLength>maxLength)
              LASTERROR="SMS length too long";
              return false;
         //set email properties
         Properties props=System.getProperties();
         if(MAILHOST!=null){props.put("mail.smtp.host",MAILHOST
    Session
    session=Session.getDefaultInstance(props,null);
         try{     // Get a Transport object to send e-mail
                   Transport bus = session.getTransport("smtp");
                   // Connect only once here
                   // Transport.send() disconnects after each send
                   bus.connect(host, username, password);
              Message msg=new MimeMessage(session);
    if(FROM!=null){msg.setFrom(new
    w InternetAddress(FROM));}
              else{msg.setFrom();}
              msg.setSubject(SUBJECT);
              msg.setText(TEXT);
              msg.setRecipients(Message.RecipientType.TO,InternetAd
    ress.parse(TO,false));
              msg.setSentDate(new Date());// Send message
              bus.send(msg);
              bus.close();
              LASTERROR="Success";
              return true;
    catch(MessagingException max
    ){LASTERROR=max.getMessage();
         return false;}
    thankuGood luck

  • ISE Not Authenticating Against RSA SecurID

    In the process of integrating ISE 1.2 into our environment with the eventual intent to replace ACS 5.x and having a challenge adding an RSA SecurID server as an external identity source.
    In ACS, we would create an internal user but configure the password to be handled externally and uses PAP or whatever to communicate with RSA.
    I don't see this option in ISE, only to use the RSA SecurID as a direct Identity Source, the problem is that if I try to authenticate to ISE using a device such as an iPhone, which is using MS-CHAPv2 by default, it produces an error in the authentication logs that the device is using a protocol not supported by the identity source.
    So what is the proper way to configure ISE to allow users to authenticate with a one-time-password against RSA SecurID?

    check the following link for Integrating Cisco ISE with RSA SecurID Server
    http://www.cisco.com/en/US/docs/security/ise/1.0/user_guide/ise10_man_id_stores.html#wp1080334

  • Jabber client not authenticating outside of network

    Everything works inside of our network... ie authenticating with the VCS but not outside the network.
    I started a log on the Expressway and then went outside of our network and tried to connect to Jabber.
    I have my expressway zones set to do not check credentials and my control settings set to check credentials.
    the control is connected to AD.... and the expressway is connected to LDAP (not sure if that matters)
    I've got the jabber template set up in TMS with the VCSE address in.
    I'm not too technical with this but would anybody be able to help.
    This is the log below.. any ideas why it won't log in?
    Detail="Receive Request Method=SUBSCRIBE, Request-URI=sip:[email protected], [email protected]"
    2013-08-07T14:24:20+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:20,949" Module="network.sip" Level="DEBUG":  Src-ip="82.132.234.165"  Src-port="39014"
    SIPMSG:
    |SUBSCRIBE sip:[email protected] SIP/2.0
    Via: SIP/2.0/TLS 10.5.161.68:54616;branch=z9hG4bKb90dd0448af3919e2bf7b557b3e264e4.1;received=82.132.234.165;rport=39014
    Call-ID: [email protected]
    CSeq: 201 SUBSCRIBE
    Contact: <sip:[email protected]:54616;transport=tls>
    From: <sip:[email protected]>;tag=2c7a45453c26f945
    To: <sip:[email protected]>
    Max-Forwards: 70
    Route: <sip:vcse ip address:5061;lr;transport=tls>
    User-Agent: TANDBERG/774 (MCX 4.5.7.16762) - Windows
    Expires: 300
    Event: ua-profile;model=movi;vendor=tandberg.com;profile-type=user;version=4.5.7.16762;clientid="S-1-5-21-3613096711-2978834610-2195627325";connectivity=1
    Accept: application/pidf+xml
    Content-Length: 0
    |
    2013-08-07T14:24:20+01:00 vdot-vcse tvcs: UTCTime="2013-08-07 13:24:20,951" Module="network.sip" Level="INFO":  Dst-ip="82.132.234.165"  Dst-port="39014"   Detail="Sending Response Code=404, Method=SUBSCRIBE, To=sip:[email protected], [email protected]"
    2013-08-07T14:24:20+01:00 vdot-vcse tvcs: UTCTime="2013-08-07 13:24:20,951" Module="network.sip" Level="DEBUG":  Dst-ip="82.132.234.165"  Dst-port="39014"
    SIPMSG:
    |SIP/2.0 404 Not Found
    Via: SIP/2.0/TLS 10.5.161.68:54616;branch=z9hG4bKb90dd0448af3919e2bf7b557b3e264e4.1;received=82.132.234.165;rport=39014;ingress-zone=DefaultZone
    Call-ID: [email protected]
    CSeq: 201 SUBSCRIBE
    From: <sip:[email protected]>;tag=2c7a45453c26f945
    To: <sip:[email protected]>;tag=ac4e538d118e31a0
    Server: TANDBERG/4120 (X7.2.1)
    Warning: 399 192.168.10.10:5061 "Policy Response"
    Content-Length: 0
    |
    2013-08-07T14:24:21+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:21,125" Module="network.tcp" Level="DEBUG":  Src-ip="82.132.234.165" Src-port="39014" Dst-ip="192.168.10.10" Dst-port="5061" Detail="TCP Connection Closed"
    2013-08-07T14:24:34+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:34,501" Module="network.h323" Level="INFO":  Src-ip="10.10.1.70"  Src-port="1719"
      Detail="Received RAS NST  SeqNum=22573  ASSENT Probe"
    2013-08-07T14:24:34+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:34,501" Module="network.h323" Level="DEBUG":  Src-ip="10.10.1.70"  Src-port="1719"
    Received RAS PDU:
    value RasMessage ::= nonStandardMessage :
       requestSeqNum 22573,
       nonStandardData
         nonStandardIdentifier h221NonStandard :
           t35CountryCode 130,
           t35Extension 1,
           manufacturerCode 256
         data '03000004'H
       genericData
           id nonStandard : 'C2F2D2A2152711DDA1230FC456D89593'H,
           parameters
               id nonStandard : 'C2F2D2A2152711DDA1230FC456D89593'H,
               content raw : '3C7265736F757263657573616765696E666F3E3C74726176657273616C63616C6C7361 ...'H
    2013-08-07T14:24:34+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:34,501" Module="network.h323" Level="INFO":  Dst-ip="10.10.1.70"  Dst-port="1719"
      Detail="Sending RAS NST  SeqNum=22573  ASSENT Probe"
    2013-08-07T14:24:34+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:34,501" Module="network.h323" Level="DEBUG":  Dst-ip="10.10.1.70"  Dst-port="1719"
    Sending RAS PDU:
    value RasMessage ::= nonStandardMessage :
       requestSeqNum 22573,
       nonStandardData
         nonStandardIdentifier h221NonStandard :
           t35CountryCode 130,
           t35Extension 1,
           manufacturerCode 256
         data '03000004'H
       genericData
           id nonStandard : 'C2F2D2A2152711DDA1230FC456D89593'H,
           parameters
               id nonStandard : 'C2F2D2A2152711DDA1230FC456D89593'H,
               content raw : '3C7265736F757263657573616765696E666F3E3C74726176657273616C63616C6C7361 ...'H
    2013-08-07T14:24:37+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:37,911" Module="network.sip" Level="INFO":  Src-ip="10.10.1.70"  Src-port="25596"   Detail="Receive Request Method=OPTIONS, Request-URI=sip:192.168.10.10:7001;transport=tcp, [email protected]"
    2013-08-07T14:24:37+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:37,912" Module="network.sip" Level="DEBUG":  Src-ip="10.10.1.70"  Src-port="25596"
    SIPMSG:
    |OPTIONS sip:192.168.10.10:7001;transport=tcp SIP/2.0
    Via: SIP/2.0/TCP 10.10.1.70:5060;branch=z9hG4bK5380daf2a89606ecf38ba965c659b393156967;received=10.10.1.70;rport=25596
    Call-ID: [email protected]
    CSeq: 57054 OPTIONS
    From: <sip:10.10.1.70>;tag=719e3d6280295d7b
    To: <sip:192.168.10.10:7001>
    Max-Forwards: 0
    User-Agent: TANDBERG/4120 (X7.2.1)
    Supported: com.tandberg.vcs.resourceusage
    Content-Type: text/xml
    Content-Length: 250
    <resourceusageinfo><traversalcallsavailable>250</traversalcallsavailable><nontraversalcallsavailable>750</nontraversalcallsavailable><registrationsavailable>2492</registrationsavailable><turnrelaysavailable>0</turnrelaysavailable></resourceusageinfo>|
    2013-08-07T14:24:37+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:37,912" Module="network.sip" Level="INFO":  Dst-ip="10.10.1.70"  Dst-port="25596"   Detail="Sending Response Code=401, Method=OPTIONS, To=sip:192.168.10.10:7001, [email protected]"
    2013-08-07T14:24:37+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:37,912" Module="network.sip" Level="DEBUG":  Dst-ip="10.10.1.70"  Dst-port="25596"
    SIPMSG:
    |SIP/2.0 401 Unauthorised
    Via: SIP/2.0/TCP 10.10.1.70:5060;branch=z9hG4bK5380daf2a89606ecf38ba965c659b393156967;received=10.10.1.70;rport=25596
    Call-ID: [email protected]
    CSeq: 57054 OPTIONS
    From: <sip:10.10.1.70>;tag=719e3d6280295d7b
    To: <sip:192.168.10.10:7001>;tag=f930caa190c2a48b
    Server: TANDBERG/4120 (X7.2.1)
    WWW-Authenticate: Digest realm="TraversalZone", nonce="feba5014f914c7743ace26e95b2ed4214410a1116851e6125ba93c836de2", opaque="AQAAAJEZC9EK4+dBfO64t+LS/P173VZ7", stale=FALSE, algorithm=MD5, qop="auth"
    Content-Length: 0
    |
    2013-08-07T14:24:37+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:37,914" Module="network.sip" Level="INFO":  Src-ip="10.10.1.70"  Src-port="25596"   Detail="Receive Request Method=OPTIONS, Request-URI=sip:192.168.10.10:7001;transport=tcp, [email protected]"
    2013-08-07T14:24:37+01:00 example-vcse tvcs: UTCTime="2013-08-07 13:24:37,914" Module="network.sip" Level="DEBUG":  Src-ip="10.10.1.70"  Src-port="25596"
    SIPMSG:
    |OPTIONS sip:192.168.10.10:7001;transport=tcp SIP/2.0
    Via: SIP/2.0/TCP 10.10.1.70:5060;branch=z9hG4bK2c6b4eb262bcae2e8b888fc0e7b918ab156968;received=10.10.1.70;rport=25596
    Call-ID: [email protected]
    CSeq: 57055 OPTIONS
    From: <sip:10.10.1.70>;tag=719e3d6280295d7b
    To: <sip:192.168.10.10:7001>
    Max-Forwards: 0
    User-Agent: TANDBERG/4120 (X7.2.1)
    Authorization: Digest nonce="feba5014f914c7743ace26e95b2ed4214410a1116851e6125ba93c836de2", realm="TraversalZone", opaque="AQAAAJEZC9EK4+dBfO64t+LS/P173VZ7", algorithm=MD5, uri="sip:192.168.10.10:7001;transport=tcp", username="admin", response="2658c3d3bbf7d48840e5ec32de3f20e9", qop=auth, cnonce="2aac9373e769726b6081804648fb9451f601dbbb9c4de38ab124c5a2ee0b", nc=00000001
    Supported: com.tandberg.vcs.resourceusage
    Content-Type: text/xml
    Content-Length: 250
    <resourceusageinfo><traversalcallsavailable>250</traversalcallsavailable><nontraversalcallsavailable>750</nontraversalcallsavailable><registrationsavailable>2492</registrationsavailable><turnrelaysavailable>0</turnrelaysavailable></resourceusageinfo>|
    2013-08-07T14:24:37+01:00 vdot-vcse tvcs: UTCTime="2013-08-07 13:24:37,915" Module="network.http" Level="DEBUG":  Message="Request" Method="POST" URL="http://127.0.0.1:9998/credential/name/admin" Ref="0x4f7dc60"
    2013-08-07T14:24:37+01:00 vdot-vcse tvcs: UTCTime="2013-08-07 13:24:37,917" Module="network.http" Level="DEBUG":  Message="Response" Src-ip="127.0.0.1" Src-port="9998" Dst-ip="127.0.0.1" Dst-port="48225" Response="200 OK" ResponseTime="0.002104" Ref="0x4f7dc60"
    2013-08-07T14:24:37+01:00 vdot-vcse tvcs: UTCTime="2013-08-07 13:24:37,917" Module="network.ldap" Level="INFO":   Detail="Authentication credential found in directory for identity: admin"
    2013-08-07T14:24:37+01:00 vdot-vcse tvcs: UTCTime="2013-08-07 13:24:37,918" Module="network.sip" Level="INFO":  Dst-ip="10.10.1.70"  Dst-port="25596"   Detail="Sending Response Code=200, Method=OPTIONS, To=sip:192.168.10.10:7001, [email protected]"
    2013-08-07T14:24:37+01:00 vdot-vcse tvcs: UTCTime="2013-08-07 13:24:37,918" Module="network.sip" Level="DEBUG":  Dst-ip="10.10.1.70"  Dst-port="25596"
    SIPMSG:
    |SIP/2.0 200 OK
    Via: SIP/2.0/TCP 10.10.1.70:5060;branch=z9hG4bK2c6b4eb262bcae2e8b888fc0e7b918ab156968;received=10.10.1.70;rport=25596
    Call-ID: [email protected]
    CSeq: 57055 OPTIONS
    From: <sip:10.10.1.70>;tag=719e3d6280295d7b
    To: <sip:192.168.10.10:7001>;tag=84b7be29d1c57166
    Server: TANDBERG/4120 (X7.2.1)
    Supported: com.tandberg.vcs.resourceusage,path,outbound,gruu
    Content-Type: text/xml
    Content-Length: 253

    Thanks Alok.
    Yes there was a device provisioning key on the expressway so i deleted it, rebooted and created a log again.
    See below:
    Module="network.tcp" Level="DEBUG":  Src-ip="82.132.238.203" Src-port="14453" Dst-ip="192.168.10.10" Dst-port="5061" Detail="TCP Connecting"
    2013-08-23T09:43:33+01:00 expressway tvcs: UTCTime="2013-08-23 08:43:33,440" Module="network.tcp" Level="DEBUG":  Src-ip="82.132.238.203" Src-port="14453" Dst-ip="192.168.10.10" Dst-port="5061" Detail="TCP Connection Established"
    2013-08-23T09:43:34+01:00 expressway tvcs: UTCTime="2013-08-23 08:43:34,391" Module="network.sip" Level="INFO":  Src-ip="82.132.238.203"  Src-port="14453"   Detail="Receive Request Method=SUBSCRIBE, Request-URI=sip:[email protected], [email protected]"
    2013-08-23T09:43:34+01:00 vdot-vcse tvcs: UTCTime="2013-08-23 08:43:34,391" Module="network.sip" Level="DEBUG":  Src-ip="82.132.238.203"  Src-port="14453"
    SIPMSG:
    |SUBSCRIBE sip:[email protected] SIP/2.0
    Via: SIP/2.0/TLS 10.86.172.38:63574;branch=z9hG4bK903ff4692dfe38138afbaad34d190d4f.1;received=82.132.238.203;rport=14453
    Call-ID: [email protected]
    CSeq: 401 SUBSCRIBE
    Contact:
    From: [email protected]>;tag=eb987793775b735c
    To: [email protected]>
    Max-Forwards: 70
    Route:
    User-Agent: TANDBERG/774 (MCX 4.5.7.16762) - Windows
    Expires: 300
    Event: ua-profile;model=movi;vendor=tandberg.com;profile-type=user;version=4.5.7.16762;clientid="S-1-5-21-3613096711-2978834610-2195627325";connectivity=1
    Accept: application/pidf+xml
    Content-Length: 0
    |
    2013-08-23T09:43:34+01:00 vdot-vcse tvcs: UTCTime="2013-08-23 08:43:34,393" Module="network.sip" Level="INFO":  Dst-ip="82.132.238.203"  Dst-port="14453"   Detail="Sending Response Code=404, Method=SUBSCRIBE, To=sip:[email protected], [email protected]"
    2013-08-23T09:43:34+01:00 vdot-vcse tvcs: UTCTime="2013-08-23 08:43:34,393" Module="network.sip" Level="DEBUG":  Dst-ip="82.132.238.203"  Dst-port="14453"
    SIPMSG:
    |SIP/2.0 404 Not Found
    Via: SIP/2.0/TLS 10.86.172.38:63574;branch=z9hG4bK903ff4692dfe38138afbaad34d190d4f.1;received=82.132.238.203;rport=14453;ingress-zone=DefaultZone
    Call-ID: [email protected]
    CSeq: 401 SUBSCRIBE
    From: [email protected]>;tag=eb987793775b735c
    To: [email protected]>;tag=b9f0520ef1275ce7
    Server: TANDBERG/4120 (X7.2.1)
    Warning: 399 192.168.10.10:5061 "Policy Response"
    Content-Length: 0
    |
    2013-08-23T09:43:34+01:00 expressway tvcs: UTCTime="2013-08-23 08:43:34,559" Module="network.tcp" Level="DEBUG":  Src-ip="82.132.238.203" Src-port="14453" Dst-ip="192.168.10.10" Dst-port="5061" Detail="TCP Connection Closed"
    2013-08-23T09:43:38+01:00 expressway tvcs: UTCTime="2013-08-23 08:43:38,117" Module="network.sip" Level="INFO":  Src-ip="10.10.1.70"  Src-port="26542"   Detail="Receive Request Method=OPTIONS, Request-URI=sip:192.168.10.10:7001;transport=tcp, [email protected]"
    2013-08-23T09:43:38+01:00 vdot-vcse tvcs: UTCTime="2013-08-23 08:43:38,118" Module="network.sip" Level="DEBUG":  Src-ip="10.10.1.70"  Src-port="26542"
    SIPMSG:
    |OPTIONS sip:192.168.10.10:7001;transport=tcp SIP/2.0
    Via: SIP/2.0/TCP 10.10.1.70:5060;branch=z9hG4bK16dd0968b715a30f8c55713c807357dc325019;received=10.10.1.70;rport=26542
    Call-ID: [email protected]
    CSeq: 53437 OPTIONS
    From: ;tag=cb2f0d0b23477f46
    To:
    Max-Forwards: 0
    User-Agent: TANDBERG/4120 (X7.2.1)
    Supported: com.tandberg.vcs.resourceusage
    Content-Type: text/xml
    Content-Length: 250
    25075024920|
    2013-08-23T09:43:38+01:00 expressway tvcs: UTCTime="2013-08-23 08:43:38,118" Module="network.sip" Level="INFO":  Dst-ip="10.10.1.70"  Dst-port="26542"   Detail="Sending Response Code=401, Method=OPTIONS, To=sip:192.168.10.10:7001, [email protected]"
    2013-08-23T09:43:38+01:00 vdot-vcse tvcs: UTCTime="2013-08-23 08:43:38,118" Module="network.sip" Level="DEBUG":  Dst-ip="10.10.1.70"  Dst-port="26542"
    SIPMSG:
    |SIP/2.0 401 Unauthorised
    Via: SIP/2.0/TCP 10.10.1.70:5060;branch=z9hG4bK16dd0968b715a30f8c55713c807357dc325019;received=10.10.1.70;rport=26542
    Call-ID: [email protected]
    CSeq: 53437 OPTIONS
    From: ;tag=cb2f0d0b23477f46
    To: ;tag=257e23d5cd1864a0
    Server: TANDBERG/4120 (X7.2.1)
    WWW-Authenticate: Digest realm="TraversalZone", nonce="0f1936bcd3c4c58b86d27e88a7178d43c0c8a2e34c5b6afe88e779d0be5b", opaque="AQAAAHHRU8cD8y+XxpFAF9j93sa6Vrns", stale=FALSE, algorithm=MD5, qop="auth"
    Content-Length: 0
    |
    2013-08-23T09:43:38+01:00 expressway tvcs: UTCTime="2013-08-23 08:43:38,119" Module="network.sip" Level="INFO":  Src-ip="10.10.1.70"  Src-port="26542"   Detail="Receive Request Method=OPTIONS, Request-URI=sip:192.168.10.10:7001;transport=tcp, [email protected]"
    2013-08-23T09:43:38+01:00 expressway tvcs: UTCTime="2013-08-23 08:43:38,119" Module="network.sip" Level="DEBUG":  Src-ip="10.10.1.70"  Src-port="26542"
    SIPMSG:
    |OPTIONS sip:192.168.10.10:7001;transport=tcp SIP/2.0
    Via: SIP/2.0/TCP 10.10.1.70:5060;branch=z9hG4bKbe71a5d177af210e973b8f490f2e9f36325020;received=10.10.1.70;rport=26542
    Call-ID: [email protected]
    CSeq: 53438 OPTIONS
    From: ;tag=cb2f0d0b23477f46
    To:
    Max-Forwards: 0
    User-Agent: TANDBERG/4120 (X7.2.1)
    Authorization: Digest nonce="0f1936bcd3c4c58b86d27e88a7178d43c0c8a2e34c5b6afe88e779d0be5b", realm="TraversalZone", opaque="AQAAAHHRU8cD8y+XxpFAF9j93sa6Vrns", algorithm=MD5, uri="sip:192.168.10.10:7001;transport=tcp", username="admin", response="fc47aac5c0320dbad26cb6d43a6758fc", qop=auth, cnonce="d8603e834a51f9136ed7b542dc3a1ed704e28c36d8fff6dfb4da8d64190c", nc=00000001
    Supported: com.tandberg.vcs.resourceusage
    Content-Type: text/xml
    Content-Length: 250
    25075024920|
    2013-08-23T09:43:38+01:00 expressway tvcs: UTCTime="2013-08-23 08:43:38,120" Module="network.http" Level="DEBUG":  Message="Request" Method="POST" URL="http://127.0.0.1:9998/credential/name/admin" Ref="0x7f1a3c230610"
    2013-08-23T09:43:38+01:00 expressway tvcs: UTCTime="2013-08-23 08:43:38,122" Module="network.http" Level="DEBUG":  Message="Response" Src-ip="127.0.0.1" Src-port="9998" Dst-ip="127.0.0.1" Dst-port="45324" Response="200 OK" ResponseTime="0.002064" Ref="0x7f1a3c230610"
    2013-08-23T09:43:38+01:00 vdot-vcse tvcs: UTCTime="2013-08-23 08:43:38,122" Module="network.ldap" Level="INFO":   Detail="Authentication credential found in directory for identity: admin"
    2013-08-23T09:43:38+01:00 vdot-vcse tvcs: UTCTime="2013-08-23 08:43:38,122" Module="network.sip" Level="INFO":  Dst-ip="10.10.1.70"  Dst-port="26542"   Detail="Sending Response Code=200, Method=OPTIONS, To=sip:192.168.10.10:7001, [email protected]"
    2013-08-23T09:43:38+01:00 vdot-vcse tvcs: UTCTime="2013-08-23 08:43:38,122" Module="network.sip" Level="DEBUG":  Dst-ip="10.10.1.70"  Dst-port="26542"
    SIPMSG:
    |SIP/2.0 200 OK
    Via: SIP/2.0/TCP 10.10.1.70:5060;branch=z9hG4bKbe71a5d177af210e973b8f490f2e9f36325020;received=10.10.1.70;rport=26542
    Call-ID: [email protected]
    CSeq: 53438 OPTIONS
    From: ;tag=cb2f0d0b23477f46
    To: ;tag=4b12e3f894cbea8a
    Server: TANDBERG/4120 (X7.2.1)
    Supported: com.tandberg.vcs.resourceusage,path,outbound,gruu
    Content-Type: text/xml
    Content-Length: 253
    Thanks!

  • Solaris 10 Ldap Client user authentication against edirectory

    Hello,
    We have moved some of our oracle databases from linux to solaris 10 u7, I need to setup secure ldap authentication for the users against a linux based eDirectory server. Can some one point me in the right direction of good documentation or a good explaination on what i need and how to go about this.
    I have spent the last couple of days reading about pam, nsswitch.ldap nsswitch.conf and certificates now I need to pull all this information into a usable format.
    Thanks
    ukgreenman

    I have a similar question.
    Did you have a solution ?
    thanks

  • Dot1x clients not authenticated after reload

    Hi all,
    I have a switch setup with dynamic vlan assignment. Everything works fine until the switch is rebooted. Then none of the pc's are authenticated anymore. I have to do a shut/no shut of all the user ports to start the re-authentication of the pc's.
    This is the config I have so far. Am I missing something?
    Thanks,
    Best Regards,
    Joris
    Global commands
    aaa new-model
    aaa authentication dot1x default group radius
    aaa authorization network default group radius
    aaa accounting dot1x default start-stop group radius
    aaa accounting system default start-stop group radius
    aaa authorization exec default local if-authenticated
    aaa authorization commands 1 default local if-authenticated
    aaa authorization commands 15 default local if-authenticated
    dot1x system-auth-control
    dot1x guest-vlan supplicant
    dot1x critical eapol
    radius-server host x.x.x.x auth-port 1645 acct-port 1646 key *****
    radius-server vsa send accounting
    radius-server vsa send authentication
    Interface-specific commands
    switchport mode access
    switchport nonegotiate
    switchport port-security maximum 5
    switchport port-security
    switchport port-security violation restrict
    authentication event fail action authorize vlan 200
    authentication event server dead action authorize vlan 110
    authentication event no-response action authorize vlan 200
    authentication order mab dot1x
    authentication priority dot1x mab
    authentication port-control auto
    authentication periodic
    mab
    no snmp trap link-status
    dot1x pae authenticator
    dot1x timeout quiet-period 3
    dot1x timeout tx-period 3
    dot1x max-req 1
    storm-control broadcast level 1.00
    storm-control multicast level 1.00
    storm-control action shutdown
    storm-control action trap
    no cdp enable
    no cdp tlv server-location
    no cdp tlv app
    spanning-tree portfast

    I believe you will need to tell your ports what action to take when the AAA server becomes available. It knows what to do when it's dead or unavailable, but has the default setting when it is returned to service. Likely the switch is tripping AAA dead or non-responsive for a bit during boot and its a race. You want the port to reauth when the AAA server becomes avail.
    Sent from Cisco Technical Support iPhone App

  • Error in receiver Mail adapter: Client was not authenticated

    Hi.
    My requirement is to send email via PI to an extermal mail address. I am trying to use the following configuation for the same.
    Tramsport Protocol: SMTP
    Message Protocol: XIPAYLOAD
    URL: To get the value of URL, execute transaction SCOT in PI system. Double click on SMTP and get the Mail host from there (name). So the URL has been specified as smtp://name
    Comfigure User authentication - Checked
    User: My outlook email address
    Password: My outlook email password
    From:  My outlook email address
    To: External address to which the email needs to be sent
    Content encoding: base64
    But the email is not getting sent. when I check the adapter engine I see the errors:
    Mail: error occured: java.io.IOException: server not responding OK to MAIL FROM; 530 5.7.1 Client was not authenticated
    Mail: error occured: com.sap.aii.af.lib.mp.module.ModuleException
    MP: exception caught with cause com.sap.aii.af.sdk.xi.srt.BubbleException: Failed to call the endpoint  [null "null"]; nested exception caused by: java.io.IOException: server not responding OK to MAIL FROM; 530 5.7.1 Client was not authenticated
    Adapter Framework caught exception: Failed to call the endpoint
    Delivering the message to the application using connection Mail_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: com.sap.aii.af.sdk.xi.srt.BubbleException: Failed to call the endpoint  [null "null"]; nested exception caused by: java.io.IOException: server not responding OK to MAIL FROM; 530 5.7.1 Client was not authenticated.
    Can anyone please suggest what changes are needed to make this work?
    Any help is greatly appreciated.
    Thanks.
    Anuradha.

    HI Anuradha,
    Check the below link for receiver mail configuration and follow the steps accordingly.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a0a27c01-26b0-2c10-bd8a-94498efa7ff6?quicklink=index&overridelayout=true
    Regards,
    Naveen

  • The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.

     try
                    MailMessage mail = new MailMessage();
                    SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
                    mail.From = new MailAddress("[email protected]");
                    mail.To.Add("[email protected]");
                    mail.Subject = "Test Mail..!!!!";
                    mail.Body = "mail with attachment";
                    System.Net.Mail.Attachment attachment;
                    attachment = new System.Net.Mail.Attachment(@"C:\Attachment.txt");
                    mail.Attachments.Add(attachment);
                    SmtpServer.Port = 587;
                    SmtpServer.UseDefaultCredentials = true;
                    SmtpServer.Credentials = new System.Net.NetworkCredential("userid", "Password");
                    SmtpServer.EnableSsl = true;
                    SmtpServer.Send(mail);
    Catch(Exception exception)
    When i m run this part of code it throw an Ecxeption                                                          
            Given Below is the Error.. 
        The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.
    Bikky Kumar

     try
                    MailMessage mail = new MailMessage();
                    SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
                    mail.From = new MailAddress("[email protected]");
                    mail.To.Add("[email protected]");
                    mail.Subject = "Test Mail..!!!!";
                    mail.Body = "mail with attachment";
                    System.Net.Mail.Attachment attachment;
                    attachment = new System.Net.Mail.Attachment(@"C:\Attachment.txt");
                    mail.Attachments.Add(attachment);
                    SmtpServer.Port = 587;
    SmtpServer.UseDefaultCredentials = true;    ///Set it to false, or remove this line
                    SmtpServer.Credentials = new System.Net.NetworkCredential("userid", "Password");
                    SmtpServer.EnableSsl = true;
                    SmtpServer.Send(mail);
    Catch(Exception exception)
    Given Below is the Error..      The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.
    Solution:
    The error might occur due to following cases.
    case 1: when the password is wrong
    case 2: when you try to login from some App
    case 3: when you try to login from the domain other than your time zone/domain/computer (This
    is the case in most of scenarios when sending mail from code)
    There is a solution for each
    solution for case 1: Enter the correct password.
    Recomended: solution for case 2: go to
    security settings at the following link https://www.google.com/settings/security/lesssecureapps and
    enable less secure apps . So that you will be able to login from all apps.
    solution 1 for case 3: (This might be helpful) you need to review the activity. but reviewing the activity will not be helpful due to latest security
    standards the link will not be useful. So try the below case.
    solution 2 for case 3: If you have hosted your code somewhere on production server and if you have access to the production server, than take remote
    desktop connection to the production server and try to login once from the browser of the production server. This will add exception for login to google and you will be allowed to login from code.
    But what if you don't have access to the production server. try
    the solution 3
    solution 3 for case 3: You have to enable
    login from other timezone / ip for your google account.
    to do this follow the link https://g.co/allowaccess and
    allow access by clicking the continue button.
    And that's it. Here you go. Now you will be able to login from any of the computer and by any means of app to your google account.
    Regards,
    Nabeel Arif

  • Remote Server returned '530 5.7.1 Client was not authenticated'

    Hello,
    I migrating from Exchange 2007 to Exchange 2013.
    The Exchange 2007 infrastructure look like:
    -2 CAS ( Hub1 and Hub2)
    -2 MBX ( mbx1 and mbx2)
    We add Exchange 2013 in the mix
    2 CAS ( CAS-2K13-1 and CAS-2K13-2)
    2 MBX ( MBX-2K13-1 and MBX-2K13-2)
    All mailbox are curently on Exchange 2007. All inbound email pass by a SMTP Relay who forward the email to a NLB of Exchange 2013.
    The send connector (internet) forward email to the SMTP relay, and the source server are only 2K7 server.
    My problems is : if I replace the two 2K7 server from the source server for the 2K13 MBX, I receive this message:
    The following organization refuse your message: MBX-2K13-1.contoso.com
    Generation server :  MBX-2K13-2.contoso.com
    [email protected]
    MBX-2K13-1.contoso.com  
    Remote Server returned '530 5.7.1 Client was not authenticated'
    idea?

    Do you smarthost from the send connector to another SMTP gateway?
    Twitter!: Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.

  • 530 5.7.1 client was not authenticated

    OK, I am not in control of an exchange server.  My company uses GoDaddy for our exchange server.  I am an employee.  We use a software for contact management.  When I try to send emails to say a group of customers, it gives me the error
    530 5.7.1 client was not authenticated.  I have talked to GoDaddy until I am blue in the face to no avail.  Everything I find says it is something on their end.  By the way, we just switched to them, we have absolutely no problem with our previous
    company that we had exchange with.  ANY help would be appreciated.  OF course our outlook works.
    The only information our software (called RPMS) requires is the SMTP server  which I enter   smtp.ex3.secureserver.net
    my email address      (*****@alliedsm.com 
     user name which they say is the same as email address  (*****@alliedsm.com) and password. My old exchange service had me use port 27, but new company says I have to use 587.

    In the outbound smtp setting did you set outgoing smtp requires authentication?
    Microsoft Outlook® 2007 (PC)
    From the Tools menu, select "Account Settings"
    Select your Network Solutions Email account and click the "Change" button above..
    Click the "More Settings" button in the bottom-right corner of the E-Mail Accounts window.
    In the Internet Email Settings window, click the "Outgoing Server" tab. Ensure that the box next to "My outgoing server (SMTP) requires authentication" is checked and "use same settings as my incoming mail server" is selected.
    Click the "Advanced" tab and make sure that "Use the following type of encrypted connection" is set to "None" for the incoming (POP3) and the outgoing (SMTP) port settings. Change the outgoing server port to 587.
    James Chong MCITP | EA | EMA; MCSE | M+, S+ Security+, Project+, ITIL msexchangetips.blogspot.com

  • 530 5.7.1 Client was not authenticated - Exchange 2013 to external domains

    Hi all,
    I have an Exchange server 2013 on windows 2012 R2 and do all the configuration for sending and receiving the mail according to the document provided by Microsoft.
    But whenever I am trying to send mails from external domains to my exchange server domain I got the following error:
    530 5.7.1 Client was not authenticated
    Same thing I am getting If I am sending mail through outlook from my Exchange domains to external domain.
    But if I am selecting the
    <label for="ResultPanePlaceHolder_ReceiveConnector_Security_contentContainer_chkPermissionGroupAnonymousUsers" id="ResultPanePlaceHolder_ReceiveConnector_Security_contentContainer_chkPermissionGroupAnonymousUsers_label">Anonymous
    users in the security option of Default Frontend XXXX, I am able to send the mails through outlook.</label>
    <label for="ResultPanePlaceHolder_ReceiveConnector_Security_contentContainer_chkPermissionGroupAnonymousUsers" id="ResultPanePlaceHolder_ReceiveConnector_Security_contentContainer_chkPermissionGroupAnonymousUsers_label">But I don't
    want to use this option as it will enable to send the mails without validating the Exchange server user name and password.</label>
    SO can anyone please suggest some solutions to resolve this as using Anonymous users fro sending and receiving mails is not secure.
    Regards
    Pankaj Raman.
    <label for="ResultPanePlaceHolder_ReceiveConnector_Security_contentContainer_chkPermissionGroupAnonymousUsers" id="ResultPanePlaceHolder_ReceiveConnector_Security_contentContainer_chkPermissionGroupAnonymousUsers_label">
    </label>

    I have a java code for sending mails using the SMTP address of the servers. For sending a mail it required a valid user name and password. For all other SMTP servers if I have used invalid user name and password then I am getting the  530
    5.7.1 Client was not authenticated error, but
    if I am using my SMTP address and invalid user name and password then also I am able to send the mails.
    So I just want to know what I have to configure in the exchange 2013 server so that it will validate the user name and password.
    Regards
    Pankaj Raman.
    Hi Pankaj,
    Thank you for your question.
    Was invalid user name and password included in Java code?
    Did outlook send emails?
    If this issue happen on Java code instead of outlook?
    In fact, Exchange server didn’t validate user account and password, user account and password will be validated on domain controller,
    I suggest we create a new dedicated receive connector and enable “anonymous” permission for java code
    If there are any questions regarding this issue, please be free to let me know. 
    Best Regard,
    Jim
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Jim Xu
    TechNet Community Support

  • 5.7.1 Client was not authenticated

    hey,
    I need to send mail over "daily tasks, and i get the following exception :
    System.Net.Mail.SmtpException: The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.7.1 Client was not authenticated
       at System.Net.Mail.MailCommand.CheckResponse(SmtpStatusCode statusCode, String response)
       at System.Net.Mail.MailCommand.Send(SmtpConnection conn, Byte[] command, String from)
       at System.Net.Mail.SmtpTransport.SendMail(MailAddress sender, MailAddressCollection recipients, String deliveryNotify, SmtpFailedRecipientException& exception)
       at System.Net.Mail.SmtpClient.Send(MailMessage message)
    I check the user to see if he not a locked, and he doesn't .
    I check the smtp mail server ans he is ok.
    what else can i check? how can i fix this? this is super urgent.
    this is my code :
        MailMessage mess = null;
                Attachment attach = null;
                SmtpClient smtp = null;
                try
                    mess = new MailMessage();
                    smtp = new SmtpClient("smtp.office365.com");
                    smtp.Port = 587;
                    smtp.EnableSsl = true;
                    System.Net.NetworkCredential cred = new System.Net.NetworkCredential("[email protected]", "Pass");
                    smtp.Credentials = cred;
                    mess.From = new MailAddress("[email protected]");
                    mess.Subject = fileName;
                    smtp.Timeout = 300000;
                    smtp.Send(mess);
                catch (SmtpFailedRecipientException exp)
                    Console.WriteLine(exp.FailedRecipient);
                    log.Error(exp);
                    elog.WriteEntry(exp.ToString(),EventLogEntryType.Error, 0);
                catch (Exception e)
                    Console.WriteLine(e.ToString());
                    log.Error(e);
                    elog.WriteEntry(e.ToString(), EventLogEntryType.Error, 0);
                finally
                    attach.Dispose();
                    mess.Dispose();
                    smtp.Dispose();

    Check if the client connector used to connect with the 587 port is allowed to accept authentication on Plain Text.
    Try a relay connector if you want to send the email without the authentication.
    http://technet.microsoft.com/en-us/library/bb232021(v=exchg.141).aspx
    Syed MM Messaging SME - IBM || MCTS || MCSE || MCSA || VCP5 || VCA ||

  • Javax.mail.MessagingException: 505 Client was not authenticated

    Hi!,
    I got the following error:
    Exception in thread "main" javax.mail.MessagingException: 505 Client was not authenticated
    at com.sun.mail.smtp.SMTPTransport.issueCommand(SMTPTransport.java:507)
    at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:312)
    at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:168)
    at HelloMail.main(HelloMail.java:35)
    This is the code:
    To send an email I need authentification, and I include the mail.smtp.auth propertie and
    "message.saveChanges();
    Transport transport = session.getTransport("smtp");
    transport.connect("mail.xxx.com.mx","harriaga",passw);
    transport.sendMessage(message,message.getAllRecipients());
    transport.close();"
    Do you know if I am skip something.
    import java.util.Properties;
    import javax.mail.*;
    import javax.mail.internet.*;
    public class HelloMail {
    public static void main(String args[]) throws Exception {
    String host="mail.xxx.com.mx"; //obviously doesn't work
    String from="[email protected]"; //sender's email
    String to ="[email protected]" ; //receiver's email
    Properties props = System.getProperties();
    props.put("mail.smtp.host", host);
    props.put("mail.smtp.auth", "true");
    Session session=Session.getInstance(props,null);
    MimeMessage message = new MimeMessage(session);
    message.setFrom(new InternetAddress(from));
    message.addRecipient(Message.RecipientType.TO, new
    InternetAddress(to));
    message.setSubject(" My Test HTML email ");
    message.setText(" Here is the content ");
    message.saveChanges();
    Transport transport = session.getTransport("smtp");
    transport.connect("mail.xxx.com.mx","harriaga",passw);
    transport.sendMessage(message,message.getAllRecipients());
    transport.close();
    Thanks for all,
    HAG.

    HAG,
    you need to create a session object passing a valid authenticator. In other words,
    MyAuthenticator auth = new MyAuthenticator ();
    Session session = Session.getInstance(props, auth);where MyAuthenticator is something like
    public class MyAuthenticator extends Authenticator{
      public PasswordAuthentication getPasswordAutentication(){
        return new PasswordAuthentication( "user", "password");
    }You obviously need to replace username and password with data valid for your e-mail account.
    Hope this helps,
    gulfi

  • "530 5.7.1 Client was not authenticated" Error with mail service

    Hi,
    I have some problem with Mail service with the Webspaces application. I have configured the Service (with MS Exchange server) with WebSpaces Application with the required IMAP, SMTP, External Application and LDAP Settings correctly. I opened the Mail Page and Logged in with the
    user credentials. I am able to see the incoming mails , But when I try to send a mail I am getting the following exception. For some reason, SMTP send is failing. I did the same IMAP and SMTP settings in MS Outlook and successfully sent the mail. what could be the problem? Please repond.
    oracle.webcenter.collab.mail.MailException: Failed to send the message with subject "Test". Further information: 530 5.7.1 Client was not authenticated
         at oracle.webcenter.collab.mail.MailSession.sendMessage(MailSession.java:864)
         at oracle.webcenter.collab.mail.view.backing.MessageHandler.sendMessage(MessageHandler.java:528)
         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:597)
         at com.sun.el.parser.AstValue.invoke(AstValue.java:157)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
         at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1245)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:87)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:298)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:91)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:87)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:87)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:298)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:91)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:81)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
         at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:673)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:273)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:165)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.portlet.client.adapter.adf.ADFPortletFilter.doFilter(ADFPortletFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.webcenterapp.internal.view.webapp.WebCenterShellPageRedirectionFilter.doFilter(WebCenterShellPageRedirectionFilter.java:210)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.webcenterapp.internal.view.webapp.WebCenterShellFilter.doFilter(WebCenterShellFilter.java:603)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.view.page.editor.webapp.WebCenterComposerFilter.doFilter(WebCenterComposerFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.share.http.ServletADFFilter.doFilter(ServletADFFilter.java:65)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:85)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:54)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.wls.JpsWlsFilter$1.run(JpsWlsFilter.java:96)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.wls.util.JpsWlsUtil.runJaasMode(JpsWlsUtil.java:146)
         at oracle.security.jps.wls.JpsWlsFilter.doFilter(JpsWlsFilter.java:140)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:70)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.webcenterapp.internal.view.webapp.WebCenterLocaleWrapperFilter.processFilters(WebCenterLocaleWrapperFilter.java:256)
         at oracle.webcenter.webcenterapp.internal.view.webapp.WebCenterLocaleWrapperFilter.doFilter(WebCenterLocaleWrapperFilter.java:215)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:202)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3588)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2200)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2106)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1428)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: com.sun.mail.smtp.SMTPSendFailedException: 530 5.7.1 Client was not authenticated
         at com.sun.mail.smtp.SMTPTransport.issueSendCommand(SMTPTransport.java:1388)
         at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:959)
         at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:583)
         at oracle.webcenter.collab.mail.MailSession.sendMessage(MailSession.java:850)
    Edited by: indra_owc on Jan 9, 2010 6:14 PM

    The server probably wants you to use the STARTTLS command before you authenticate.
    See the com.sun.mail.smtp package javadocs for the property to set to enable that.

Maybe you are looking for