Can't verify my acount. Does not get e-mail for verification.

I am able to sign in, but not able to verifying my iCloud acount to acces it.

So, do I have to ask my original question again? Apparently my e-mail has now been "verified" .......

Similar Messages

  • Why "Acq&Graph Voltage-Int Clk.vi" does not get constant voltage for constant voltage input?

    Dear All
    Labview 7.1/XP/NI6221
    I try to use NI 6221 to read analog input by using "Acq&Graph Voltage-Int Clk.vi".
    The reading voltage does not constant and not correct value, when I put constant voltage.
    How should I solve this problem?  Thank you.
    When I use "DAQ Assistant" to read analog input it work well.
    Thongchai

    Thongchai,
    As I recall from an earlier discussion exchange with you, you are performing Reference Single Ended (RSE) measurements on channels 0-3, is that correct?  In the example, there is no selection for the input terminal configuration on the DAQmx Create Task -- for M-Series boards on channels 0-8 the default configuration is differential.  If you right click on this input and select "Create Constant", you can choose RSE and it should measure the correct values.  Let me know how that works for you.
    Erik F
    Applications Engineer
    National Instruments

  • Thunderbird does not get server data for ovi mail

    hi there,
    i have the following problem:
    when i try to make an ovi account in my thunderbird mail client, it does not find the right server settings to do so. i searched the net for hints concerning the right settings to set them manually but havent found anything so far.
    does anybody know the right server settings or can provide me with a tip where i can find them, respecively solve the problem otherwise?
    many thanks in advance!

    Hello.  Name here is Stephen.  I live in Missouri.
    I currently use my ovi.com email address with a Nokia E-71 smartphone, on the prepaid Straight Talk (TracFone Owned) wireless network.
    I've also had my ovi.com address setup in Thunderbird (a popular email client) as an IMAP account.
    Now that I see the new settings, I see that IMAP no longer available?  Is that correct?
    If this is the case, how is converting an IMAP account that worked flawlessly to a generic POP3 account progress?  IMAP is more attuned to business users, and is just more efficient all the way around.
    If I'm wrong, please let me know.  If not, I need the current IMAP account settings for my ovi.com email address.
    Please assist me in this matter, as it's driving me nuts.
    Warm Regards,
    Stephen Brown

  • PrintWindow() API does NOT get an image for Windows created by Java?

    Hi
    WinXP added the PrintWindow() API that allows one application to take an image copy of another app's window, even if the window is off-screen or obscured, ie beyond the scope of a simple BitBlt. (PrintWindow seems to be a cross-process "extension" of the WM_PRINT message).
    But PrintWindow doesn't seem to work when I "point" it at any Java-based apps. That is, for a few java-based apps (including the Java Control Panel) running on XP, the return from PrintWindow includes the non-client area, but the client area is just blackness (not a render of what would be displayed) - the apps do flicker and seem to redraw on the screen instead. Note, I'm not looking for help in using PrintWindow() in a Java app - rather this is perhaps a problem with Java responding to windows painting messages.
    I've tried JRE 1.5.0_07-b03 and 1.6.0_01.
    Is this a bug in the Java implementation? I'm a bit surprised I can't find any reference to it. Is there a work around?
    For a source-code (C++) example of PrintWindow in a small app see http://www.codeguru.com/cpp/g-m/gdi/capturingimages/article.php/c11231

    PS
    I wasn't able to find a forum that seemed to cover this type of issue. If I've posted in the wrong place could someone more knowledgeable tell me where it should go. Thanks.

  • Java mail does not retevire the mail for server

    i am runing this code on tomcat 6
    login.jsp
    <%@ include file = "header.jsp" %>
    <%@ include file = "navigation_l.jsp" %>
    <form action = "logcheck.jsp" method = "Post">
    <Div id=content>
    <div class="splitcontentright" style="width: 550px; height: 313px">
              <h2>Login</h2><hr />
                        <table>
                        <tr>
    <th>POP3 Server:</th>
    <td><input type = "text" name = "pop" width = "150px"></td>
    </tr>
                        <tr>
    <th>SMTP Server:</th>
    <td><input type = "text" name = "smtp"></td>
    </tr>
                        <tr>
    <th>Username</th>
    <td><input type = "text" name = "uname"></td>
    </tr>
    <tr>
    <th>Password</th>
    <td><input type = "password" name = "pass"></td>
    </tr>
    <tr>
    <th></th>
    <td><input type ="submit" value = "Login" style="border: 0px ridge #004F4F; background-color: #f28aa4"/></td>
    </tr>
    </table>
    </div>
    </Div>
    </form>
    <%@ include file= "footer.jsp" %>
    logcheck.jsp
    <jsp:useBean id="log" class="src.LoginBean"/>
    <jsp:setProperty name="log" property="pop" value="<%= request.getParameter("pop")%>"/>
    <jsp:setProperty name="log" property="smtp" value="<%= request.getParameter("smtp")%>"/>
    <jsp:setProperty name="log" property="uname" value="<%= request.getParameter("uname")%>"/>
    <jsp:setProperty name="log" property="pass" value="<%= request.getParameter("pass")%>"/>
    <HTML>
    <HEAD>
    <TITLE></TITLE>
    </HEAD>
    <BODY>
    <%
    request.setAttribute("key",log);
    RequestDispatcher reqdisp = request.getRequestDispatcher("/Login");
    reqdisp.forward(request,response);
    %>
    </BODY>
    </HTML>
    loginbean
    package src;
    public class LoginBean
    public LoginBean()
    private String pop;
    private String smtp;
    private String uname;
    private String pass;
    public String getPop()
    return pop;
    public void setPop(String pop)
    this.pop=pop;
    public String getSmtp()
    return smtp;
    public void setSmtp(String smtp)
    this.smtp=smtp;
    public String getUname()
    return uname;
    public void setUname(String uname)
    this.uname=uname;
    public String getPass()
    return pass;
    public void setPass(String pass)
    this.pass=pass;
    loginservlet
    package src;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import java.util.*;
    import java.io.*;
    import java.sql.*;
    import net.sf.classifier4J.*;
    import net.sf.classifier4J.bayesian.*;
    import net.sf.classifier4J.summariser.*;
    public class LoginServlet extends HttpServlet
    static RequestDispatcher reqDisp=null;
    static PrintWriter out = null;
    public void doPost(HttpServletRequest req, HttpServletResponse res)throws ServletException,IOException
    try
    req.setAttribute("log","false");
    out = res.getWriter();
    LoginBean au = (LoginBean)req.getAttribute("key");
    String popServer = au.getPop();
    String smtpServer = au.getSmtp();
    String popUser = au.getUname();
    String popPassword = au.getPass();
    //out.print(popUser);
    if(popUser.isEmpty())
    req.setAttribute("log","false");
    reqDisp=req.getRequestDispatcher("/failure.jsp");
    reqDisp.forward(req, res);
    else if(popPassword.isEmpty())
    req.setAttribute("log","false");
    reqDisp=req.getRequestDispatcher("/failure.jsp");
    reqDisp.forward(req, res);
    else if(popServer.isEmpty())
    req.setAttribute("log","false");
    reqDisp=req.getRequestDispatcher("/failure.jsp");
    reqDisp.forward(req, res);
    else if(smtpServer.isEmpty())
    req.setAttribute("log","false");
    reqDisp=req.getRequestDispatcher("/failure.jsp");
    reqDisp.forward(req, res);
    else
    Connection con = Generator.getAccessCon("mail_db");
    PreparedStatement ps=con.prepareStatement("insert into login values(?,?,?,?)");
    ps.setString(1,popServer);
    ps.setString(2,smtpServer);
    ps.setString(3,popUser);
    ps.setString(4,popPassword);
    ps.executeUpdate();
    req.setAttribute("key",au);
    req.setAttribute("log","true");
    con.close();
    reqDisp=req.getRequestDispatcher("/account.jsp");
    reqDisp.forward(req, res);
    //out.println("done "+ popServer);
    catch(Exception e)
    reqDisp=req.getRequestDispatcher("/failure.jsp");
    reqDisp.forward(req, res);
    System.out.println("Error ------> better luck next time ");
    //e.printStackTrace();
    public void doGet(HttpServletRequest req, HttpServletResponse res)throws ServletException,IOException
    doPost(req,res);
    inboxbean
    package src;
    import javax.mail.*;
    import java.util.*;
    public class InboxBean
    InboxBean()
    private String mid;
    private String from;
    private String subject;
    private String content;
    private Message msg;
    private ArrayList al;
    private String spamc;
    private boolean empty = false;
    public void setMid(String mid)
    this.mid=mid;
    public String getMid()
    return mid;
    public void setFrom(String from)
    this.from=from;
    public String getFrom()
    return from;
    public void setSubject(String subject)
    this.subject=subject;
    public String getSubject()
    return subject;
    public void setContent(String content)
    this.content=content;
    public String getContent()
    return content;
    public void setMsg(Message msg)
    this.msg=msg;
    public Message getMsg()
    return msg;
    public void setAl(ArrayList al)
    this.al=al;
    public ArrayList getAl()
    return al;
    public void setSpamc(String spamc)
    this.spamc=spamc;
    public String getSpamc()
    return spamc;
    public void setEmpty(boolean empty)
    this.empty=empty;
    public boolean getEmpty()
    return empty;
    ******************************

    Please find and read the [JavaMail FAQ|http://java.sun.com/products/javamail/FAQ.html]. Then post the protocol trace.

  • User does not get email notifications to his outlook

    Hi All,
    A user has reported that he does not get outlook notifications for corresponding work items in his inbox.
    All the settings are in place i.e. correct email address maintained in SU01 as well as in Infotype 0105 subtype 010.
    Not really sure why he alone does not get any outlook notifications.
    I tried sending a new message manually from SAP Inbox to his external mail id and was successful in this (checked SOST).
    What might be wrong? Please suggest.
    BR,
    Hari

    Hello,
    By "outlook notifications" I assume you mean emails telling the user he has workitems waiting for him to action.
    How are you sending these emails, with Extended Notifications?
    In SU01, besides specifying the e-mail address, have you also put "E-mail" in the "Comm. Meth" field?
    Sending an email directly to his external email address from his SAP inbox doesn't prove much, SAP has to be able to deduce the email address itself.
    Is it just happening for one user? Has it worked before?
    regards
    Rick Bakker
    Hanai Technology

  • Hostname verifier does not get invoked

    Hi All,
    I am new to weblogic and currently facing an issue with SSL. I checked this forum but none of the solutions really worked for me, so seeking advice starting a new thread. Kindly help.
    Problem 1
    I have a REST webservice running in one weblogic server and another weblogic server contains a client which is based on the code from the following link -
    http://wiki.open-esb.java.net/attach/RestBCEchoSSL/SslClient.java
    One way handshaking is enabled in both the weblogic and the KeyStore and Truststore are read from configurable directory in the client java code. I specify a directory which resides outside weblogic home.
    Even though there is an HostnameVerifier implemented in the code to return true always, it does not get invoked and I get a certificate exception as below -
    <Warning> <Security> <BEA-090542> <Certificate chain received from xx.yy.zz.rrr - xx.yy.zz.rrr was not trusted causing SSL handshake failure. Check the certificate chain to determine if it should be trusted or not. If it should be trusted, then update the client trusted CA configuration to trust the CA certificate that signed the peer certificate chain. If you are connecting to a WLS server that is using demo certificates (the default WLS server behavior), and you want this client to trust demo certificates, then specify -Dweblogic.security.TrustKeyStore=DemoTrust on the command line for this client.>
    But when I run the java client from Eclipse I am able to invoke the webservice methods using HTTPs.
    So is not it possible to add a default hostname verifier as in the java code when the application is deployed in weblogic?
    Problem 2
    I another attempt to solve the above issue I turned off the hostname verification from weblogic admin console in the client weblogic side. In the console for the server Configuration > SSL->Hostname Verification field is set to "None". But that did not help.
    Then I added the '-Dweblogic.security.SSL.ignoreHostnameVerification=true' flag into the <domain>/bin/startWebLogic.sh file and restarted the weblogic. No luck again.
    ${JAVA_HOME}/bin/java ${JAVA_VM} ${MEM_ARGS} ${JAVA_OPTIONS} -Dweblogic.Name=${SERVER_NAME} -Djava.security.policy=${WL_HOME}/server/lib/weblogic.policy -Dweblogic.security.SSL.ignoreHostnameVerification=true ${PROXY_SETTINGS} ${SERVER_CLASS}
    I tried recreating the certificate using the' hostname' instead of the ip address ( also added an entry into the /etc/hosts file putting the ip and hostname so that I can do ping <hostname> from the client and get response returned from the server side). Again no luck :(. I keep getting the same handshake failure as mentioned above.
    The weblogic version is 10.x.
    Thanks,
    Amrit

    I did some more research for the issue mentioned which I yet to get rid of.
    1) I wrote a REST web service which makes a call to another REST service deployed on another weblogic using HTTPs (same code as mentioned above is used). I delpoyed the war and made a http call to the first webservice, the other REST service was invoked successfully using HTTPs. So this confirmed that there is no problem with the certificates or keystore or hostname verifictaion.
    2) My actual application still throws the handshake exception as below -
    <Warning> <Security> <BEA-090542> <Certificate chain received from xx.yy.zz.rrr - xx.yy.zz.rrr was not trusted causing SSL handshake failure. Check the certificate chain to determine if it should be trusted or not. If it should be trusted, then update the client trusted CA configuration to trust the CA certificate that signed the peer certificate chain. If you are connecting to a WLS server that is using demo certificates (the default WLS server behavior), and you want this client to trust demo certificates, then specify -Dweblogic.security.TrustKeyStore=DemoTrust on the command line for this client.>
    So I think the problem is something else but weblogic is priniting the exception message wrong.
    The process hierarchy ( in UNIX ) is as shown below -
    bea 31914 31913 0 14:29 ? 00:00:00 /bin/sh <DOMAIN HOME>//bin/startWebLogic.sh
    bea 31989 31914 0 14:29 ? 00:01:25 /opt/bea/jdk160_24/bin/java <The weblogic start server process> started by startWebLogic.sh
    bea 32107 31989 0 14:29 ? 00:00:09 /opt/bea/jdk160_24/bin/java <One of custom process>
    bea 2038 32107 0 18:38 ? 00:00:15 /opt/bea/jdk160_24/bin/java <Another custom process which contains my java classes containing the REST client>
    The problem is there in both Weblogic 11 and 10.3 version.
    I will be grateful if someone gives any clue about the problem.

  • I am part of a family sharing setup.  Can I have my own payment method so the organizer does not get charged for my purchases?

    I am part of a family sharing setup.  Can I have my own payment method so the organizer does not get charged for my purchases?  If so, how do I set this up?

    Yes.  Just redeem gift cards so that your own account always has a sufficient credit balance.  Here is how it works:
    Family purchases and payments
    After you set up your family, any time a family member initiates a new purchase it will be billed directly to your account unless that family member has gift or store credit. First, their store credit will be used to pay the partial or total bill. The remainder will bill to the family organizer's card.

  • I can no longer get to Facebook Via firefox It comes up loading in the tab but does not get any further one minute it was working the next it was,nt should I try uninstalling firefox then reinstall or does anyone know what could of happened thanks

    # Question
    I can no longer get to Facebook Via firefox It comes up loading in the tab but does not get any further one minute it was working the next it was,nt should I try uninstalling firefox then reinstall or does anyone know what could of happened thanks

    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites that cause problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • My pull down menu above the green "back" button disappeared recenly after I intalled an update. How to I get it back so I can print since right clicking does not give me a print option?

    I used to have a tool bar at the top of the screen that had file, print, help, etc. After I recently installed something ( I can't remember what), the tool bar no longer appears. Help I need it back! I need to print screens and right clicking does not allow for a print option and my print screen button on my computer does not get me anywhere either. Please describe any help in simple terms - I'm just an average computer user! Thanks.

    In Firefox 3.6 and later on Windows you can hide the "Menu Bar" via "View > Toolbars" or via the right-click context menu on a toolbar.
    Press F10 or press and hold the Alt key down to bring up the "Menu Bar" temporarily.
    Go to "View > Toolbars" or right-click the "Menu Bar" or press Alt+V T to select which toolbars to show or hide (click on an entry to toggle the state).
    See also [[Menu bar is missing]] and http://kb.mozillazine.org/Toolbar_customization

  • Hi, my apple ID verification email does not contain the link for me to click in order to verify my account. Re-submitting has not worked, what can i do to verify/activate my account

    Hi, my apple ID verification email does not contain the link for me to click in order to verify my account. Re-submitting has not worked, what can i do to verify/activate my account in order to access Icloud?

    If you want to change your iCloud ID or password on your phone go to Settings>iCloud and tap Delete Account, then sign back in with your updated information.  Note: this only deletes the account and any synced data from your phone, not from iCloud.  Provided you are signing back into the same account and not changing accounts it will be synced back to your device when you sign back in.

  • I have I.O.S. 6.0.1 and i live in Georgia, Tbilisi. I have got the problem with maps. It does not get directions. Per exemple it was working in italy but in my cuntry it does not work. Could u explain me what can i do to make my maps work in Georgia?

    I have I.O.S. 6.0.1 and i live in Georgia, Tbilisi. I have got the problem with maps. It does not get directions. Per exemple it was working in italy but in my cuntry it does not work. Could u explain me what can i do to make my maps work in Georgia?
    Thank u

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"

  • How Can I best ensure data on my E71 does not get ...

    My computer had a horrible hard drive meltdown and i had to buy a replacement hard drive.  Outlook and much data is completely irretrievable, but some have been surgically recovered.  
    Concern/Fear: I will be reinstalling the Nokia PC Suite CD, then downloading and reinstalling the Updates soon.  My phone (E71) has the latest data I need and want, but I am very concerned that if I synch up with the "reborn" computer, data from the E71 could get wiped out.  Can that happen?  What steps should I take (and in what order) in order to ensure data on my phone does not get overriden (wiped out) when I synchronize for the first time?  Can that even happen?

    Thank you.  I will try to:
    1) Install original Nokia CD on laptop
    2) Download updates from Nokia site
    3) Back-up all phone data into SD card or Thumb drive (?)
    4) Synch laptop to phone (phone overides laptop)
    Am I missing anything?  Thanks again for the prompt response.  Will advise

  • I have been told my macbook does not have enough gb for Lion. and that i can not keep my mobile me mail without lion. so does this mean I have to drop mobile me and get another email address?

    I have been told my macbook does not have enough gb for Lion. and that i can not keep my mobile me mail without lion. so does this mean I have to drop mobile me and get another email address?

    You probably know that mobilme goes away in June this year. There are two ways to access your mail account on iCloud, either through Lion or via the web. Web access won't get you to all the benefits of iCloud but will allow you to get to Mail, Contacts, Calendar, and Find My iPhone.  See this FAQ: http://www.apple.com/mobileme/transition.html
    If you decide to go with Lion, the maximum memory you can install is 4GB, however the system will only use 3GB, which is enough to run Lion. Lion requires 2GB, however, some have not been satisfied with it's performance in 2GB. One source for memory is OWC at http://eshop.macsales.com/shop/memory/MacBook/DDR2/

  • Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Reboot the machine holding Command and r keys down, you'll boot into Lion Recovery Partition
    In there will be Disk Utility, use that to select your Lion OS X Partition and Repair Permissions.
    After that is done reboot the machine and see if you can log in.
    If not repeat the above steps to get into Lion Recovery, get online and reinstall Lion again, it will overwrite the installed version and hopefully after that it wil work.
    Reboot and try again.
    If not follow my steps to create a Snow Leopard Data Recovery drive, then option boot from it and grab a copy of your files off the machine.
    Then reinstall all your programs onto the external drive like setting up a new machine, then use Disk Utility to erase the entire internal boot drive (select the drive media on the far left, not the partiton slightly indented) format Option: GUID , 1 partition OS X Extended and then use Carbon Copy Cloner to clone the external to the newly formatted internal drive. Once that is finished reboot and disconnect the external drive.
    Once you go that, boot into Snow Leopard and update to 10.6.8, use the AppStore and option click on Purchases and download Lion again and install.
    Lots of work, but there is no Lion disks.
    https://discussions.apple.com/message/16276201#16276201

Maybe you are looking for

  • Setting up Time Capsule and external hard drive

    Hi, In the past i've been using Time Machine for backing up all my data from my Mac Book Pro to a 120GB lacie external hard drive. I've now purchased a Time Capsule and want to know the best way to transfer my backup data from the External HD to my T

  • File 2 soap problem

    hi i am configuring file to soap scenario. on reciever side (soap) shuold i create communication channel in business service or business system plz help me thanks & regards viju

  • How to fix the screen launched from UWL

    Hi, Expart!! Please let me ask concerning subject because I couldn't find similar topic from past questions. Now I'm in troubled by following situation. At current project, several portal roles are allocating end-user. Then if one end-user has only m

  • Max hdd size for ms-6140 ??

    anyone out there know the maximum size that the ms-6140 motherboard can handle?? its also called the 'micro ATX EX7' on some occasions. ive searched alot and cant find anything... bios has been flashed to most recent version, even though its only fro

  • Nota de windows:lightroom dejo de funcionar?

    version 5.7.1 RAM 16                  Adobe Photoshop Lightroom 64-bit dejo de funcionar                     el programa dejo de funcionar correctamente por un problema. Windows 7 cerrará´el programa y le notificará si existe una solución.