WriteDomain( dir ) does not throw an error!

we are trying to automate our domain creation using wlst. If there is an error in the script we expect our program to throw an error such that we can take some preventive measures. That said, we have such script that loads a template and writes the domain to a directory. If for some reason writeDomain fails it does not throw an error!. Which lets our script continue and fail miserably later.
Is this a bug??
Thanks,
/pete

I have not had that problem. In my script (using WLST on WebLogic 8.1sp5 on Solaris 9) I specified a directory that my user could not create and the return code to UNIX was 255:
Trace:
INFO: Writing domain
Error: writeDomain() failed.
Traceback (innermost last):
File "/usr/local/met/btwlst/0_50/bin/load_template.py", line 78, in ?
File "initWls.py", line 70, in writeDomain
com.bea.plateng.domain.script.jython.WLSTException: com.bea.plateng.domain.script.ScriptException: com.bea.
plateng.domain.GenerationException: Unable to create domain directory: /wls_domain/ecommware2a
at com.bea.plateng.domain.script.jython.CommandExceptionHandler.handleException(CommandExceptionHan
dler.java:33)
at com.bea.plateng.domain.script.jython.WLScriptContext.handleException(WLScriptContext.java:897)
at com.bea.plateng.domain.script.jython.WLScriptContext.writeDomain(WLScriptContext.java:465)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.python.core.PyReflectedFunction.__call__(PyReflectedFunction.java)
at org.python.core.PyMethod.__call__(PyMethod.java)
at org.python.core.PyObject.__call__(PyObject.java)
at org.python.core.PyInstance.invoke(PyInstance.java)
at org.python.pycode._pyx0.writeDomain$14(initWls.py:70)
at org.python.pycode._pyx0.call_function(initWls.py)
at org.python.core.PyTableCode.call(PyTableCode.java)
at org.python.core.PyTableCode.call(PyTableCode.java)
at org.python.core.PyFunction.__call__(PyFunction.java)
at org.python.pycode._pyx3.f$0(/usr/local/met/btwlst/0_50/bin/load_template.py:78)
at org.python.pycode._pyx3.call_function(/usr/local/met/btwlst/0_50/bin/load_template.py)
at org.python.core.PyTableCode.call(PyTableCode.java)
at org.python.core.PyCode.call(PyCode.java)
at org.python.core.Py.runCode(Py.java)
at org.python.core.__builtin__.execfile_flags(__builtin__.java)
at org.python.util.PythonInterpreter.execfile(PythonInterpreter.java)
at com.bea.plateng.domain.script.jython.WLST_offline.main(WLST_offline.java:67)
Caused by: com.bea.plateng.domain.script.ScriptException: com.bea.plateng.domain.GenerationException: Unabl
e to create domain directory: /wls_domain/ecommware2a
at com.bea.plateng.domain.script.ScriptExecutor.runGenerator(ScriptExecutor.java:2143)
at com.bea.plateng.domain.script.ScriptExecutor.writeDomain(ScriptExecutor.java:531)
at com.bea.plateng.domain.script.jython.WLScriptContext.writeDomain(WLScriptContext.java:459)
... 21 more
Caused by: com.bea.plateng.domain.GenerationException: Unable to create domain directory: /wls_domain/ecomm
ware2a
at com.bea.plateng.domain.DomainGenerator.generate(DomainGenerator.java:137)
at com.bea.plateng.domain.script.ScriptExecutor$2.run(ScriptExecutor.java:2120)
com.bea.plateng.domain.script.jython.WLSTException: com.bea.plateng.domain.script.jython.WLSTException: com
.bea.plateng.domain.script.ScriptException: com.bea.plateng.domain.GenerationException: Unable to create do
main directory: /wls_domain/ecommware2a
Script Exit code = 255

