E-mail sending from PL/SQL fails with SMTP error 550 must check for new....

We have a issue like this. We have a e-mail program (PL/SQL stored procedure which is called from a 10g R2 form) which sends e-mails using UTL_SMTP. It was working but suddenly from day-before-yesterday stopped working. Mail admin says he did not change any mail server paras.
The DB is in Linux so is the mail server. We finally did a code change. Now the mail goes to SMTP server but the mail does not go out of it (to a gmail address). We did a trace of the SMTP log and found out that it throws *550 [email protected] must check for new mail first* .
Here is the SMTP server log:
[192.168.0.6:25]
Wed 2012-04-25 18:52:46: --> 220 suninsurance.com.fj ESMTP MDaemon 12.5.4; Wed, 25 Apr 2012 18:52:46 +1200
Wed 2012-04-25 18:52:46: <-- HELO 192.168.0.6
Wed 2012-04-25 18:52:46: --> 250 suninsurance.com.fj Hello 192.168.0.6, pleased to meet you
Wed 2012-04-25 18:52:46: <-- MAIL FROM:[email protected]
Wed 2012-04-25 18:52:46: --> 250 <[email protected]>, Sender ok
Wed 2012-04-25 18:52:46: <-- RCPT TO:[email protected]
Wed 2012-04-25 18:52:46: --> 550 [email protected] must check for new mail first
Wed 2012-04-25 19:02:45: Connection timed out!
Wed 2012-04-25 19:02:45: SMTP session terminated (Bytes in/out: 96/256)
Wed 2012-04-25 19:02:46: ----------
Wed 2012-04-25 19:20:11: Session 17159; child 1What could be the problem here? Any help would be greatly appreciated.

Finally figured out the problem and fixed it. Now it is working.
*"must check for new mail first"* means that before sending mail you have to check your mails (i.e. download) your mails first from the mail server, because the normal setting is for SMTP servers is that you can send mail only if you received a mail. So, when you receive a mail (i.e. check mail), your IP is recorded in the SMTP server log. Now if you send a mail, only mails with the IPs which has received any mail will be allowed to send mails outside.
In order to only a send a mail without receiving any mail first you have to use SMTP authentication.
I.e. After
c := utl_smtp.open_connection(p_smtp_host, p_smtp_port);      
utl_smtp.EHLO(c, p_smtp_host);  You have to give UID/PWD for the SMTP server like this:
utl_smtp.command( c, 'AUTH LOGIN');
utl_smtp.command( c, utl_raw.cast_to_varchar2( utl_encode.base64_encode( utl_raw.cast_to_raw( p_un))) );
utl_smtp.command( c, utl_raw.cast_to_varchar2( utl_encode.base64_encode( utl_raw.cast_to_raw( p_pwd))) );However, when we sent like this we got a another SMTP error:
554 Message is not RFC compliant; missing "Date" header To solve this do this: Go to Setup -> Default Domain & Servers, Servers, uncheck ...refuse
messages which are not RFC compliant. That will allow MDaemon to accept  the malformed messages without date headers..Doing this solved the problem. Now we can send mails to outside mail boxes (like Gmail). In Gmail, when we checked the inbox there was no mail. It had gone the Spam folder. This is also important since you have to check the spam folder since Gmail will think it is spam. Once the mail is flagged as "not spam" it will start coming to your inbox.

