Authentication error : sendFailedException :Help needed

Hello,
I am trying to make an e-mail client application. I am using the authentication to send the mail. I have applied the required code given in the sample application provided with JavaMail API. But every time the "useAuth" is displaying "false". Can anybody tell me how to inforce the Authentication.
Thanks.

Hi,
I have the same problem.
Here is my source code
import java.io.*;
import java.util.*;
import java.text.*;
import java.util.Date;
import javax.mail.*;
import javax.mail.internet.*;
import javax.activation.*;
public class EMailClient
     public static void main(String[] args) throws Exception {
               String recipients = "[email protected]"; //recipients comma separated list of recipients
               String copies = "";//copies comma separated list of copy-to recipients
                              String subject = "test";
                              String bodyText = "test you";
               String fromAddress ="[email protected]";
               String incomingMailHost = "pop.sbcglobal.yahoo.com";
               String outgoingMailHost = "smtp.sbcglobal.yahoo.com";
               String mailUser = "[email protected]";
               String mailPwd = "password";
               EMailClient eClient = new EMailClient(fromAddress,incomingMailHost,outgoingMailHost,mailUser,mailPwd);
eClient.send(recipients,copies,subject,bodyText);
public EMailClient (String address,
String getHost,
String sendHost,
String mailUser,
String mailPwd)
this.address = address;
this.getHost = getHost;
this.sendHost = sendHost;
this.mailUser = mailUser;
this.mailPwd = mailPwd;
protected void send(String recipients,
          String copies,
String subject,
               String bodyText) throws MessagingException,
AddressException,
NoSuchProviderException,
IOException
// create some properties and get the default Session
Properties props = System.getProperties();
props.put("mail.smtp.host", sendHost);
Session session = Session.getDefaultInstance(props,null);
session.setDebug(false);
// Log onto pop server first as security protocol may require this
Store store = session.getStore("pop3");
store.connect(getHost, mailUser, mailPwd);
store.close();
// Create a mime message
MimeMessage mail = new MimeMessage(session);
mail.setFrom(new InternetAddress(address));
StringTokenizer st = new StringTokenizer(recipients,",");
InternetAddress[] recList = new InternetAddress[st.countTokens()];
for (int r = 0; st.hasMoreTokens(); r++)
recList[r] = new InternetAddress(st.nextToken().trim());
mail.setRecipients(Message.RecipientType.TO, recList);
st = new StringTokenizer(copies,",");
InternetAddress[] copyList = new InternetAddress[st.countTokens()];
for (int c = 0; st.hasMoreTokens(); c++)
copyList[c] = new InternetAddress(st.nextToken().trim());
mail.setRecipients(Message.RecipientType.CC, copyList);
mail.setSubject(subject);
mail.setText(bodyText);
mail.setSentDate(new Date());
// Send the message
Transport trans = session.getTransport("smtp");
trans.connect(sendHost, mailUser, mailPwd);
System.out.println("Conected: "+ trans.isConnected());
trans.sendMessage(mail, mail.getAllRecipients());
trans.close();
The message I got is as follows
C:\>java EMailClient
Conected: true
Exception in thread "main" javax.mail.MessagingException: 530 authentication req
uired - for help go to http://help.yahoo.com/help/us/sbc/dsl/mail/pop/pop-11.htm
l
at com.sun.mail.smtp.SMTPTransport.issueCommand(SMTPTransport.java:879)
at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:599)
at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:319)
at EMailClient.send(EMailClient.java:105)
at EMailClient.main(EMailClient.java:35)
I appreciated if anyone can help.
Regards.
Sha

