No error message, but no mail sent - need help troubleshooting

I'm having a problem with sending email since I moved my site to a new server. Trying to get to the bottom of it.
Question: if I do props.put("mail.debug", "true") to turn on debugging, where does this output debug statements to? I'm on a linux server, and I checked /var/log/maillog but don't see anything in there.
Is it logging on Tomcat? I'm trying to find those logs, but am having trouble. Any help is appreciated.
Tyson

Debug output goes to either System.out or System.err. I don't know where those things are redirected to in Tomcat, but you could search the Servlets forum where I know that question has been asked before.
However, it sounds like you are trying to solve two problems (mail and servlets) at the same time. If you can, solve the problems one at a time. For example, write a trivial application that sends an e-mail, then run that application on your server with debugging output turned on. Once you know that e-mail works, then put the code into your servlet.

Similar Messages

  • SSRS 2008 Created Commssion Report, now getting error message when I run this ( need Help)

    in SSRS 2008 2 years ago created Commission with sub reports added, it was working fine, some how started to get error  
    message when we entered some invoice # see below screen shot of error message
    but same time if I enter different invoice # it process the report without any error message , donot understand the problem
    what's causing this issue, I have looked each sub report,
    can some one suggest any idea,
    I have spent hrs to figure it out, no luck so far.
    thanks in advance
    see the 2nd screen shot with report process
    any help will be greatly appreciated

    Hi Wendy
    thanks for your reply
    I tried creating new report , I have 1 main report and 3 sub report on this
    on main report when I enter some invoice# and accountnum  data shows up with no problem,
    but same time if I enter different invoice# and accountnum , there is no data return  on same query, I have checked my query so many times, donot understand this issue, what's causing this problem, since all the data pulling from same tables, why its
    not pulling for some invoices,
     other strange thing , I created this report , year ago, there was no problem until now,
    all of the sudden this problem just shows up,'
    I am not that expert in sql , can I really use advise
    see below by query , if you can tell me what's wrong with my query I will be really greatfull I have spend so much time to figure it out, but so far no luck
    SELECT        VENDTRANS.DATAAREAID, SALESTABLE.SALESID, VENDTRANS.VOUCHER, SALESTABLE.SALESTYPE, SALESTABLE.SALESSTATUS, VENDTRANS.TRANSDATE,
                             CUSTINVOICEJOUR.INVOICEAMOUNT, VENDTRANS.INVOICE, VENDTRANS.PAYMMODE, VENDTRANS.ACCOUNTNUM, VENDTRANS.TRANSTYPE,
                             VENDTRANS.LASTSETTLEVOUCHER, VENDTRANS.TXT, CUSTINVOICEJOUR.INVOICEACCOUNT, CUSTINVOICEJOUR.INVOICINGNAME,
                             VENDTRANS.LASTSETTLEDATE, LEDGERJOURNALTRANS.ACCOUNTTYPE, LEDGERJOURNALTRANS.AMOUNTCURCREDIT, LEDGERJOURNALTRANS.LINENUM,
                             CUSTINVOICETRANS.INVOICEDATE
    FROM            SALESTABLE INNER JOIN
                             CUSTINVOICETRANS ON SALESTABLE.DATAAREAID = CUSTINVOICETRANS.DATAAREAID AND SALESTABLE.SALESID = CUSTINVOICETRANS.SALESID
    INNER JOIN
                             CUSTINVOICEJOUR ON CUSTINVOICETRANS.INVOICEID = CUSTINVOICEJOUR.INVOICEID AND CUSTINVOICETRANS.SALESID = CUSTINVOICEJOUR.SALESID
    AND
                             CUSTINVOICETRANS.INVOICEDATE = CUSTINVOICEJOUR.INVOICEDATE INNER JOIN
                             VENDTRANS ON CUSTINVOICETRANS.INVOICEID = VENDTRANS.INVOICE AND CUSTINVOICETRANS.DATAAREAID = VENDTRANS.DATAAREAID
    AND
                             CUSTINVOICEJOUR.DATAAREAID = VENDTRANS.DATAAREAID AND CUSTINVOICEJOUR.INVOICEDATE = VENDTRANS.TRANSDATE INNER JOIN
                             LEDGERJOURNALTRANS ON VENDTRANS.DATAAREAID = LEDGERJOURNALTRANS.DATAAREAID AND
                             VENDTRANS.ACCOUNTNUM = LEDGERJOURNALTRANS.ACCOUNTNUM AND CUSTINVOICETRANS.LINENUM = LEDGERJOURNALTRANS.LINENUM AND
                             VENDTRANS.INVOICE = LEDGERJOURNALTRANS.INVOICE AND VENDTRANS.VOUCHER = LEDGERJOURNALTRANS.VOUCHER AND
                             VENDTRANS.PAYMMODE = LEDGERJOURNALTRANS.PAYMMODE AND VENDTRANS.TRANSDATE = LEDGERJOURNALTRANS.TRANSDATE
    WHERE        (VENDTRANS.DATAAREAID = N'AR1') AND (SALESTABLE.SALESTYPE = 3) AND (SALESTABLE.SALESSTATUS = 3) AND (VENDTRANS.ACCOUNTNUM = @Accountnum)
                             AND (VENDTRANS.INVOICE = @Invoice) AND (LEDGERJOURNALTRANS.ACCOUNTTYPE = 2)

  • Weird "undefined in form" error message: but is defined--can anyone help?

    Here is the <form> code:
    <!---Dynamically generated list of bowling center names--->
    <cfselect class="selectBox" name="regHomeCntr">
    <option selected="selected">Where is your home bowling center?</option>
    <cfloop query="getBowlCenters">
    <option value="#getBowlCenters.ctrName#">#getBowlCenters.ctrName#</option>
    </cfloop>
    the <cfform> passes the above info to template (below) for insertion into DB. Everything processes successfully (as can be seen by the variable table at the top of the web page). Even the name of the bowling center is passed as a variable to the processing page, but CF keeps telling me the variable is undefined although I can see that it has passed the variable to the next page. I thought it was because I had the <CFSELECT> wrong, but the variable is being passed no matter what is selected. I am stumped.
    Here is the code that is crashing:
    <cfquery name="getTournaments" datasource="#dbs#">
        SELECT *
        FROM tournamentFeatures
        WHERE tName = '#URL.tName#'
    </cfquery>
    <table>
    <tr>
    <td><strong>Variable Name</strong></td>
        <td><strong>Value</strong></td>
    </tr>
    <!--- Loops over the URL structure and outputs variable names and associated values --->
    <cfloop collection="#URL#" item="VarName">
    <cfoutput>
    <tr>
    <td>
        #VarName#</td>
        <td> #URL[VarName]#</td>
    </tr>
    </cfoutput>
    </cfloop>
    </table>
    <p></p>
    <table>
    <tr>
    <td><strong>Variable Name</strong></td>
        <td><strong>Value</strong></td>
    </tr>
    <!--- Loops over the FORM structure and outputs variable names and associated values --->
    <cfloop collection="#form#" item="VarName">
    <cfoutput>
    <tr>
    <td>
        #VarName#</td>
        <td> #form[VarName]#</td>
    </tr>
    </cfoutput>
    </cfloop>
    </table>
    <!---Inserts new tournament registration into the registration table--->
    <cflock name="addRegistrationRecord" type="exclusive" timeout="20">
    <cftransaction>
    <cfquery name="insertRegistration" datasource="RBDS">
    INSERT INTO
         tournamentReg
    SET
        tName = #URL.tName#,
         tDate = '#URL.tDate#'
         regDateTime = '#URL.regDateTime#',
         regNumber = '#URL.regNumber#'
         regFName = '#form.regFName#',
         regLName = '#form.regLName#',
         streetAddr = '#form.streetAddr#',
         cityStateZip = '#form.CityStateZip#',
         regPhone = '#form.regPhone#',
         regEmail = '#form.regEmail#',
         lastBook = '#form.lastBook#',
         usbcCard = '#form.usbcCard#',
            <cfif tName EQ #URL.tname# AND 'doubles' IS 'yes'>
              bowlWith2 = '#form.bowlWith2#',
            <cfelseif tName EQ #URL.tname# AND 'threePerTeam' is 'yes'>
              bowlWith3 = '#form.bowlWith3#',
            <cfelseif tName EQ #URL.tname# AND 'fourPerTeam' IS 'yes'>
              bowlWith4 = '#form.bowlWith4#',
            <cfelseif tName EQ #URL.tname# AND 'fivePerTeam' IS 'yes'>
              bowlWith5 = '#form.bowlWith5#',
            <cfelse>
              singlesTournament = '#form.singlesTournament#'
            </cfif>
              regHomeCntr = '#form.ctrName#'      (CRASHES HERE)
    WHERE
         tName = '#URL.tName#' AND tDate = '#URL.tDate#'
    </cfquery>
    Try the code for yourself on a live site to see what I mean.
    Go here first: http://www.renobowls.com/tournaments.cfm, then click on the button to the right of Test 2. You don't have to fill in any of the text areas but select one of the Bowling Centers from the drop down box. Then click "Register Me." You will see all the variables passed by the form at the top of the page...INCLUDING the Bowling Center you just selected from the drop down box on the previous page. How can it be passing the variable yet the query (insertRegistration) states it is not defined!!! UHGRRRR...

    Well...hmmm. This is a new one on me. Used to be so easy. What happened? I made the necessary changes but I am getting a totally new error message. I have checked the number of query fields against DB...all checks. Did the same in my queries (unless I am missing something). It states that I have a syntax error. Where? What? I cannot for the life of me see it. But then again we know how that works...looking at the same code all day. Here is what I start with:
    <cfquery name="addRegistration" datasource="RBDS">
    INSERT INTO
    tournamentReg
            (tDate, tName, regDateTime, regNumber, regFName, regLName, streetAddr, cityStateZip,
            regPhone, regEmail, lastBook, usbcCard, regNotify, regReturn, regMembership,
            regLeague, ctrName,
            <cfif tName EQ #URL.tName# AND 'doubles' IS 'yes'>
            BowlerTwoName, BowlerTwoBook,
            <cfelseif tName EQ #URL.tname# AND 'threePerTeam' is 'yes'>
            BowlerTwoName, BowlerTwoBook,
            BowlerThreeName, BowlerThreeBook,
            <cfelseif tName EQ #URL.tname# AND 'fourPerTeam' IS 'yes'>
            BowlerTwoName, BowlerTwoBook,
            BowlerThreeName, BowlerThreeBook,       
            BowlerFourName, BowlerFourBook,
            <cfelseif tName EQ #URL.tname# AND 'fivePerTeam' IS 'yes'>
            BowlerTwoName, BowlerTwoBook,
            BowlerThreeName, BowlerThreeBook,       
            BowlerFourName, BowlerFourBook,
            BowlerFiveName, BowlerFiveBook)
            <cfelse>
            singles,  )
      </cfif>
        VALUES
                <cfif tName EQ #URL.tname# AND 'doubles' IS 'yes'>
                     <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.BowlerTwoName#">,
                     <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.BowlerTwoBook#">,
                <cfelseif tName EQ #URL.tname# AND 'threePerTeam' is 'yes'>
                     <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.BowlerTwoName#">,
                     <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.BowlerTwoBook#">,
                     <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.BowlerThreeName#">,
                     <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.BowlerThreeBook#">,
                <cfelseif tName EQ #URL.tname# AND 'fourPerTeam' IS 'yes'>
                     <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.BowlerTwoName#">,
                     <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.BowlerTwoBook#">,
                     <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.BowlerThreeName#">,
                     <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.BowlerThreeBook#">,
                     <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.BowlerFourName#">,
                     <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.BowlerFourBook#">,
                <cfelseif tName EQ #URL.tname# AND 'fivePerTeam' IS 'yes'>
                     <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.BowlerTwoName#">,
                     <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.BowlerTwoBook#">,
                     <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.BowlerThreeName#">,
                     <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.BowlerThreeBook#">,
                     <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.BowlerFourName#">,
                     <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.BowlerFourBook#">,
                     <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.BowlerFiveName#">,
                     <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.BowlerFiveBook#">,
                <cfelse>
                  <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.singles#">,
                </cfif>
            <cfqueryparam cfsqltype="CF_SQL_DATE" value="#URL.tdate#">,
                <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#URL.tname#">,
                <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#URL.regDateTime#">,
                <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#URL.regNumber#">,
                <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.regFName#">,
                <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.regLName#">,
                <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.streetAddr#">,
                <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.cityStateZip#">,
                <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.regPhone#">,
                <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.regEmail#">,
                <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.lastBook#">,
                <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.usbcCard#">,
                <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.regNotify#">,
                <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.regReturn#">,
                <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.regMembership#">,
                <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.regLeague#">,
                <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.ctrName#">
    </cfquery>
    Here is what I get:
    Variable Name
    Value
    TNAME
    Teusday
    REGNUMBER
    5219531
    TDATE
    3/13/10
    REGDATETIME
    02/16/10 - 7:58:00 PM
    Variable Name
    Value
    CTRNAME
    Gold Dust West Bowling Center
    REGPHONE
    813-0850
    REGNOTIFY
    Yes
    REGEMAIL
    [email protected]
    REGRETURN
    Yes
    USBCCARD
    8130-5042
    REGLEAGUE
    No
    LASTBOOK
    191
    REGFNAME
    Rick
    CITYSTATEZIP
    Reno, NV 89523
    REGISTER
    Register Me
    SINGLES
    yes
    REGNUMBER
    9503574
    REGMESSAGE
    test 7:45PM
    FIELDNAMES
    REGNUMBER,REGDATETIME,REGFNAME,REGLNAME,REGPHONE,REGEMAIL,CTRNAME,USBCCARD,LASTBOOK,STREET ADDR,CITYSTATEZIP,SINGLES,REGNOTIFY,REGRETURN,REGMEMBERSHIP,REGLEAGUE,REGMESSAGE,REGISTER
    STREETADDR
    105 N. McCarran Blvd.
    REGLNAME
    Rossiter
    REGMEMBERSHIP
    No
    REGDATETIME
    02/16/10 - 7:44:48 PM
    Error Occurred While Processing Request
    Error Executing Database Query.
    [Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO statement.
    The error occurred in C:\Inetpub\wwwroot\renobowls\forms\ProcessRegistration.cfm: line 323
    Called from C:\Inetpub\wwwroot\renobowls\forms\ProcessRegistration.cfm: line 218
    Called from C:\Inetpub\wwwroot\renobowls\forms\ProcessRegistration.cfm: line 217
    Called from C:\Inetpub\wwwroot\renobowls\forms\ProcessRegistration.cfm: line 1
    Called from C:\Inetpub\wwwroot\renobowls\forms\ProcessRegistration.cfm: line 323
    Called from C:\Inetpub\wwwroot\renobowls\forms\ProcessRegistration.cfm: line 218
    Called from C:\Inetpub\wwwroot\renobowls\forms\ProcessRegistration.cfm: line 217
    Called from C:\Inetpub\wwwroot\renobowls\forms\ProcessRegistration.cfm: line 1
    321 :             <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.regMembership#">,
    322 :             <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.regLeague#">,
    323 :             <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.ctrName#">
    324 :   )
    325 : 
    SQL
       INSERT INTO tournamentReg (tDate, tName, regDateTime, regNumber, regFName, regLName, streetAddr, cityStateZip, regPhone, regEmail, lastBook, usbcCard, regNotify, regReturn, regMembership, regLeague, ctrName, singles, ) VALUES ( (param 1) , (param 2) , (param 3) , (param 4) , (param 5) , (param 6) , (param 7) , (param 8) , (param 9) , (param 10) , (param 11) , (param 12) , (param 13) , (param 14) , (param 15) , (param 16) , (param 17) , (param 18) )
    DATASOURCE
      RBDS
    VENDORERRORCODE
      -3502
    SQLSTATE
      42000

  • HT201210 my apple iphone wont get out of recuvery mode and when i restore it, it gives me an error message saying cant restore. i need help.

    i cant restore my apple iphone and it is stuck in recuvery mode and i dont know what to do

    If you can't restore it in recovery mode then you'll have to try DFU mode to restore it (see
    https://discussions.apple.com/thread/2648467?threadID=2648467&tstart=0 or http://www.iclarified.com/entry/index.php?enid=1034).

  • I am getting error message "iTunes could not back up the iPhone because the backup was corrupt or not compatible with the iPhone".  I have deleted the backup and restarted my computer, but continue to get this error message.  What do I need to do now?

    I have recently updated my phone and am attempting to sync it.  I got the error message "iTunes could not back up the iPhone because the backup was corrupt or not compatible with the iPhone".  I deleted the backup, restarted my computer, and even restored the iPhone, but continue to get the same error message.  What do I need to do now?

    iTunes places the iPhone backup in the following location. Navigate there & delete everything in the backup folder, but not the folder itself. You will have to turn on "Show All Hidden Files & Folders" to see it:
    Mac:~/Library/Application Support/MobileSync/Backup/
    Windows XP:\Documents and Settings\(username)\Application Data\Apple Computer\MobileSync\Backup\
    Windows Vista and Windows 7:\Users\(username)\AppData\Roaming\Apple Computer\MobileSync\Backup\

  • I have been trying to reinstall iTunes but have been getting error messages. One says I need file MSVCR80, one says I have error 7 and the last one says I have windows error 126.

    I have been trying to reinstall iTunes but I have been getting error messages. One says I need a fileMSVCR80.dll, one says error 7 and the last one says windows error126.
    This problem started yesterday when I tried to download the newest iTune update.
    The error message suggested trying the download again and i have tried over ten times and i get the same messages and error numbers.

    iTunes 11.1.4 for Windows- Unable to install or open - MSVCR80 issue
    Solving MSVCR80 issue and Windows iTunes install issues.
    Thanks to user turingtest2 for this solution.
    Solving MSVCR80 issue and Windows iTunes install issues.
    If the above doesn’t do the trick entirely, then use the instructions in the following as it applies to the version of Windows you are using:
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    You may be required to boot into safe mode to complete the folder deletion process.

  • Error message "cannot get mail" on iPad but mail is there

    Keep getting the error message " cannot get mail connection to server failed".  However mail is working ok

    Close the Mail app in the Task Bar and re-launch.
    Double-click the Home button to reveal Task Bar. Hold Mail app down for a second or two until it wiggle; tap minus sign to close app.
    If it still doesn't work, try a reset.
    Hold the Sleep and Home button down until you see the Apple logo.

  • Why do i get email error message when e-mail is working ok and settings are correct pop3 email

    can anyone help please, i am receiving email error message( cannot get mail user name and password for work is incorrect) I am using a pop3 email accessed from microsoft outlook on desktop pc, my emails come through onto phone sometimes but most of the time i get the error message. i have checked settings with my email provider and they are correct. my iphone5 provider is 02. any advice very much appreciated this is a very annoying problem thankyou

    Check the thumbnails for exclamation marks, an indication of missing files. If you have moved images or folders using your computer operating system LR won’t know what you did and the original links will have been broken. You need to point LR to where you now keep the image(s) on your hard drive.
    This document has further information.
    Adobe Lightroom - Find moved or missing files and folders

  • ITouch error Message  Cannot send Mail.

    My first generation iTouch has quite sending mail. I can receive email, but can not send. When I try to send mail I get the error message
    Cannot Send Mail
    The connection to the outgoing server "smtp.mac.com:jbleeg" failed.
    I am using apples Mail program and have it set up as imap. When I right click on the inbox and choose Edit Imap Accout, I can see the incoming and out going settings match my ipod setting screen.
    This used to work, but when apple went to this "cloud" and .me, it quit working.
    I rarely send email from my iTouch so this is not a big problem, but annoying.
    Any suggestions.
    Jerry

    The other thing you might want to try on your touch is to just delete the mail account and re-enter it. This seems to fix a number of problems with e-mail when you are getting these types of errors.

  • I recently purchased a MacBook Air and was told by Apple that Keynote and Pages were compatible with MS Applications.. I have since tried to open a Powerpoint Presentation but it comes up with an error message and is not right. Help!

    I recently purchased a MacBook Air and was told by Apple that Keynote and Pages were compatible with MS Applications.. I have since tried to open a Powerpoint Presentation but it comes up with an error message and is not right. Help!

    If there are fonts, transitions, builds, video or audio in the PowerPoint file that are not compatible with Keynote, it will either prevent the presentation opening or Keynote will substitute the settings causing playback changes.
    I use Open Office to play and open any PowerPoint files sent to me, they play exactly as in PowerPoint.
    Open Office is free, you can download it here:
    Open Office for Mac

  • When I want to get an app, an error message comes up saying I need 3.0 software update.  How do I get my ipod updated in itunes, when itunes says my ipod is already updated?

    When I want to get an app, an error message comes up saying I need 3.0 software update.  How do I get my ipod updated in itunes, when itunes says my ipod is already updated?
    OR if I cannot update to software 3.0, how can I find apps that will work just for my ipod touch?

    It sounds like you have a 1G iPod Touch, in which case you can only upgrade to iOS version 3.1.  Here is a link to purchase the update.
    http://support.apple.com/kb/HT2052
    B-rock

  • Adobe Digital Ed 4.0 will not open -- gets a Microsoft error message "encountered a problem and needs to close"

    Does not open.
    Instead Microsoft error message "encounters a problem and needs to close".
    I have already tried the uninstall & reinstall "solution".
    What else can I do.  I have a paid for document I would like to read.
    Thanks.

    Hi ynotcookit
    Please make sure that antivirus has been disabled...
    Check the .net framework installed on the machine and update it, if required
    Also, Let us know the exact OS that you're using?
    Thanks,
    Mandeep

  • Can't access itunes store. no error message but store won't open at all. any ideas? thanks

    can't access itunes store. no error message but store won't open at all. any ideas? thanks

    i been trying to purchase music and get into my itunes account but error -1202 won't allow me to get into my account or purchase music. I spoken with the so called experts at apple and they've been putting me through the ringer with their suggestions that don't work. i've been purchasing music all before with no problems why all of a sudden this problem? Can someone please tell what to do or give any suggestions as to why this is occuring.

  • Error Message: A main Java class needs to be specified to run the program.

    Hi,
    I am adding a program object to cms using java program, and trying to run it. I am getting an error message like
    Error Message: A main Java class needs to be specified to run the program.
    Could you please help me on this., please find the pasted program object pasted below
    public class MoveReports   {
    public void run(IEnterpriseSession enterpriseSession, IInfoStore infoStore,
                   String[] args) throws SDKException {
        int objectSize = ;
        String cms = "";
         String username = "";
         String password = "";
         String auth = "";
        try {
              ISessionMgr sm = CrystalEnterprise.getSessionMgr();
             enterpriseSession = sm.logon(username, password, cms, auth);
             IInfoStore oInfoStore=(IInfoStore)enterpriseSession.getService("", "InfoStore");
                 IInfoObjects iObjects = null;
                   iObjects = oInfoStore.query("Select * from CI_INFOOBJECTS where SI_PARENTID = 44104 AND SI_PROGID LIKE '%CrystalEnterprise.Excel%'");
                   // Getting total number of reports
                   objectSize = iObjects.size();
                   if(objectSize > 0)
                        for (int count = 0; count < objectSize; count++)
                             IInfoObject obj = (IInfoObject) iObjects.get(count);
                             // Specify the Destination parent Id to move the reports
                             obj.setParentID(44102);
                        oInfoStore.commit(iObjects);
                        System.out.println("Reports Moved Successfully");
                   else
                        System.out.println("Reports Not Available");
             catch (SDKException e) {
                 e.printStackTrace();
                 System.out.println("Error : " + e.getMessage());
    Thanks&Regards
    Damodar
    Edited by: Damodaram B on Nov 2, 2009 1:29 PM

    There's couple of things at issue here - you've not specified the proper interface (IProgramBase or IProgramBaseEx), and the program job server can't find the class in question (a deployment issue).
    You may want to open a support ticket with SAP.
    Sincerely,
    Ted Ueda

  • TS2516 an error occurred uploading my iPhoto Book order. It puts the book together and starts to send but at the very last moment comes up with an error message. but checking the book in iPhoto there are no problems to be found.

    an error occurred uploading my iPhoto Book order. It puts the book together and starts to send but at the very last moment comes up with an error message. but checking the book in iPhoto there are no problems to be found.

    This user talked to Apple Support personnel and confirms what Larry is suggesting:
    crowland1066
    Re: book upload fails
    Nov 30, 2013 3:02 PM (in response to pablo123)
    Just got off the phone with apple support.  If the photo book completes the assembly process but fails during the upload process the problem is in their overloaded servers.They just started a free shipping promotion for the holidays which has increased the traffic dramatically. I bought a calendar a week ago and it went right through. I'm going to try again during less peak times.
    Happy Holidays

Maybe you are looking for

  • Battery died and I lost a project in Garageband?!!!

    I spent about 5 days putting a project together. It's maybe my best work yet. I sell jingles in a lowend market, but I'm extremely happy and proud of what I do! Ok, it opens with a new empty track under the filename. When I search the filename in my

  • Taking Resources Allocation memory reservations into account with CIQ 1.5

    Hello all, I am trying to use CapacityIQ (1.5.2) to estimate how many more VMs can fit in our environment.  Unfortunately Capacity IQ appears to be estimating a _much_ larger number of available VMs (CIQ says space for 49 more VMs; Resource Allocatio

  • How to connect usb disk

    Using airport utilithy 6.1, i've enabled file sharing and added a disk password.  all looks good, but i don't see the disk in finder.  Any ideas folks?

  • Forms ORA-03115 on database link

    Hi, I'm not new to forms but I'm going crazy about one error: When I try to connect in forms to oracle8 from oracle7 I get this message: ORA-31015 unsupported network datatype or representation. The mad is that it works with Oracles TOAD, and on any

  • HT201301 when transferring dJ recordings to my mac, where or what folder am I supposed to drop them in?

    When transferring my dj recordings on to my mac and using file sharing as instructed, I get the diologue box  "where do you want to save the file to", is it onto the i-tunes folder or where ?  DJ does not specify.   App is the algoriddem DJ  for i-ph