Similar Messages

  • Secure store lib dir does not exist - unable to open config tool

    Hi we are using NW 7.0 with windows 2005 (AS java).
    when i click on configtool in central instance it says
    Error occured while working with configuration( scanning)
    Msg: Error occured : secure store lib Dir does not exist :
    server\sapmnt\SID\SYS\global\security\lib\tools
    please suggest
    Thanks
    KK

    HI ,
    Was config tool working earlier?
    Please check if direcories sapmnt & saploc exist are you are able to access them.Check permission on it.
    May be your windows server got patched and some security policy got changed.Worth a revisiting and checking.
    Other thing you can try is take a backup of bootstrap.properties file and modify the location of library from 
    server\sapmnt\J2EE\sys\global\security\lib\tools to \usr\sap\J2EE\sys\global\security\lib in the bootstrap file.
    Regards,
    Ashutosh

  • Why does this throw an error?

    just trying to modify an element value here...
    declare
    v_xml_new xmltype;
    doc dbms_xmldom.DOMDocument;
    ndoc dbms_xmldom.DOMNode;
    node dbms_xmldom.DOMNode;
    childnode dbms_xmldom.DOMNode;
    nodelist dbms_xmldom.DOMNodelist;
    docelem dbms_xmldom.DOMElement;
    buffer ta_debug_log.message%type;
    begin
    v_xml_return.schemaValidate;
    ta_debug.writeDebug('DEBUG: xml instance validated '||C_PROCEDURE_NAME||'.');
    exception
    when others then
    -- failed validation
    ta_system.writeSystem('ERROR: xml instance message failed schema validation '||C_PROCEDURE_NAME||'.');
    -- return a new wellformed instance
    ta_debug.writeDebug('DEBUG: creating new empty instance '||C_PROCEDURE_NAME||'.');
    v_xml_new := xmltype.createXML(xmldata => rm_xml_survey_maintenance.C_EMPTY_SURVEY_XML_INST,
    schema => rm_xml_survey_maintenance.C_SURVEY_SCHEMA_NAME);
    ta_debug.writeDebug('DEBUG: creating dom reference '||C_PROCEDURE_NAME||'.');
    doc := dbms_xmldom.newDOMDocument(v_xml_new);
    -- attempt to populate return xml instance with source info
    ta_debug.writeDebug('DEBUG: attempting to acquire and populate source info '||C_PROCEDURE_NAME||'.');
    ta_debug.writeDebug('DEBUG: source information requesterID is '||
    ta_xml_utils.xml_extract_no_exception(v_xml_return, '/SurveyRequest/messageSource/requesterID/text()')||' '||C_PROCEDURE_NAME||'.');
    docelem := dbms_xmldom.getDocumentElement(doc);
    nodelist := dbms_xmldom.getElementsByTagName(docelem, 'requesterID');
    node := dbms_xmldom.item(nodelist, 0);
    childnode := dbms_xmldom.getFirstChild(node);
    the last line causes the code the throw:
    ERROR: SQLCODE = -31020 SQLERRM = ORA-31020: The operation is not allowed,
    Reason: Invalid pl/sql DOM Node hdl
    ORA-31154: invalid XML
    (rm_xml_survey_maintenance.create_cad_plan_pair).
    this code is operating after an xmltype fails to validate. would this be the cause?
    are there any simpler methods using pl/sql, the xmltype and xpath to modify contents of an xmltype instance?
    any advice most appreciated.

    I can't answer the better/simpler method part of the question, other than to say there is an UpdateXML function but it works only from within the scope of a SQL statement. Not sure whether you'd want to make a SQL call just to do something to your XMLType that exists only in PL/SQL.
    In regard to your current error, I can only say the following script does not produce an error. If you can develop a test case/script that reproduces the error that would be helpful. You may even uncover the error at that point. Have you confirmed the contents of v_xml_new and if on 10g used DBMS_UTILITY.Format_Error_Backtrace to verify the line that threw the error?
    declare
       v_xml_new xmltype;
       doc       dbms_xmldom.domdocument;
       nodelist  dbms_xmldom.domnodelist;
       node      dbms_xmldom.domnode;
       childnode dbms_xmldom.domnode;
    begin
      v_xml_new := XMLTYPE(
      '<?xml version="1.0" encoding="UTF-8"?>' ||
      '<SurveyRequest>' ||
       '<messageSource>' ||
        '<requesterID>U571</requesterID>' ||
       '</messageSource>' ||
      '</SurveyRequest>'
      doc := dbms_xmldom.newdomdocument(v_xml_new);
      nodelist  := dbms_xmldom.getelementsbytagname(doc, 'requesterID');
      node      := dbms_xmldom.item(nodelist, 0);
      childnode := dbms_xmldom.getfirstchild(node);
    end;

  • I get unexpectedly logged out from my mail box and and recieve the following message: "The custom error module does not recognize this error."

    I am repeatedly and unexpectedly logged-out from my mail box when working on a document. It frequently happens when I choose Send or Save, but it could happen any time. The file that I worked on disappears completely. Before, the file could be found in the draft box or some other place categorized as Auto Recovery. Now, instead, I get the following message: "The custom error module does not recognize this error." I am working at home, connected to a university server. The same problem appears with both of my computers, which are connected by a router. I have a MacBook Pro and am working with Firefox 6.0.2. I have a wireless broadband connection with Internet. AirPort is connected to Lindstrom and has IP address 192.168.0.198. Router: D-Link Model DIR-635. Modem: ZyXEL Model No. 660H D Triple Play Modem.
    Best wishes,
    Lars Lindström, Professor
    <[email protected]>

    Hi Phil,
    Generally, when a user sends an incoming request to an Exchange 2010 Client Access server using Outlook Web App and the user’s mailbox is on an Exchange 2010 mailbox in a different Active Directory site,
    Exchange 2010 determines whether the Client Access server has the
    ExternalURL property set in that Active Directory site. If it is and the cross-site silent redirection has been enabled, the user will be automatically redirected to the specified URL.
    Thus, please make sure the External URL property is set properly in your environment. And also
    disable the WindowsAuthentication for OWA VD to have a try. If the issue persists, please try the following KB to reset the Outlook Web Access-related virtual directories:
    http://support.microsoft.com/kb/941201
    Thanks,
    Winnie Liang
    TechNet Community Support
    Sorry for the late reply.  Yes, the ExternalURL is set; otherwise, it wouldn't work at all.  98% of the time everything is fine.
    My issue described a problem that appears only during session timeouts.  I've pretty much verified that this is the case; Exchange 2010 does not appropriately handle the timeouts sometimes when using cross-site redirection.

  • SAP PI Message Cancellation Alert - Message does not have restartable error status

    Hello SCNers
    Version: 7.1
    Scenario: File --> PI -->SOAP
    We have a situation where a PI message  in Integration Engine shows error status.We want to cancel the message in IE but are unable to do so.
    On clicking Cancel for this message in SXMB_MONI, we are receiving an alert "Message does not have restartable error status".
    In SXMSPMAST table, value for ITFACTION is DEL.
    We do not want to run report RSXMB_DEL_TO_ARCH, that would change status of all messages with DEL status to ARCH.
    Is there a way to Cancel or Change the Status of this single message?
    Regards
    Sudheer

    Hi Hareesh,
    Tried that too, but to no avail.
    Strangely, the log shows NO_ERROR_STATE for the cancelation of this message thru RSXMB_CANCEL_MESSAGES.
    But in SXMSPMAST table the status of this message is 14 (System Error - Manual Restart Possible).
    Regards
    Sudheer

  • Java Does Not Throw Exception When Writing To Read-Only Files

    I have noticed that when I try to write to a read-only file in a window environment, Java does not throw an IOExcpetion, it just dosn't write to the file.
    I am writing an FTP server and here is the code:
         public static long copyStream(InputStream in, OutputStream out)throws IOException
              IOException exception = null;
              long copied = 0;
              try
                   byte buffer[] = new byte[1024];
                   int read;
                   while((read = in.read(buffer)) != -1)
                        out.write(buffer, 0, read);
                        copied += read;
              catch(IOException e)
                   //ensures that the streams are closed.
                   exception = e;
              try
                   in.close();//ensures output stream gets closed, even if there is an
                   //excption here.
              catch(IOException e){exception = e;}
              out.close();//try to close output.
              if(exception != null)
                   //exception is not null, an exception has occured.
                   //rethrow exception.
                   throw exception;
              return copied;//all ok, return bytes copied.
         }Is this a bug in JAVA VM? Is so, how should I report it?

    I have noticed that when I try to write to a read-only file in a window environment,
    Java does not throw an IOExcpetion, it just dosn't write to the file.C:\source\java\Markov>attrib readonly.out
    A R C:\source\java\Markov\readonly.out
    �C:\source\java\Markov>java b
    java.io.FileNotFoundException: readonly.out (Access is denied)
    at java.io.FileOutputStream.open(Native Method)
    at java.io.FileOutputStream.<init>(Unknown Source)
    at java.io.FileOutputStream.<init>(Unknown Source)
    at b.main(b.java:5)
    import java.io.*;
    public class b {
        public static void main(String[] args) {
         try     {
              OutputStream os = new FileOutputStream ( "readonly.out");
         catch (Exception e) {
              e.printStackTrace();
    }

  • BAPI_SALESORDER_SIMULATE does not return multiple errors

    Hi,
      We are using BAPI_SALESORDER_SIMULTE, but it does not return multiple errors in the MESSAGETABLE even if all the materials entered in the ITEMS_IN table are wrong or have some ATP issues. It returns the first material that has problem and doesnot find errors with the remaining.
    Can anyone tell why this is happeining. Is there a setting in customizing to get the BAPI to return all possible errors.
    Thanks in advance

    Hello Pulin
    This is a typical behaviour of BAPI. Due to the fact that they validate all incoming data very scrupulous they stop processing at the very first error.
    I would assume that a "SIMULATE" BAPI should show all errors (because that's why we simulate, isn't it?) but apparently this is not the case.
    Regards
      Uwe

  • The table with Name of 'Table Name' does not exist.An error occurred when loading the Model.

    The table with Name of 'Table Name' does not exist.An error occurred when loading the Model.
    We get this error when we try to check the properties of an analysis server using SQL Server Management studio(right click the instance name
    and check properties). We have resolved this issue twice by Stopping the SQL Server analysis service,removing db folders from Analysis Server Data folder and starting the services back on. The db folder that we removed was advised by the BI team.
    The SQL Server Analysis Server is 2012 SP1

    Hi RB_ORIPW,
    The table with name of 'XXX' doesn't exist.
    An error occurred when loading the model(Micorsoft.AnalysisServices)
    If I understanding correctly, you encounter the error randomly, now what you want it that avoid this issue completely, other than stop the services, detele the db filder and restart the services, right?
    The error might be caused by that the data file is corrupted. However, we cannot give you the exact reason that cause this issue. You can troubleshoot this issue by using the Windows Event logs and msmdsrv.log.
    You can access Windows Event logs via "Administrative Tools" --> "Event Viewer".  SSAS error messages will appear in the application log.
    The msmdsrv.log file for the SSAS instance that can be found in \log folder of the instance. (C:\Program Files\Microsoft SQL Server\MSAS10.MSSQLSERVER\OLAP\Log)
    Here is a blog about data collection for troubleshooting Analysis Services issues, please see:
    Data collection for troubleshooting Analysis Services issues
    Besides, here is fix that describe the similar issue, and it was fixed in Cumulative Update 7 for SQL Server 2012 SP1, please refer to the link below to see the details.
    http://support.microsoft.com/kb/2897263/en-us
    Regards,
    Charlie Liao
    If you have any feedback on our support, please click
    here.
    Charlie Liao
    TechNet Community Support

  • Does Hibernate throw and error if the result set is above a specific #

    Does Hibernate throw and error if the result set is above a specific #
    of records?

    why do you ask?Maybe he hasn't been able to find the bug in his code yet, so he's casting further and further about for more and more esoteric explanations for what he's seeing? ;-)
    (God knows I've been there...)

  • Does not print the error message at my behest???

    I have a program which works but I want to give appropriate error handling to the user of application.
    So basically a simple html page asks for servername, username and password and this is passed onto this .jsp page.
    When the correct servername, username and password is entered program is okay but when for example incorrect servername is given it does not print the error message at my behest???????
    Here is a ftp page:
    <!-- processftplogin.jsp -->
    <html>
    <head>
    <title> FTP Login </title>
    </head>
    <body>
    <%@ page import= "ftp.* " %>
    <jsp:useBean class="ftp.FtpBean" id="ftpbean" scope="session" />
    <%      try
               String servername = request.getParameter("servername");
               String username   = request.getParameter("username");   
               String password   = request.getParameter("password");
               ftpbean.ftpConnect(servername, username, password);
            catch(Exception e)
               out.println("There has been an error with logging into system");
               out.println("please check Servername");
               out.println("Please check username");
               out.println("Please check password");
    %>
    <h1> You have successfully logged in. </h1>
    </body>
    </html>Why does it print:
    Error: 500
    Location: /myJSPs/jsp/grid-portal-project/processftplogin.jsp
    Internal Servlet Error:
    javax.servlet.ServletException
         at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:460)
         at jsp.grid_0002dportal_0002dproject.processftplogin_2._jspService(processftplogin_2.java:120)
    instead of:
    There has been an error with logging into system
    Please check Servername
    Please check username
    Please check password

    man do one thing
    first tell me the book u are using for JSP.
    cos even i would like to purchase.
    u mailed me before
    but this time make a good description
    of your project write it in a file
    then zip it along with your project
    source(if possible)...
    then in that project report
    also give the description of using the JSP tomcat
    and all (cos i dont know for windows...or linux)
    this will be all...

  • TS3274 It does not restore-unknown error is shown

    It does not restore-unknown error is shown

    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
    Update and restore alert messages on iPhone, iPad, and iPod touch
    http://www.buybuyla.com/tech/view/012953a0d412000e.shtml
    iOS: Resolving update and restore alert messages
    http://support.apple.com/kb/TS1275
    iPad: Unable to update or restore
    http://support.apple.com/kb/ht4097
    iTunes: Specific update-and-restore error messages and advanced troubleshooting
    http://support.apple.com/kb/TS3694
     Cheers, Tom

  • ORA-27101: shared memory realm does not exist Linux Error: 2: No such file

    hello i have a 10 Database R1 installed on Redhat linux AS 4.
    i'm having a problem connecting to my database, whenever i try to connect i get the error
    ORA-01034: Oracle not available.
    ORA-27101 shared memory realm does not exist
    Linux Error: 2: No such file or directory.
    i checked my startup.log and i found the following after issuing a dbstart.
    ORACLE instance started.
    Total System Global Area 130023424 bytes
    Fixed Size          1218100 bytes
    Variable Size          109054412 bytes
    Database Buffers     16777216 bytes
    Redo Buffers          2973696 bytes
    Database mounted.
    ORA-01092: ORACLE instance terminated
    on dbshut i get the same error message in the shutdown.log
    ORA-01034: Oracle not available.
    ORA-27101 shared memory realm does not exist
    Linux Error: 2: No such file or directory.
    my alert_ASYDB.log file has the following
    ORA-01534: rollback segment 'R01' doesn't exist
    Tue Feb 27 23:14:19 2007
    Error 1534 happened during db open, shutting down database
    USER: terminating instance due to error 1534
    Instance terminated by USER, pid = 3272
    ORA-1092 signalled during: ALTER DATABASE OPEN...
    in the database creation log, i noticed that this segment could not be created.
    i can mount the databse but cannot open it
    is there anyway to recreate these segments or any other solution for that?
    i have tried to comment the line in initASYDB.ora but dd not work.
    regards

    Hi,
    >>do you recommend using auto undo_management instead of RBS?
    Yes. To simplify management of rollback segments, the Oracle9i database introduced Automatic Undo Management (AUM) where the database automatically manages allocation and management of undo (rollback) space among various active sessions. In a database using AUM, all transactions share a single undo tablespace. Any executing transaction can consume free space in this tablespace. Undo space is dynamically transferred from committed transactions to executing transactions in the event of space scarcity in the undo tablespace..The AUM feature also provides a way for administrators to exert control on undo retention. You can specify the amount of undo to be retained in terms of wall clock time (number of seconds). With retention control, you can configure your systems to allow long running queries to execute successfully without encountering ORA-1555 (Snapshot too old) errors ...
    For more information, you can take a look on these links below:
    http://www.oracle.com/technology/obe/obe10gdb/manage/undoadv/undoadv.htm
    http://www.oracle-base.com/articles/9i/AutomaticUndoManagement.php
    Cheers

  • FileDialog in SAVE mode does not throw file access error

    Hi,
    We are using FileDialog to SAVE and LOAD files.
    If a file is selected to which the user has no access, then LOAD dialog throws an
    error, but SAVE dialog does not.
    Have I skipped something ??
    Below is a sample code :
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class TestClass extends JFrame {
    public TestClass() {
    setSize(400, 400);
    JPanel l_objPanel = new JPanel();
    getContentPane().add(l_objPanel);
    final JButton l_objButton = new JButton("FileOpen");
    l_objPanel.add(l_objButton);
    l_objButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent p_objEvent) {
    FileDialog l_objDlg = new FileDialog(TestClass.this, "Save now", FileDialog.SAVE);
    l_objDlg.show();
    public static void main( String[] strArgs ) {
    try {
    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    } catch(Exception e) {
    e.printStackTrace();
    TestClass l_objDlg = new TestClass();
    l_objDlg.show();

    The bug you pointed out is pretty different: JWS should work offline if no network connection is available, but no such behaviour is provided, never the less granted, if your server is down. No matter what your 'web-distributed' app is (ASP, SaaS, SOA, RIA, cloud, ...), you may have it work without a network, but no architectural pattern would ever remotely consider it should run if the providing server is down (and is not redirecting or, at least, sending some 'manageble' error).

  • BADI ME_PROCESS_PO_CUST - DOES NOT CLEAR OUT ERROR

    In ME21N I want to validate the field Commodity Code - STAWN. I have used the BADI ME_PROCESS_PO_CUST*
    . Have used get_foreign_trade() in the PROCESS_ITEM method . I am able to throw an error . It is doing it but*
    after throwing error then when we give a valid Commoditycode too it is still showing the error and not clearing the error  .*
    As suggested by Dean Q I used   INCLUDE mm_messages_mac,
    tried im_item->set_foreign_trade( ls_mepo_eipo)  still when a valid Commodity code is entered after an invalid one  it does not clear out the error. In fact on checking using break-point I found that the second time it does not enter into the method  PROCESS_ITEM.    Any help is welcome
    Nivedita

    Hi,
    In SE18 give ME_PROCESS_PO_CUST as the enhancement spot and display. At the left side of the screen you can see the badi definition ME_PROCESS_PO_CUST. Expand the tree and double click on implementations. You can see the enhance implementations created. Double click on the enhancement implementation and in that screen there is a check box 'Implementation is active' and field 'Effect in current client'.
    If you know the enhancement implementation name(not the badi implementation name), you can check it directly from se19.
    Regards,
    Poornima

  • Framemaker XI package does not install - MSI error 1708/1603

    Hi,
    I've created a Framemaker XI package with the "Adobe Application Manager Enterprise Edition", provided the serial number and added patch 11.0.2. The package was successfully created on a network share the installing admin account has full access rights to. Target system is a W2K8 R2 64bit terminal server.
    When installing, the msi rolls back, throwing error 1708/1603 after collecting all it's msi properties, nothing gets installed. In the LOCAL folder of %APPDATA%, I find a file called PDApp.log with the follwing content:
    6/27/2013 17:16:47 [INFO] DeploymentManager - Build Version - 3.1.105.0
    6/27/2013 17:16:47 [INFO] DeploymentManager - Logging Level verbosity Set  to 4
    6/27/2013 17:16:47 [INFO] DeploymentManager - Executing the deferred custom action.
    6/27/2013 17:16:47 [INFO] DeploymentManager - Obtained the following as CustomActionData
    6/27/2013 17:16:47 [INFO] DeploymentManager - mode=install;sourceDir=H:\TIMRS\4 ACME_Framemaker_XI\Build\;installDir=;origDB=H:\TIMRS\4 ACME_Framemaker_XI\Build\ACME_Framemaker_XI.msi
    6/27/2013 17:16:47 [INFO] DeploymentManager - mode=install;sourceDir=H:\TIMRS\4 ACME_Framemaker_XI\Build\;installDir=;origDB=H:\TIMRS\4 ACME_Framemaker_XI\Build\ACME_Framemaker_XI.msi
    6/27/2013 17:16:47 [INFO] DeploymentManager - Original database path is : H:\TIMRS\4 ACME_Framemaker_XI\Build\ACME_Framemaker_XI.msi
    6/27/2013 17:16:47 [INFO] DeploymentManager - OptionXML saved at location :: C:\Users\User\AppData\Local\Temp\{65DEE398-291E-476D-B68C-5ABD59EC6C49}\\{12E9F8D1-641B-4 C27-A165-D3C34F200ECB}
    6/27/2013 17:16:47 [INFO] DeploymentManager - Build Version - 3.1.105.0
    6/27/2013 17:16:47 [INFO] DeploymentManager - Logging Level verbosity Set  to 4
    6/27/2013 17:16:47 [INFO] DeploymentManager - Initializing Custom Action Data from parameters
    6/27/2013 17:16:47 [INFO] Utilities - Folder does not exist
    6/27/2013 17:16:47 [INFO] DeploymentManager - Provisioning Tool path is (C:\Users\User\AppData\Local\Temp\{65DEE398-291E-476D-B68C-5ABD59EC6C49}\\{DF00B53B-6298- 4B11-B2BB-4221D161D441}).
    6/27/2013 17:16:47 [INFO] Utilities - Folder does not exist
    6/27/2013 17:16:47 [ERROR] DeploymentManager - Failed to Initialize....The Setup base path does not exist.
    6/27/2013 17:16:47 [ERROR] DeploymentManager - Failed to Initialize from parameters.
    I don't know where the problem is, but it seems that installation fails because something is missing in the package?
    Anyone?
    best regards
    Olaf

    Dear Jeff,
    thank you for your answer. I finally managed to get my hands on a German phone number for Adobe support. Unfortunately they denied my service request because we haven't bought a service contract. I stated that I've read that "support for installation problems is usually free of charge", but that is, according to the German support team, only valid for standard, single user installation problems, not for packaging with AAMEE.
    Since the phone numer is hard to find (at least it was for me), I publish it here:
                   +49 69 500718 55
    I hope that's useful for those of you with "standard installation problems". Me thinks, Germany is a high value target for the NSA, but not for Adobe from an after sales service perspective. (Sorry, couldn't resist... :-) )
    I will contact TSC support now via mail. Thanks again Jeff, you're doing a good job here.
    best regards
    Olaf

Maybe you are looking for