Similar Messages

  • I was receiving and sending my emails perfectly, now nothing gets downloaded? It checks for new emails but do not find anything and I know there is. Please help

    I was receiving and sending my emails perfectly, now nothing gets downloaded? It checks for new emails but do not find anything and I know there is. Please help

    Oh, the irony of referring to yourself as "myklthebrain".  Make an appointment, at the nearest Apple store, with an Apple Genius, and hope that (s)he can sort it out.

  • After downloading and creating the MSI for Lightroom, the install fails with no errors reported. Checking compatability, windows comes back with   not compatible on both win 7 and 8.1.

    Installer MSI fails with no error or message of any kind. Tested compatability with the windows compatability check and it comes back as not compatible. What now?

    Hans,
    It is a known problem on Windows 98, Windows and Windows 2000 if you are using Intel Pentium 4 processor with Sun JRE and Symantec JIT. I had the same problem with Windows 98. Oracle has a patch. Please see Note:131299.1 on metalink for details.

  • When i do a softwre update it comes up with an error occurred while checking for a software update

    can you help

    I had a jailbroken ipod touch 4th generation, 8 Gigabyte model with about 150mb left of free storage. I tried checking for an update on my ipod touch using the OTA A LOT OF TIMES but it said, "an error occured while checking for a software update." I finally backed up my ipod to iCloud and iTunes and updated my ipod using my desktop PC. I now have an UNJAILBROKEN ipod running IOS 5.1.

  • Urgent: Calling web service from PL/SQl fails with XML parsing

    Hi,
    I am trying to call a web service from PL/SQL (using SOAP protocol and UTL_HTTP built in Package).I am using Oracle 9i .I am calling from pl/sql block invoking web service method created in java.
    I am getting the below response object as a SOAP protocol, but i couldn't able to parse the SOAP.
    Could you please provide the values of FirstName, LastName and ErrorDescription
    declare
    request_env varchar2(32767);
    v_xml XMLTYPE;
    l_user_first_name varchar2(100);
    l_user_last_name varchar2(100);
    l_error_value varchar2(100);
    begin
    response_env:='<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Body>
    <UserInfoObjResponse xmlns:axis2ns1="http://www.test.com/services">
    <axis2ns1:FirstName >First Name Output</axis2ns1:FirstName>
    <axis2ns1:LastName>Last Name Output</axis2ns1:LastName>
    <axis2ns1:ErrorDescription />
    </UserInfoObjResponse>
    </soapenv:Body>
    </soapenv:Envelope>';
    dbms_output.put_line('Length of Request:' || length(response_env));
    dbms_output.put_line ('Request: ' || response_env);
    v_xml := XMLTYPE(response_env);
    -- SELECT EXTRACTVALUE(v_xml, '//UserInfoObjResponse/FirstName') INTO l_user_fast_name varchar2(100); FROM DUAL;
    dbms_output.put_line ('l_user_first_name: ' || l_user_first_name);
    dbms_output.put_line ('l_user_last_name : ' || l_user_last_name);
    dbms_output.put_line ('l_error_value: ' || l_error_value);
    end;

    In Oracle 9i:
    SQL> declare
      2    response_env varchar2(32767);
      3    v_xml XMLTYPE;
      4    l_user_first_name varchar2(100);
      5    l_user_last_name varchar2(100);
      6    l_error_value varchar2(100);
      7  begin
      8    response_env:='<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
      9                     <soapenv:Body>
    10                       <UserInfoObjResponse xmlns:axis2ns1="http://www.test.com/services">
    11                         <axis2ns1:FirstName >First Name Output</axis2ns1:FirstName>
    12                         <axis2ns1:LastName>Last Name Output</axis2ns1:LastName>
    13                         <axis2ns1:ErrorDescription />
    14                       </UserInfoObjResponse>
    15                     </soapenv:Body>
    16                   </soapenv:Envelope>';
    17
    18    dbms_output.put_line('Length of Request:' || length(response_env));
    19  --  dbms_output.put_line ('Request: ' || response_env);
    20
    21    v_xml := XMLTYPE(response_env);
    22
    23    select EXTRACTVALUE(v_xml,'/*:Envelope/*:Body/*:UserInfoObjResponse/*:FirstName/text()') first_name,
    24           EXTRACTVALUE(v_xml,'/*:Envelope/*:Body/*:UserInfoObjResponse/*:LastName/text()') last_name,
    25           EXTRACTVALUE(v_xml,'/*:Envelope/*:Body/*:UserInfoObjResponse/*:ErrorDescription/text()') error_description
    26      into l_user_first_name, l_user_last_name, l_error_value
    27      from dual;
    28
    29    dbms_output.put_line ('l_user_first_name: ' || l_user_first_name);
    30    dbms_output.put_line ('l_user_last_name : ' || l_user_last_name);
    31    dbms_output.put_line ('l_error_value: ' || l_error_value);
    32  end;
    33  /
    Length of Request:530
    l_user_first_name: First Name Output
    l_user_last_name : Last Name Output
    l_error_value:
    PL/SQL procedure successfully completed.In Oracle 10g:
    SQL> declare
      2    response_env varchar2(32767);
      3    v_xml XMLTYPE;
      4    l_user_first_name varchar2(100);
      5    l_user_last_name varchar2(100);
      6    l_error_value varchar2(100);
      7  begin
      8    response_env:='<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
      9                     <soapenv:Body>
    10                       <UserInfoObjResponse xmlns:axis2ns1="http://www.test.com/services">
    11                         <axis2ns1:FirstName >First Name Output</axis2ns1:FirstName>
    12                         <axis2ns1:LastName>Last Name Output</axis2ns1:LastName>
    13                         <axis2ns1:ErrorDescription />
    14                       </UserInfoObjResponse>
    15                     </soapenv:Body>
    16                   </soapenv:Envelope>';
    17
    18    dbms_output.put_line('Length of Request:' || length(response_env));
    19  --  dbms_output.put_line ('Request: ' || response_env);
    20
    21    v_xml := XMLTYPE(response_env);
    22
    23    select r.*
    24      into l_user_first_name, l_user_last_name, l_error_value
    25    from XMLTABLE('/' PASSING v_xml
    26                  COLUMNS
    27                  first_name varchar2(30) PATH '/*:Envelope/*:Body/*:UserInfoObjResponse/*:FirstName/text()',
    28                  last_name varchar2(30) PATH '/*:Envelope/*:Body/*:UserInfoObjResponse/*:LastName/text()',
    29                  error_description varchar2(30) PATH '/*:Envelope/*:Body/*:UserInfoObjResponse/*:ErrorDescrition/text()'
    30                  ) r;
    31
    32    dbms_output.put_line ('l_user_first_name: ' || l_user_first_name);
    33    dbms_output.put_line ('l_user_last_name : ' || l_user_last_name);
    34    dbms_output.put_line ('l_error_value: ' || l_error_value);
    35  end;
    36  /
    Length of Request:530
    l_user_first_name: First Name Output
    l_user_last_name : Last Name Output
    l_error_value:
    PL/SQL procedure successfully completed.Max
    http://oracleitalia.wordpress.com
    Edited by: Massimo Ruocchio on Feb 14, 2010 11:55 PM
    Added the first one.

  • Thunderbird 31.4 skips checking first pop account on launch with that account set to check for new messages at startup.

    T-Bird Portable 31.4, originally used on WinXP and now on Win7. There are 4 email accounts it's set to check on startup, but it does not check the first one. I have uncheckmarked and recheckmarked the check-on-startup box in the account settings.
    After the recheck interval I specified it does finally get mail for that account, or if I do a manual check, but if neither of those things happens then no matter how many times I launch T-Bird it never gets mail for that account. The account is set up identical to another account through the same ISP /mail server which does get checked. There are no error messages and I have no trouble using that account otherwise.
    I tried to submit this text box a few minutes ago and received some sort of message that I wasn't authorized to view the page and it wiped out the text I wrote. Hope that doesn't happen again this time because it gets really annoying to try to be detailed and thorough then have your time wasted by your browser (Firefox) losing your post. Thanks.

    Hi Dave. I don't follow your solution.
    1. I know of only one location that affects *checking* for mail, and that is on the *main* "Server Settings" panel, in the "Server Settings" section. That section has an advanced button, but there is nothing under that button about checking new mail.
    2. There is no such thing as Server Settings | Message Storage | Advanced, with checkmark box for "Include this server when getting new mail". However, under Sync and Stoarge there is a checkmark box that reads "Keep messages on this computer..."
    So I am curious, and left wondering, what did you really change?
    Can you attach a screen shot?
    See https://support.mozilla.org/en-US/kb/how-do-i-create-screenshot-my-problem

  • Uninstall SE PC Suite 6 from control pannel fails with an Error -5005 : 0x80070002

    Hi,
    I get the following error message when tried to Uninstall PC Suite from Add/rem programs.
    Came across a similar issue on http://talk.sonyericsson.com/thread/16087 and tried to delete the SEPC setup file, but didnt help.
    Is there an uninstaller for SEPC which will force uninstall the program ?
    Error Code: -5005 : 0x80070002
    Error Information:
    PAPPony Ericsson PC Suite
    PVENDORony Ericsson (http://www.sonyericsson.com
    PGUID:2FFE93F0-BB72-4E52-8761-354D1AAA9387
    $14.0.0.162
    @Windows XP Service Pack 3 (2600)  Non IE/Netscape 61608.18

    Thanks for your quick and prompt response
    Sorry I couldnt respond to you imm... as i had trouble login into this webpage.
    Btw I did try your advice i.e. uninstall the application from Safe mode enabling SafeMSI but it didnt help and I was getting the same error.
    Did some research and also tried a 3rd party uninstaller called REVO but it was of no help, finally I layed my hands on Windows Installer Cleanup utility (MSICUU2.exe) although I am not sure if it did uninstall the SEPC completely as i still see the program under Add/Rem progs, however upon trying to run it from All Programs it prompts Browse or locate the file so i am assuming that it wiped out the installed files from the default location.
    I am planning to format my C drive soon as I have issues with some other app's too.
    Kinda feel sad that none of the Sony Ericsson experts who are paid to ans such quieries have turned a blind eye.
    Appreciate all your inputs Slim :smileywink:

  • TB downloads every mail, every time it checks for new mail, even if it has been downloaded before.

    I now have about 14 copies of each mail, seems like it does not recognize that it has already downloaded it.

    Hi, well, POP3 is not designed for keeping the mails in the inbox on the server permanently. Because while checking for new mails, to my knowledge it needs to go through all mails on the server's inbox to check whether it's already downloaded or not.
    For this purpose, there is a client-side cache. The size of this cache can be configured in the following way via prefs.js:
    user_pref("mail.server.server1.numHdrsToKeep", 10000);
    I do not know the default value, but you could set it to e.g. 10000 (cache for 10000 mails). You have to check in your case which server it is (server1, server 2 etc.) according to the other entries in the config file.
    However, you should not keep mails until "infinity", I do not know the maximum possible value for this, and I guess it slows down your download of new mails with increasing number of mails.
    I have to admit, that I also use the setting above to increase the cache of my POP3 caches to have the mails available on my PC as well as on my smartphone's mail client. However, what I have done in order not to blow it up: In the web-based config of my mail hoster (GMX) I have specified that mails shall be automatically deleted from my inbox on the server after 3 month. This constantly keeps the number of mails far below 10000 . . .

  • Adding attachments to the mail send from XI

    Hi all,
    How can we add attachments to the mails send from XI?
    Regards,
    Satpreet Singh

    Hi
    Do the Mail Receiver Adaptor Configuration as mentioned.
    Choose any of the options suiting to your requirements. All the options shall give attachments in one way or the other.
    1) Choose Message Protocol   = u201CXIALLu201D
    The mail will go to the address mentioned in Mail Attributes in the adaptor as two attachments. The file something like ATT123.xml will contains all the system information and another file u201CpayloadXXXu2026..xmlu201D will contain the input file you give.
    2) Message Protocol =   u201CXIPAYLOADu201D with u201CMail Packageu201D
    If we check u201CKeep Attachmentsu201D in u201CMail Attributesu201D then, the content will be sent as an attachment otherwise, the content will be sent as body of the mail.
    3)Message Protocol =   u201CXIPAYLOADu201D without u201CMail Packageu201D
    The content will go as attachment even though u201CKeep Attachmentsu201D is not checked. If u201CKeep Attachmentsu201D is not checked then the attached file name will be same as that of the subject we have given in the Subject in Mail Attributes. 
    If the checkbox u201CKeep Attachementsu201D is checked, then the attachment file name will be u201CPayloadXXXXu2026.xmlu201D irrespective of the input file name.
    For more details:
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure
    Regards
    Monika

  • Hi  i'm trying  to delete my bulk mail messages but it keep telling me this message"The IMAP command "DELETE" failed with server error: DELETE failed - Mailbox is reserved "

    Hi  i'm trying  to delete my bulk mail messages but it keep telling me this message"The IMAP command “DELETE” failed with server error: DELETE failed - Mailbox is reserved " is there any way to   delete of stop messages from coming into it ??
    thanks

    Sounds like the mail server thinks you are asking to delete the bulk-mail mailbox instead of some/all of the messages within it.
    How are you trying to delete your bulk mail messages? That is, what are you doing, step by step, up to the error message.
    What you should probably be doing is selecting the bulk mail mailbox, selecting one of more messages inside it, then hitting the "delete" key.

  • While adding/Changing member in planning it gives the error "The SQL operation failed with an error code: 0"

    Hi,<BR>While adding/Changing member in planning it gives the error "The SQL operation failed with an error code: 0" and not allowing any of the changes. I am not able to open the forms giving the error as "Fiscal Days Input - is invalid". Interestingly one form was opening, when the Page selection is changed it also started giving error as like "Fisacal Days Input(form name) - is invalid check log for details". <BR>Pls advice us that what is this error and how to resolve this.<BR><BR>And Which log is to be referred for the details.<BR><BR>Thanks<BR>Ravi

    If a form is invalid it generally means that one of the dimension references is missing.<BR><BR>Can you get in to edit the form?<BR>If you can, see if you can preview it. I suspect you will not be able to.<BR><BR>If not, check all dimension boxes have at least one member against them.<BR>If you have multiple rows and/or columns check all of them too.<BR><BR>I've had a couple of forms in dev "drop" a dimension reference but only once or twice so not enough to reproduce or find out what is causing it. Each time I got the "form invalid" error message and managed to fix it.<BR><BR>Hope this helps.<BR>

  • How can I sync my emails that I send from my iPhone, iPad with my outlook in my mac?

    how can I sync my emails that I send from my iPhone, iPad with my outlook in my mac?

    with in prefrences or account settings - there should be an option designated as "sync services" which may help you....

  • Cssrcrix.sql failes with DRG-10703: invalid framework object korean_lexer

    hi,
    While applying 11.5.10.2 patch on RHEL 5.5 with DB 10.2.0.5 one of the worker got failed
    as fallows:
    sqlplus -s APPS/***** @/appltest/preprod/prodappl/cs/11.5.0/patch/115/sql/cssrcrix.sql &un_apps &un_cs CTXSYS
    declare
    ERROR at line 1:
    ORA-20000: Oracle Text error:
    DRG-10703: invalid framework object korean_lexer
    ORA-06512: at line 224
    Please suggest if you have any idea

    Please see (cssrctxp.sql fails with DRG-10703: Invalid Framework Object Korean_lexer [ID 402422.1]).
    Thanks,
    Hussein

  • How to check the success/failure of e-mail sending from Sharepoint?

    Dear Expert,
    I connect Exchange 2010 and SharePoint 2010. When user create workflow in sharepoint, it will send the email to confirm. if it's done. but I checked from user they didn't get the email. I would like to know how to check the success/failure of e-mail
    sending from Sharepoint? 
    Thank you

    By default, there is no logging mechanism in SharePoint for outgoing mails.
    Mails in SharePoint are sent by giving an SMTP sever IP address in Central Administration. SharePoint never sends email directly. It relays or routes mails to the SMTP server. So, logging should be done in the SMTP server itself.
    There is also another way of doing it. You can enable SMTP service of IIS for sending emails from SharePoint, which would also just relay the mails to an SMTP Server. But in this case, you can enable logging in your IIS SMTP Service. Please visit this blog
    for more details.
    In your case you need to check your exchange server for any failure for relaying mails.
    Regards, Vikas Patel

  • Cube refresh fails with an error below

    Hi,
    We are experiencing this problem below during planning application database refresh. We have been refreshing the database everyday, but all of a sudden the below error is appearing in log. The error is something like below:
    Cube refresh failed with error: java.rmi.UnmarshalException: error unmarshalling return; nested exception is:
    java.io.EOFException
    When the database refresh is done from workspace manually, the database refresh is happening successfully. But when triggered from unix script, its throwing the above error.
    Is it related to some provisioning related issue for which user has been removed from MSAD?? Please help me out on this.
    Thanks,
    mani
    Edited by: sdid on Jul 29, 2012 11:16 PM

    I work with 'sdid' and here is a better explaination of what exactly is going on -
    As part of our nightly schedule we have a unix shell script that executes refresh of essbase cubes from planning using the 'CubeRefresh.sh' shell script.
    Here is how our shell looks like -
    /opt/hyperion/Planning/bin/CubeRefresh.sh /A:<cube name> /U:<user id> /P:<password> /R /D /FS
    Here is what 'CubeRefresh.sh' looks like -
    PLN_JAR_PATH=/opt/hyperion/Planning/bin
    export PLN_JAR_PATH
    . "${PLN_JAR_PATH}/setHPenv.sh"
    "${HS_JAVA_HOME}/bin/java" -classpath ${CLASSPATH} com.hyperion.planning.HspCubeRefreshCmd $1 $2 $3 $4 $5 $6 $7
    And here is what 'setHPenv.sh' looks like -
    HS_JAVA_HOME=/opt/hyperion/common/JRE/Sun/1.5.0
    export HS_JAVA_HOME
    HYPERION_HOME=/opt/hyperion
    export HYPERION_HOME
    PLN_JAR_PATH=/opt/hyperion/Planning/lib
    export PLN_JAR_PATH
    PLN_PROPERTIES_PATH=/opt/hyperion/deployments/Tomcat5/HyperionPlanning/webapps/HyperionPlanning/WEB-INF/classes
    export PLN_PROPERTIES_PATH
    CLASSPATH=${PLN_JAR_PATH}/HspJS.jar:${PLN_PROPERTIES_PATH}:${PLN_JAR_PATH}/hbrhppluginjar:${PLN_JAR_PATH}/jakarta-regexp-1.4.
    jar:${PLN_JAR_PATH}/hyjdbc.jar:${PLN_JAR_PATH}/iText.jar:${PLN_JAR_PATH}/iTextAsian.jar:${PLN_JAR_PATH}/mail.jar:${PLN_JAR_PA
    TH}/jdom.jar:${PLN_JAR_PATH}/dom.jar:${PLN_JAR_PATH}/sax.jar:${PLN_JAR_PATH}/xercesImpl.jar:${PLN_JAR_PATH}/jaxp-api.jar:${PL
    N_JAR_PATH}/classes12.zip:${PLN_JAR_PATH}/db2java.zip:${PLN_JAR_PATH}/db2jcc.jar:${HYPERION_HOME}/common/CSS/9.3.1/lib/css-9_
    3_1.jar:${HYPERION_HOME}/common/CSS/9.3.1/lib/ldapbp.jar:${PLN_JAR_PATH}/log4j.jar:${PLN_JAR_PATH}/log4j-1.2.8.jar:${PLN_JAR_
    PATH}/hbrhppluginjar.jar:${PLN_JAR_PATH}/ess_japi.jar:${PLN_JAR_PATH}/ess_es_server.jar:${PLN_JAR_PATH}/commons-httpclient-3.
    0.jar:${PLN_JAR_PATH}/commons-codec-1.3.jar:${PLN_JAR_PATH}/jakarta-slide-webdavlib.jar:${PLN_JAR_PATH}/ognl-2.6.7.jar:${HYPE
    RION_HOME}/common/CLS/9.3.1/lib/cls-9_3_1.jar:${HYPERION_HOME}/common/CLS/9.3.1/lib/EccpressoAll.jar:${HYPERION_HOME}/common/
    CLS/9.3.1/lib/flexlm.jar:${HYPERION_HOME}/common/CLS/9.3.1/lib/flexlmutil.jar:${HYPERION_HOME}/AdminServices/server/lib/easse
    rverplugin.jar:${PLN_JAR_PATH}/interop-sdk.jar:${PLN_JAR_PATH}/HspCopyApp.jar:${PLN_JAR_PATH}/commons-logging.jar:${CLASSPATH
    export CLASSPATH
    case $OS in
    HP-UX)
    SHLIB_PATH=${HYPERION_HOME}/common/EssbaseRTC/9.3.1/bin:${HYPERION_HOME}/Planning/lib:${SHLIB_PATH:-}
    export SHLIB_PATH
    SunOS)
    LD_LIBRARY_PATH=${HYPERION_HOME}/common/EssbaseRTC/9.3.1/bin:${HYPERION_HOME}/Planning/lib:${LD_LIBRARY_PATH:-}
    export LD_LIBRARY_PATH
    AIX)
    LIBPATH=${HYPERION_HOME}/common/EssbaseRTC/9.3.1/bin:${HYPERION_HOME}/Planning/lib:${LIBPATH:-}
    export LIBPATH
    echo "$OS is not supported"
    esac
    We have not made any changes to either the shell or 'CubeRefresh.sh' or 'setHPenv.sh'
    From the past couple of days the shell that executes 'CubeRefresh.sh' has been failing with the error message below.
    Cube refresh failed with error: java.rmi.UnmarshalException: error unmarshalling return; nested exception is:
    java.io.EOFException
    This error is causing our Essbase cubes to not get refreshed from Planning cubes through these batch jobs.
    On the other hand the manual refesh from within Planning works.
    We are on Hyperion® Planning – System 9 - Version : 9.3.1.1.10
    Any help on this would be greatly appreciated.
    Thanks
    Andy
    Edited by: Andy_D on Jul 30, 2012 9:04 AM

Maybe you are looking for