Archive BC Code?

I am about to hand over a Business Catalyst site to the client. I am looking for a way to archive the current state of the site. I have warned them about tinkering with the code but In the event that curiosity overcomes them, it would be nice to just revert back to the original code. I could not find any other discussions on this. I know I could upgrade to a premium partne and deny the client access to the develop section... but that is expensive.
Any thoughts?

Just backup everything you can via STFP Dan. And if you have made it clear in a contract or at least got a confirmation from them by email - if they break it they pay for it.

Similar Messages

  • Archiving material codes

    Dear friends,
    How to archive bulk material codes at a time. If any body can help us.
    regards,
    p.v.subba rao
    Moderator message:
    Locked. Reason: basic question.
    Please search first and if you have more specific question, post it.
    Edited by: Csaba Szommer on Jul 8, 2011 8:02 AM

    hi
    Use t code MM70 select object material master record & run archie for selected material code
    Thaks & regards
    ronny

  • Customer and vendor archive

    Hi,
      how to carry out archiving of vedor and customer master and how to retrieve them.the database is oracle.
    Regards
    Anil

    Hi Anil,
    Archiving Vendor Master Data with archiving Object FI_ACCPAYB.
    Archiving Customer Master Data with archiving Object FI_ACCRECV.
    Vendor Master Data -- FI_ACCPAYB:
    1. It is dependent archiving object. First you have to archive dependent archiving object such as MM_EINA, FI_DOCUMNT,  FI_MONTHLY and MM_EKKO.
    2. Vendor Master Data should be flagged for deletion, and there should be no open items for VMD.
    3. There are 3 areas in Vendor master data i.e. General data, Company Code data and MM data.
    4. You cannot archive company code data and MM data at a time, however you can archive general data and company code data in one archive run and similarly general data and MM data in another archive run.
    5. You cannot delete the General data but you can delete the company code data and MM data.
    Step to Archive:
    SARA > Preprocessing variant > Indicate Vendor that you want to archive > schedule the job.
    Create Write Variant --- Enter VMD >Attributes --- Enter the text and SAVE >
    > Schedule the Job.
    Note: Deletion and Store job is dependent on how you configure the setting in the Archiving object specific customizing- Technical setting.
    FI_ACCRECV - Customer Master Data (CMD)
    General guidelines are similar to that of Vendor master data but dependent archiving objects are FI_MONTHLY,  SD_VBAK, FI_DOCUMNT,  SD_VBAK,  MM_EBAN, SD_VBRK, MM_EKKO, RV_LIKP, SD_VTTK,  SD_VFKK,  MM_MATBEL,  PPBKFLUSH. You have to archive these archiving object first and  then archive customer master data.
    Retrieve archived master data:
    You can display the archived customer and vendor master data through Archive Information system.
    There are SAP Standard Info-Structure. Activate these infostructure, after archiving build the structure then master data will be displayed.
    -Thanks,
    Ajay

  • Get archive status by RIDC

    Hi All
    Our customer want to import archives from code and not from GUI.
    I wrote java code to call IMPORT_ARCHIVE service
    In Services reference guide I found that The IMPORT_ARCHIVE service only starts the archive import and provides confirmation that the request to start the import has been made. No notification is sent regarding the status or completion of the archive import.
    How can I implement functionality to provide notification of the status and completion of the archive import in my java program?
    I tried to get archive info as aLastImport, but can't find way too.
    Please help
    Thanks
    Leon

    Your findings are in the full correlation with the description of the service - see http://docs.oracle.com/cd/E23943_01/doc.1111/e11011/c06_archive.htm#CSSRG3039
    This service is executed asynchronously - imagine, you trigger the service and then close the browser window (or the applet) as the import may take really long. (Even in GUI) if you want to check whether the import finished you'll go back to the archive overview page ( http://docs.oracle.com/cd/E23943_01/doc.1111/e10792/e01_interface.htm#BABGDHDA ) and check the status (you may trace down if this event is also called by a service and what output is returned)

  • New to developing could anyone point me in the right direction for sqlite issue?

    Hello I am a new developer in training trying to work on my first project I have been hit by a major roadblock that i have worked on correcting for 5 days before posting here.  I am currently using flash builder 4.6 coding in flex.  I am trying to make a database that is able to be accessed accross multiple views.   I am also trying to hook up the date spinners so it search's in the Archive view between the selected dates for entries. However for the life of me I cannot seem to get a database up and running.
    I keep getting the following errors.
    Database is now open
    Error #2044: Unhandled SQLErrorEvent:. errorID=3115, operation=execute , message=Error #3115: SQL Error. , details=no such table: 'stb'   //this error is from the Journal view
    Database is now open
    Error #2044: Unhandled SQLErrorEvent:. errorID=3115, operation=execute , message=Error #3115: SQL Error. , details=no such table: 'stb' // this error is from the Archive View
    // Journal view code
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark" title="Journal" creationComplete="createDatabase()">
              <fx:Script>
                        <![CDATA[
                                  import flash.data.SQLConnection;
                                  import flash.data.SQLStatement;
                                  import flash.errors.SQLError;
                                  import flash.events.Event;
                                  import flash.events.SQLErrorEvent;
                                  import flash.events.SQLEvent;
                                  import flash.events.TimerEvent;
                                  import flash.filesystem.File;
                                  import flash.utils.Timer;
                                  import mx.collections.ArrayCollection;
                                  import mx.utils.ObjectUtil;
                                  import org.osmf.events.TimeEvent;
                                  public var sqlc:SQLConnection = new SQLConnection();
                                  public var dbFile:File;
                                  public var dbConnection:SQLConnection;
                                  private function createDatabase():void
                                            dbFile = File.applicationStorageDirectory.resolvePath("assets/appsimplicity.sqlite"); //last modified
                                            dbConnection = new SQLConnection();
                                            dbConnection.addEventListener(SQLEvent.OPEN, onDatabaseOpen);
                                            dbConnection.addEventListener(SQLEvent.CLOSE, onDatabaseClose);
                                            dbConnection.openAsync(dbFile);
                                  private function onDatabaseOpen(evt:SQLEvent):void
                                            trace("Database is now open");
                                            var statement:SQLStatement = new SQLStatement();
                                            statement.sqlConnection = dbConnection;
                                            statement.sqlConnection.open(appsimplicity.sqlite, SQLMode.READ);
                                            statement.text = "CREATE TABLE IF NOT EXISTS stb (id INTEGER PRIMARY KEY AUTOINCREMENT, title TEXT , entry TEXT)";          ///working on issue here
                                  private function onDatabaseClose(evt:SQLEvent):void
                                            trace("Database is now closed");
                                  private function saveJournal():void
                                            var statement:SQLStatement = new SQLStatement();
                                            statement.sqlConnection = dbConnection;
                                            statement.text = "INSERT INTO stb_ (title , entry) VALUES ('"+title_txt.text+"','"+entry.text+"')"; //is this maybe wrong?
                                            statement.execute();
                                            title_txt.text = "";
                                            entry.text = "";
                                  //debug log
                                  //[SWF] Main.swf - 3,574,774 bytes after decompression
                                  //Database is now open
                                  //Error #2044: Unhandled SQLErrorEvent:. errorID=3115, operation=execute , message=Error #3115: SQL Error. , details=no such table: 'journallistb'
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
              <s:Label id="title_lable_txt" x="10" y="48" width="124" height="21" color="#E2881E" text="Title:"/>
              <s:TextInput id="title_txt" x="47" y="36" width="146" enabled="true" prompt="Entry Title" needsSoftKeyboard="true" />
              <s:TextArea id="entry" x="9" y="120" height="147" enabled="true" prompt="Entry" needsSoftKeyboard="true" />
              <s:Button id="savejournal" x="11" y="326" width="296" label="Save" click="saveJournal()" />
              <s:Button id="addphotostojournal" x="11" y="275" width="296" label="Add Photos"/>
              <s:Label id="journal" x="10" y="97" color="#E2881E" text="Journal:"/>
              <s:Label id="Datefield" x="145" y="97" color="#E2881E" text="Date:"/>
              <s:TextInput id="date" x="187" y="78" width="120" height="34" enabled="true" prompt="enter date"/>
    </s:View>
    //Archive view code
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark"
                        title="Archive" creationComplete="createDatabase()">
              <fx:Script>
                        <![CDATA[
                                  import mx.collections.ArrayCollection;
                                  public var dbFile:File
                                  public var dbConnection:SQLConnection;
                                  public var selectQuery:SQLStatement;
                                  private function createDatabase():void
                                            dbFile = File.applicationDirectory.resolvePath("appsimplicity.sqlite");
                                            dbConnection = new SQLConnection();
                                            dbConnection.addEventListener(SQLEvent.OPEN, onDatabaseOpen);
                                            dbConnection.addEventListener(SQLEvent.CLOSE, onDatabaseClose);
                                            dbConnection.openAsync(dbFile);
                                  private function onDatabaseOpen(evt:SQLEvent):void
                                            trace("Database is now open");
                                            selectQuery = new SQLStatement();
                                            selectQuery.sqlConnection = dbConnection;
                                            selectQuery.text = "SELECT * FROM stb ORDER BY title ASC";
                                            selectQuery.addEventListener(SQLEvent.RESULT, onQueryResult);
                                            selectQuery.execute();
                                  private function onQueryResult(evt:SQLEvent):void
                                            archivefiles.dataProvider = new ArrayCollection(selectQuery.getResult().data);
                                  private function onDatabaseClose(evt:SQLEvent):void
                                            trace("Database is now Closed");
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
              <s:DateSpinner id="Startdate" x="66" y="54" width="40" height="60"/>
              <s:List id="archivefiles" x="69" y="119" width="185" height="138" enabled="true" labelField="title" ></s:List>
              <s:Button id="Delete" x="68" y="313" width="185" label="Delete"/>
              <s:VScrollBar x="248" y="120" height="138"/>
              <s:DateSpinner id="Enddate" x="68" y="361" width="40" height="50"/>
              <s:Label id="adspace" x="0" y="0" width="321" height="36" color="#751E1E" text="AdSpace"/>
    </s:View>
    I made the data base using sqlite manager "Firefox plugin" then copied it to a new package I called assets. inside the project SRC folder.  I am at a lose, and any help would be greatly appreciated! 
    Message was edited by: JeanneM7289  updated with tags

    I am now getting the error.
    Error: Error #3101: Database connection is already open.
              at Error$/throwError()
              at flash.data::SQLConnection/open()
              at views::HomeView/onDatabaseOpen()[C:\Users/blah\Adobe Flash Builder 4.6\appSimplicity Journal\src\views\HomeView.mxml:55]
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark" title="Journal" creationComplete="createDatabase()">
              <fx:Script>
                        <![CDATA[
                                  import flash.data.SQLConnection;
                                  import flash.data.SQLStatement;
                                  import flash.errors.SQLError;
                                  import flash.events.Event;
                                  import flash.events.SQLErrorEvent;
                                  import flash.events.SQLEvent;
                                  import flash.events.TimerEvent;
                                  import flash.filesystem.File;
                                  import flash.utils.Timer;
                                  import mx.collections.ArrayCollection;
                                  import mx.utils.ObjectUtil;
                                  import org.osmf.events.TimeEvent;
                                  public var sqlc:SQLConnection = new SQLConnection();
                                  public var dbFile:File;
                                  public var dbConnection:SQLConnection;
                                  private function createDatabase():void
                                            dbFile = File.applicationStorageDirectory.resolvePath("appsimplicity.sqlite"); //last modified
                                            dbConnection = new SQLConnection();
                                            dbConnection.addEventListener(SQLEvent.OPEN, onDatabaseOpen);             ////************ added by bblommers
                                            dbConnection.addEventListener(SQLErrorEvent.ERROR, onDatabaseError);  
                                            dbConnection.addEventListener(SQLEvent.CLOSE, onDatabaseClose);
                                            dbConnection.openAsync(dbFile);
                                  private function onDatabaseError(evt:SQLEvent):void    
                                            trace('Error with the database: '+evt);
                                  private function onDatabaseOpen(evt:SQLEvent):void
                                            trace("Database is now open");
                                            var statement:SQLStatement = new SQLStatement();
                                            statement.sqlConnection = dbConnection;
                                            statement.sqlConnection.open("appsimplicity.sqlite", SQLMode.READ);
                                            statement.text = "CREATE TABLE IF NOT EXISTS stb (id INTEGER PRIMARY KEY AUTOINCREMENT, title TEXT , entry TEXT)";          ///working on issue here
                                            statement.execute();                    //************* added by bblommers
                                            trace("Table is now created");     //************ added by bblommers
                                  private function onDatabaseClose(evt:SQLEvent):void
                                            trace("Database is now closed");
                                  private function saveJournal():void
                                            var statement:SQLStatement = new SQLStatement();
                                            statement.sqlConnection = dbConnection;
                                            statement.text = "INSERT INTO stb (title , entry) VALUES ('"+title_txt.text+"','"+entry.text+"')"; //is this maybe wrong?
                                            statement.execute();
                                            title_txt.text = "";
                                            entry.text = "";
                                  //debug log
                                  //[SWF] Main.swf - 3,574,774 bytes after decompression
                                  //Database is now open
                                  //Error #2044: Unhandled SQLErrorEvent:. errorID=3115, operation=execute , message=Error #3115: SQL Error. , details=no such table: 'journallistb'
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
              <s:Label id="title_lable_txt" x="10" y="48" width="124" height="21" color="#E2881E" text="Title:"/>
              <s:TextInput id="title_txt" x="47" y="36" width="146" enabled="true" prompt="Entry Title" needsSoftKeyboard="true" />
              <s:TextArea id="entry" x="9" y="120" height="147" enabled="true" prompt="Entry" needsSoftKeyboard="true" />
              <s:Button id="savejournal" x="11" y="326" width="296" label="Save" click="saveJournal()" />
              <s:Button id="addphotostojournal" x="11" y="275" width="296" label="Add Photos"/>
              <s:Label id="journal" x="10" y="97" color="#E2881E" text="Journal:"/>
              <s:Label id="Datefield" x="145" y="97" color="#E2881E" text="Date:"/>
              <s:TextInput id="date" x="187" y="78" width="120" height="34" enabled="true" prompt="enter date"/>
    on the archive view I am still getting the error
    Error #2044: Unhandled SQLErrorEvent:. errorID=3115, operation=execute , message=Error #3115: SQL Error. , details=no such table: 'stb'
    However the journal view Trace show's Table created and Database opened  I am at my wits end with this

  • How to close  or delete a PO?

    Hi
    How to close or delete a PO ?
    I can see to delete the line items .
    But if I wanna delete a PO itself , is it possible ?
    regards,

    Hi Sandeep
    You can flag all items for delete in Purchase Order,
    Go to ME22N and enter purchase order. Select item and click on delete button (which is available just above item details) and save.
    Once you complete mark for deletion, you can proceed for archiving.
    transaction code for archiving: SARA
    Object: MM_EKKO
    also check above link for detail process.
    regards
    Srinivas

  • Encrption / Decrption for Bank Interface using File adapter 7.1

    Hi Friends,
    My scenario is IDOC to file.
    I have a requirement to integrate SAP Payment run idoc PEXR2002 with one of the bank file format. I am able to generate the file as per the bank requirement. But the client wants to  do encryption and decrption from PI side.
    Is there any way it can be achieved with out using third party adapters. will the SAP cryptographic toolkit solve in encrpting and decrypting files.
    Please suggest me how to approach this.
    Regards,
    Giridhar.C

    Hi,
    You can write UDF's for encryption and decryption with 2 jar files(Base64Coder,BASE64Decoder)  imported into the imported archives.
    Code may look like this.
    Encryption:
    Base64Coder.encodeString((String)myGlobalContainer.getParameter(a));
    Decryption:
    BASE64Decoder decoder =  new BASE64Decoder();
         //Decode the encoded information....
           byte b[] = decoder.decodeBuffer(data);
          out.write(b);
    Let me know if you need any further details

  • Deploy JavaFX application to JSP

    A lot people saying it's possible just by using the snippet below,
    <script src="http://dl.javafx.com/dtfx.js"></script>
    <script>
        javafx(
                  archive: "Foo.jar",
                  draggable: true,
                  width: 200,
                  height: 200,
                  code: "foo.Main",
                  name: "Foo"
    </script> Could ANYONE tell me what's the function of code in the Java script? I think it has been included into the archive already.
    One another question is, what are the functions of the JNLP file and how should I modify them to facilitate the deployment?

    Hi Isaac,
    Now those are questions I've been asking for the past few months! And by coincidence I think I've just gotten my answers today, mostly by trial and error. Bear in mind that I'm not a deployment engineer, so I stand to be corrected, but I've tested everything I'm going to say and can verify it works, at least on Windows and Mac.
    I'm drawing some of my information from the following Java article but will be speaking specifically about JavaFX.
    http://java.sun.com/developer/technicalArticles/javase/newapplets/
    That article includes a discussion about making your applet compatible with pre-6u10 and 6u10+ runtimes. On Windows, JavaFX runtimes rely on 6u10+ Java runtimes, which use the xxx_browser.jnlp file for applet startup. However, Apple Java ignores the JNLP file for applets, which means that all of its applet startup information comes from the applet script in the HTML/JSP file, so in this regard it is behaving like a pre-6u10 Java runtime. I believe that Solaris and Linux follow the Windows model, but I haven't extended my testing that far.
    So here are some general statements that I know work for Windows and Mac.
    1. You can strip all the attributes out of the <jnlp> tag in your xxx_browser.jnlp file. This saves a lot of grief in changing the codebase attribute every time you move your applet. The catch is that if you remove one attribute from the <jnlp> tag, you have to remove 'em all (href and spec) to get the applet to work. And that rule is for Windows, since Mac ignores the applet JNLP.
    2. Your JNLP file is found as long as it's in the same directory as your JAR file. You specify the location of your JAR file in the archive parameter of the applet script in your HTML/JSP page. That's why you don't need to call the JNLP from your applet script.
    3. You can optionally specify the location of the JNLP file in your applet script by using a jnlp_href parameter, something like this:
    jnlp_href: "dist/TestApp_browser.jnlp",
    That specifically tells the runtime where to look for the JNLP file--in this case, in the dist/ child of the directory containing the HTML/JSP page. But note that other things happen when you use the jnlp_href attribute:
    - If you do have a codebase attribute specified in your JNLP file, the jnlp_href parameter overrides it.
    - When the jnlp_href parameter is specified, the applet's main class name is taken from the <param> tag nested under the <applet-desc> tag in the JNLP file, and the code parameter in the applet script is ignored. I tried deleting the code parameter in the script entirely, and the applet worked fine on Windows. However, remember that Mac doesn't use the JNLP file, so it's lost wtihout the code parameter. If you include both the jnlp_href and code parameters, both Windows and Mac are happy.
    - When the jnlp_href parameter is specified, you can also delete the archive parameter in the script, and it runs on Windows. The location of the JAR file is taken from the <jar> tag, nested under the <resources> tag in the JNLP. However, the applet chokes on Mac without the archive parameter in the applet script. Again, include both the jnlp_href and archive tag to make sure your applet runs in both environments.
    So why would you want to bother with the jnlp_href parameter? It's optional when the JNLP and JAR files are located in the same directory, but it's necessary if your JNLP file is in a different directory from your JAR file.
    Here's an example. Suppose the xxx_browser.jnlp is in the same directory as your HTML/JSP page, and the JAR file is in a child directory called dist. Then your applet script will look like this:
    <script>
    javafx(
    archive: "dist/TestApp.jar",
         jnlp_href: "TestApp_browser.jnlp",
    width: 200,
    height: 200,
    code: "testapp.Main",
    name: "TestApp"
    </script>
    and the <jar> tag in the JNLP will look like this:
    <jar href="dist/TestApp.jar" main="true"/>
    The <jnlp> tag in the JNLP file can either contain all the attributes that it was generated with or it can contain just the tag with no attributes:
    <jnlp>
    How does this work? On Windows, the runtime finds the JNLP file from the jnlp_href parameter and ignores the archive and code parameters. The location of the JAR file is determined from the <jar> tag in the JNLP. On Mac, all that is required is the location of the JAR file and the main class, which are specified in the archive and code parameters.
    Unless you have a strong reason for separating the JNLP and JAR files, keep them together. Then you only need to specify the location of the JAR file in the archive tag, relative to the directory containing the HTML/JSP page. You don't have to worry about the codebase attribute and <jar> tag in the JNLP file, and you don't have to specify the jnlp_href parameter in the applet script.
    Nancy

  • Snippely and ActionScript 3.0

    Hi everyone!
    Yesterday, looking for a way to archive the codes I've been using, I found this little and nice program called Snippely.
    http://code.google.com/p/snippely/
    It's a good solution to store "snippets", small chunks of code and even notes.
    The problem is that the application doesn't support code coloring for AS3.
    So, I'm curious to here from you, the Pros and those also in the process of learning... Is there another applicating that's better than snippely to work with AS3? What do you use to collect your codes? Or you don't collect it at all?
    And how do you orginize it?
    Thanks!

    Upz, I've just found aSnippet that seems to be way better!
    http://asnippet.com/blog/
    But I'm still waiting for comments...
    Let me know if you have a tip about how to organize this kind of thing!

  • IDOC capturing the old data from Vendor master instead of modified data

    Hello Friends,
    Could you please guide me on the below issue  ?
    Vendor master was changed with the address being modified at 1300 system time.   => change log shows as 1300
    Payment run and IDOC generation ( RFFOEDI1 ) was executed at 1400 system time.  =>  IDOC created time as 1400
    but  , Still the  IDOC captured the old vendor master address data onto the IDOC .
    this is very strange to me and no idea how this can happen.
    thanks
    Raghu V
    Edited by: Raghunandan Vasudevarao on Jan 27, 2011 11:29 AM

    Moderator message: I am sorry but I had to remove the "correct answer" as it was not correct.
    It is well possible to remove the purchasing view via archiving, since archiving of vendor masters is divided into 3 activities: archiving purchasing view, archiving company code views, archiving general data.
    Of course there are preconditions: you cannot archive purchasing data view if you had already created orders. In that case you have to archive the orders first.
    See the network graphic,  in SARA enter object FI_ACCPAYB, then click the icon for network.
    In that particular case you would even create inconsistencies if you delete a table entry.
    And before you delete table entries you should in general know about the relationship of tables.
    Just thinking that a vendor master is LFA1, LFB1 and LFM1 is much to short. Goto DB15, enter FI_ACCPAYB (this is the archiving object) in the lower part and see how much tables are returned. These are all tables that can have data if you maintain a vendor master.
    Now check all those tables if they have a relation to LFM1 and if they contain data
    what will happen if you delete the vendor despite of existing orders? you probably get a dump when you access the purchase order.

  • Weblogic-rdbms-jar.weblogic-rdbms-bean.tab

    Hi
    We are migrating our application from 8.1 to 9.2 and I am getting the following error while trying to install the application through the console.
    This application was working fine in 8.1, the only change i have done is to rebuild the application using 92. jar files.
    Can anyone help me out?
    ####<Aug 5, 2007 3:28:07 PM GST> <Info> <J2EE Deployment SPI> <hqibm310.hq.emirates.com> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <dacs_admin> <> <> <1186313287435> <BEA-260084> <Deployment descriptors in chameleon_common_entity_ict.jar are not schema based.>
    ####<Aug 5, 2007 3:28:07 PM GST> <Info> <J2EE Deployment SPI> <hqibm310.hq.emirates.com> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <dacs_admin> <> <> <1186313287495> <BEA-260084> <Deployment descriptors in chameleon_common_entity_intmsg_message.jar are not schema based.>
    ####<Aug 5, 2007 3:28:07 PM GST> <Info> <J2EE Deployment SPI> <hqibm310.hq.emirates.com> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <dacs_admin> <> <> <1186313287749> <BEA-260084> <Deployment descriptors in chameleon_common_entity_intmsg_message.jar are not schema based.>
    ####<Aug 5, 2007 3:28:07 PM GST> <Warning> <J2EE Deployment SPI> <hqibm310.hq.emirates.com> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <dacs_admin> <> <> <1186313287758> <BEA-260078> <No DConfigBean is available for invalid module, 'chameleon_common_entity_intmsg_message.jar': javax.enterprise.deploy.spi.exceptions.ConfigurationException: [J2EE Deployment SPI:260106]Failed to parse descriptor at 'META-INF/weblogic-cmp-rdbms-jar.xml' for module 'chameleon_common_entity_intmsg_message.jar': java.lang.IllegalArgumentException: OracleBlob is not a legal value for DbmsColumnType. The value must be one of the following: [Clob, Blob, LongString, SybaseBinary].>
    ####<Aug 5, 2007 3:28:07 PM GST> <Error> <Console> <hqibm310.hq.emirates.com> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <dacs_admin> <> <> <1186313287765> <BEA-240003> <Console encountered the following error javax.enterprise.deploy.spi.exceptions.ConfigurationException: [J2EE Deployment SPI:260106]Failed to parse descriptor at 'META-INF/weblogic-cmp-rdbms-jar.xml' for module 'chameleon_common_entity_intmsg_message.jar': java.lang.IllegalArgumentException: OracleBlob is not a legal value for DbmsColumnType. The value must be one of the following: [Clob, Blob, LongString, SybaseBinary]
    at weblogic.deploy.api.spi.config.BasicDConfigBeanRoot.getDConfigBean(BasicDConfigBeanRoot.java:192)
    at weblogic.deploy.api.spi.config.DeploymentConfigurationImpl.addSecondaryModule(DeploymentConfigurationImpl.java:964)
    at weblogic.deploy.api.spi.config.DeploymentConfigurationImpl.collectSecondaryEjbConfig(DeploymentConfigurationImpl.java:1106)
    at weblogic.deploy.api.spi.config.DeploymentConfigurationImpl.collectSecondaryConfig(DeploymentConfigurationImpl.java:879)
    at weblogic.deploy.api.spi.config.DeploymentConfigurationImpl.getDConfigBeanRoot(DeploymentConfigurationImpl.java:164)
    at weblogic.deploy.api.tools.SessionHelper.initializeWithConfig(SessionHelper.java:750)
    at weblogic.deploy.api.tools.SessionHelper.initialize(SessionHelper.java:704)
    at weblogic.deploy.api.tools.SessionHelper.initializeConfiguration(SessionHelper.java:534)
    at weblogic.deploy.api.tools.SessionHelper.initializeConfiguration(SessionHelper.java:597)
    at com.bea.console.utils.DeploymentConfigurationHelper.initDeploymentConfiguration(DeploymentConfigurationHelper.java:757)
    at com.bea.console.utils.DeploymentConfigurationHelper.><init>(DeploymentConfigurationHelper.java:339)
    at com.bea.console.utils.DeploymentConfigurationManager.createDeploymentConfigurationHelper(DeploymentConfigurationManager.java:238)
    at com.bea.console.utils.DeploymentConfigurationManager.getDeploymentConfiguration(DeploymentConfigurationManager.java:104)
    at com.bea.console.utils.DeploymentUtils.getMergedModuleInfo(DeploymentUtils.java:2536)
    at com.bea.console.actions.app.DeploymentsControlTableAction.createApplicationNodes(DeploymentsControlTableAction.java:231)
    at com.bea.console.actions.app.ApplicationOverviewAction.getCollection(ApplicationOverviewAction.java:104)
    at com.bea.console.actions.BaseTableAction.execute(BaseTableAction.java:88)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:419)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.access$201(PageFlowRequestProcessor.java:95)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor$ActionRunner.execute(PageFlowRequestProcessor.java:2042)
    at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors.wrapAction(ActionInterceptors.java:90)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFlowRequestProcessor.java:2114)
    at com.bea.console.internal.ConsolePageFlowRequestProcessor.processActionPerform(ConsolePageFlowRequestProcessor.java:221)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:224)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processInternal(PageFlowRequestProcessor.java:554)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProcessor.java:851)
    at org.apache.beehive.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterActionServlet.java:630)
    at org.apache.beehive.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.java:157)
    at com.bea.console.internal.ConsoleActionServlet.process(ConsoleActionServlet.java:241)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
    at com.bea.console.internal.ConsoleActionServlet.doGet(ConsoleActionServlet.java:130)
    at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1169)
    at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(ScopedContentCommonSupport.java:688)
    at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.renderInternal(ScopedContentCommonSupport.java:268)
    at com.bea.portlet.adapter.scopedcontent.StrutsStubImpl.render(StrutsStubImpl.java:107)
    at com.bea.netuix.servlets.controls.content.NetuiContent.preRender(NetuiContent.java:288)
    at com.bea.netuix.nf.ControlLifecycle$6.visit(ControlLifecycle.java:427)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:708)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:183)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:339)
    at com.bea.netuix.nf.Lifecycle.runOutbound(Lifecycle.java:186)
    at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:140)
    at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:370)
    at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:229)
    at com.bea.netuix.servlets.manager.UIServlet.doGet(UIServlet.java:195)
    at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:180)
    at com.bea.netuix.servlets.manager.SingleFileServlet.service(SingleFileServlet.java:221)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at weblogic.servlet.AsyncInitServlet.service(AsyncInitServlet.java:124)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:223)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3243)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2003)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1909)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1359)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    Caused by: javax.enterprise.deploy.spi.exceptions.InvalidModuleException: [J2EE Deployment SPI:260106]Failed to parse descriptor at 'META-INF/weblogic-cmp-rdbms-jar.xml' for module 'chameleon_common_entity_intmsg_message.jar': java.lang.IllegalArgumentException: OracleBlob is not a legal value for DbmsColumnType. The value must be one of the following: [Clob, Blob, LongString, SybaseBinary]
    at weblogic.deploy.api.spi.config.BasicDConfigBeanRoot.populateFromDD(BasicDConfigBeanRoot.java:357)
    at weblogic.j2ee.descriptor.wl.WeblogicRdbmsJarBeanDConfig.<init>(WeblogicRdbmsJarBeanDConfig.java:72)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:67)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:521)
    at weblogic.deploy.api.spi.config.DeploymentConfigurationImpl.constructDCB(DeploymentConfigurationImpl.java:593)
    at weblogic.deploy.api.spi.config.DeploymentConfigurationImpl.initDConfig(DeploymentConfigurationImpl.java:712)
    at weblogic.deploy.api.spi.config.BasicDConfigBeanRoot.getDConfigBean(BasicDConfigBeanRoot.java:181)
    ... 98 more
    Caused by: java.io.IOException: [J2EE Deployment SPI:260106]Failed to parse descriptor at 'META-INF/weblogic-cmp-rdbms-jar.xml' for module 'chameleon_common_entity_intmsg_message.jar': java.lang.IllegalArgumentException: OracleBlob is not a legal value for DbmsColumnType. The value must be one of the following: [Clob, Blob, LongString, SybaseBinary]
    at weblogic.deploy.api.spi.config.DescriptorParser.getWeblogicDescriptorBean(DescriptorParser.java:519)
    at weblogic.deploy.api.spi.config.BasicDConfigBeanRoot.populateFromDD(BasicDConfigBeanRoot.java:354)
    ... 106 more
    Caused by: java.lang.IllegalArgumentException: OracleBlob is not a legal value for DbmsColumnType. The value must be one of the following: [Clob, Blob, LongString, SybaseBinary]
    at weblogic.descriptor.beangen.LegalChecks.checkInEnum(LegalChecks.java:29)
    at weblogic.j2ee.descriptor.wl.FieldMapBeanImpl.setDbmsColumnType(FieldMapBeanImpl.java:174)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:615)
    at com.bea.staxb.runtime.internal.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:48)
    at com.bea.staxb.runtime.internal.RuntimeBindingType$BeanRuntimeProperty.setValue(RuntimeBindingType.java:483)
    at com.bea.staxb.runtime.internal.ByNameRuntimeBindingType$ElementQNameProperty.fill(ByNameRuntimeBindingType.java:351)
    at com.bea.staxb.runtime.internal.LiteralUnmarshalResult.extractAndFillElementProp(LiteralUnmarshalResult.java:133)
    at com.bea.staxb.runtime.internal.ByNameUnmarshaller.deserializeContents(ByNameUnmarshaller.java:51)
    at com.bea.staxb.runtime.internal.AttributeUnmarshaller.unmarshalIntoIntermediary(AttributeUnmarshaller.java:47)
    at com.bea.staxb.runtime.internal.LiteralUnmarshalResult.unmarshalElementProperty(LiteralUnmarshalResult.java:158)
    at com.bea.staxb.runtime.internal.LiteralUnmarshalResult.extractAndFillElementProp(LiteralUnmarshalResult.java:130)
    at com.bea.staxb.runtime.internal.ByNameUnmarshaller.deserializeContents(ByNameUnmarshaller.java:51)
    at com.bea.staxb.runtime.internal.AttributeUnmarshaller.unmarshalIntoIntermediary(AttributeUnmarshaller.java:47)
    at com.bea.staxb.runtime.internal.LiteralUnmarshalResult.unmarshalElementProperty(LiteralUnmarshalResult.java:158)
    at com.bea.staxb.runtime.internal.LiteralUnmarshalResult.extractAndFillElementProp(LiteralUnmarshalResult.java:130)
    at com.bea.staxb.runtime.internal.ByNameUnmarshaller.deserializeContents(ByNameUnmarshaller.java:51)
    at com.bea.staxb.runtime.internal.AttributeUnmarshaller.unmarshalIntoIntermediary(AttributeUnmarshaller.java:47)
    at com.bea.staxb.runtime.internal.LiteralUnmarshalResult.unmarshalElementProperty(LiteralUnmarshalResult.java:158)
    at com.bea.staxb.runtime.internal.LiteralUnmarshalResult.extractAndFillElementProp(LiteralUnmarshalResult.java:130)
    at com.bea.staxb.runtime.internal.ByNameUnmarshaller.deserializeContents(ByNameUnmarshaller.java:51)
    at com.bea.staxb.runtime.internal.AttributeUnmarshaller.unmarshalIntoIntermediary(AttributeUnmarshaller.java:47)
    at com.bea.staxb.runtime.internal.UnmarshalResult.unmarshalBindingType(UnmarshalResult.java:184)
    at com.bea.staxb.runtime.internal.UnmarshalResult.unmarshalDocument(UnmarshalResult.java:154)
    at com.bea.staxb.runtime.internal.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:65)
    at weblogic.descriptor.internal.MarshallerFactory$1.createDescriptor(MarshallerFactory.java:136)
    at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:280)
    at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:248)
    at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:309)
    at weblogic.descriptor.EditableDescriptorManager.createDescriptor(EditableDescriptorManager.java:99)
    at weblogic.application.descriptor.AbstractDescriptorLoader.createDescriptor(AbstractDescriptorLoader.java:344)
    at weblogic.ejb.container.cmp.rdbms.RDBMSDescriptor$MyWlsRDBMSDescriptor.createDescriptor(RDBMSDescriptor.java:124)
    at weblogic.application.descriptor.AbstractDescriptorLoader.createDescriptor(AbstractDescriptorLoader.java:328)
    at weblogic.application.descriptor.AbstractDescriptorLoader.getDescriptor(AbstractDescriptorLoader.java:237)
    at weblogic.application.descriptor.AbstractDescriptorLoader.getRootDescriptorBean(AbstractDescriptorLoader.java:217)
    at weblogic.ejb.container.cmp.rdbms.RDBMSDescriptor.getDescriptorBean(RDBMSDescriptor.java:78)
    at weblogic.deploy.api.spi.config.DescriptorParser.getWlsCMPBean(DescriptorParser.java:681)
    at weblogic.deploy.api.spi.config.DescriptorParser.getWeblogicDescriptorBean(DescriptorParser.java:506)
    ... 107 more
    >

    Hi,
    We are migrating from 8.1 to 9.2 and have an Application that uses CMP entity beans. Deploying the same ear (that was used in 8.1) in 9.2 gives the error below.
    Would this be also resolved in the above Patch ?
    Thanks and Regards
    Harjan
    ####<Sep 13, 2007 7:39:18 PM IST> <Error> <Console> <WINVG185013-QCZ> <AdminServer> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <> <> <1189692558282> <BEA-240003> <Console encountered the following error javax.enterprise.deploy.spi.exceptions.ConfigurationException: [J2EE Deployment SPI:260037]Encountered unexpected descriptor for module 'ejb Archive: C:\code\APT\WBApplicationEJB.jar'.
         at weblogic.deploy.api.spi.config.BasicDConfigBeanRoot.getDConfigBean(BasicDConfigBeanRoot.java:189)
         at weblogic.deploy.api.spi.config.DeploymentConfigurationImpl.addSecondaryModule(DeploymentConfigurationImpl.java:964)
         at weblogic.deploy.api.spi.config.DeploymentConfigurationImpl.collectSecondaryEjbConfig(DeploymentConfigurationImpl.java:1106)
         at weblogic.deploy.api.spi.config.DeploymentConfigurationImpl.collectSecondaryConfig(DeploymentConfigurationImpl.java:879)
         at weblogic.deploy.api.spi.config.DeploymentConfigurationImpl.getDConfigBeanRoot(DeploymentConfigurationImpl.java:164)
         at weblogic.deploy.api.tools.SessionHelper.initializeWithConfig(SessionHelper.java:735)
         at weblogic.deploy.api.tools.SessionHelper.initialize(SessionHelper.java:704)
         at weblogic.deploy.api.tools.SessionHelper.initializeConfiguration(SessionHelper.java:534)
         at weblogic.deploy.api.tools.SessionHelper.initializeConfiguration(SessionHelper.java:597)
         at com.bea.console.utils.DeploymentConfigurationHelper.initDeploymentConfiguration(DeploymentConfigurationHelper.java:757)
         at com.bea.console.utils.DeploymentConfigurationHelper.<init>(DeploymentConfigurationHelper.java:339)
         at com.bea.console.utils.DeploymentConfigurationManager.createDeploymentConfigurationHelper(DeploymentConfigurationManager.java:238)
         at com.bea.console.utils.DeploymentConfigurationManager.getDeploymentConfiguration(DeploymentConfigurationManager.java:155)
         at com.bea.console.utils.DeploymentUtils.getMergedModuleInfo(DeploymentUtils.java:2438)
         at com.bea.console.actions.app.DeploymentsControlTableAction.createApplicationNodes(DeploymentsControlTableAction.java:228)
         at com.bea.console.actions.app.ApplicationOverviewAction.getCollection(ApplicationOverviewAction.java:104)
         at com.bea.console.actions.BaseTableAction.execute(BaseTableAction.java:88)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:419)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.access$201(PageFlowRequestProcessor.java:95)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor$ActionRunner.execute(PageFlowRequestProcessor.java:2042)
         at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors.wrapAction(ActionInterceptors.java:90)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFlowRequestProcessor.java:2114)
         at com.bea.console.internal.ConsolePageFlowRequestProcessor.processActionPerform(ConsolePageFlowRequestProcessor.java:221)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:224)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processInternal(PageFlowRequestProcessor.java:554)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProcessor.java:851)
         at org.apache.beehive.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterActionServlet.java:630)
         at org.apache.beehive.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.java:157)
         at com.bea.console.internal.ConsoleActionServlet.process(ConsoleActionServlet.java:241)
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
         at com.bea.console.internal.ConsoleActionServlet.doGet(ConsoleActionServlet.java:130)
         at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1169)
         at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(ScopedContentCommonSupport.java:688)
         at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.renderInternal(ScopedContentCommonSupport.java:268)
         at com.bea.portlet.adapter.scopedcontent.StrutsStubImpl.render(StrutsStubImpl.java:107)
         at com.bea.netuix.servlets.controls.content.NetuiContent.preRender(NetuiContent.java:288)
         at com.bea.netuix.nf.ControlLifecycle$6.visit(ControlLifecycle.java:427)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:708)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:720)
         at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:183)
         at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361)
         at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:339)
         at com.bea.netuix.nf.Lifecycle.runOutbound(Lifecycle.java:186)
         at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:140)
         at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:370)
         at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:229)
         at com.bea.netuix.servlets.manager.UIServlet.doGet(UIServlet.java:195)
         at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:180)
         at com.bea.netuix.servlets.manager.SingleFileServlet.service(SingleFileServlet.java:221)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at weblogic.servlet.AsyncInitServlet.service(AsyncInitServlet.java:124)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3212)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:1983)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1890)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1344)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    Caused by: javax.enterprise.deploy.spi.exceptions.InvalidModuleException: [J2EE Deployment SPI:260037]Encountered unexpected descriptor for module 'ejb Archive: C:\code\APT\WBApplicationEJB.jar'.
         at weblogic.j2ee.descriptor.wl60.WeblogicRdbmsJarBeanDConfig.<init>(WeblogicRdbmsJarBeanDConfig.java:85)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at weblogic.deploy.api.spi.config.DeploymentConfigurationImpl.constructDCB(DeploymentConfigurationImpl.java:593)
         at weblogic.deploy.api.spi.config.DeploymentConfigurationImpl.initDConfig(DeploymentConfigurationImpl.java:712)
         at weblogic.deploy.api.spi.config.BasicDConfigBeanRoot.getDConfigBean(BasicDConfigBeanRoot.java:178)
         ... 98 more

  • Error when export DART file

    Hi,
    i m workin in project to use the DART for extract tax data and Documentum to store theses extractions and I have a problem when i export file to documentum
    0) i m configuring the oac0 transction the content repository with the :
    basic Path : /usr/sap/appFA1/DART/Tests1
    archive Path : /usr/sap/appFA1/DART/Tests1
    1) with the transaction FTWP, i configure Directory set with more one path directory :
    ID , repertoire
    0, /usr/sap/appFA1/DART/Tests1
    1, /usr/sap/appFA1/DART/Tests3
    2) i generate extaction with transaction FTWA1; this opération create 6 files. The first in the /usr/sap/appFA1/DART/Tests1 and 5 files in /usr/sap/appFA1/DART/Tests3
    and the job is terminate correctely
    3) i try to export this extraction to documentum with FTWF; the system transfert the first file to Documentum and the 5 others files for this extraction
    This configuration work well for all DART extraction that generate only one file, but for other extraction I have the message error and the system transfert only the first file to Documentum
    I hope i m clear and thank you for your help
    Mohamed Karray
    the job is terminate with code 9999; and i have the following message : Could not to archive (error code 5)
    thank for your help

    Unless you can get the code from Adobe, there's not much you can do...
    I am not sure if this is what you need, but the source code for Export as XHTML can be found in InDesign SDK. (See Feature Development with Scripting.pdf)
    At least, I found above-mentioned XHTMLExport.jsx file in SDK for CS3.
    The source code for Export as XHTML is included in <SDK>/source/public/components/xhtmlexport.
    Export as XHTML is used throughout this document to illustrate what it takes to implement a new feature using ExtendScript.
    Kasyan

  • Urgent: Open Directory stopped and won't restart

    I got into work this morning and restarted the server. Now no one can connect to it. The Open Directory service has stopped and there is no button visible to restart it.
    OD log says: Network transition occurred. Shutting down DirectoryService...
    Any ideas? Monday morning and everyone's going to be baying for blood!
    Edit: some of the configuration log:
    2009-11-23 08:58:34 +0000 - popen: /bin/launchctl load /System/Library/LaunchDaemons/com.apple.PasswordService.plist, "r"
    2009-11-23 08:58:34 +0000 - command failed with exit code 256: /bin/launchctl load /System/Library/LaunchDaemons/com.apple.PasswordService.plist
    2009-11-23 08:58:34 +0000 - popen: /bin/cp -r /Volumes/ldap_bk/openldap /etc/, "r"
    2009-11-23 08:58:34 +0000 - command failed with exit code 256: /bin/cp -r /Volumes/ldap_bk/openldap /etc/
    2009-11-23 08:58:34 +0000 - 4 Restoring LDAP database
    2009-11-23 08:58:34 +0000 - popen: /bin/cp /Volumes/ldap_bk/com.apple.openldap.plist /Library/Preferences/, "r"
    2009-11-23 08:58:34 +0000 - command failed with exit code 256: /bin/cp /Volumes/ldap_bk/com.apple.openldap.plist /Library/Preferences/
    2009-11-23 08:58:34 +0000 - Removed file at path /private/var/db/openldap/openldap-data/alock.
    2009-11-23 08:58:34 +0000 - popen: /usr/sbin/slapadd -c -l /tmp/slapconfig_stage1777mOX7M/backup177.ldif, "r"
    2009-11-23 09:16:45 +0000 - slapconfig -restoredb
    2009-11-23 09:16:45 +0000 - command: /usr/bin/hdiutil attach /.ServerBackups/openDirectory/SBSBackup_OpenDirectoryMaster.sparseimage -readonly
    2009-11-23 09:16:48 +0000 - Disk name disk4
    2009-11-23 09:16:48 +0000 - Error: Cannot retrieve the primary IPv4 address.
    2009-11-23 09:16:48 +0000 - command: /usr/bin/hdiutil detach disk4
    2009-11-23 09:17:04 +0000 - hdiutil command output:
    hdiutil: couldn't eject "(null)" - Bad file descriptor
    2009-11-23 09:17:04 +0000 - hdiutil command failed with status 3
    2009-11-23 09:17:04 +0000 - Warning: Could not detach the archive, exit code 71.

    Well I got everyone's files off onto an external hard drive and then restored from backup. Took a couple hours but it's fine. Only problem now is I'm too scared to restart the server.

  • Kodo on jboss-3.0.0RC1

    Has anyone gotten KodoJDO to successfully deploy on jboss-3.0.0RC1? It
    seems that it deploys ok, but does not register any kodo object under the
    name "java:/kodo" or whatever jndi name you have specified in the
    kodo-services.xml file. Below is my kodo-services.xml file. Does anyone
    see any problems?
    Thanks,
    -Chris
    <?xml version="1.0" encoding="UTF-8"?>
    <server>
    <!-- you should put any JDBC drivers you will be using
    in the lib directory so Kodo can find them -->
    <classpath codebase="lib" archives="*"/>
    <mbean code="org.jboss.resource.ConnectionFactoryLoader"
    name="jboss.jca:service=ConnectionFactoryLoader,name=Kodo">
    <attribute name="JndiName">kodo</attribute>
    <depends optional-attribute-name="ResourceAdapterName">
    jboss.jca:service=RARDeployment,name=KodoJDO
    </depends>
    <depends optional-attribute-name="ConnectionManagerFactoryLoaderName">
    jboss.jca:service=ConnectionManagerFactoryLoader,name=MinervaNoTransCMFactory
    </depends>
    <!-- fill in your Kodo configuration properties here.
    Don't forget your license key. -->
    <attribute name="ManagedConnectionFactoryProperties">
    LicenseKey=<insert your own>
    MinPool=0
    MaxPool=10
    ConnectionDriverName=org.hsqldb.jdbcDriver
    ConnectionURL=jdbc:hsqldb:hsql://localhost:1476
    ConnectionUserName=sa
    ConnectionPassword=
    DictionaryName=com.solarmetric.kodo.impl.jdbc.schema.dict.HSQLDictionary
    WarnOnPersistentTypeFailure=true
    </attribute>
    <attribute name="ConnectionManagerProperties">
    MinSize=0
    MaxSize=10
    BlockingTimeoutMillis=5000
    IdleTimeoutMinutes=30
    CleanupIntervalMinutes=10
    MaxIdleTimeoutPercent=1.0
    </attribute>
    <attribute name="PrincipalMappingClass">
    org.jboss.resource.security.ManyToOnePrincipalMapping
    </attribute>
    <attribute name="PrincipalMappingProperties">
    </attribute>
    </mbean>
    </server>

    Chris-
    Sorry for the long delay in responding. The problem is that the JBoss
    people have completely changed the configuration format for resource
    adaptor -service.xml files between 3.0.0beta and 3.0.0RC1, and there is
    no documentation on it as of yet (see my posting on the thread "NPE when
    calling getConnection() with JBoss").
    I'll work on making a working example for 3.0.0RC1.
    Chris West <[email protected]> wrote:
    Has anyone gotten KodoJDO to successfully deploy on jboss-3.0.0RC1? It
    seems that it deploys ok, but does not register any kodo object under the
    name "java:/kodo" or whatever jndi name you have specified in the
    kodo-services.xml file. Below is my kodo-services.xml file. Does anyone
    see any problems?
    Thanks,
    -Chris
    <?xml version="1.0" encoding="UTF-8"?>
    <server>
    <!-- you should put any JDBC drivers you will be using
    in the lib directory so Kodo can find them -->
    <classpath codebase="lib" archives="*"/>
    <mbean code="org.jboss.resource.ConnectionFactoryLoader"
    name="jboss.jca:service=ConnectionFactoryLoader,name=Kodo">
    <attribute name="JndiName">kodo</attribute>
    <depends optional-attribute-name="ResourceAdapterName">
    jboss.jca:service=RARDeployment,name=KodoJDO
    </depends>
    <depends optional-attribute-name="ConnectionManagerFactoryLoaderName">
    jboss.jca:service=ConnectionManagerFactoryLoader,name=MinervaNoTransCMFactory
    </depends>
    <!-- fill in your Kodo configuration properties here.
    Don't forget your license key. -->
    <attribute name="ManagedConnectionFactoryProperties">
    LicenseKey=<insert your own>
    MinPool=0
    MaxPool=10
    ConnectionDriverName=org.hsqldb.jdbcDriver
    ConnectionURL=jdbc:hsqldb:hsql://localhost:1476
    ConnectionUserName=sa
    ConnectionPassword=
    DictionaryName=com.solarmetric.kodo.impl.jdbc.schema.dict.HSQLDictionary
    WarnOnPersistentTypeFailure=true
    </attribute>
    <attribute name="ConnectionManagerProperties">
    MinSize=0
    MaxSize=10
    BlockingTimeoutMillis=5000
    IdleTimeoutMinutes=30
    CleanupIntervalMinutes=10
    MaxIdleTimeoutPercent=1.0
    </attribute>
    <attribute name="PrincipalMappingClass">
    org.jboss.resource.security.ManyToOnePrincipalMapping
    </attribute>
    <attribute name="PrincipalMappingProperties">
    </attribute>
    </mbean>
    </server>--
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com
    Kodo Java Data Objects Full featured JDO: eliminate the SQL from your code

  • Crash the browser

    I have a problem and need some advise.
    When I try to run my flash, is there a limitation (on system
    memory or calculation limits) that would crash the browser?
    I try using Flash player 9 but it get worse than Flash player
    8, any idea?
    Thanks in advance,

    Well, I tried changing the applet tag use to
    <object classid='clsid:CAFECAFE-0013-0001-0009-ABCDEFABCDEF'
    archive='<%=APPLET_ARCHIVE%>' code='<%=APPLET_CLASSNAME%>' width=0 height=0>
    (the sole change from the <applet ...> days being the addition of the classid; all variables had the same value, too).
    JInitiator started, and then said
    APPLET tag missing CODE parameter.
    java.lang.NullPointerException: name
         at java.util.zip.ZipFile.getEntry(Unknown Source)
         at java.util.jar.JarFile.getEntry(Unknown Source)
         at java.util.jar.JarFile.getJarEntry(Unknown Source)
         at sun.misc.URLClassPath$JarLoader.getResource(Unknown Source)
         at sun.misc.URLClassPath.getResource(Unknown Source)
         at sun.misc.URLClassPath.getResource(Unknown Source)
         at java.lang.ClassLoader.getBootstrapResource(Unknown Source)
         at java.lang.ClassLoader.getResource(Unknown Source)
         at java.lang.ClassLoader.getResource(Unknown Source)
         at java.lang.ClassLoader.getResource(Unknown Source)
         at java.lang.ClassLoader.getResourceAsStream(Unknown Source)
         at sun.applet.AppletPanel$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    (the exception repeated once)
    Needless to say, the CODE parameter is provided. I don't know quite what to think here.
    (This working without source code for critical components is like trying to read a translation of your favourite novel into a language you don't read, in the dark.)

Maybe you are looking for

  • I cant erase my usb

    When i put my usb drive in and its not in finder i go to Disk utility i try to erase but i cant click erase it doesn let me then when i try to repair it said it couldnt open.

  • Connect the Iphone 4s iOS 7.1 to "JBL onTime micro"

    Hey Com., i just bought a "JBL on Time micro", and tried to use it with my Iphone 4S with at least iOS 7..., but the Phone wether gets power charged nor the Music is played. My qustion now would be if anyone of you has a solution i may try?

  • Xcode multiple C/Header files error: duplicate symbol _heading

    I am working on a 3D FPS written in C using Xcode. I have only just begun to split main.c into keys.c, init.c and others. When I try to compile, it spits out this: duplicate symbol _xxx in xxx/xxx/xxx ... I have main.c, keys.c , and func-dec.h. In fu

  • My list of Arch issues

    Hello, Below is a list of issues I am having with my install of Arch. amd-ucode error on start-up - I have read this can be handled by installing the AMD microcode, but I am not certain if I should do this or not since it seems to affect the hardware

  • Missing content from library, downloaded app on phone that probably did it, what do i do

    I downloaded an app on my samsung galaxy s3 and it let me move my music from itunes to my phone.  It turned out something was wrong with the phone so I got a new one.  I wanted to get my itunes music on my phone but not through the app so i went to m