Similar Messages

  • Error messages help need asap!!!!

    hi this is my code and I need help with what i need to do and how to do it to get rid of the error messages
    CREATE OR REPLACE FUNCTION
    no_of_task_types (x NUMBER)
    RETURN NUMBER IS
    my_val NUMBER;
    BEGIN
    SELECT COUNT(distinct t.task_type_no)
    INTO my_val
    FROM employee e, assignment a, task t
    WHERE e.employee_id = x
    AND e.employee_no = a.employee_no
    AND t.task_id = a.task_id
    RETURN tasktotal;
    END;
    SHOW ERRORS
    these are the error messages:
    Warning: Function created with compilation errors.
    Errors for FUNCTION NO_OF_TASK_TYPES:
    8/1     PL/SQL: SQL Statement ignored
    13/27     PL/SQL: ORA-00933: SQL command not properly ended

    Hi,
    Welcome to the forum!
    Don't say things like "urgent" or "asap" (as in your title, "error messages help need asap!!!!"). It's rude.
    971848 wrote:
    hi this is my code and I need help with what i need to do and how to do it to get rid of the error messages
    CREATE OR REPLACE FUNCTION
    no_of_task_types (x NUMBER)
    RETURN NUMBER IS
    my_val NUMBER;
    BEGIN
    SELECT COUNT(distinct t.task_type_no)
    INTO my_val
    FROM employee e, assignment a, task t
    WHERE e.employee_id = x
    AND e.employee_no = a.employee_no
    AND t.task_id = a.task_id
    RETURN tasktotal;
    END;
    SHOW ERRORS
    these are the error messages:
    Warning: Function created with compilation errors.
    Errors for FUNCTION NO_OF_TASK_TYPES:
    8/1     PL/SQL: SQL Statement ignored
    13/27     PL/SQL: ORA-00933: SQL command not properly endedIt looks like you're missing a semicolon at the end of line 13; that's why the statement beginning at line 8 can't be understood.
    Also, you store a number in my_val, but never use that number, and you have a variable called tasktotal that's never defined. Should my_val and tasktotal be the same variable?
    Perhaps this is what you want:
    CREATE OR REPLACE FUNCTION
           no_of_task_types (x NUMBER)
    RETURN NUMBER IS
        tasktotal   NUMBER;
    BEGIN
        SELECT  COUNT(distinct t.task_type_no)
        INTO    tasktotal
        FROM    employee e, assignment a, task t
        WHERE   e.employee_id = x
        AND     e.employee_no = a.employee_no
        AND     t.task_id        = a.task_id;          -- ; at end is important
        RETURN tasktotal;
    END;
    /This question doesn't have anything to do with SQL*Plus, so maybe the SQL*Plus forum isn't the best place for it. This is strictly a PL/SQL problem; in the future, post questions like this in the PL/SQL. The FAQ page for that forum, {message:id=9360002} , can really help you.

  • Messaging:System Error(-10)HELP NEEDED!NEED BEFORE...

    Messaging: System Error(-10) [Nokia N70] URGENT HELP NEEDED! - NEEDE BEFORE WED 21ST MAY '08 - BUT HELP OTHERWISE APPRECIATED!______________________________
    Hey,
    I need this help before Wednesday 21st May 2008 as I am going abroad and urgently need my phone. I have had my phone for just over a year now and I have never had any problems with it up until now.... Think you can help...?
    This is the scenario. My messages are saved under my nokia N70's MMC memory card and when I get a message there are a number of problems.
    1) My phone does not vibrate or alert me when a message comes in. I have checked my profile settings and they are all up to volume.
    2) When the messages come through they are not displayed on the main window of the phone as "1 New Message Received" but in the top corner with a little envelope icon. I know the icon normally comes up but the "1 New messge received part doesn't come up.
    3)When "1 New Message Reveived" is not displayed on the main window I go into the "INBOX". When I click inbox on "Messaging" the phone displays an error saying: Messaging: System Error(-10) with a red exclamaion mark. The I can not write any messages, view sent, or drafts.
    I have tried to change me message settings by going on "Messaging"> Left Click "Settings" > "Other" > "Memory in use" and selected "Phone Memory". This works but then my I looses all my previous messages.
    4)My phone is also dead slow. I click menu and it takes at least five minutes to load menu.
    IF YOU COULD HELP ME ON ANY OF THESE ISSUES I WOULD BE MAJORLY GREATFUL!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    Thanks Soo Much,
    Robert__________

    U said in another post u've tried all my solutions = =?
    On that post its for Nokia N95 u kno? Although the problem is similar, but different phone model can lead to quite different solutions.
    Are u sure u tried all my solutions?
    have u tried this?:
    /discussions/board/message?board.id=messaging&message.id=7926#M7926
    Also format ur memory card, do not use content copier! dont install too much softwares, as ur phone model is old and doesnt have much space.
    This is from NOkia, sometimes does work depending on ur situation:
    Memory low
    Q: What can I do if my device memory is low?
    A: You can delete the following items regularly to avoid
    memory getting low:
    • Messages from Inbox, Drafts, and Sent folders in Messaging
    • Retrieved e-mail messages from the device memory
    • Saved browser pages
    • Images and photos in Gallery
    To delete contact information, calendar notes, call timers, call cost timers, game scores, or any other data, go to the respective application to remove the data. If you are deleting multiple items and any of the following notes are shown: Not enough memory to perform operation. Delete some data first. or Memory low. Delete some data., try deleting items one by one (starting from the smallest item).
    use device status http://handheld.softpedia.com/get/Desktop-and-Shell/Windows/Nokia-Device-Status-57673.shtml
    to maybe let me see what u got on ur phone (by saving/exporting report).
    Make sure u have the latest firmware! Updating firmware is like a hard reset but also upgrade.
    Message Edited by goldnebula on 20-May-2008 02:05 PM

  • Ipod wont restore says uknown error 1418 [[HELP NEEDED]]

    my ipod use to work then it stopped working one day
    then i got it to work again somehow.
    now it wont work again
    i need help please. i have tried everything and done everything to try to fix my problem.
    I'm in need of a genious

    Yesterday I was getting the blinking green/amber lights with my shuffle (512Mb).
    After I couldn't get it to reset (with 5 sec. on/off) I plugged it into the computer. Saw that iTunes 6.x wouldn't see it and tried to run the updater. No luck.
    Figured it was as good a time as any to update to iTunes 7. Still no luck. It sees the iPod but says it needs to be restored. When I try, I get the error 1418.
    So, I figured I'd attempt to see if I can find out what's going on. I boot up a Linux live CD and take a look at the drive partition tables. (Figuring I may just reformat the thing and either fix it, or at least end up with a 512Mb flash drive).
    gParted sees the device (interestingly as 1019.75Mb - wondering if they all were the same, but just partitioned differently).
    When I try to repartition, it fails when attempting to assign a drive label.
    I then plugged an old 128Mb flash drive into another usb port and attempted to do a brute force copy:
    dd if=/dev/sda of=/dev/sdb
    where /dev/sda was the 128Mb drive and /dev/sdb was the shuffle.
    It failed with an Input/Output error at 0 bytes.
    I found some others who seem to have had the same problem (drive just going bad out of nowhere) when I googled for "repartition ipod shuffle" (no quotes). Seems the flash drive can just go bad just sitting there. I'll keep trying, but I don't have my hopes up.
    The new shuffle looks nice, but I can't say this leaves me very impressed. Mine was only about 15 months old (of course past warranty) and pretty gently used.
    Shuffle 512   Windows XP Pro  

  • Jacob.jar Help/Webutil Error-Urgent Help Needed

    We are not using any OLE object in forms.But after implementation on WEBUTIL the browser starts giving below error:
    java.lang.NoClassDefFoundError:com/jacob/com/ComFailException
    Can anyone help ?
    Is jacob.jar is required to download even if we don't need it.
    Thanks
    Mandeep Singh

    Thanks for quick response.
    But my question is do we need to config jacob lib even we dn't need it.I am asking this because with this release of WEBUTIL,jacob is a seperate lic. product and its not a part of WEBUTIL pack.
    Thanks

  • ABAP Error. Help needed ASAP

    Hi Gurus,
    I am trying to write an ABAP statement for the below requirement.
    Function has two import parameters. 1. key and 2. date.
                                Export parameter: export_rec like TAB.
    Req:  I need to select a record from a table where key = input parameter and input date lies between the from and to date fields in the table. (since table is time dependent).
    EXPORT_REC like TAB,
    I_T_TAB like TAB OCCURS 0 WITH HEADER LINE.
    SELECT  SINGLE * FROM I_T_TAB INTO EXPORT_REC WHERE KEY = IMPORT_ PARAMETER AND IMPORT_PARAM_DATE BETWEEN FROM_DATE AND TO_DATE.
    But, I am getting errors. It says the I_T_TAB is not defined in the Abap dictionary as table, view or projection.
    I defined it as an internal table. But, even then I am getting this error.
    Can anyone please help me out with this issue,
    Thanks,
    Regards,
    aarthi
    [email protected]

    Hi
    From you code i understand that I_T_TAB is the internal table that fetch data from the SAP table TAB.
    So, the reason for the error statement is because of the Select statement.
    The select statement is used to fetch data from SAP table TAB.
    So your select statement should look like this...
    SELECT SINGLE * FROM TAB INTO I_T_TAB
    WHERE key = import_ PARAMETER
    AND import_param_date BETWEEN from_date AND to_date.
    IF sy-subrc = 0.
      MOVE-CORRESPONDING i_t_tab TO export_rec.
    ENDIF.
    If you are trying to fetch data from the internal table I_T_TAB &
    append the export parameter EXPORT_REC then you should use the READ statement.
    READ TABLE i_t_tab WITH KEY key = import_ parameter
    and import_param_date between from_date and to_date.
    IF sy-subrc = 0.
      MOVE-CORRESPONDING i_t_tab TO export_rec.
      APPEND export_rec.
    ENDIF.
    Hope this helps!
    best regards,
    Thangesh

  • DiskSpace Report Alert Error - Urgently Help Needed

    Hell All
    I have been take the scripts from https://gallery.technet.microsoft.com/scriptcenter/Disk-Space-Report-Reports-98e64d65
    Which is working fine , but my end of scripts out Auto Disclaimer is added and the output has little bit collapsed
    Disclaimer HAS BEEN added to the waring and critical Table which is mentioned on this script which is underlined now. and how avoid this 
    Urgent help is needed
    #  Check disk space and send an HTML report as the body of an email.        #
    #  Reports only disks on computers that have low disk space.                #
    #  Author: Mike Carmody                                                     #
    #  Some ideas extracted from Thiyagu's Exchange DiskspaceHTMLReport module. #
    #  Date: 8/10/2011                                                          #
    #  I have not added any error checking into this script yet.                #
    # Continue even if there are errors
    $ErrorActionPreference = "Continue";
    # Items to change to make it work for you.
    # EMAIL PROPERTIES
    #  - the $users that this report will be sent to.
    #  - near the end of the script the smtpserver, From and Subject.
    # REPORT PROPERTIES
    #  - you can edit the report path and report name of the html file that is the report. 
    # Set your warning and critical thresholds
    $percentWarning = 15;
    $percentCritcal = 10;
    # EMAIL PROPERTIES
    # Set the recipients of the report.
    $users = "[email protected]"
      #$users = "[email protected]" # I use this for testing by uing my email address.
    #$users = "[email protected]", "[email protected]", "[email protected]";  # can be sent to individuals.
    # REPORT PROPERTIES
    # Path to the report
    $reportPath = "D:\Jobs\DiskSpaceQuery\Reports\";
    # Report name
    $reportName = "DiskSpaceRpt_$(get-date -format ddMMyyyy).html";
    # Path and Report name together
    $diskReport = $reportPath + $reportName
    #Set colors for table cell backgrounds
    $redColor = "#FF0000"
    $orangeColor = "#FBB917"
    $whiteColor = "#FFFFFF"
    # Count if any computers have low disk space.  Do not send report if less than 1.
    $i = 0;
    # Get computer list to check disk space
    $computers = Get-Content "servers_c.txt";
    $datetime = Get-Date -Format "MM-dd-yyyy_HHmmss";
    # Remove the report if it has already been run today so it does not append to the existing report
    If (Test-Path $diskReport)
            Remove-Item $diskReport
    # Cleanup old files..
    $Daysback = "-7"
    $CurrentDate = Get-Date;
    $DateToDelete = $CurrentDate.AddDays($Daysback);
    Get-ChildItem $reportPath | Where-Object { $_.LastWriteTime -lt $DatetoDelete } | Remove-Item;
    # Create and write HTML Header of report
    $titleDate = get-date -uformat "%m-%d-%Y - %A"
    $header = "
    <html>
    <head>
    <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>
    <title>DiskSpace Report</title>
    <STYLE TYPE='text/css'>
    <!--
    td {
    font-family: Tahoma;
    font-size: 11px;
    border-
    border-right: 1px solid #999999;
    border-bottom: 1px solid #999999;
    border-
    padding-
    padding-right: 0px;
    padding-bottom: 0px;
    padding-
    body {
    margin-
    margin-
    margin-right: 0px;
    margin-bottom: 10px;
    table {
    border: thin solid #000000;
    -->
    </style>
    </head>
    <body>
    <table width='100%'>
    <tr bgcolor='#CCCCCC'>
    <td colspan='7' height='25' align='center'>
    <font face='tahoma' color='#003399' size='4'><strong>AEM Environment DiskSpace Report for $titledate</strong></font>
    </td>
    </tr>
    </table>
     Add-Content $diskReport $header
    # Create and write Table header for report
     $tableHeader = "
     <table width='100%'><tbody>
    <tr bgcolor=#CCCCCC>
        <td width='10%' align='center'>Server</td>
    <td width='5%' align='center'>Drive</td>
    <td width='15%' align='center'>Drive Label</td>
    <td width='10%' align='center'>Total Capacity(GB)</td>
    <td width='10%' align='center'>Used Capacity(GB)</td>
    <td width='10%' align='center'>Free Space(GB)</td>
    <td width='5%' align='center'>Freespace %</td>
    </tr>
    Add-Content $diskReport $tableHeader
    # Start processing disk space reports against a list of servers
      foreach($computer in $computers)
    $disks = Get-WmiObject -ComputerName $computer -Class Win32_LogicalDisk -Filter "DriveType = 3"
    $computer = $computer.toupper()
    foreach($disk in $disks)
    $deviceID = $disk.DeviceID;
            $volName = $disk.VolumeName;
    [float]$size = $disk.Size;
    [float]$freespace = $disk.FreeSpace; 
    $percentFree = [Math]::Round(($freespace / $size) * 100, 2);
    $sizeGB = [Math]::Round($size / 1073741824, 2);
    $freeSpaceGB = [Math]::Round($freespace / 1073741824, 2);
            $usedSpaceGB = $sizeGB - $freeSpaceGB;
            $color = $whiteColor;
    # Set background color to Orange if just a warning
    if($percentFree -lt $percentWarning)      
      $color = $orangeColor
    # Set background color to Orange if space is Critical
          if($percentFree -lt $percentCritcal)
            $color = $redColor
     # Create table data rows 
        $dataRow = "
    <tr>
            <td width='10%'>$computer</td>
    <td width='5%' align='center'>$deviceID</td>
    <td width='15%' >$volName</td>
    <td width='10%' align='center'>$sizeGB</td>
    <td width='10%' align='center'>$usedSpaceGB</td>
    <td width='10%' align='center'>$freeSpaceGB</td>
    <td width='5%' bgcolor=`'$color`' align='center'>$percentFree</td>
    </tr>
    Add-Content $diskReport $dataRow;
    Write-Host -ForegroundColor DarkYellow "$computer $deviceID percentage free space = $percentFree";
        $i++
    # Create table at end of report showing legend of colors for the critical and warning
     $tableDescription = "
     </table><br><table width='20%'>
    <tr bgcolor='White'>
        <td width='10%' align='center' bgcolor='#FBB917'>Warning less than 15% free space</td>
    <td width='10%' align='center' bgcolor='#FF0000'>Critical less than 10% free space</td>
    </tr>
      Add-Content $diskReport $tableDescription
    Add-Content $diskReport "</body></html>"
    # Send Notification if alert $i is greater then 0
    if ($i -gt 0)
        foreach ($user in $users)
            Write-Host "Sending Email notification to $user"
    $smtpServer = "MySMTPServer"
    $smtp = New-Object Net.Mail.SmtpClient($smtpServer)
    $msg = New-Object Net.Mail.MailMessage
    $msg.To.Add($user)
            $msg.From = "[email protected]"
    $msg.Subject = "Environment DiskSpace Report for $titledate"
            $msg.IsBodyHTML = $true
            $msg.Body = get-content $diskReport
    $smtp.Send($msg)
            $body = ""
    https://gallery.technet.microsoft.com/scriptcenter/Disk-Space-Report-Reports-98e64d65

    Hi,
    I want to double confirm which version are you used, please also refer to scripting center for the similar scripts:
    Disk Space Monitoring - HTML EMAIL Report
    http://gallery.technet.microsoft.com/scriptcenter/6e935887-6b30-4654-b977-6f5d289f3a63
    Monitor Free Disk Space Information on a Computer
    http://gallery.technet.microsoft.com/scriptcenter/04c29c84-5ecc-4bf6-8dd4-2940db63d9f3
    List Available Disk Space
    http://gallery.technet.microsoft.com/scriptcenter/7fa38863-ad6f-4f46-ac91-9b7d4a30f52b
    Disk Space monitoring
    http://gallery.technet.microsoft.com/scriptcenter/fd4f5235-1a80-41ed-87e2-189278fd376c
    If you encounter any difficulties when customizing the scripts, you may submit a new question in
    The Official Scripting Guys Forum! which is a best resource for scripting related issues.
    Best Regards,
    Allen Wang

  • MAC OS-X Lion and Error 51 - Help Needed ASAP Please

    Greetings,
    I have been using the Cisco VPN Client (4.9.01) for Mac under Snow Leopard (10.6.x) without any issues.
    Since upgrading to Lion earlier today I am now receiving an Error 51 - unable to communicate with the subsystem.
    I found a thread that suggested restarting the system while holding down Opt/3/2 keys to force a 32-Bit restart and the Client will indeed run. However, this is a bandaid patch.
    Has Cisco addressed this issue? Is there a better workaround at this time?
    Thank you,
    Lyman

    Hello Robert,
    In Windows 7 you would need to use the Cisco IPsec client which operates the same way as it does in XP with regards to the pcf.  So I am not sure why you are having trouble with Win7, if you are still having trouble with Win7 using the Cisco IPsec client please start a new thread for that specific issue as it is separate and distinct from Mac OS X and using the Mac OS X built in client.
    Did you follow this guide:
    http://anders.com/guides/native-cisco-vpn-on-mac-os-x/
    Thanks tomas.truchly.
    I have not heard of an issue with the Mac OS X Built-in client when properly configured and when the head-end has the security levels necessary.
    Also, since this thread has been Answered, to help ensure you get the help you need it might be best to open a new thread.
    -Craig

  • Authentication loop: Advanced Help Needed

    I just received my Core 2 duo 20" and I expected that connecting to my universities wireless network would be a breeze, but boy was a wrong. The network uses the following credentials, WPA, PEAP, TKIP MSchapV2. By reading /var/log/system.log I see that it authenticates fine for about 5 seconds, then stops and repeats the process over and over and over. My powerbook works 100% with the identical configuration. I suspect it's something to do with apple using new broadcom chipsets in the new imac, supporting 802.11n. I've spent hours today with my university tech support dept and they were at a loss. Thanks for any help. I am running all new drivers (updated via ethernet) and 10.4.8. Attached are my errors in /var/log/system.log
    Sep 29 11:01:08 derek-leblanc-s-computer eapolclient[670]: eapmschapv2successrequest: successfully authenticated
    Sep 29 11:01:13 derek-leblanc-s-computer kernel[0]: SetCryptoKey T: len 32, idx 0
    Sep 29 11:01:13 derek-leblanc-s-computer kernel[0]: SetCryptoKey R: len 32, idx 1
    Sep 29 11:01:13 derek-leblanc-s-computer kernel[0]: SetCryptoKey R: len 32, idx 1
    Sep 29 11:01:13 derek-leblanc-s-computer kernel[0]: SetCryptoKey R: len 32, idx 1
    Sep 29 11:01:17 derek-leblanc-s-computer eapolclient[670]: eapmschapv2successrequest: successfully authenticated
    Sep 29 11:01:22 derek-leblanc-s-computer kernel[0]: SetCryptoKey T: len 32, idx 0
    Sep 29 11:01:22 derek-leblanc-s-computer kernel[0]: SetCryptoKey R: len 32, idx 1
    Sep 29 11:01:22 derek-leblanc-s-computer kernel[0]: SetCryptoKey R: len 32, idx 1
    Sep 29 11:01:22 derek-leblanc-s-computer kernel[0]: SetCryptoKey R: len 32, idx 1
    Sep 29 11:01:23 derek-leblanc-s-computer eapolclient[670]: eapmschapv2successrequest: successfully authenticated

    Same problem!!! and with iMac Core 2 Duo and Core DUO; the use the same Airport firmware revision 4.80.46.0.
    It seems a bug . Conataced Apple online support and sent email of the log.
    They are escalating the problem.
    I hope to have a solution soon.

  • Undefined Error Preloader Help Needed

    My AS 1.0 preloader code was set to work just fine using
    Flash 6 in AS 1.0 and now I'm using the same code with a few slight
    updates I've added for AS 2.0 in Flash 8 and still having problems
    with an "undefined" error. I'm obviously missing something with
    variables.., yes?
    Thanks to anyone who can shed some light on this problem!

    Simon,
    Thanks for your help, but it looks like my code is working
    fine as I had it after some additional testing. Please note that
    while I appreciated your intention to help... I need to warn others
    that the link you've used in there has a sample display with
    inappropriate material.
    TO OTHERS: Please replace the following line: loadContent("
    http://www.designbyclouds.com/pics/banksy_paris.jpg");
    with your own link.

  • Error #2099 - Help Needed

    Hello All,
    This is my first post here at Adobe.com and I hope that I am posting in the right place.
    I have been attending college and have been working out of a book "Adobe Flash CS5: The Professional Portfolio" by Against the Clock amd I seem to be running into trouble. Im on Project 8, which has a main "website" page and a "UILoader" that calls swf files from a directory within the project.
    ALSO I am using CS5.5 Web Premium Programs.
    Well this is the error:
    Error: Error #2099: The loading object is not sufficiently loaded to provide this information.
        at flash.display::LoaderInfo/get loader()
        at fl.display::ProLoader/get realLoader()
        at fl.display::ProLoaderInfo()
        at fl.display::ProLoader()
        at fl.containers::UILoader/initLoader()
        at fl.containers::UILoader/load()
        at fl.containers::UILoader/set source()
        at seabreeze_fla::MainTimeline/__setProp_homeContent_Scene1_PageContents_0()
        at seabreeze_fla::MainTimeline/frame1()
    and this is the main page UILoader Pointing to the Directory
    import flash.events.MouseEvent;
    stop();
    home_btn.addEventListener(MouseEvent.MOUSE_UP, browse);
    passes_btn.addEventListener(MouseEvent.MOUSE_UP, browse);
    plan_btn.addEventListener(MouseEvent.MOUSE_UP, browse);
    attractions_btn.addEventListener(MouseEvent.MOUSE_UP, browse);
    group_btn.addEventListener(MouseEvent.MOUSE_UP, browse);
    about_btn.addEventListener(MouseEvent.MOUSE_UP, browse);
    guests_btn.addEventListener(MouseEvent.MOUSE_UP, browse);
    join_btn.addEventListener(MouseEvent.MOUSE_UP, browse);
    contact_btn.addEventListener(MouseEvent.MOUSE_UP, browse);
    new_btn.addEventListener(MouseEvent.MOUSE_UP, browse);
    specials_btn.addEventListener(MouseEvent.MOUSE_UP, browse);
    calendar_btn.addEventListener(MouseEvent.MOUSE_UP, browse);
    group2_btn.addEventListener(MouseEvent.MOUSE_UP, browse);
    passes2_btn.addEventListener(MouseEvent.MOUSE_UP, browse);
    function browse(event:MouseEvent):void {
        switch (event.target.name) {
            case "home_btn" : gotoAndStop("home");
            break;
            case "passes_btn" : gotoAndStop("passes");
            PageHead.text = "Buy Passes Online";
            break;
            case "plan_btn" : gotoAndStop("plan");
            PageHead.text = "Plan Your Visit";
            break;
            case "attractions_btn" : gotoAndStop("attractions");
            PageHead.text = "Attractions";
            break;
            case "group_btn" : gotoAndStop("group");
            PageHead.text = "Group Sales";
            break;
            case "about_btn" : gotoAndStop("about");
            PageHead.text = "About the Park";
            break;
            case "guests_btn" : gotoAndStop("guests");
            PageHead.text = "Our Guests Say...";
            break;
            case "join_btn" : gotoAndStop("join");
            PageHead.text = "Join Club Seabreeze";
            break;
            case "contact_btn" : gotoAndStop("contact");
            PageHead.text = "Contact Us";
            break;
            case "new_btn" : gotoAndStop("new");
            PageHead.text = "What's New";
            break;
            case "specials_btn" : gotoAndStop("specials");
            PageHead.text = "Special Offers";
            break;
            case "calendar_btn" : gotoAndStop("calendar");
            PageHead.text = "Park Calendar";
            break;
            case "group2_btn" : gotoAndStop("group");
            PageHead.text = "Group Sales";
            break;
            case "passes2_btn" : gotoAndStop("passes");
            PageHead.text = "Buy Passes Online";
            break;
    The Main Code^ was working and still is, but the UILoader seems to not be gathering the nessesary files.
    --->>>>
    This is where the main "seabreeze" file is located and the Children Folder that I am Calling files from.
    I hope that I am not going over board with this, and I have recieved a good grade for this even with this error, but I would like to actully "understand" what is going on here.
    Thanks in advance,
    Aaron W.

    Ned Murphy wrote:
    I don't normally use components so I haven't much to offer in the way of helping when they seem to go bad.  What you might try instead of using the UILoader is to use the Loader class and have your content added via using code.
    // frame 1 code
    var ldr:Loader = new Loader();   // used "ldr", but could have named it whatever
    ldr.x = ?;                             // use the x location of the current UILoader for the ?
    ldr.y = ?;                             // use the y location of the current UILoader for the ?
    addChild(ldr);
    ldr.load(new URLRequest("Children/home.swf"));
    next section...
    // frame 5 code
    ldr.load(new URLRequest("Children/passes.swf"));
    etc...
    Wow, what a BIG help Mr. Murphy! I was thrilled to at least see the content on the Home page of the website. The only problem that I am having now is that the new Loader is not defined by a Width or a Height in AS3, so the flash file gathered is not resized down to the content area. I am guessing that I will just need to resize the *.swf files in the Children folder, BUT is there a way to define the .w and .h of the Loader? I have tried ldr.w and ldr.h but was not successful.
    Although this is not the solution for the UILoader, the Loader AS3 is a great alternative to display content from a local directory. Thanks for the very Helpful Awnser and the code works like a charm, just need legenth and width parameters.

  • Premiere Pro has encountered an error. Help needed.

    Hi,
    Whenever I open a project in premiere pro I encounter the following error...
    I am new to the program and am working on my first video, however there are no keyboard shortcuts, no effects in the "effects panel", I don't know if it has to do with the error or if I have certain settings unchecked.  I can click continue and the project opens...but it looks like premiere pro is not functioning properly.  I was wondering if anyone might be able to help me come up with a solution?
    Regards,
    Brendan.

    This might help.
    http://forums.adobe.com/message/5169479#5169479

  • Error 3194 Help Needed, Apple Article Doesn't Help

    I have tried Apple's article article for help on this and still no luck. When I go into termimal I see two gs.apple.com hosts listed (the article only has one). Which one should I add the "# " to? Should I delte one of the hosts? Any help would be appreciated.
    Thanks

    Your iWeb navigation will not display in IE if Java is turned off.
    To get round this you can hide the navigation and build your own.....
    http://iwebfaq.org/site/iWebNavigationmenu.html
    What errors?

  • ORA-0 1033 Error- Immediate Help Needed!

    Hello I am a student have little knowledge abt oracle. My Oracle failed to startup showing ORA-0 1033 error. and its just 3 days before my project submission. Please Help immediately. Here is what I tried ---
    C:\>sqlplus "/as sysdba"
    SQL*Plus: Release 10.2.0.1.0 - Production on Sat Dec 18 11:23:47 2010
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> shu immediate
    ORA-01109: database not open
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup force mount;
    ORACLE instance started.
    Total System Global Area 293601280 bytes
    Fixed Size 1248600 bytes
    Variable Size 109052584 bytes
    Database Buffers 176160768 bytes
    Redo Buffers 7139328 bytes
    Database mounted.
    SQL> recover database;
    ORA-00283: recovery session canceled due to errors
    ORA-01122: database file 3 failed verification check
    ORA-01110: data file 3: 'K:\ORACLE\PRODUCT\10.2.0\ORADATA\INDRA\SYSAUX01.DBF'
    ORA-01207: file is more recent than control file - old control file
    SQL> alter database open;
    alter database open
    ERROR at line 1:
    ORA-01122: database file 3 failed verification check
    ORA-01110: data file 3: 'K:\ORACLE\PRODUCT\10.2.0\ORADATA\INDRA\SYSAUX01.DBF'
    ORA-01207: file is more recent than control file - old control file
    If it can be restored anyhow do help. I dont have a backup of the database!

    as i said i hv little knowledge abt oracle. I dont know if it was in archive log mode. how to find that out ! ... i think my oracle stopped working after an abnormal shutdown of the computer.
    and, the file as you can see have the error --
    ORA-01122: database file 3 failed verification check
    ORA-01110: data file 3: 'K:\ORACLE\PRODUCT\10.2.0\ORADATA\INDRA\SYSAUX01.DBF'
    any way to get this file restored??

  • Disk Error, Urgent help needed

    I will try to explain everything in a summarised form:
    i am using Macbook Air 2014 with Mavericks and Bootcamp windows 8.1
    I wanted the notes app of mountain lion to run in mavericks
    so created extra partition using disk utility and installed mountain lion using usb installer
    after finding out that  i cannot run old version of app in mavericks
    i deleted the mountain lion partition but when i dragged my Mavericks partition to expand it did not do anything
    i tried again by expanding it a little above the maximum available space
    it worked and my mavericks partition was 120 gb once again
    now my bootcamp partition was corrupt
    and recovery partition was missing from startup instead it shows boot efi
    disk utility gives Invalid number of allocation blocks and cannot repair it
    please tell me what should i do?
    would reinstalling mavericks be of any help?

    It is probable that you are creating an element, and then explicitly setting its value to null. This will cause the error you are getting even if the minOccurs for the particular element is set to 0.

Maybe you are looking for

  • Importing stills from iMovie '08 to iPhoto

    I am trying to create a photo album. I have extracted still images from video footage of sporting events and put them into an iMovie project file. I want to export these from iMovie to iPhoto (or import them in the reverse direction) but I am unable

  • How to pick the entries from a function  module fields values

    hi guys,             i have a function module 'BP_JOBLOG_READ’.when i execute this for a particular jobname,i will get some entries.again if i click those entries,i will get some fields with values.in that one field 'text' contains total credit amoun

  • Attachment sent thru mail in PL/SQL code.

    Hi. I have a requirement.. I have to send bunch of an error description thru mail along with attachment says xls.All error should be club in xls and should be sent these attachement thru EMAIL. Please provide a sample code for the same. I have a code

  • Depoly error ORA-29532, ORA-06512

    Hi all, When I deploying tables and mappings, I get the following error message: ORA-29532: Java call terminated by uncaught Java exception: oracle.jdbc.driver.OracleSQLException: ORA-28239: no key provided ORA-06512: at "SYS.DBMS_OBFUSCATION_TOOLKIT

  • Firefox took more than 15 minutes to open a new window

    Hi all, I'm now with the last version of firefox 3.6 and it took more than 15 minutes to open a new window. But, i'm not having the problem to open a new tab. I don't know why? I'm on window XP, antivirus: avast familly. Thanks for your answer.