Initializing jSlider components

Swingers,
I'm working on an audio application and seem to be having a problem with the jSlider component used as a volume control. The user presses a play/stop button to start/stop the audio and has the option to adjust the volume with the jSlider. However, the only way for the jSlider component to take effect is when the user adjusts it, which triggers the jSliderStateChanged method.
I've been trying to find a way to initialize it so that it takes the value of where the slider is located without having to touch the slider. The only idea I've had so far was to have the GUI start with the slider at the 50 value position and call jSlider.setValue(50); right after my ChangeListener() call, but that doesn't seem to work. I still need to move the slider for the attenuation to take place.
I had a similar problem with a jRadioButton, but I resolved that by calling jRadioButton.doClick(1000);. Is there something similar for jSlider components?
Thanks in advance.

I finally got it to work. The way I have my audio application set up is I have an entire class dedicated for the GUI and another class dedicated for the AudioPlayer. Interesting enough, when I call the AudioPlayer's setVolume() method from the GUI (to get the original value of where slider is located),
audioPlayer.setVolume((float) jSliderVolume.getValue());it doesn't seem to work. However, when I do the opposite and call the setVolume() method from inside my AudioPlayer class,
setVolume(gui.getValueSliderVolume());everything seems to work just fine. Any ideas why?

Similar Messages

  • Hung up on launch: Initializing Required Components

    Out of the many hundred times I've launched Adobe Audition, two times it's fallen into a pattern of hanging up on launch, while "initializing required components."  The first time, turning on the mixer to which it's attached seemed to solve the issue.  This time, I've had the mixer on from the start.
    Of course, I'd love to save myself from having to re-install.  If that's the only solution, is there a file I can save that will contain all of my settings?
    Many thanks.
    Kevin

    Hi Kevin,
    I would first rename/backup the Audition preferences folder.  If you rename it and then launch Audition, Audition will try to create the preferences from scratch.  If this is fixes things, then it points to a corrupt preference file and you can try moving them back one-by-one until you find the one that causes the problem.  (This also ensures you have a backup of those files.)
    You don't mention which version of Windows you're using, but you should find the folders here:
    XP: C:\Documents and Settings\<username>\Application Data\Adobe\Audition\3.0\
    Vista/Win7: C:\Users\<username>\AppData\Roaming\Adobe\Audition\3.0\
    Try renaming the 3.0 folder  to 3.0BACKUP so it's clear what it is.
    If this doesn't resolve the startup problem, you can rename the folder back (or even make a copy of it for further safety) and let us know so we can contrinue troubleshooting.

  • Initializing Required Components

    I have Adobe 2.0
    Win XP
    As of recently I cannot open Adobe Audition 2.0
    I double click on the shortcut, adobe begins to load and while it's on "Initializing Required Component..." it simply closes.
    I only use Audition once in a while and this is the first time this has happened. I have tried repairing and reinstalling and neither worked. How can I fix this?

    Hi Kevin,
    I would first rename/backup the Audition preferences folder.  If you rename it and then launch Audition, Audition will try to create the preferences from scratch.  If this is fixes things, then it points to a corrupt preference file and you can try moving them back one-by-one until you find the one that causes the problem.  (This also ensures you have a backup of those files.)
    You don't mention which version of Windows you're using, but you should find the folders here:
    XP: C:\Documents and Settings\<username>\Application Data\Adobe\Audition\3.0\
    Vista/Win7: C:\Users\<username>\AppData\Roaming\Adobe\Audition\3.0\
    Try renaming the 3.0 folder  to 3.0BACKUP so it's clear what it is.
    If this doesn't resolve the startup problem, you can rename the folder back (or even make a copy of it for further safety) and let us know so we can contrinue troubleshooting.

  • The follow functions initiate the sorter just after initializing the compon

    The follow functions initiate the sorter just after initializing the components in the file student.dialog
    void mySettings()
    //jTable1.rowSelectionAllowed();
    jTable1.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
    //jTable1.setFont(new Font("Helvetica", Font.PLAIN, 10));
    jTable1.setModel(new StudentTableModel(jTable1,jLabel25));
    // MyTableModel model = new MyTableModel(this.rw,this.cl);
    sorter = new TableRowSorter(jTable1.getModel());
    jTable1.setRowSorter(sorter);
    //jTable1.getValueAt(rw, cl);
    // System.out.println(jTable1.getColumnModel().getColumn(2));
    jTable1.getSelectionModel().addListSelectionListener(
    new ListSelectionListener() {
    public void valueChanged(ListSelectionEvent event) {
    int viewRow = jTable1.getSelectedRowCount();
    //jLabel1.setText(String.valueOf(jTable1.getSelectedRowCount()));
    if (viewRow < 0) {
    //Selection got filtered away.
    // statusText.setText("");
    } else {
    //int modelRow =
    // jTable1.convertRowIndexToModel(viewRow);
    firstName.getDocument().addDocumentListener(
    new DocumentListener() {
    @Override
    public void changedUpdate(DocumentEvent e) {
    newFilter();
    @Override
    public void insertUpdate(DocumentEvent e) {
    newFilter();
    @Override
    public void removeUpdate(DocumentEvent e) {
    newFilter();
    lastName.getDocument().addDocumentListener(
    new DocumentListener() {
    @Override
    public void changedUpdate(DocumentEvent e) {
    newFilter();
    @Override
    public void insertUpdate(DocumentEvent e) {
    newFilter();
    @Override
    public void removeUpdate(DocumentEvent e) {
    newFilter();
    }After this when a user select a filter and table get sorted only 10 records appear there int the jtable from which a user select just one and press the remove button on that click i have written this
    int rowArr [] =jTable1.getSelectedRows();
    for(int rowId:rowArr)
    try
    // System.out.println(sorter.convertRowIndexToModel(rowId));
    sorter.getModel().fireTableRowsDeleted(jTable1.convertRowIndexToModel(rowId), jTable1.convertRowIndexToModel(rowId));
    //sorter.rowsDeleted(rowId, rowId);
    int stuId = Integer.valueOf(String.valueOf(jTable1.getValueAt(rowId, 0)));
    int sessId= Singleton.getInstance().session_id;
    conn = Singleton.getInstance().makeConnection();
    query="DELETE FROM student_class WHERE student_id =? AND admClass1 AND session_id=?"; // 7
    s=conn.prepareStatement(query);
    s.setInt(1,stuId);
    s.setInt(2,sessId);
    s.execute();
    }catch(Exception e)
    e.printStackTrace();
    }Do not think that i want multiple records to be delete i m selecting only one record but when i click on the remove button it gives me the following stack trace:
    java.lang.IndexOutOfBoundsException: Invalid range
    at javax.swing.DefaultRowSorter.checkAgainstModel(DefaultRowSorter.java:921)
    at javax.swing.DefaultRowSorter.rowsDeleted(DefaultRowSorter.java:878)
    at javax.swing.JTable.notifySorter(JTable.java:4277)
    at javax.swing.JTable.sortedTableChanged(JTable.java:4121)
    at javax.swing.JTable.tableChanged(JTable.java:4398)
    at javax.swing.table.AbstractTableModel.fireTableChanged(AbstractTableModel.java:296)
    at dps.StudentTableModel.fireTableChanged(StudentTableModel.java:465)
    at javax.swing.table.AbstractTableModel.fireTableRowsDeleted(AbstractTableModel.java:261)
    at dps.StudentTableModel.fireTableRowsDeleted(StudentTableModel.java:475)
    at dps.StudentDialog.jButton5ActionPerformed(StudentDialog.java:1360)
    at dps.StudentDialog.access$1600(StudentDialog.java:56)
    at dps.StudentDialog$18.actionPerformed(StudentDialog.java:441)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2018)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2341)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252)
    at java.awt.Component.processMouseEvent(Component.java:6504)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3321)
    at java.awt.Component.processEvent(Component.java:6269)
    at java.awt.Container.processEvent(Container.java:2229)
    at java.awt.Component.dispatchEventImpl(Component.java:4860)
    at java.awt.Container.dispatchEventImpl(Container.java:2287)
    at java.awt.Component.dispatchEvent(Component.java:4686)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4492)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)
    at java.awt.Container.dispatchEventImpl(Container.java:2273)
    at java.awt.Window.dispatchEventImpl(Window.java:2713)
    at java.awt.Component.dispatchEvent(Component.java:4686)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:707)
    at java.awt.EventQueue.access$000(EventQueue.java:101)
    at java.awt.EventQueue$3.run(EventQueue.java:666)
    at java.awt.EventQueue$3.run(EventQueue.java:664)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:87)
    at java.awt.EventQueue$4.run(EventQueue.java:680)
    at java.awt.EventQueue$4.run(EventQueue.java:678)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:677)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:211)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:128)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:117)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:113)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:105)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:90)

    Use your debugger and step though to actually see what is happening, also if you have N rows and one is removed you then only have N-1 rows and any attempt to address the container with N rows will fail.

  • Need help:JPanel not being displayed in the JFrame

    Hello,
    I have a class called ConstructRoom.java which extends JFrame and another class called DimensionsPanel.java which extends JPanel. In the ConstructRoom class I use the following theContainer.add(new DimensionsPanel());, so I can display my JPanel. Well I get the JFrame but no JPanel. When the this call is made the DimensionsPanel.java code is cycled through, Where has my JPanel gone to?
    If I change the DimensionPanel.java extend JFrame and add the the JFrame code. Then I get the JFrame and the JPanel.
    Whats going on here?
    Thanks

    I made some of the changes with no luck. Here is some of the code:
    ---------from ConstructRoom.java--------
    //Imports
    public class ConstructRoom extends JFrame
    //----Member objects and varibles
    private static String theTitle; //Varible for title of frame
    private JFrame theFrame; //Object for the JFrame
    // ----------------------------------------------------------- ConstructRoom
    public ConstructRoom(String theTitle)
    super(theTitle); //JFrame super class
    theFrame = new JFrame("My frame");
    Container theContainer = theFrame.getContentPane(); //Frame container
    theContainer.setLayout(new FlowLayout());
    theContainer.add(new DimensionsPanel());
    theFrame.pack();
    theFrame.setBounds(10,10,400, 400);
    theFrame.addWindowListener(new WindowHandler());
    theFrame.setVisible(true);
    }//end ConstructRoom(String theTitle)
    // -------------------------------------------------------------------- main
    public static void main(String args[])
    ConstructRoom theRoom = new ConstructRoom(theTitle);
    }//end main(String args[])
    //----WindowHander
    }//end class ConstructRoom extends JFrame
    --------from DimensionsPanel.java
    //Imports
    public class DimensionsPanel extends JPanel
    //----Member objects and varibles
    private JPanel dimensionsPanel; //The main panel to hold all info
    private Box panelBox; //Box for all boxes which is added to the JPanel
    private Box furnListBox; //Box for all related items of the furnList
    private Box dimensionsBox; //Box for all dimensions (x, y, z)
    private Box xFieldBox; //Box for all related items of the xField
    private Box yFieldBox; //Box for related items of the yField
    private Box zFieldBox; //Box for related items of the zField
    private Box buttonsBox; //Box for all buttons
    private Box clearBox; //Box for related clear button items
    private Box buildBox; //Box for related build button items
    private JLabel furnListLabel; //Label for the furnList comboBox
    private JLabel xFieldLabel; //Label for the xField
    private JLabel yFieldLabel; //Label for yField
    private JLabel zFieldLabel; //Label for zField
    private JTextField xField; //Text field to enter the x dimension
    private JTextField yField; //Text field to enter the y dimension
    private JTextField zField; //Text field to enter the z dimension
    private JComboBox furnList; //List of selectable furniture objects
    private JButton clearButton; //Clear button
    private JButton buildButton; //Build button
    // --------------------------------------------------------- DimensionsPanel
    public DimensionsPanel()
    //----Setting up dimensions panel
    dimensionsPanel = new JPanel();
    dimensionsPanel.setLayout(new BorderLayout());
    dimensionsPanel.setPreferredSize(new Dimension(150,150));
    dimensionsPanel.setBorder(new TitledBorder(new EtchedBorder(),
    "Select Furniture and Enter Dimensions"));
    //----Initializing GUI components
    furnListLabel = new JLabel("Select from list ");
    furnList = new JComboBox();
    xFieldLabel = new JLabel("Enter Width ");
    xField = new JTextField();
    yFieldLabel = new JLabel("Enter Height ");
    yField = new JTextField();
    zFieldLabel = new JLabel("Enter Depth ");
    zField = new JTextField();
    buildButton = new JButton("Build Object");
    clearButton = new JButton("Clear Object");
    //-----Setting up the combo box and adding items
    furnList.addActionListener(new ComboProcessor());
    furnList.addItem(" "); //Default item
    furnList.addItem("Color Cube");
    furnList.setMaximumRowCount(6); //Max number of items before scrolling
    furnList.setSelectedItem(" "); //Set initial to default item
    //--Add the furnList to its box for placement in the JPanel
    furnListBox = Box.createHorizontalBox();
    furnListBox.add(Box.createHorizontalStrut(5));
    furnListBox.add(furnListLabel); //Adding the combo box label
    furnListBox.add(furnList); //Adding the combo box
    furnListBox.add(Box.createHorizontalStrut(5)); //Spacing
    //-------------------------------- Start Dimensions Components
    //----Setting up the xField
    xField.setEnabled(false); //Disabled at start
    xField.setFocusTraversalKeysEnabled(false); //Disabling the Tab Key
    //----Adding the event listeners
    xField.addActionListener(new XTextProcessor()); //Enter Key
    xField.addMouseListener(new ClickProcessor()); //Mouse Click
    //--Add the xField to its box for placement in the dimensionsBox
    xFieldBox = Box.createHorizontalBox();
    xFieldBox.add(Box.createHorizontalStrut(10)); //Spacing
    xFieldBox.add(Box.createGlue()); //Take up extra space
    xFieldBox.add(xFieldLabel); //Adding the text field label
    xFieldBox.add(xField); //Adding the text field
    xFieldBox.add(Box.createHorizontalStrut(100)); //Spacing
    //----Setting up the yfield
    yField.setEnabled(false); //Disabled at start
    yField.setFocusTraversalKeysEnabled(false); //Disabling TAB KEY
    //----Adding the event listeners
    yField.addActionListener(new YTextProcessor()); //Enter Key
    yField.addMouseListener(new ClickProcessor()); //Mouse Click
    //--Add the yField to its box for placement in the dimensionsBox
    yFieldBox = Box.createHorizontalBox();
    yFieldBox.add(Box.createHorizontalStrut(10)); //Spacing
    yFieldBox.add(Box.createGlue()); //Take up extra space
    yFieldBox.add(yFieldLabel); //Adding the text field label
    yFieldBox.add(yField); //Adding the text field
    yFieldBox.add(Box.createHorizontalStrut(100)); //Spacing
    //----Setting up the zfield
    zField.setEnabled(false); //Disabled at start
    zField.setFocusTraversalKeysEnabled(false); //Disabling TAB KEY
    //----Adding the event listeners
    zField.addActionListener(new ZTextProcessor()); //Enter Key
    zField.addMouseListener(new ClickProcessor()); //Mouse Click
    //--Add the zField to its box for placement in the dimensionsBox
    zFieldBox = Box.createHorizontalBox();
    zFieldBox.add(Box.createHorizontalStrut(10)); //Spacing
    zFieldBox.add(Box.createGlue()); //Take up extra space
    zFieldBox.add(zFieldLabel); //Adding the text field label
    zFieldBox.add(zField); //Adding the text field
    zFieldBox.add(Box.createHorizontalStrut(100)); //Spacing
    //----Adding all dimension components to the dimensionsBox
    dimensionsBox = Box.createVerticalBox();
    dimensionsBox.add(xFieldBox); //Adding the xFieldBox
    dimensionsBox.add(Box.createVerticalStrut(10)); //Spacing
    dimensionsBox.add(yFieldBox); //Adding the yFieldBox
    dimensionsBox.add(Box.createVerticalStrut(10)); //Spacing
    dimensionsBox.add(zFieldBox); //Adding the zFieldBox
    //-------------------------------- End Dimension Components
    //----Setting up the clearButton
    clearButton.setEnabled(false); //Disabled at start
    //----Adding the event listener
    clearButton.addActionListener(new ClearProcessor());
    //--Add the clear button to its box for placement
    clearBox = Box.createHorizontalBox();
    clearBox.add(Box.createHorizontalStrut(5)); //Spacing
    clearBox.add(clearButton); //Adding the clearButton
    //----Setting up the buildButton
    buildButton.setEnabled(false); //Disabled at start
    //--Add the action listener here
    buildBox = Box.createHorizontalBox();
    buildBox.add(buildButton); //Adding the buildButton
    buildBox.add(Box.createHorizontalStrut(5)); //Spacing
    //----Adding both buttons the buttonsBox
    buttonsBox = Box.createHorizontalBox();
    buttonsBox.add(clearBox); //Adding the clearBox
    buttonsBox.add(Box.createHorizontalStrut(10)); //Spacing
    buttonsBox.add(buildBox); //Adding the buildBox
    //----Create the JPanel (dimensionsPanel)
    //--Creating the main box to be added to the JPanel
    panelBox = Box.createVerticalBox();
    panelBox.add(furnListBox); //Adding the furnListBox components
    panelBox.add(Box.createVerticalStrut(10)); //Spacing
    panelBox.add(dimensionsBox); //Adding the dimensionBox components
    panelBox.add(Box.createVerticalStrut(10)); //Spacing
    panelBox.add(buttonsBox); //Adding the buttonsBox components
    panelBox.add(Box.createVerticalStrut(10)); //Spacing
    dimensionsPanel.add(panelBox); //Adding all components to the JPanel
    System.out.println("end dimensionpanel");
    }//end DimensionsPanel()
    //------ActionListeners
    }//end class DimensionsPanel extends JPanel

  • How do I get iTunes to look for music on my computer

    Here's the problem: So on my old HP laptop I had around 5500 song files saved/stored in various locations all compiled for easy access through iTunes, as in I could access all of them there; standard, no problems, what everyone expects.
    On it's last limb I completely backed the computer's C drive contents to an external harddrive. What I didn't expect was that there would be no organizational structure of the backup: merely 3 folders each containing a series of ~50-300 subfolders of backed up content (zipped, at that time, mind you). Around 88 GB in all, which is interesting because it was 140GB in size on the hp before being backed up.
    Towards the process of unzipping all of them, I unzipped only the very first sub folder which contained around 50 song files (this isn't to say each folder just has songs; there's tons of other random files ranging from documents to programs to random coding) before opening iTunes for the first time.
    This part is critical to understanding my issue. When I opened iTunes for the very first time and it was initializing its components, doing a startup etc., I had only unzipped that one folder; none of the hundreds of others had yet been unloaded onto my mac's harddrive and viewable as downloads.
    During the guided installation process iTunes prompted me at one point and asked if it wanted to "search for music already on this computer" or something like that. I said yes and it seamlessly uploaded the 50 or so songs.
    The problem is I wish I had waited until I unziped everything because I don't know how to access that feature again, in that I do not want to manually dig through each download folder and upload songs individually when I know there's a feature that can look through my computer's hard drive for me and upload mp3 and similar files in a fraction on an instant. For example, when I downloaded and opened Spotify, it did this on it's own (although it included a bunch of duplicate files so there's around 7700). Some may question why I don't just use Spotify for my library then and I'd respond by saying I don't like it, I'm not used to it, and iTunes is more compatible/easier to customize, create playlists, sync with iPhone, iPod, etc.
    I've even tried completely uninstalling and reinstalling iTunes (using this method: http://www.iclarified.com/entry/index.php?enid=4045) to no avail; once I opened it again for the first time after reinstallation it already has included only those ~50 songs and doesn't prompt that "search for music on this computer" feature or whatever. I actually think that feature accompanied my mac as a startup, when I started the computer for the first time from factory settings.
    I'm hesitant to completely wipe my computer because one, I've already been using it for a couple weeks and don't want to do another back up (I'm not very mac savvy if you can't already tell) and two I don't even know if that will work.
    I want all my songs from my computer all accessible to one area: iTunes. Please help!

    In itunes preferences, Advanced make sure the two following options are checked
    Keep Itunes Media Folder organised
    Copy files to itunes Media folder when adding to library
    The box above that should have your iTunes Media folder path
    /Users/username/Music/iTunes/itunes Media.
    If you still have the original 50 songs on your harddrive delete them form itunes. Then drag your external Hard Drive icon into itunes  and it should identify and copy all your music files to your new machines.
    Check that everything is there then you can do a freah backup to the external drive with everything in its correct folder

  • Adobe Photoshop CS3 crashing on start-up

    When starting Photoshop CS3, I can get all the way to the "Initializing shared components" message before the program crashes and has to close. It does this during every start-up. The only major changes I made before the problem began was I uninstalled a Microsoft Office trial version, and also installed Vista Service Pack 1. Does anyone know of a way to fix it?
    System details:
    Microsoft Windows Vista Home Premium Service Pack 1 (32 bit)
    1GB RAM
    Adobe Photoshop CS3 Extended V.10.0

    Try resetting your preferences as described in the FAQ.
    http://www.adobeforums.com/webx/.ef4a07f/1
    You either have to physically delete (or rename) the preference files or, if using the Alt, Ctrl, and Shift method, be sure that you get a confirmation dialog.
    This resets all settings in Photoshop to factory defaults.

  • How can I run a custom program ASYNCHRONOUSLY when booting WinPE?

    I have a custom application that I want to have running during WinPE for my Litetouch deployments. I had this working in SCCM and now I want to get it working in MDT.
    I have the Netcheck.exe application in my Extras folder, it ends up on the root of my X: drive.
    Here is my unattend.xml file.
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <settings pass="windowsPE">
            <component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
                <Display>
                    <ColorDepth>32</ColorDepth>
                    <HorizontalResolution>1024</HorizontalResolution>
                    <RefreshRate>60</RefreshRate>
                    <VerticalResolution>768</VerticalResolution>
                </Display>
    <RunAsynchronous>
    <RunAsynchronousCommand>
    <Order>1</Order>
    <Path>X:\NetCheck.exe</Path>
    <Description>Run the NetCheck app</Description>
    </RunAsynchronousCommand>
    <RunAsynchronousCommand>
    <Order>2</Order>
    <Path>wscript.exe X:\Deploy\Scripts\LiteTouch.wsf</Path>
    <Description>Lite Touch PE</Description>
    </RunAsynchronousCommand>
    </RunAsynchronous>
            </component>
        </settings>
        <cpi:offlineImage cpi:source="" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>
    By default, the Litetouch.wsf file is launched synchronously, and so my Netcheck app won't run until the Litetouch wizard closes (this won't work for my needs). Also, synchronous commands are run before Asynchronous commands.  Therefore, I need to run
    both my custom Netcheck app and the Litetouch wizard Asynchronously.
    However, every time I use the unattend file that I pasted above, WinPE boots and then immediately reboots. If I am quick and hit F8 I get a command prompt, and then my Netcheck app and the Litetouch wizard both run (sweet!), but then when I close that cmd
    prompt, WinPE shuts down (lame).
    The wpeinit.log is shown below. Everything seems to look good, so what is wrong? How can I accomplish this?
    2014-09-09 14:23:02.588, Info      WPEINIT is processing the unattend file [X:\unattend.xml]
    2014-09-09 14:23:02.588, Info      Spent 141ms initializing removable media before unattend search
    2014-09-09 14:23:02.604, Info      ==== Initializing Display Settings ====
    2014-09-09 14:23:02.620, Info      Setting display resolution 1024x768x32@60: 0x00000000
    2014-09-09 14:23:02.620, Info      STATUS: SUCCESS (0x00000000)
    2014-09-09 14:23:02.620, Info      ==== Initializing Computer Name ====
    2014-09-09 14:23:02.620, Info      Generating a random computer name
    2014-09-09 14:23:02.620, Info      No computer name specified, generating a random name.
    2014-09-09 14:23:02.620, Info      Renaming computer to MININT-9KBBIFF.
    2014-09-09 14:23:02.620, Info      Waiting on the profiling mutex handle
    2014-09-09 14:23:02.620, Info      Acquired profiling mutex
    2014-09-09 14:23:02.620, Info      Service winmgmt disable: 0x00000000
    2014-09-09 14:23:02.620, Info      Service winmgmt stop: 0x00000000
    2014-09-09 14:23:02.620, Info      Service winmgmt enable: 0x00000000
    2014-09-09 14:23:02.620, Info      Released profiling mutex
    2014-09-09 14:23:02.620, Info      STATUS: SUCCESS (0x00000000)
    2014-09-09 14:23:02.620, Info      ==== Initializing Virtual Memory Paging File ====
    2014-09-09 14:23:02.620, Info      No WinPE page file setting specified
    2014-09-09 14:23:02.635, Info      STATUS: SUCCESS (0x00000001)
    2014-09-09 14:23:02.635, Info      ==== Initializing Optional Components ====
    2014-09-09 14:23:02.635, Info      WinPE optional component 'Microsoft-WinPE-HTA' is present
    2014-09-09 14:23:02.651, Info      WinPE optional component 'Microsoft-WinPE-MDAC' is present
    2014-09-09 14:23:02.651, Info      WinPE optional component 'Microsoft-WinPE-WMI' is present
    2014-09-09 14:23:02.667, Info      WinPE optional component 'Microsoft-WinPE-WSH' is present
    2014-09-09 14:23:02.682, Info      STATUS: SUCCESS (0x00000000)
    2014-09-09 14:23:02.682, Info      ==== Initializing Network Access and Applying Configuration ====
    2014-09-09 14:23:02.682, Info      No EnableNetwork unattend setting was specified; the default action for this context is to enable networking support.
    2014-09-09 14:23:02.682, Info      Global handle for profiling mutex is non-null
    2014-09-09 14:23:02.682, Info      Waiting on the profiling mutex handle
    2014-09-09 14:23:02.682, Info      Acquired profiling mutex
    2014-09-09 14:23:02.997, Info      Install MS_MSCLIENT: 0x0004a020
    2014-09-09 14:23:02.997, Info      Install MS_NETBIOS: 0x0004a020
    2014-09-09 14:23:03.138, Info      Install MS_SMB: 0x0004a020
    2014-09-09 14:23:03.326, Info      Install MS_TCPIP6: 0x0004a020
    2014-09-09 14:23:03.702, Info      Install MS_TCPIP: 0x0004a020
    2014-09-09 14:23:03.702, Info      Service dhcp start: 0x00000000
    2014-09-09 14:23:03.702, Info      Service lmhosts start: 0x00000000
    2014-09-09 14:23:03.827, Info      Service ikeext start: 0x00000000
    2014-09-09 14:23:03.921, Info      Service mpssvc start: 0x00000000
    2014-09-09 14:23:03.921, Info      Service mrxsmb10 start: 0x00000000
    2014-09-09 14:23:03.921, Info      Released profiling mutex
    2014-09-09 14:23:03.921, Info      Spent 1250ms installing network components
    2014-09-09 14:23:04.108, Info      Installing device root\kdnic X:\windows\INF\kdnic.inf succeeded
    2014-09-09 14:23:04.608, Info      Installing device vmbus\{f8615163-df3e-46c5-913f-f2d2f965ed0e} X:\windows\INF\wnetvsc.inf succeeded
    2014-09-09 14:23:04.670, Info      Spent 750ms installing network drivers
    2014-09-09 14:23:09.768, Info      QueryAdapterStatus: found operational adapter with DHCP address assigned.
    2014-09-09 14:23:09.768, Info      Spent 5062ms confirming network initialization; status 0x00000000
    2014-09-09 14:23:09.768, Info      STATUS: SUCCESS (0x00000000)
    2014-09-09 14:23:09.768, Info      ==== Applying Firewall Settings ====
    2014-09-09 14:23:09.768, Info      STATUS: SUCCESS (0x00000001)
    2014-09-09 14:23:09.768, Info      ==== Executing Synchronous User-Provided Commands ====
    2014-09-09 14:23:09.768, Info      STATUS: SUCCESS (0x00000001)
    2014-09-09 14:23:09.768, Info      ==== Executing Asynchronous User-Provided Commands ====
    2014-09-09 14:23:09.768, Info      Parsing RunAsynchronousCommand: 2 entries
    2014-09-09 14:23:09.768, Info        Command 0: 0x00000000
    2014-09-09 14:23:09.768, Info      Successfully executed command 'X:\NetCheck.exe'
    2014-09-09 14:23:09.768, Info        Command 1: 0x00000000
    2014-09-09 14:23:09.784, Info      Successfully executed command 'wscript.exe X:\Deploy\Scripts\LiteTouch.wsf'
    2014-09-09 14:23:09.784, Info      STATUS: SUCCESS (0x00000000)
    2014-09-09 14:23:09.784, Info      ==== Applying Shutdown Settings ====
    2014-09-09 14:23:09.784, Info      No shutdown setting was specified
    2014-09-09 14:23:09.784, Info      STATUS: SUCCESS (0x00000001)

    Here is how i ended up solving my problem.
    Change the unattend file to look like this:
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="windowsPE">
    <component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
    <Display>
    <ColorDepth>32</ColorDepth>
    <HorizontalResolution>1024</HorizontalResolution>
    <RefreshRate>60</RefreshRate>
    <VerticalResolution>768</VerticalResolution>
    </Display>
    <RunSynchronous>
    <RunSynchronousCommand>
    <Order>1</Order>
    <Path>wscript.exe X:\Deploy.vbs</Path>
    <Description>Run the .vbs file that kicks off Netcheck and the Litetouch wizard</Description>
    </RunSynchronousCommand>
    </RunSynchronous>
    </component>
    </settings>
    <cpi:offlineImage cpi:source="" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>
    Here is the Deploy.vbs:
    Set objShell = Wscript.CreateObject("Wscript.shell")
    objShell.Run "X:\Netcheck.exe", 0, false
    objShell.Run "wscript.exe X:\Deploy\Scripts\LiteTouch.wsf", 0, true

  • SOA server not starting - log attached

    These are the messages I see in the log :
    <Sep 29, 2011 3:11:47 PM IST> <Emergency> <Management> <BEA-141151> <The admin server could not be reached at http://HGUDIKAN-pc:7001.>
    <Sep 29, 2011 3:11:47 PM IST> <Info> <Configuration Management> <BEA-150018> <This server is being started in managed server independence mode in the absence of the admin server.>
    Logs:
    <Sep 29, 2011 3:11:47 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Sep 29, 2011 3:11:47 PM IST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Sep 29, 2011 3:11:48 PM IST> <Notice> <LoggingService> <BEA-320400> <The log file C:\Oracle\Middleware\user_projects\domains\base_domain\servers\soa_server1\logs\soa_server1.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Sep 29, 2011 3:11:48 PM IST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Oracle\Middleware\user_projects\domains\base_domain\servers\soa_server1\logs\soa_server1.log00004. Log messages will continue to be logged in C:\Oracle\Middleware\user_projects\domains\base_domain\servers\soa_server1\logs\soa_server1.log.>
    <Sep 29, 2011 3:11:48 PM IST> <Notice> <Log Management> <BEA-170019> <The server log file C:\Oracle\Middleware\user_projects\domains\base_domain\servers\soa_server1\logs\soa_server1.log is opened. All server side log events will be written to this file.>
    <Sep 29, 2011 3:11:55 PM IST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Sep 29, 2011 3:12:14 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Sep 29, 2011 3:12:14 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    bpel.fatal.conection.max.retry is set to 3
    INFO: FaultPoliciesParser.<init> ------->Constructed Policy parser
    DiagnosticService java logger init
    DiagnosticService finish
    <Sep 29, 2011 3:24:06 PM IST> <Warning> <oracle.as.jmx.framework.MessageLocalizationHelper> <J2EE JMX-46041> <The resource for bundle "oracle.soa.management.config.bpel.mbeans.MessageBundle_en" with key "oracle.soa.BPELConfigBean.auditFlushEventThreshold" cannot be found.>
    <Sep 29, 2011 3:24:06 PM IST> <Warning> <oracle.as.jmx.framework.MessageLocalizationHelper> <J2EE JMX-46041> <The resource for bundle "oracle.soa.management.config.bpel.mbeans.MessageBundle_en" with key "oracle.soa.BPELConfigBean.auditFlushByteThreshold" cannot be found.>
    INFO: SSLSocketFactoryManagerImpl.getKeystoreLocation SOA Keystore location: C:/Oracle/MIDDLE~1/USER_P~1/domains/BASE_D~1/config/fmwconfig/default-keystore.jks
    INFO: SSLSocketFactoryManagerImpl.getKeystorePassword Obtained null or empty keystore password
    INFO: SSLSocketFactoryManagerImpl.getKeyPassword Obtained null or empty key password
    INFO: SSLSocketFactoryManagerImpl.getSSLSocketFactory Could not obtain keystore location or password
    Initializing logs...Ok
    Initializing UploadDir...Ok
    Initializing PAPI services...Ok
    Initializing Renderer Components...Ok
    Loading Preference Migrators...Ok
    ********* WorkSpace was initialized successfully *********
    ADF Library non-OC4J post-deployment (millis): 891
    <Sep 29, 2011 3:24:46 PM IST> <Warning> <oracle.soa.services.notification> <BEA-000000> <<.> Notification via email, voice, SMS or IM will not be sent. If you would like to enable them, please configure corresponding sdpmessaging driver. Then modify the accounts and set NotificationMode attribute to either NONE, EMAIL or ALL in workflow-notification-config.xml>
    <Sep 29, 2011 3:24:58 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Sep 29, 2011 3:24:58 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <Sep 29, 2011 3:25:01 PM IST> <Warning> <Log Management> <BEA-170011> <The LogBroadcaster on this server failed to broadcast log messages to the admin server. The Admin server may not be running. Message broadcasts to the admin server will be disabled.>
    <Sep 29, 2011 3:25:09 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 10.178.38.206:8001 for protocols iiop, t3, ldap, snmp, http.>
    <Sep 29, 2011 3:25:09 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on 127.0.0.1:8001 for protocols iiop, t3, ldap, snmp, http.>
    <Sep 29, 2011 3:25:09 PM IST> <Notice> <WebLogicServer> <BEA-000357> <Started WebLogic Independent Managed Server "soa_server1" for domain "base_domain" running in Development Mode>
    <Sep 29, 2011 3:25:09 PM IST> <Warning> <JMX> <BEA-149510> <Unable to establish JMX Connectivity with the Adminstration Server AdminServer at <JMXServiceURL:null>.>
    <Sep 29, 2011 3:25:15 PM IST> <Warning> <EJB> <BEA-010081> <The message-driven bean CubeActionMDB was configured to use a JMS Topic, requires container-managed transactions, and uses a foreign JMS provider. Only one thread will be used to receive and process all messages.>
    <Sep 29, 2011 3:25:15 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Sep 29, 2011 3:25:15 PM IST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    INFO: SSLSocketFactoryManagerImpl.getKeystoreLocation SOA Keystore location: C:/Oracle/MIDDLE~1/USER_P~1/domains/BASE_D~1/config/fmwconfig/default-keystore.jks
    looking up version 11.1.1.3.0
    SchemaVersion actual dbVersion=11.1.1.3.0, expected dbVersion=11.1.1.3.0
    <Sep 29, 2011 3:25:56 PM IST> <Warning> <oracle.jps.idmgmt> <JPS-01520> <Cannot initialize identity store.>
    <Sep 29, 2011 3:25:59 PM IST> <Error> <oracle.bpm.services.organization> <BEA-000000> <Exception
    exception.70692.type: error
    exception.70692.severity: 2
    exception.70692.name: Error while granting BPMOrganizationAdmin role to SOAOperator.
    exception.70692.description: Error occured while granting the application role BPMOrganizationAdmin to application role SOAOperator.
    exception.70692.fix: In the policy store, please add SOAOperator role as a member of BPMOrganizationAdmin role, if it is not already present.
    ORABPEL-10585
    Service error.
    Internal Error; Service error occurs in JpsProvider in method getIdentityStore().
    Refer to the log file that is configured for oracle.soa.services.identity for more details on this error and contact Oracle Support Services
         at oracle.tip.pc.services.identity.jps.JpsProvider.getIdentityStore(JpsProvider.java:335)
         at oracle.tip.pc.services.identity.jps.JpsProvider.init(JpsProvider.java:308)
    Caused By: oracle.security.jps.service.idstore.IdentityStoreException: JPS-01520: Cannot initialize identity store.
         at oracle.security.jps.internal.idstore.util.IdentityStoreUtil.getIdentityStoreFactory(IdentityStoreUtil.java:161)
         at oracle.security.jps.internal.idstore.AbstractIdmIdentityStore.getIdmFactory(AbstractIdmIdentityStore.java:160)
    >
    <Sep 29, 2011 3:25:59 PM IST> <Error> <oracle.bpm.common> <BEA-000000> <Exception BPM-70692
    Exception
    exception.70692.type: error
    exception.70692.severity: 2
    exception.70692.name: Error while granting BPMOrganizationAdmin role to SOAOperator.
    exception.70692.description: Error occured while granting the application role BPMOrganizationAdmin to application role SOAOperator.
    exception.70692.fix: In the policy store, please add SOAOperator role as a member of BPMOrganizationAdmin role, if it is not already present.
         at oracle.bpm.bpmn.engine.runtime.DeploymentDescriptorUtil.grantBPMOrganizationAdminRoleToSOAOperator(DeploymentDescriptorUtil.java:317)
         at oracle.bpm.bpmn.engine.service.BPMNServiceEngine.stateChanged(BPMNServiceEngine.java:584)
    Caused By: ORABPEL-10585
    Service error.
    Internal Error; Service error occurs in JpsProvider in method getIdentityStore().
    Refer to the log file that is configured for oracle.soa.services.identity for more details on this error and contact Oracle Support Services
         at oracle.tip.pc.services.identity.jps.JpsProvider.getIdentityStore(JpsProvider.java:335)
    Caused By: oracle.security.jps.service.idstore.IdentityStoreException: JPS-01520: Cannot initialize identity store.
    >
    INFO: FabricProviderServlet.stateChanged SOA Platform is running and accepting requests
    <Sep 29, 2011 3:27:16 PM IST> <Notice> <LoggingService> <BEA-320400> <The log file C:\Oracle\Middleware\user_projects\domains\base_domain\servers\soa_server1\logs\soa_server1.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Sep 29, 2011 3:27:16 PM IST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Oracle\Middleware\user_projects\domains\base_domain\servers\soa_server1\logs\soa_server1.log00005. Log messages will continue to be logged in C:\Oracle\Middleware\user_projects\domains\base_domain\servers\soa_server1\logs\soa_server1.log.>
    <Sep 29, 2011 5:54:49 PM IST> <Notice> <WebLogicServer> <BEA-000388> <JVM called WLS shutdown hook. The server will force shutdown now>
    <Sep 29, 2011 5:54:49 PM IST> <Alert> <WebLogicServer> <BEA-000396> <Server shutdown has been requested by <WLS Kernel>>
    <Sep 29, 2011 5:54:49 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SUSPENDING>
    <Sep 29, 2011 5:54:49 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Sep 29, 2011 5:54:49 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    <Sep 29, 2011 5:54:49 PM IST> <Notice> <Server> <BEA-002607> <Channel "Default" listening on 10.178.38.206:8001 was shutdown.>
    <Sep 29, 2011 5:54:49 PM IST> <Notice> <Server> <BEA-002607> <Channel "Default[1]" listening on 127.0.0.1:8001 was shutdown.>
    [TopLink Info]: 2011.09.29 17:54:56.906--ServerSession(26407552)--deferred_session logout successful
    [TopLink Info]: 2011.09.29 17:54:56.906--ServerSession(31983070)--tracking_session logout successful

    Is the NodeManager , AdminServer running ?The NodeManager is not running. Is it required?
    Also, I haven't closed the command prompt.
    I noticed the issue when I tried to deploy my project. Connected to Localhost/7001 but in the deploy project window, I dont see any soa_server instance
    running. Also, in the console the soa_server status is shutdown.

  • Error during Component Deployment Validation

    Windows 2008 SP2 64-bit server running JBoss and LiveCycle ES2 SP1 after installing SP2, running the Configuration Manager, I get the following error in the LiveCycle Component Deployment Validation stage:
    adobe-usermanager-dsc.jar is deployed but is not currently running
    adobe-usermanager-jit-dsc.jar is deployed but is not currently running
    Then validation completes.
    If I go onto the Configure PDF Generator ES2 step, it doesn't have my previously configured user credentials for multi-threaded native conversions, and if I attempt to add any I get:
    An error occurred while adding user. See LCM logs for details.
    Swapping over to the admin webpage, there are no longer any users listed under PDFG User Accounts, in fact that page has this error in the moddle
    ALC-PDG-001-000-Conversion of the input file failed because of an exception.
    And no users or profiles in Settings -> Trust Store Management -> User and Password Credentials. Adding a profile here gives:
    An error has occurred. Please see error log for details.
    If I go into Services -> Applications and Services -> Service Management, and filter for Stopped services, I can see four usermanager services stopped; AuthorizationManagerService, DirectoryManagerService, SPIRegistrationService and AuthenticationManagerService. Selecting any of these and trying to Start them gives:
    ALC-AAC-0017-000: Service(s) failed to start. It could be configuration problem

    Server.log
    2011-02-01 17:30:52,630 INFO  [com.arjuna.ats.jbossatx.jta.TransactionManagerService] JBossTS Transaction Service (JTA version) - JBoss Inc.
    2011-02-01 17:30:52,630 INFO  [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Setting up property manager MBean and JMX layer
    2011-02-01 17:30:52,786 INFO  [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Starting recovery manager
    2011-02-01 17:30:52,849 INFO  [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Recovery manager started
    2011-02-01 17:30:52,864 INFO  [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Binding TransactionManager JNDI Reference
    2011-02-01 17:30:55,115 INFO  [org.jboss.ejb3.EJB3Deployer] Starting java:comp multiplexer
    2011-02-01 17:30:56,771 INFO  [org.jboss.ws.core.server.ServiceEndpointManager] jbossws-1.2.1.GA (build=200704151756)
    2011-02-01 17:30:57,396 INFO  [org.jboss.jmx.adaptor.snmp.agent.SnmpAgentService] SNMP agent going active
    2011-02-01 17:30:57,990 INFO  [org.jboss.iiop.CorbaNamingService] Naming: [IOR:000000000000002B49444C3A6F6D672E6F72672F436F734E616D696E672F4E616D696E67436F6E746578 744578743A312E3000000000000200000000000000E8000102000000000D31302E32302E32312E31373000000D C8000000114A426F73732F4E616D696E672F726F6F74000000000000050000000000000008000000004A414300 000000010000001C00000000050100010000000105010001000101090000000105010001000000210000006000 000000000000010000000000000024000000200000007E00000000000000010000000D31302E32302E32312E31 373000000DC9004000000000000000000010040100080606678102010101000000000000000000000000000000 00000000000000002000000004000000000000001F000000040000000300000001000000200000000000000002 0000002000000004000000000000001F0000000400000003]
    2011-02-01 17:30:58,021 WARN  [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.transaction.arjunacore.lastResource.startupWarning] [com.arjuna.ats.internal.jta.transaction.arjunacore.lastResource.startupWarning] You have chosen to enable multiple last resources in the transaction manager. This is transactionally unsafe and should not be relied upon.
    2011-02-01 17:30:58,037 INFO  [org.jboss.tm.iiop.CorbaTransactionService] TransactionFactory: [IOR:000000000000003049444C3A6F72672F6A626F73732F746D2F69696F702F5472616E73616374696F6E46 6163746F72794578743A312E30000000000200000000000000E8000102000000000D31302E32302E32312E3137 3000000DC8000000144A426F73732F5472616E73616374696F6E732F4600000005000000000000000800000000 4A414300000000010000001C000000000501000100000001050100010001010900000001050100010000002100 00006000000000000000010000000000000024000000200000007E00000000000000010000000D31302E32302E 32312E31373000000DC90040000000000000000000100401000806066781020101010000000000000000000000 0000000000000000000000002000000004000000000000001F0000000400000003000000010000002000000000 000000020000002000000004000000000000001F0000000400000003]
    2011-02-01 17:30:58,427 INFO  [org.apache.catalina.core.AprLifecycleListener] The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Program Files\Java\jdk1.6.0_19\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Wi ndows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\Windows Imaging\;D:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files (x86)\Common Files\Adobe\AGL
    2011-02-01 17:30:58,537 INFO  [org.apache.coyote.http11.Http11Protocol] Initializing Coyote HTTP/1.1 on http-10.20.21.170-8080
    2011-02-01 17:30:58,537 INFO  [org.apache.coyote.ajp.AjpProtocol] Initializing Coyote AJP/1.3 on ajp-10.20.21.170-8009
    2011-02-01 17:30:58,537 INFO  [org.apache.catalina.startup.Catalina] Initialization processed in 232 ms
    2011-02-01 17:30:58,537 INFO  [org.apache.catalina.core.StandardService] Starting service jboss.web
    2011-02-01 17:30:58,537 INFO  [org.apache.catalina.core.StandardEngine] Starting Servlet Engine: JBossWeb/2.0.0.GA
    2011-02-01 17:30:58,568 INFO  [org.apache.catalina.startup.Catalina] Server startup in 29 ms
    2011-02-01 17:30:58,646 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/, warUrl=.../deploy/jboss-web.deployer/ROOT.war/
    2011-02-01 17:30:59,115 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/invoker, warUrl=.../deploy/httpha-invoker.sar/invoker.war/
    2011-02-01 17:30:59,334 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/jbossws, warUrl=.../tmp/deploy/tmp1594363530041496429jbossws-context-exp.war/
    2011-02-01 17:30:59,568 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/juddi, warUrl=.../deploy/juddi-service.sar/juddi.war/
    2011-02-01 17:30:59,646 INFO  [org.apache.juddi.registry.RegistryServlet] Loading jUDDI configuration.
    2011-02-01 17:30:59,677 INFO  [org.apache.juddi.registry.RegistryServlet] Resources loaded from: /WEB-INF/juddi.properties
    2011-02-01 17:30:59,677 INFO  [org.apache.juddi.registry.RegistryServlet] Initializing jUDDI components.
    2011-02-01 17:30:59,990 INFO  [org.jboss.mail.MailService] Mail Service bound to java:/Mail
    2011-02-01 17:31:00,646 INFO  [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-ha-local-jdbc.rar
    2011-02-01 17:31:00,678 INFO  [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-ha-xa-jdbc.rar
    2011-02-01 17:31:00,787 INFO  [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-local-jdbc.rar
    2011-02-01 17:31:00,818 INFO  [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-xa-jdbc.rar
    2011-02-01 17:31:00,849 INFO  [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/quartz-ra.rar
    2011-02-01 17:31:00,865 INFO  [org.jboss.resource.adapter.quartz.inflow.QuartzResourceAdapter] start quartz!!!
    2011-02-01 17:31:00,912 INFO  [org.quartz.simpl.SimpleThreadPool] Job execution threads will use class loader of thread: main
    2011-02-01 17:31:00,928 INFO  [org.quartz.core.QuartzScheduler] Quartz Scheduler v.1.6.0 created.
    2011-02-01 17:31:00,928 INFO  [org.quartz.simpl.RAMJobStore] RAMJobStore initialized.
    2011-02-01 17:31:00,928 INFO  [org.quartz.impl.StdSchedulerFactory] Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'
    2011-02-01 17:31:00,928 INFO  [org.quartz.impl.StdSchedulerFactory] Quartz scheduler version: 1.6.0
    2011-02-01 17:31:00,928 INFO  [org.quartz.core.QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
    2011-02-01 17:31:01,099 INFO  [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=IDP_DS' to JNDI name 'java:IDP_DS'
    2011-02-01 17:31:01,099 INFO  [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=EDC_DS' to JNDI name 'java:EDC_DS'
    2011-02-01 17:31:01,099 INFO  [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=CTA_DS' to JNDI name 'java:CTA_DS'
    2011-02-01 17:31:01,178 INFO  [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
    2011-02-01 17:31:02,271 INFO  [org.jboss.deployment.EARDeployer] Init J2EE application: file:/D:/jboss/server/lc_sqlserver/deploy/adobe-assembler-ivs.ear
    2011-02-01 17:31:02,412 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/Assembler, warUrl=.../tmp/deploy/tmp8865139024421213565adobe-assembler-ivs.ear-contents/adobe-assemb ler-ivs-exp.war/
    2011-02-01 17:31:02,506 INFO  [org.jboss.deployment.EARDeployer] Started J2EE application: file:/D:/jboss/server/lc_sqlserver/deploy/adobe-assembler-ivs.ear
    2011-02-01 17:31:04,678 INFO  [org.jboss.deployment.EARDeployer] Init J2EE application: file:/D:/jboss/server/lc_sqlserver/deploy/adobe-livecycle-jboss.ear
    2011-02-01 17:31:07,787 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for adobe-dscf.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:07,928 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:08,319 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:08,663 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for adobe-dscf.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:08,756 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:08,881 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:09,100 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for adobe-dscf.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:09,163 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:09,319 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:09,459 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:09,710 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for adobe-ejb-receiver.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:11,913 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:12,100 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:12,257 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:12,397 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:12,553 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:12,741 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:12,991 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:13,163 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for adobe-wkf.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:13,366 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:13,585 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:13,679 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for adobe-wkf.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:13,944 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:14,225 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:51,321 INFO  [org.jboss.ejb.EjbModule] Deploying AdobeIDP2UI_AACComponent
    2011-02-01 17:31:51,618 INFO  [org.jboss.ejb.EjbModule] Deploying AdobeIDP2UI_CoreSystemConfigComponent
    2011-02-01 17:31:51,743 INFO  [org.jboss.ejb.EjbModule] Deploying AdobeIDP2UI_HealthMonitorComponent
    2011-02-01 17:31:51,821 INFO  [org.jboss.ejb.EjbModule] Deploying SessionBundle
    2011-02-01 17:31:52,305 INFO  [org.jboss.ejb.EjbModule] Deploying AdobeIDP2UI_TrustStoreComponent
    2011-02-01 17:31:52,384 INFO  [org.jboss.ejb.EjbModule] Deploying CoreInitializer
    2011-02-01 17:31:52,431 INFO  [org.jboss.ejb.EjbModule] Deploying DocumentManagerEJB
    2011-02-01 17:31:52,524 INFO  [org.jboss.ejb.EjbModule] Deploying DSCInitializerBeanLocalEJB
    2011-02-01 17:31:52,524 INFO  [org.jboss.ejb.EjbModule] Deploying DSCInitializerBeanRemoteEJB
    2011-02-01 17:31:52,618 INFO  [org.jboss.ejb.EjbModule] Deploying EjbTransactionCMTAdapter
    2011-02-01 17:31:52,634 INFO  [org.jboss.ejb.EjbModule] Deploying EjbTransactionBMTAdapter
    2011-02-01 17:31:52,759 INFO  [org.jboss.ejb.EjbModule] Deploying Invocation
    2011-02-01 17:31:52,790 INFO  [org.jboss.ejb.EjbModule] Deploying AdobeIDP2UI_OutputAdmin
    2011-02-01 17:31:52,852 INFO  [org.jboss.ejb.EjbModule] Deploying OutputConfigEJB
    2011-02-01 17:31:53,181 INFO  [org.jboss.ejb.EjbModule] Deploying AdobeIDP2UI_PGUIComponent
    2011-02-01 17:31:53,759 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFSequenceGeneratorEJB
    2011-02-01 17:31:53,759 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFDataDictionaryLocalEJB
    2011-02-01 17:31:53,759 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFDataDictionaryRemoteEJB
    2011-02-01 17:31:53,774 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFSchemaManagerLocalEJB
    2011-02-01 17:31:53,868 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFSchemaManagerRemoteEJB
    2011-02-01 17:31:53,868 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFObjectManagerLocalEJB
    2011-02-01 17:31:53,868 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFObjectManagerRemoteEJB
    2011-02-01 17:31:53,868 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFDeletionProcessorEJB
    2011-02-01 17:31:53,977 INFO  [org.jboss.ejb.EjbModule] Deploying RepositoryUrlDataProvider
    2011-02-01 17:31:53,993 INFO  [org.jboss.ejb.EjbModule] Deploying XappstoreUrlDataProvider
    2011-02-01 17:31:54,087 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_AdminManagerEJB
    2011-02-01 17:31:54,118 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_WorkflowInitializerEJB
    2011-02-01 17:31:54,165 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_WorkflowServiceMessageBeanLocalEJB
    2011-02-01 17:31:54,321 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_ProcessManagerLocalEJB
    2011-02-01 17:31:54,321 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_ProcessManagerRemoteEJB
    2011-02-01 17:31:54,321 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_ProcessEngineCMTEJB
    2011-02-01 17:31:54,337 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_ProcessEngineBMTEJB
    2011-02-01 17:31:54,337 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_TemplateManagerLocalEJB
    2011-02-01 17:31:54,337 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_TemplateManagerRemoteEJB
    2011-02-01 17:31:54,337 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_ComponentManagerLocalEJB
    2011-02-01 17:31:54,352 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_ComponentManagerRemoteEJB
    2011-02-01 17:31:54,352 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_TaskManagerEJB
    2011-02-01 17:31:54,681 INFO  [org.jboss.ejb.EjbModule] Deploying AdobeIDP2UI_UMUIComponent
    2011-02-01 17:31:54,806 INFO  [org.jboss.ejb.EjbModule] Deploying AuthenticationManagerBean
    2011-02-01 17:31:54,837 INFO  [org.jboss.ejb.EjbModule] Deploying LocalUserManagerBean
    2011-02-01 17:31:54,852 INFO  [org.jboss.ejb.EjbModule] Deploying DirectoryServicesManagerBean
    2011-02-01 17:31:54,868 INFO  [org.jboss.ejb.EjbModule] Deploying SynchronizationAuditLogManagerBean
    2011-02-01 17:31:54,868 INFO  [org.jboss.ejb.EjbModule] Deploying UMHibernateGenericDao
    2011-02-01 17:31:54,868 INFO  [org.jboss.ejb.EjbModule] Deploying HibernateSynchronizationDao
    2011-02-01 17:31:54,884 INFO  [org.jboss.ejb.EjbModule] Deploying PreferencesBean
    2011-02-01 17:31:54,884 INFO  [org.jboss.ejb.EjbModule] Deploying PreferencesRemoteBean
    2011-02-01 17:31:54,884 INFO  [org.jboss.ejb.EjbModule] Deploying BootstrapperManagerBean
    2011-02-01 17:31:55,665 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'AdobeIDP2UI_AACComponent' to jndi 'ejb/AdobeIDP2UI_AACComponent'
    2011-02-01 17:31:55,665 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/AACComponent.jar
    2011-02-01 17:31:55,759 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'AdobeIDP2UI_CoreSystemConfigComponent' to jndi 'ejb/AdobeIDP2UI_CoreSystemConfigComponent'
    2011-02-01 17:31:55,759 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/CoreSystemConfigComponent.jar
    2011-02-01 17:31:55,821 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'AdobeIDP2UI_HealthMonitorComponent' to jndi 'ejb/AdobeIDP2UI_HealthMonitorComponent'
    2011-02-01 17:31:55,821 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/HealthMonitorComponent.jar
    2011-02-01 17:31:55,962 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'SessionBundle' to jndi 'ejb/SessionBundleLocal'
    2011-02-01 17:31:55,962 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'SessionBundle' to jndi 'ejb/SessionBundleRemote'
    2011-02-01 17:31:55,978 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/SessionBundle.jar
    2011-02-01 17:31:56,024 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'AdobeIDP2UI_TrustStoreComponent' to jndi 'ejb/AdobeIDP2UI_TrustStoreComponent'
    2011-02-01 17:31:56,024 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/TrustStoreComponent.jar
    2011-02-01 17:31:56,103 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'CoreInitializer' to jndi 'local/com/adobe/bmc/config/initializer/CoreInitializerLocal'
    2011-02-01 17:31:56,103 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'CoreInitializer' to jndi 'com/adobe/bmc/config/initializer/CoreInitializer'
    2011-02-01 17:31:56,103 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-csa-config.jar
    2011-02-01 17:31:56,134 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'DocumentManagerEJB' to jndi 'adobe/idp/DocumentManagerEJB'
    2011-02-01 17:31:56,134 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-docmanager-ejb.jar
    2011-02-01 17:31:56,149 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'DSCInitializerBeanLocalEJB' to jndi 'local/DSCInitializerBeanLocalEJB@2107292101'
    2011-02-01 17:31:56,165 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'DSCInitializerBeanRemoteEJB' to jndi 'adobe/DSCInitializerBeanRemoteEJB'
    2011-02-01 17:31:56,165 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-dsc-bootstrap-ejb.jar
    2011-02-01 17:31:56,399 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'EjbTransactionCMTAdapter' to jndi 'adobe/EjbTransactionCMTAdapterLocal'
    2011-02-01 17:31:56,462 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'EjbTransactionBMTAdapter' to jndi 'adobe/EjbTransactionBMTAdapterLocal'
    2011-02-01 17:31:56,462 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-dscf.jar
    2011-02-01 17:31:56,540 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'Invocation' to jndi 'ejb/Invocation'
    2011-02-01 17:31:56,540 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-ejb-receiver.jar
    2011-02-01 17:31:56,603 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'AdobeIDP2UI_OutputAdmin' to jndi 'ejb/AdobeIDP2UI_OutputAdmin'
    2011-02-01 17:31:56,603 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-output-admin-ejb.jar
    2011-02-01 17:31:56,853 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'OutputConfigEJB' to jndi 'com.adobe.output.config.OutputConfigLocalHome'
    2011-02-01 17:31:56,853 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'OutputConfigEJB' to jndi 'com.adobe.output.config.OutputConfigHome'
    2011-02-01 17:31:57,056 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-output-config-ejb.jar
    2011-02-01 17:31:57,071 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'AdobeIDP2UI_PGUIComponent' to jndi 'ejb/AdobeIDP2UI_PGUIComponent'
    2011-02-01 17:31:57,087 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-pg-uicomponent.jar
    2011-02-01 17:31:57,134 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_POFSequenceGeneratorEJB' to jndi 'local/adobe_POFSequenceGeneratorEJB@1278683798'
    2011-02-01 17:31:57,196 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_POFDataDictionaryLocalEJB' to jndi 'local/adobe_POFDataDictionaryLocalEJB@1334574952'
    2011-02-01 17:31:57,196 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_POFDataDictionaryRemoteEJB' to jndi 'adobe/POFDataDictionary'
    2011-02-01 17:31:57,212 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_POFSchemaManagerLocalEJB' to jndi 'local/adobe_POFSchemaManagerLocalEJB@1412892778'
    2011-02-01 17:31:57,228 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_POFSchemaManagerRemoteEJB' to jndi 'adobe/POFSchemaManager'
    2011-02-01 17:31:57,243 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_POFObjectManagerLocalEJB' to jndi 'local/adobe_POFObjectManagerLocalEJB@1992663799'
    2011-02-01 17:31:57,259 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_POFObjectManagerRemoteEJB' to jndi 'adobe/POFObjectManager'
    2011-02-01 17:31:57,274 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_POFDeletionProcessorEJB' to jndi 'adobe/POFDeletionProcessor'
    2011-02-01 17:31:57,274 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-pof.jar
    2011-02-01 17:31:57,306 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'RepositoryUrlDataProvider' to jndi 'com/adobe/local/repositoryUrlDataProvider'
    2011-02-01 17:31:57,306 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'XappstoreUrlDataProvider' to jndi 'com/adobe/local/xappstoreUrlDataProvider'
    2011-02-01 17:31:57,306 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-repository-bindings.jar
    2011-02-01 17:31:57,353 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_AdminManagerEJB' to jndi 'local/adobe_AdminManagerEJB@284206056'
    2011-02-01 17:31:57,353 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_AdminManagerEJB' to jndi 'adobe/AdminManager'
    2011-02-01 17:31:57,353 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-wkf-admin.jar
    2011-02-01 17:31:57,524 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_WorkflowInitializerEJB' to jndi 'local/adobe_WorkflowInitializerEJB@1594420688'
    2011-02-01 17:31:57,524 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_WorkflowInitializerEJB' to jndi 'adobe/WorkflowInitializerEJB'
    2011-02-01 17:31:57,540 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-wkf-initializer-ejb.jar
    2011-02-01 17:31:57,618 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_WorkflowServiceMessageBeanLocalEJB' to jndi 'local/adobe_WorkflowServiceMessageBeanLocalEJB@712543094'
    2011-02-01 17:31:57,634 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-wkf-services-ejb.jar
    2011-02-01 17:31:57,634 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_ProcessManagerLocalEJB' to jndi 'local/adobe_ProcessManagerLocalEJB@51535841'
    2011-02-01 17:31:57,649 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_ProcessManagerRemoteEJB' to jndi 'adobe/ProcessManager'
    2011-02-01 17:31:57,681 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_ProcessEngineCMTEJB' to jndi 'local/adobe_ProcessEngineCMTEJB@1209177426'
    2011-02-01 17:31:57,681 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_ProcessEngineBMTEJB' to jndi 'local/adobe_ProcessEngineBMTEJB@1699041128'
    2011-02-01 17:31:57,681 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_TemplateManagerLocalEJB' to jndi 'local/adobe_TemplateManagerLocalEJB@30528184'
    2011-02-01 17:31:57,696 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_TemplateManagerRemoteEJB' to jndi 'adobe/TemplateManager'
    2011-02-01 17:31:57,696 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_ComponentManagerLocalEJB' to jndi 'local/adobe_ComponentManagerLocalEJB@1434344637'
    2011-02-01 17:31:57,712 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_ComponentManagerRemoteEJB' to jndi 'adobe/ComponentManager'
    2011-02-01 17:31:57,712 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_TaskManagerEJB' to jndi 'local/adobe_TaskManagerEJB@843999483'
    2011-02-01 17:31:57,728 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_TaskManagerEJB' to jndi 'adobe/TaskManager'
    2011-02-01 17:31:57,728 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-wkf.jar
    2011-02-01 17:31:57,868 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'AdobeIDP2UI_UMUIComponent' to jndi 'ejb/AdobeIDP2UI_UMUIComponent'
    2011-02-01 17:31:57,868 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/um-adminui.jar
    2011-02-01 17:31:57,915 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'AuthenticationManagerBean' to jndi 'com.adobe.idp.um.businesslogic.authentication.AuthenticationManagerHome'
    2011-02-01 17:31:57,915 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'LocalUserManagerBean' to jndi 'com.adobe.idp.um.businesslogic.localuser.LocalUserManagerHome'
    2011-02-01 17:31:57,931 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'DirectoryServicesManagerBean' to jndi 'com.adobe.idp.um.businesslogic.directoryservices.DirectoryServicesManagerHome'
    2011-02-01 17:31:57,946 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'SynchronizationAuditLogManagerBean' to jndi 'com.adobe.idp.um.businesslogic.directoryservices.SynchronizationAuditLogManagerHome'
    2011-02-01 17:31:57,962 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'UMHibernateGenericDao' to jndi 'com.adobe.idp.um.businesslogic.dao.GenericDAOHome'
    2011-02-01 17:31:57,962 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'HibernateSynchronizationDao' to jndi 'com.adobe.idp.um.businesslogic.synch.dao.SynchronizationDAOHome'
    2011-02-01 17:31:57,978 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'PreferencesBean' to jndi 'com.adobe.idp.config.PreferencesSPIHome'
    2011-02-01 17:31:57,978 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'PreferencesRemoteBean' to jndi 'com.adobe.idp.config.remote.PreferencesSPIRemoteHome'
    2011-02-01 17:31:57,993 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'BootstrapperManagerBean' to jndi 'com.adobe.idp.um.businesslogic.bootstrapper.BootstrapperManagerHome'
    2011-02-01 17:31:57,993 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/um.jar
    2011-02-01 17:31:58,025 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/AACComponent, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/AACCompone nt-exp.war/
    2011-02-01 17:31:58,618 INFO  [org.apache.struts.validator.ValidatorPlugIn] Loading validation rules file from '/WEB-INF/validator-rules.xml'
    2011-02-01 17:31:58,618 INFO  [org.apache.struts.validator.ValidatorPlugIn] Loading validation rules file from '/WEB-INF/custom-rules.xml'
    2011-02-01 17:31:58,618 INFO  [org.apache.struts.validator.ValidatorPlugIn] Loading validation rules file from '/WEB-INF/validation.xml'
    2011-02-01 17:31:58,790 INFO  [org.apache.struts.tiles.TilesPlugin] Tiles definition factory loaded for module ''.
    2011-02-01 17:31:58,806 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/CoreSystemConfigComponent, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/CoreSystem ConfigComponent-exp.war/
    2011-02-01 17:31:59,290 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/datamanagerservice, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/DataManage rService-exp.war/
    2011-02-01 17:31:59,525 INFO  [com.adobe.service.DataManagerService] BMC512: Service DataManagerService: Starting
    2011-02-01 17:31:59,556 INFO  [com.adobe.service.DataManagerService] BMC511: Service DataManagerService: Native files expanded in D:\jboss\server\lc_sqlserver\svcnative\DataManagerService
    2011-02-01 17:32:02,275 INFO  [com.adobe.fontmanager.FontManager] ALC-FMR-001-010:FontManager: Loading Adobe Server fonts from directory: D:\Adobe\Adobe LiveCycle ES2\fonts
    2011-02-01 17:32:07,697 INFO  [com.adobe.fontmanager.FontManager] ALC-FMR-001-010:FontManager: Loading System fonts from directory: C:\Windows\Fonts
    2011-02-01 17:32:17,713 INFO  [com.adobe.service.DataManagerService] BMC513: Service DataManagerService: Started
    2011-02-01 17:32:17,729 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/HealthMonitor, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/HealthMoni torComponent-exp.war/
    2011-02-01 17:32:18,525 INFO  [com.adobe.monitor.stats.SystemStatistic] Health Monitor Thread started
    2011-02-01 17:32:19,182 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/TrustStoreComponent, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/TrustStore Component-exp.war/
    2011-02-01 17:32:19,494 INFO  [com.adobe.truststore.ui.TSAuthFilter] TSAuthFilter init
    2011-02-01 17:32:19,994 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/adminui, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adminui-ex p.war/
    2011-02-01 17:32:20,182 WARN  [org.apache.commons.digester.Digester] [NavigationRuleRule]{faces-config/navigation-rule} Merge(/*)
    2011-02-01 17:32:20,416 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/XMLFMCallBackService, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-XMLF MCallBack-exp.war/
    2011-02-01 17:32:20,510 INFO  [com.adobe.service.XMLFMCallBackService] BMC512: Service XMLFMCallBackService: Starting
    2011-02-01 17:32:20,541 INFO  [com.adobe.service.XMLFMCallBackService] BMC511: Service XMLFMCallBackService: Native files expanded in D:\jboss\server\lc_sqlserver\svcnative\XMLFMCallBackService
    2011-02-01 17:32:20,541 INFO  [com.adobe.service.XMLFMCallBackService] Starting XMLFM CallBack service
    2011-02-01 17:32:20,557 INFO  [com.adobe.service.XMLFMCallBackService] BMC513: Service XMLFMCallBackService: Started
    2011-02-01 17:32:20,588 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/adobe-bootstrapper, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-boot strapper-exp.war/
    2011-02-01 17:32:20,666 INFO  [com.adobe.livecycle.bootstrap.framework.BootstrapServlet] Initializing BootstrapServlet ...
    2011-02-01 17:32:20,682 INFO  [com.adobe.livecycle.bootstrap.framework.BootstrapServlet] BootstrapServlet initialization complete.
    2011-02-01 17:32:20,713 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/cache-controller, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-cach e-controller-exp.war/
    2011-02-01 17:32:20,791 INFO  [com.adobe.livecycle.cache.adapter.GemfireCacheController] BMC512: Service CacheController: Starting
    2011-02-01 17:32:20,807 INFO  [com.adobe.livecycle.cache.adapter.GemfireCacheController] BMC511: Service CacheController: Native files expanded in D:\jboss\server\lc_sqlserver\svcnative\CacheController
    2011-02-01 17:32:20,807 INFO  [com.adobe.livecycle.cache.adapter.GemfireCacheController] BMC513: Service CacheController: Started
    2011-02-01 17:32:20,822 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/DocumentManager, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-docm anager-init-exp.war/
    2011-02-01 17:32:20,916 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/adobe-forms-cacheService, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-form s-cacheService-exp.war/
    2011-02-01 17:32:21,010 INFO  [com.adobe.formServer.common.config.CacheInitializationServlet] Initialization done for com.adobe.formServer.common.cachemanager.CacheManager and com.adobe.formServer.common.clustercache.ClusterCache
    2011-02-01 17:32:21,026 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/launchpad, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-lc-l aunchpad-exp.war/
    2011-02-01 17:32:21,104 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/adobe-lcm-bootstrapper, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-lcm- bootstrapper-redirector-exp.war/
    2011-02-01 17:32:21,197 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/OutputAdmin, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-outp ut-admin-exp.war/
    2011-02-01 17:32:21,447 WARN  [com.adobe.output.admin.LocaleFilter] LF001: Bundle not found: forms.license.forms-productinfo
    2011-02-01 17:32:21,447 INFO  [com.adobe.output.admin.LocaleFilter] LF002: Supported locales: [all]
    2011-02-01 17:32:21,682 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/OutputService, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-outp ut-mbean-exp.war/
    2011-02-01 17:32:21,807 INFO  [com.adobe.output.mbean.Output] BMC512: Service Output: Starting
    2011-02-01 17:32:21,822 INFO  [com.adobe.output.mbean.Output] BMC511: Service Output: Native files expanded in D:\jboss\server\lc_sqlserver\svcnative\Output
    2011-02-01 17:32:21,822 INFO  [com.adobe.output.mbean.Output] FSC003: ========== Start Output Service =========
    2011-02-01 17:32:21,822 INFO  [com.adobe.output.mbean.Output] BMC513: Service Output: Started
    2011-02-01 17:32:21,838 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/pdfg-ipp, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-pdfg -ipp-support-exp.war/
    2011-02-01 17:32:21,932 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/pdfgui, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-pdfg ui-exp.war/
    2011-02-01 17:32:22,447 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/pdfg-adminui, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-pg-a dminui-exp.war/
    2011-02-01 17:32:22,979 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/remoting, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-remo ting-provider-exp.war/
    2011-02-01 17:32:23,494 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/repository, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-repo sitory-bindings-exp.war/
    2011-02-01 17:32:23,588 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/rest, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-rest -provider-exp.war/
    2011-02-01 17:32:23,823 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/soap, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-soap -provider-exp.war/
    2011-02-01 17:32:24,104 INFO  [com.adobe.idp.dsc.provider.impl.soap.axis.Logging] SOAP501: Initializing Adobe SOAP Provider
    2011-02-01 17:32:24,119 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/dsc, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/dsc-exp.wa r/
    2011-02-01 17:32:24,213 INFO  [com.adobe.idp.dsc.management.impl.ArchiveFileManagerImpl] ArchiveFileManagerImpl:getLocalCacheRootDir():Adobe tmp directory is:C:\LCTemp\adobejb_server1
    2011-02-01 17:32:25,526 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] Initializing DSC Container
    2011-02-01 17:32:31,495 INFO  [com.adobe.idp.Document] DOCS502: The document storage sweep interval is set to 30000 seconds.
    2011-02-01 17:32:31,495 INFO  [com.adobe.idp.Document] DOCS503: The global document storage root directory is: D:\LCGlobalDocumentStorage
    2011-02-01 17:32:31,495 INFO  [com.adobe.idp.Document] DOCS509: The local storage root directory is: C:\LCTemp\AdobeDocumentStorage\local
    2011-02-01 17:32:31,495 INFO  [com.adobe.idp.Document] DOCS505: The document storage default disposal timeout is set to 600 seconds.
    2011-02-01 17:32:31,495 INFO  [com.adobe.idp.Document] DOCS506: The document storage default max inline size is set to 65536 bytes.
    2011-02-01 17:32:31,495 INFO  [com.adobe.idp.Document] DOCS508: Accessing the global document storage filesystem: true
    2011-02-01 17:32:31,495 INFO  [com.adobe.idp.Document] DOCS510: Called from within the EAR: true
    2011-02-01 17:33:07,684 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] IDPSchedulerService onLoad called
    2011-02-01 17:33:09,246 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] Initializing SCHEDULER FACTORY from properties ...
    2011-02-01 17:33:09,262 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] SCHEDULER FACTORY initialized.
    2011-02-01 17:33:09,278 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] IDPSchedulerService onLoad complete
    2011-02-01 17:33:09,278 INFO  [com.adobe.idp.event.EventMgmtLifeCycleImpl] Called onLoad:
    2011-02-01 17:33:09,450 INFO  [com.adobe.idp.event.EventMgmtLifeCycleImpl] onLoad completed:
    2011-02-01 17:33:09,465 INFO  [com.adobe.idp.workflow.dsc.lifecycle.WorkflowDSCLifeCycle] Now loading workflow-dsc service.
    2011-02-01 17:33:09,465 INFO  [com.adobe.idp.workflow.dsc.lifecycle.WorkflowDSCLifeCycle] Workflow-dsc service load completed.
    2011-02-01 17:33:14,059 INFO  [com.adobe.idp.dsc.webservice.WebServiceImpl] WebServiceImpl.onLoad
    2011-02-01 17:33:14,137 INFO  [com.adobe.pdfg.ConfigServiceOnLoad] Calling onLoad of Config Service
    2011-02-01 17:33:14,137 INFO  [com.adobe.pdfg.ConfigServiceOnLoad] Application server started as user: GBVM011742$
    2011-02-01 17:33:14,465 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Called onLoad: GeneratePDF
    2011-02-01 17:33:14,465 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "Acrobat_PATH" is set to "D:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\Acrobat.exe"
    2011-02-01 17:33:14,465 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "Notepad_PATH" is set to "C:\Windows\System32\Notepad.exe"
    2011-02-01 17:33:14,465 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "Photoshop_PATH" is set to "D:\Program Files (x86)\Adobe\Adobe Photoshop CS2\Photoshop.exe"
    2011-02-01 17:33:14,481 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "WordPerfect_PATH" is set to " "
    2011-02-01 17:33:14,481 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "PageMaker_PATH" is set to " "
    2011-02-01 17:33:14,481 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "FrameMaker_PATH" is set to " "
    2011-02-01 17:33:14,481 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "OpenOffice_PATH" is set to " "
    2011-02-01 17:33:14,481 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "JAVA_HOME_32" is set to "C:\Program Files (x86)\Java\jdk1.6.0_19"
    2011-02-01 17:33:15,309 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] DSC Container initialized
    2011-02-01 17:33:15,325 INFO  [com.adobe.idp.dsc.startup.DSCStartupServlet] Install and start of components complete. Now starting core asynchronous services ...
    2011-02-01 17:33:15,325 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] Starting Core Components...
    2011-02-01 17:33:15,325 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] Starting WorkManager Component...
    2011-02-01 17:33:15,872 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] WorkManager Component started successfully
    2011-02-01 17:33:15,872 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] Starting services which need post-dsc-initialization (Scheduler, docmanager purge)...
    2011-02-01 17:33:15,903 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] Start scheduler service
    2011-02-01 17:33:15,903 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] Context classloader is org.jboss.util.loading.DelegatingClassLoader
    2011-02-01 17:33:15,903 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] Creating new scheduler. isInUpgrade:false
    2011-02-01 17:33:15,903 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] Scheduler is shutdown, will attempt to recreate.
    2011-02-01 17:33:16,012 INFO  [org.quartz.core.QuartzScheduler] Quartz Scheduler v.1.6.0 created.
    2011-02-01 17:33:16,012 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Using thread monitor-based data access locking (synchronization).
    2011-02-01 17:33:16,075 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Removed 0 Volatile Trigger(s).
    2011-02-01 17:33:16,075 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Removed 0 Volatile Job(s).
    2011-02-01 17:33:16,091 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] JobStoreTX initialized.
    2011-02-01 17:33:16,091 INFO  [com.adobe.idp.scheduler.DSCSchedulerFactory] Quartz scheduler 'IDPSchedulerService' initialized from an externally provided properties instance.
    2011-02-01 17:33:16,091 INFO  [com.adobe.idp.scheduler.DSCSchedulerFactory] Quartz scheduler version: 1.6.0
    2011-02-01 17:33:16,091 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] Scheduler loaded with name IDPSchedulerService
    2011-02-01 17:33:16,091 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Freed 1 triggers from 'acquired' / 'blocked' state.
    2011-02-01 17:33:16,091 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Handling 5 trigger(s) that missed their scheduled fire-time.
    2011-02-01 17:33:16,153 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Recovering 0 jobs that were in-progress at the time of the last shut-down.
    2011-02-01 17:33:16,153 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Recovery complete.
    2011-02-01 17:33:16,169 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Removed 0 'complete' triggers.
    2011-02-01 17:33:16,169 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Removed 1 stale fired job entries.
    2011-02-01 17:33:16,169 INFO  [org.quartz.core.QuartzScheduler] Scheduler IDPSchedulerService_$_20 started.
    2011-02-01 17:33:16,169 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] Started services which need post-dsc-initialization (Scheduler, docmanager purge) successfully
    2011-02-01 17:33:16,169 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] Core Components started successfully
    2011-02-01 17:33:16,231 INFO  [com.adobe.idp.dsc.startup.DSCStartupServlet] Install and start of components complete. Now starting core asynchronous services ...
    2011-02-01 17:33:18,771 WARN  [com.adobe.livecycle.cache.adapter.GemfireCacheAdapter] Cache region 'PartitionedGuaranteed_dsc_sc_endpoint' was already created
    2011-02-01 17:33:30,070 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/launchpad_help_en, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/launchpad_ help_en-exp.war/
    2011-02-01 17:33:30,159 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/lc_admin_de, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/lc_admin_d e-exp.war/
    2011-02-01 17:33:30,232 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/lc_admin_en, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/lc_admin_e n-exp.war/
    2011-02-01 17:33:30,306 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/lc_admin_fr, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/lc_admin_f r-exp.war/
    2011-02-01 17:33:30,376 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/lc_admin_ja, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/lc_admin_j a-exp.war/
    2011-02-01 17:33:30,455 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/umcache, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/um-cache-e xp.war/
    2011-02-01 17:33:30,551 INFO  [com.adobe.idp.um.services.UMCacheService] BMC512: Service UMCacheService: Starting
    2011-02-01 17:33:30,569 INFO  [com.adobe.idp.um.services.UMCacheService] BMC511: Service UMCacheService: Native files expanded in D:\jboss\server\lc_sqlserver\svcnative\UMCacheService
    2011-02-01 17:33:30,570 INFO  [com.adobe.idp.um.services.UMCacheService] BMC513: Service UMCacheService: Started
    2011-02-01 17:33:30,582 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/umscheduler, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/um-schedul er-exp.war/
    2011-02-01 17:33:30,668 INFO  [com.adobe.idp.um.scheduler.IDPScheduler] BMC512: Service IDPScheduler: Starting
    2011-02-01 17:33:30,685 INFO  [com.adobe.idp.um.scheduler.IDPScheduler] BMC511: Service IDPScheduler: Native files expanded in D:\jboss\server\lc_sqlserver\svcnative\IDPScheduler
    2011-02-01 17:33:30,698 INFO  [org.quartz.core.QuartzScheduler] Quartz Scheduler v.1.6.0 created.
    2011-02-01 17:33:30,698 INFO  [org.quartz.simpl.RAMJobStore] RAMJobStore initialized.
    2011-02-01 17:33:30,698 INFO  [org.quartz.impl.DirectSchedulerFactory] Quartz scheduler 'SimpleQuartzScheduler
    2011-02-01 17:33:30,698 INFO  [org.quartz.impl.DirectSchedulerFactory] Quartz scheduler version: 1.6.0
    2011-02-01 17:33:30,698 INFO  [org.quartz.core.QuartzScheduler] Scheduler SimpleQuartzScheduler_$_SIMPLE_NON_CLUSTERED started.
    2011-02-01 17:33:30,708 INFO  [com.adobe.idp.um.scheduler.IDPScheduler] BMC513: Service IDPScheduler: Started
    2011-02-01 17:33:30,721 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/umstartup, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/um-startup -exp.war/
    2011-02-01 17:33:30,822 INFO  [com.adobe.idp.um.services.UMStartupService] BMC512: Service UMStartupService: Starting
    2011-02-01 17:33:30,839 INFO  [com.adobe.idp.um.services.UMStartupService] BMC511: Service UMStartupService: Native files expanded in D:\jboss\server\lc_sqlserver\svcnative\UMStartupService
    2011-02-01 17:33:30,911 INFO  [STDOUT] Got IP Address of LC Server:10.20.21.170
    2011-02-01 17:33:30,912 INFO  [com.adobe.idp.um.services.UMStartupService] BMC513: Service UMStartupService: Started
    2011-02-01 17:33:30,926 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/um, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/um-exp.war /
    2011-02-01 17:33:31,364 INFO  [org.apache.struts.tiles.TilesPlugin] Tiles definition factory loaded for module ''.
    2011-02-01 17:33:31,366 INFO  [org.apache.struts.validator.ValidatorPlugIn] Loading validation rules file from '/WEB-INF/validator-rules.xml'
    2011-02-01 17:33:31,367 INFO  [org.apache.struts.validator.ValidatorPlugIn] Loading validation rules file from '/WEB-INF/validation.xml'
    2011-02-01 17:33:31,474 INFO  [com.adobe.idp.um.ui.UMActionServlet]
    * System Properties **************************************************
    PROPERTIES_FILE..............................: tsmx.properties
    TSMX_VERSION.................................: unknown
    adobe.server.common.dir......................: D:\jboss\server\lc_sqlserver\svccommon
    adobe.server.data.dir........................: D:\jboss\server\lc_sqlserver\svcdata
    adobe.server.root.dir........................: D:\jboss\server\lc_sqlserver
    adobeidp.serverName..........................: server1
    awt.toolkit..................................: sun.awt.windows.WToolkit
    bind.address.................................: 10.20.21.170
    catalina.base................................: D:\jboss\server\lc_sqlserver
    catalina.ext.dirs............................: D:\jboss\server\lc_sqlserver\lib
    catalina.home................................: D:\jboss\server\lc_sqlserver
    catalina.useNaming...........................: false
    com.adobe.idp.DocumentManagerServlet.........: started
    com.adobe.idp.enableLC7Compatibility.........: false
    com.adobe.idp.enableLC7Compatibility.SetByDM.: true
    com.adobe.serverInstanceId...................: adobejb_server1
    com.adobe.tempDirectory......................: C:\LCTemp\adobejb_server1
    com.arjuna.ats.arjuna.objectstore.objectStoreDir: D:\jboss\server\lc_sqlserver\data/tx-object-store
    com.arjuna.ats.jta.lastResourceOptimisationInterface: org.jboss.tm.LastResource
    com.arjuna.ats.tsmx.agentimpl................: com.arjuna.ats.internal.jbossatx.agent.LocalJBossAgentImpl
    com.arjuna.common.util.logger................: log4j_releveler
    com.arjuna.common.util.logging.DebugLevel....: 0x00000000
    com.arjuna.common.util.logging.FacilityLevel.: 0xffffffff
    com.arjuna.common.util.logging.VisibilityLevel: 0xffffffff
    common.loader................................: ${catalina.home}/lib,${catalina.home}/lib/*.jar
    file.encoding................................: utf8
    file.encoding.pkg............................: sun.io
    file.separator...............................: \
    gemfire.disableShutdownHook..................: true
    hibernate.bytecode.provider..................: cglib
    jacorb.config.log.verbosity..................: 0
    java.awt.graphicsenv.........................: sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob..........................: sun.awt.windows.WPrinterJob
    java.class.path..............................: C:\Program Files\Java\jdk1.6.0_19\lib\tools.jar;D:\jboss\bin\run.jar
    java.class.version...........................: 50.0
    java.endorsed.dirs...........................: D:\jboss\lib\endorsed
    java.ext.dirs................................: C:\Program Files\Java\jdk1.6.0_19\jre\lib\ext;C:\Windows\Sun\Java\lib\ext
    java.home....................................: C:\Program Files\Java\jdk1.6.0_19\jre
    java.io.tmpdir...............................: C:\Windows\TEMP\
    java.library.path............................: C:\Program Files\Java\jdk1.6.0_19\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Wi ndows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\Windows Imaging\;D:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files (x86)\Common Files\Adobe\AGL
    java.naming.factory.initial..................: org.jnp.interfaces.NamingContextFactory
    java.naming.factory.url.pkgs.................: org.jboss.naming:org.jnp.interfaces
    java.net.preferIPv4Stack.....................: true
    java.protocol.handler.pkgs...................: org.jboss.net.protocol
    java.rmi.server.RMIClassLoaderSpi............: org.jboss.system.JBossRMIClassLoader
    java.rmi.server.codebase.....................: http://10.20.21.170:8083/
    java.rmi.server.hostname.....................: 10.20.21.170
    java.runtime.name............................: Java(TM) SE Runtime Environment
    java.runtime.version.........................: 1.6.0_19-b04
    java.specification.name......................: Java Platform API Specification
    java.specification.vendor....................: Sun Microsystems Inc.
    java.specification.version...................: 1.6
    java.vendor..................................: Sun Microsystems Inc.
    java.vendor.url..............................: http://java.sun.com/
    java.vendor.url.bug..........................: http://java.sun.com/cgi-bin/bugreport.cgi
    java.version.................................: 1.6.0_19
    java.vm.info.................................: mixed mode
    java.vm.name.................................: Java HotSpot(TM) 64-Bit Server VM
    java.vm.specification.name...................: Java Virtual Machine Specification
    java.vm.specification.vendor.................: Sun Microsystems Inc.
    java.vm.specification.version................: 1.0
    java.vm.vendor...............................: Sun Microsystems Inc.
    java.vm.version..............................: 16.2-b04
    javax.management.builder.initial.............: org.jboss.mx.server.MBeanServerBuilderImpl
    jboss.bind.address...........................: 10.20.21.170
    jboss.home.dir...............................: D:\jboss
    jboss.home.url...............................: file:/D:/jboss/
    jboss.identity...............................: 1f0ac9f04d8e357cx-36a1f369x129b18f2917x-8000127
    jboss.lib.url................................: file:/D:/jboss/lib/
    jboss.remoting.domain........................: JBOSS
    jboss.remoting.instanceid....................: 1f0ac9f04d8e357cx-36a1f369x129b18f2917x-8000127
    jboss.remoting.jmxid.........................: gbvm011742_1296581443348
    jboss.remoting.version.......................: 22
    jboss.server.base.dir........................: D:\jboss\server
    jboss.server.base.url........................: file:/D:/jboss/server/
    jboss.server.config.url......................: file:/D:/jboss/server/lc_sqlserver/conf/
    jboss.server.data.dir........................: D:\jboss\server\lc_sqlserver\data
    jboss.server.home.dir........................: D:\jboss\server\lc_sqlserver
    jboss.server.home.url........................: file:/D:/jboss/server/lc_sqlserver/
    jboss.server.lib.url.........................: file:/D:/jboss/server/lc_sqlserver/lib/
    jboss.server.log.dir.........................: D:\jboss\server\lc_sqlserver\log
    jboss.server.name............................: lc_sqlserver
    jboss.server.temp.dir........................: D:\jboss\server\lc_sqlserver\tmp
    jbossmx.loader.repository.class..............: org.jboss.mx.loading.UnifiedLoaderRepository3
    jgroups.bind_addr............................: 10.20.21.170
    line.separator...............................:
    org.apache.commons.logging.Log...............: org.apache.commons.logging.impl.Log4JLogger
    org.apache.xerces.xni.parser.Configuration...: org.apache.xerces.parsers.XMLGrammarCachingConfiguration
    org.jboss.ORBSingletonDelegate...............: org.jacorb.orb.ORBSingleton
    org.omg.CORBA.ORBClass.......................: org.jacorb.orb.ORB
    org.omg.CORBA.ORBSingletonClass..............: org.jboss.system.ORBSingleton
    org.w3c.dom.DOMImplementationSourceList......: org.apache.xerces.dom.DOMXSImplementationSourceImpl
    os.arch......................................: amd64
    os.name......................................: Windows Server 2008
    os.version...................................: 6.0
    p2p.useSSL...................................: false
    package.access...............................: sun.,org.apache.catalina.,org.apache.coyote.,org.apache.tomcat.,org.apache.jasper.,sun.be ans.
    package.definition...........................: sun.,java.,org.apache.catalina.,org.apache.coyote.,org.apache.tomcat.,org.apache.jasper.
    path.separator...............................: ;
    program.name.................................: run.bat
    server.loader................................:
    shared.loader................................:
    sun.arch.data.model..........................: 64
    sun.boot.class.path..........................: D:\jboss\lib\endorsed\serializer.jar;D:\jboss\lib\endorsed\xalan.jar;D:\jboss\lib\endorse d\xercesImpl.jar;C:\Program Files\Java\jdk1.6.0_19\jre\lib\resources.jar;C:\Program Files\Java\jdk1.6.0_19\jre\lib\rt.jar;C:\Program Files\Java\jdk1.6.0_19\jre\lib\sunrsasign.jar;C:\Program Files\Java\jdk1.6.0_19\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.6.0_19\jre\lib\jce.jar;C:\Program Files\Java\jdk1.6.0_19\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.6.0_19\jre\classes
    sun.boot.library.path........................: C:\Program Files\Java\jdk1.6.0_19\jre\bin
    sun.cpu.endian...............................: little
    sun.cpu.isalist..............................: amd64
    sun.desktop..................................: windows
    sun.io.unicode.encoding......................: UnicodeLittle
    sun.java.launcher............................: SUN_STANDARD
    sun.jnu.encoding.............................: Cp1252
    sun.management.compiler......................: HotSpot 64-Bit Server Compiler
    sun.os.patch.level...........................: Service Pack 2
    sun.rmi.dgc.client.gcInterval................: 3600000
    sun.rmi.dgc.server.gcInterval................: 3600000
    tomcat.util.buf.StringCache.byte.enabled.....: true
    user.country.................................: GB
    user.dir.....................................: D:\jboss\bin
    user.home....................................: C:\
    user.language................................: en
    user.name....................................: GBVM011742$
    user.timezone................................: Europe/London
    user.variant.................................:
    * JSP Engine ****
    JSP-Specification..: 2.1
    * Runtime ****
    Total Memory.......: 1691 mb
    2011-02-01 17:33:31,481 INFO  [com.adobe.idp.um.ui.UMActionServlet]
    * Servlet Context ****************************************************
    Servlet API........: 2.5
    ServerInfo.........: JBossWeb/2.0.0.GA
    * Attributes ****
    com.cc.framework.locale......................: true
    com.cc.framework.painter.....................: [app, html, global]
    javax.servlet.context.tempdir................: D:\jboss\server\lc_sqlserver\work\jboss.web\localhost\um
    org.apache.AnnotationProcessor...............: org.apache.catalina.util.DefaultAnnotationProcessor@307dea47
    org.apache.catalina.WELCOME_FILES............: [Ljava.lang.String;@1a9ff430
    org.apache.catalina.jsp_classpath............: /D:/jboss/server/lc_sqlserver/tmp/deploy/tmp8487529096491474650jboss-ha-xa-jdbc.rar-conte nts/jboss-ha-xa-jdbc.jar;/D:/jboss/server/lc_sqlserver/lib/bsf.jar;/D:/jboss/server/lc_sql server/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/gemfire.jar;/D: /jboss/server/lc_sqlserver/deploy/snmp-adaptor.sar/;/D:/jboss/server/lc_sqlserver/tmp/depl oy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/javax77.jar;/D:/jboss/server/l c_sqlserver/lib/jaxen.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642a dobe-livecycle-jboss.ear-contents/adobe-dsc-bootstrap-ejb.jar;/D:/jboss/server/lc_sqlserve r/lib/joesnmp.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp5744798618431161839quartz-ra .rar;/D:/jboss/server/lc_sqlserver/deploy/jbossws.sar/;/D:/jboss/server/lc_sqlserver/deplo y/httpha-invoker.sar/;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe -livecycle-jboss.ear-contents/CoreSystemConfigComponent.jar;/D:/jboss/server/lc_sqlserver/ tmp/deploy/tmp6138912020851092714jboss-ha-local-jdbc.rar-contents/jboss-ha-local-jdbc.jar; /D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-c ontents/lc_admin_en-exp.war/;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp36511446303422966 42adobe-livecycle-jboss.ear-contents/jcsi_license.jar;/D:/jboss/server/lc_sqlserver/tmp/de ploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-event-client.jar;/D:/j boss/server/lc_sqlserver/lib/jboss-iiop.jar;/D:/jboss/server/lc_sqlserver/lib/commons-http client.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle- jboss.ear-contents/adobe-pdfg-common.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp36511 44630342296642adobe-livecycle-jboss.ear-contents/commons-codec-1.3.jar;/D:/jboss/server/lc _sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-bmc-c lient.jar;/D:/jboss/server/lc_sqlserver/deploy/httpha-invoker.sar/invoker.war/;/D:/jboss/s erver/lc_sqlserver/lib/autonumber-plugin.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3 651144630342296642adobe-livecycle-jboss.ear-contents/ldapbp.jar;/D:/jboss/server/lc_sqlser ver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-remoting-pro vider.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp1594363530041496429jbossws-context-e xp.war/;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jbo ss.ear-contents/adobe-pof-adapters.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144 630342296642adobe-livecycle-jboss.ear-contents/jsafeJCEFIPS.jar;/D:/jboss/server/lc_sqlser ver/lib/servlet-api.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642ado be-livecycle-jboss.ear-contents/SessionBundle.jar;/D:/jboss/server/lc_sqlserver/deploy/uui d-key-generator.sar/;/D:/jboss/server/lc_sqlserver/deploy/juddi-service.sar/juddi.war/;/D: /jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-cont ents/pdfencryption.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adob e-livecycle-jboss.ear-contents/flex-messaging-common.jar;/D:/jboss/server/lc_sqlserver/tmp /deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/um-spi.jar;/D:/jboss/serv er/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/jsafeF IPS.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jbo ss.ear-

  • Cannot connect to the internet using wireless, but dhcpcd passes...

    Thanks for reading this in advance
    So, I'm trying Arch Linux (going from XP/Ubuntu) on my desktop since all my friends at the university have been migrating to Arch, and even I loved the concept, and even installed it on a VirtualBox without problems.
    Problem is I don't have a network card in my desktop, only a wireless one. So I NEED to get this one working. Ubuntu 9.04 delivered support for this card (SMC EZ-Connect USB 2.0 blabla, I'll save you on the details) so I tried Arch and after a LOT of googling and help from a friend, I managed to build a pkg to install the wireless firmware that was lacking to the p54usb module, and finally my wireless card was detected and appeared in ifconfig/iwconfig
    However, after doing all the steps in the Arch Linux Begginer's Guide for configuring wireless, when I get to the last step (after using "dhcpcd wlan0" to acquire the IP from my wireless router, with sucess) that involves pinging just to test the connection, it fails. Unknown host. I've tryed almost everything and don't know the problem...
    I'll post some of the details here from the commands I've used.
    ifconfig wlan0
    wlan0 Link encap:Ethernet HWaddr 00:04:E2:DE:C4:ED
    inet addr:192.168.0.13 Bcast:192.168.0.255 Mask:255.255.255.0
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:229 errors:0 dropped:0 overruns:0 frame:0
    TX packets:30 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:47510 (46.3 Kb) TX bytes:2160 (2.1 Kb)
    iwconfig wlan0
    wlan0 IEEE 802.11bg ESSID:"ZON-B5D2"
    Mode:Managed Frequency:2.437 GHz Access Point: 00:24:8C:B1:BB:5B
    Bit Rate=1 Mb/s Tx-Power=27 dBm
    Retry min limit:7 RTS thr:off Fragment thr:off
    Encryption key:8888-8888-8888-8888-8888-8888-E5 Security mode:open
    Power Management:off
    Link Quality=45/70 Signal level=-65 dBm Noise level=-93 dBm
    Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
    Tx excessive retries:0 Invalid misc:0 Missed beacon:0
    ping -I -c 3 www.google.com (or any other derivate of this command)
    blablabla unknow host www.google.com after a long while
    iwlist wlan0 | grep "ESSID"
    all the networks in my range according to my laptop running Vista/Ubuntu 9.10, so fine here :)
    dhcpcd wlan0
    connects to my router, everything is fine and I get the 192.168.0.13 atributed to my for 3600 seconds, and the program forks to the background. All fine I think?
    ping 192.168.0.13 (the IP my desktop is using from dhcpcd)
    PING 192.168.0.13 (192.168.0.13) 56(84) bytes of data.
    64 bytes from 192.168.0.13: icmp_seq=1 ttl=64 time=0.066 ms
    64 bytes from 192.168.0.13: icmp_seq=2 ttl=64 time=0.053 ms
    64 bytes from 192.168.0.13: icmp_seq=3 ttl=64 time=0.024 ms
    ping 192.168.0.1 (my router IP according to dhcpcd)
    PING 192.168.0.1 (192.168.0.1) 56(84) bytes of data.
    From 192.168.0.13 icmp_seq=2 Destination Host Unreachable
    From 192.168.0.13 icmp_seq=3 Destination Host Unreachable
    From 192.168.0.13 icmp_seq=4 Destination Host Unreachable
    From 192.168.0.13 icmp_seq=6 Destination Host Unreachable
    From 192.168.0.13 icmp_seq=7 Destination Host Unreachable
    From 192.168.0.13 icmp_seq=8 Destination Host Unreachable
    --- 192.168.0.1 ping statistics ---
    8 packets transmitted, 0 received, +6 errors, 100% packet loss, time 6999ms
    , pipe 3
    Now I noticed that while starting, when Arch is at "initializing network components" or w/e, I get a short DHCP timedout thing...
    I have this in /etc/rc.conf
    LOCALE="en_US.utf8"
    HARDWARECLOCK="UTC"
    USEDIRECTISA="no"
    TIMEZONE="Europe/Lisbon"
    KEYMAP="pt-latin9"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    HOSTNAME="metabrain"
    INTERFACES=(wlan0)
    wlan0="dhcp"
    gateway="default gw 192.168.0.1"
    ROUTES=(!gateway)
    DAEMONS=(syslog-ng network netfs crond)
    I'm posting this from the same machine, running Ubuntu 9.04 and I have wireless here (and way stronger signal than in my Windows XP partition )
    Thanks for your time
    Last edited by MetaBrain (2010-04-10 18:51:14)

    ewaller wrote:It may be redundant to your rc.conf file, but could you post the output of 'route'  ??
    Kernel IP routing table
    Destination Gateway Genmask Flags Metric Ref Use Iface
    192.168.0.0 * 255.255.255.0 U 305 0 0 wlan0
    (this last line took a while to print. the kernel hang here for more than 20 secs... relevant?)
    default 192.168.0.1 0.0.0.0 UG 305 0 0 wlan0
    I've checked everything, dunno what I'm doing wrong

  • Photoshop Elements Organizer/Editor Hanging on Startup

    When I open Photoshop Elements 10 from the start menu, it takes about 3 minutes for the first welcome screen to appear. If I select to open the editor from the welcome screen, or by right-clicking a file in Windows Explorer and selecting 'Open with...Photoshop', the program opens, the image populates on the canvas, and within a few seconds the program hangs for about 3-5 minutes (fades out, title bar says (Not Responding)). I have tried adding 127.0.0.1 etc. to the host file, removing FastCore, MMX, and a third .8BX file I can't recall at the moment, opening with administrative privileges, and changing my default printer to a dummy local printer, to no avail. Has anyone had similar problems? I suspect the issue has something to do with the 'Initializing Main Interface...' item in the C:\Users\[user]\AppData\Roaming\Adobe\Elements Organizer\10.0\Organizer\log.txt taking 168,000 units (ms?) of time to execute, but I'm not sure. Below is the most recent log file (emphases mine):
      1 (+   0) Begin AMT Library calls
          24 (+  23) End AMT Library calls
          76 (+  52) Primary Font: Myriad Web Pro
          76 (+   0) Loading Bitmaps...
         363 (+ 287) Loading Components...
         363 (+   0) Initializing BIB Host...
         364 (+   1) Initializing Bravo Components...
         364 (+   0) Initializing ACE
         365 (+   1) Initializing color settings
         567 (+ 202) Monitor color profile: sRGB IEC61966-2.1
         567 (+   0) Initializing XMP
         568 (+   1) Initializing Plug-in Host...
         570 (+   2) Initializing Photoshop Adapter...
         571 (+   1) Initializing AS Host...
         571 (+   0) Initializing Plug-ins...
         584 (+  13) BEGIN -> pse_util::add_mime_types
         585 (+   1) END -> pse_util::add_mime_types
         585 (+   0) Plug-ins found:
         585 (+   0)   C:\Program Files (x86)\Adobe\Elements 10 Organizer\PhotoshopElementsOrganizer.exe (Sweet Pea 2 Adapter Plugin)
         585 (+   0)   C:\Program Files (x86)\Common Files\Adobe\Plug-Ins\Elements 10\File Formats\Camera Raw.8bi (Camera Raw)
         585 (+   0)   Locales\en_us\Plug-Ins\File Formats\BMP.8BI (BMP)
         585 (+   0)   Plug-Ins\Organizer Only\File Formats\Gif.8bi (CompuServe GIF)
         585 (+   0)   Plug-Ins\File Formats\WBMP.8BI (Wireless Bitmap)
         585 (+   0)   Plug-Ins\File Formats\Targa.8BI (Targa)
         585 (+   0)   Plug-Ins\File Formats\Pixar.8BI (Pixar)
         585 (+   0)   Plug-Ins\File Formats\PCX.8BI (PCX)
         585 (+   0)   Plug-Ins\File Formats\FilmStrip.8BI (Filmstrip)
         585 (+   0)   Plug-Ins\Organizer Only\PhotoshopAdapter.apl (Photoshop Adapter)
         585 (+   0) File format plug-ins:
         586 (+   1)   Camera Raw (R: tif crw nef raf orf mrw dcr mos raw pef srf dng x3f cr2 erf sr2 kdc mfw mef arw nrw rw2 rwl iiq 3fr fff srw)
         586 (+   0)   BMP (R: bmp rle dib)
         586 (+   0)   CompuServe GIF (R: gif)
         586 (+   0)   Wireless Bitmap (R: wbm wbmp)
         586 (+   0)   Targa (R: tga vda icb vst)
         586 (+   0)   Pixar (R: pxr)
         586 (+   0)   PCX (R: pcx)
         586 (+   0) Initializing AGM
         614 (+  28) Initializing CoolType
         616 (+   2) System:
         616 (+   0)   System Architecture: Intel CPU Family:6 Model:10 Stepping:7 with MMX, SSE Integer, SSE FP
         616 (+   0) Driver versions:
         616 (+   0)   Microsoft DirectX Version: 9.0
         616 (+   0) Support application versions:
         616 (+   0)   Adobe Acrobat Reader Version: 11.0
         617 (+   1)   Adobe Acrobat Version: 11.0
         618 (+   1) Initializing OLS
         654 (+  36) Cleaning up old email attachments
         655 (+   1) Initializing Controller...
         655 (+   0) Initializing Platform...
         656 (+   1) Initializing Threads...
         658 (+   2) Initializing Model...
         658 (+   0) Begin Open Amoc Database
         685 (+  27) End Open Amoc Database
         686 (+   1) Initializing Main Interface...
    168844 (+168158) Main window visible
      168909 (+  65) Finished UI init.
      168965 (+  56) reloadNavigatorAndView() initializing for a new Search
      168991 (+  26) App is now visible and ready for input...
      169001 (+  10) Begin PtContentbgThread() construction
      169001 (+   0) End PtContentbgThread() construction
      169001 (+   0) Begin PtIpodContentDownloadThread() construction
      169001 (+   0) End PtIpodContentDownloadThread() construction
      183840 (+14839) BEGIN BackgroundPreprocessor::setupInitialRequests
      183841 (+   1) END BackgroundPreprocessor::setupInitialRequests
      183841 (+   0) BEGIN WaldoPreprocessor::setupInitialRequests
      183841 (+   0) END WaldoPreprocessor::setupInitialRequests

    Try renaming the folder "Elements Organizer" and "Online Services". These folder are present at C:\Users\<current user>\AppData\Roaming\Adobe for Win 7.
    After renaming these folders, application should launch without crashing. For Win XP they are present at correponding location for current user.

  • I can´t open the orginizer in PSElements 5

    Help!
    I can´t open the orginizer in Photo Shop Elements 5 any more! All other features are functionally. Tried to reinstal the program but with the same result. Anyone????
    /Lasse

    Barb
    This is the entire contents of the Log.txt file:
    0 Photoshop Elements 5.0.0.0 Log (5) started 2009-01-27 00:03:12.203
    0 (+ 0) Windows OS Version as reported by Qt: 0x30
    0 (+ 0) Desktop Resolution: 1024 x 768 Depth: 32
    47 (+ 47) isWinXP() TRUE
    47 (+ 0) XP Style: 1
    531 (+ 484) Loading Bitmaps...
    703 (+ 172) Loading Components...
    703 (+ 0) Initializing Intel IPP Libraries...
    703 (+ 0) Initializing BIB Host...
    703 (+ 0) Initializing Bravo Components...
    703 (+ 0) Initializing ACE
    765 (+ 62) Initializing color settings
    1281 (+ 516) Monitor color profile: sRGB IEC61966-2.1
    1281 (+ 0) Initializing ARE
    1281 (+ 0) Initializing XMP
    1359 (+ 78) Initializing Plug-in Host...
    1437 (+ 78) Initializing Photoshop Adapter...
    1453 (+ 16) Initializing AS Host...
    1515 (+ 62) Initializing Plug-ins...
    2265 (+ 750) Plug-ins found:
    2265 (+ 0) C:\Program Files\Adobe\Photoshop Elements 5.0\PhotoshopElementsOrganizer.exe (Sweet Pea 2 Adapter Plugin)
    2265 (+ 0) Plug-Ins\Organizer Only\File Formats\Gif.8bi (CompuServe GIF)
    2265 (+ 0) Plug-Ins\File Formats\WBMP.8BI (Wireless Bitmap)
    2265 (+ 0) Plug-Ins\File Formats\Targa.8BI (Targa)
    2265 (+ 0) Plug-Ins\File Formats\Pixar.8BI (Pixar)
    2265 (+ 0) Plug-Ins\File Formats\PCX.8BI (PCX)
    2265 (+ 0) Plug-Ins\File Formats\JPEG2000.8BI (JPEG 2000)
    2265 (+ 0) Plug-Ins\File Formats\FilmStrip.8BI (Filmstrip)
    2265 (+ 0) Plug-Ins\File Formats\Camera Raw.8bi (Camera Raw)
    2265 (+ 0) Plug-Ins\File Formats\BMP.8BI (BMP)
    2265 (+ 0) Plug-Ins\Organizer Only\PhotoshopAdapter.apl (Photoshop Adapter)
    2265 (+ 0) File format plug-ins:
    2265 (+ 0) CompuServe GIF (R: gif)
    2265 (+ 0) Wireless Bitmap (R: wbm wbmp)
    2265 (+ 0) Targa (R: tga vda icb vst)
    2265 (+ 0) Pixar (R: pxr)
    2265 (+ 0) PCX (R: pcx)
    2265 (+ 0) JPEG 2000 (R: jpf jpx jp2 j2c j2k jpc)
    2265 (+ 0) Camera Raw (R: tif crw nef raf orf mrw dcr mos raw pef srf dng x3f cr2 erf sr2 kdc mfw mef arw)
    2265 (+ 0) BMP (R: bmp rle dib)
    2265 (+ 0) Initializing AGM
    2422 (+ 157) Initializing CoolType
    9687 (+7265) Initializing Parser...
    9953 (+ 266) Initializing DOM Host...
    10234 (+ 281) Initializing SVG...
    10422 (+ 188) System:
    10468 (+ 46) System Architecture: AMD CPU Family:15 Model:11 Stepping:2 with MMX, SSE Integer, SSE FP
    10468 (+ 0) Driver versions:
    10468 (+ 0) Microsoft DirectX Version: 9.0
    10468 (+ 0) Support application versions:
    10500 (+ 32) Adobe Image Viewer Version: Not installed
    10515 (+ 15) Adobe Acrobat Reader Version: 9.0
    10515 (+ 0) Adobe Acrobat Version: Not installed
    10515 (+ 0) Initializing OLS
    11015 (+ 500) Cleaning up old email attachments
    11062 (+ 47) Initializing Controller...
    11078 (+ 16) Initializing Platform...
    11078 (+ 0) Initializing Threads...
    11281 (+ 203) Initializing Model...
    13468 (+2187) Initializing Main Interface...
    16172 (+2704) reloadNavigatorAndView() initializing for a new Search
    16172 (+ 0) getParetoInfo() initializing for a new Search
    17047 (+ 875) Finished UI init.
    17328 (+ 281) App is now visible and ready for input...
    514843 (+497515) reloadNavigatorAndView() initializing for a new Search
    514843 (+ 0) getParetoInfo() initializing for a new Search
    525984 (+11141) reloadNavigatorAndView() initializing for a new Search
    525984 (+ 0) getParetoInfo() initializing for a new Search
    557343 (+31359) reloadNavigatorAndView() initializing for a new Search
    557343 (+ 0) getParetoInfo() initializing for a new Search
    569734 (+12391) reloadNavigatorAndView() initializing for a new Search
    569734 (+ 0) getParetoInfo() initializing for a new Search
    585937 (+16203) reloadNavigatorAndView() initializing for a new Search
    585937 (+ 0) getParetoInfo() initializing for a new Search
    594578 (+8641) reloadNavigatorAndView() initializing for a new Search
    594578 (+ 0) getParetoInfo() initializing for a new Search
    Jon

  • Problem with StaticResources

    Hello,
    I'm developing an Extension SDK which offers a Page (the "main"-entry point for the integrator) with several static resources.
    The resources I am using are defined in a separate "DefaultStyles.xaml" ResourceDictionary file.
    Right now the UI Designer doesn't show anything because when opening the page with the Visual Studio UI Designer, all the StaticResources usages cannot be found.
    I know that this is because the ResourceDictionary itself doesn't get loaded from within the Page, instead I'm loading it in the App.xaml which uses the SDK later and to allow to override the defined StaticResources. (By the way... when I try to load the
    ResourceDictionary inside <Page.Resources> to see all the stuff in the UI Designer the App crashes when initializing its components during debugging and navigating to the page)
    Is there any other possibility to allow the integrator to customize the Page (besides of implementing a huge bunch of Dependency Properties or importing the DefaultStyles.xaml and overriding its defined Key Resources, like I'm doing right now)?
    Here a simple sample:
    I have two projects: the App and the SDK
    SDK
    - MainPage.xaml (e.g. BackgroundColorBrush is defined in DefaultStyles.xaml)
    <Page
    x:Class="xyzmo.ModernUiFatClient.Sdk.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:sdk="using:xyzmo.ModernUiFatClient.Sdk"
    xmlns:utilities="using:xyzmo.ModernUi.Sdk.Utilities"
    xmlns:xaml="using:xyzmo.UniversalSdk.Utilities.Xaml"
    mc:Ignorable="d"
    x:Name="PageRoot"
    DataContext="{Binding RelativeSource={RelativeSource Self}}"
    Loaded="OnMainPageLoaded"
    SizeChanged="MainPage_SizeChanged">
    <Page.Resources>
    <utilities:LocalizationHelper x:Key="LocalizationHelper" />
    <xaml:BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter" />
    </Page.Resources>
    <Grid Background="{StaticResource BackgroundColorBrush}" Visibility="{Binding IsPageLoaded, Converter={StaticResource BooleanToVisibilityConverter}}">
    <!-- CONTENT HERE -->
    </Grid>
    </Page>
    - DefaultStyles.xaml
    <ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <SolidColorBrush x:Key="BackgroundColorBrush" Color="Pink" />
    </ResourceDictionary>
    App
    - App.xaml (the Page from the SDK is used in the OnLaunched method in the code behind)
    <Application
    x:Class="xyzmo.SIGNificant.SignatureCapture.App"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:xaml="using:xyzmo.UniversalSdk.Utilities.Xaml"
    RequestedTheme="Light">
    <Application.Resources>
    <ResourceDictionary>
    <ResourceDictionary.MergedDictionaries>
    <ResourceDictionary Source="Sdk/DefaultStyle.xaml"/>
    <ResourceDictionary>
    <!-- BackgroundColorBrush from DefaultStyles.xaml gets overridden here -->
    <SolidColorBrush x:Key="BackgroundColorBrush" Color="Green" />
    </ResourceDictionary>
    </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
    </Application.Resources>
    </Application>
    I know this works but I don't feel very comfortable with this... since it is always required to import the DefaultStyles.xaml inside the App's code. Otherwise the StaticResources won't be found.
    Thank you very much for your help upfront!
    Daniel

    Hi Sekeepa,
    >> Is there any other possibility to allow the integrator to customize the Page (besides of implementing a huge bunch of Dependency Properties or importing the DefaultStyles.xaml and overriding its defined Key Resources, like I'm doing right now)?
    Based on my knowledge, you are using the correct way to share stuff with ResourceDictionary. In this case, you may have some advanced scenarios, you can implement a class that can have different behavior than the XAML resource reference lookup behavior.
    For this purpose, you implement the class
    CUstomXamlResourceLoader.
    You can see more information about it from
    https://msdn.microsoft.com/en-us/library/windows/apps/hh968442.aspx?f=255&MSPPError=-2147217396. See Custom resource lookup section.
    Try have a look at the code sample about using resource.
    https://code.msdn.microsoft.com/windowsapps/Application-resources-and-cd0c6eaa.
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Problem with cloning a DataSource

    Hello!!
    I have cloned a DataSource and used the cloned DataSource(not the original DataSource which i used for cloning) for transmitting via RTP. I don get any exception or any error but the audio isn't getting transmitted.
    (I tried receiving the transmitted audio stream using JMF.. But JMF doesn't detect any)
    However when i use the DataSource(which i used for cloning) it worked..
    dl=CaptureDeviceManager.getDeviceList(new AudioFormat(AudioFormat.LINEAR));
    ml=((CaptureDeviceInfo)dl.firstElement()).getLocator();
    +staticsource=Manager.createCloneableDataSource(Manager.createDataSource(ml));             //staticsource has been declared as static and i tried to clone it to produce new DataSources whenever i need+
    source=((SourceCloneable)staticsource).createClone();
    +p=Manager.createProcessor(source);           
    // I tried using staticsource and it worked but i need to get it right using the cloned one..+
    I think i have explained my problem pretty clearly.. Sorry if i din..
    Thanks!!
    Edited by: s.baalajee on Jun 2, 2009 9:08 AM

    Thanks for the help sir.. I read a previous post of yours which helped me to track down the mistake.. It was a small mistake in my logic.. I had not used the DataSource I used for cloning to create the processor(which means I din use it)..
    When I used that also to create processor the clones produced from that DataSource worked.. I have posted the modified code below..
    Edited by: s.baalajee on Jun 3, 2009 11:02 PM
    /*This program is to capture audio and send it to another system*/
    //package AudioChat;
    import java.awt.*;
    import java.net.*;
    import javax.media.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.media.format.*;
    import javax.media.protocol.*;
    import javax.media.control.*;
    import java.util.*;
    public class ATransmit extends JDialog implements ControllerListener
         Processor p=null;
         DataSink sink;
         MediaLocator ml;
         static DataSource staticsource=null;     
         DataSource source;          
         String cip,cun;
         Panel panel;
         int port;
         static boolean audioinuse;
         //     audioinuse will be false for the first time only
         public ATransmit(String c,JFrame f,MediaLocator medialocator,int po,String un,boolean audio)
              super(f,"Audio Chat "+un);
              cip=c;cun=un;
              port=po;
              audioinuse=audio;
              System.out.println("CIP :"+cip);
              setVisible(true);
              setBounds(600,50,300,75);
              setResizable(false);
              setLayout(new GridLayout(1,1));
              panel=new Panel();
              panel.setBackground(Color.BLACK);
              panel.setLayout(new BorderLayout());
              add(panel);
              addWindowListener(new WindowAdapter()
                   public void windowClosing(WindowEvent we)
                        stopEverything();     //     stops the DataSink and the Processor
              setDefaultCloseOperation(DISPOSE_ON_CLOSE);
    // For the first time alone I create the DataSource(staticsource) from the MediaLocator and use it to create the processor
    //For the subsequent times I create Clones of staticsource and use it to create the Processor
              try
                   if(!audioinuse)
                        System.out.println("Initializing all components");
                        ml=medialocator;
                        Manager.setHint(Manager.LIGHTWEIGHT_RENDERER,true);
                        staticsource=Manager.createCloneableDataSource(Manager.createDataSource(ml));
                        p=Manager.createProcessor(staticsource);          
                   else
                        source=((SourceCloneable)staticsource).createClone();
                        p=Manager.createProcessor(source);     
                   p.addControllerListener(this);
                   p.configure();
                   Thread.sleep(500);
                   p.setContentDescriptor(new ContentDescriptor(ContentDescriptor.RAW_RTP));
                   if(encode(p))
                        p.realize();
                   else
                        System.out.println(“Encoding failed”);
                   Thread.sleep(500);
              catch (Exception e)
                   System.err.println("Got exception "+e);
         public boolean encode(Processor p)
              TrackControl track[] = p.getTrackControls();
              boolean encodingOk = false;
              for (int i = 0; i < track.length; i++)
                   if (!encodingOk && track[i] instanceof FormatControl)
                        if (((FormatControl)track).setFormat( new AudioFormat(AudioFormat.DVI_RTP)) == null)
                             track[i].setEnabled(false);
                        else
                             encodingOk = true;
                   else
                        track[i].setEnabled(false);
              return encodingOk;
         public synchronized void controllerUpdate(ControllerEvent ce)
              try
                   if (ce instanceof RealizeCompleteEvent)
                        Component comp;
                        System.out.println("Realized");     
                        sink=Manager.createDataSink(p.getDataOutput(), new MediaLocator("rtp://"+cip+":"+(15000+port)+"/audio"));
                        if ((comp=p.getControlPanelComponent()) != null)
                             panel.add(BorderLayout.SOUTH,comp);
                        startEverything();     //     start the DataSink and the Processor
                        validate();
                        System.out.println("Updated");
              catch(Exception e)
                   System.out.println("Exception rasied "+e);
         void startEverything()
              try
                   sink.open();sink.start();
                   p.start();
              catch(Exception e)
                   System.out.println("Got Exception :"+e);
         void stopEverything()
              try
                   if(p!=null)
                        p.stop();
                   if(sink!=null)
                        sink.stop();
                        sink.close();
                   if(p!=null)
                        p.deallocate();
                        p.close();
              catch(Exception e)
                   System.out.println("Got Exception :"+e);
         public static void main(String s[])
              Vector dl;
              MediaLocator ml;
              JFrame frame=new JFrame();
              frame.setBounds(400,400,400,400);
              frame.setVisible(true);
              dl=CaptureDeviceManager.getDeviceList(new AudioFormat(AudioFormat.LINEAR));     
              ml=((CaptureDeviceInfo)dl.firstElement()).getLocator();
              new ATransmit("192.192.175.64",frame,ml,0,"s.baalajee",false);               //Note the last argument is false
              new ATransmit("192.192.175.64",frame,ml,100,"s.baalajee",true);     
              new ATransmit("192.192.175.64",frame,ml,200,"s.baalajee",true);     
              new ATransmit("192.192.175.64",frame,ml,300,"s.baalajee",true);     
    Edited by: s.baalajee on Jun 3, 2009 11:04 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Maybe you are looking for

  • Table cell scroll bar overflow- why doesnt it work?

    Hi everyone. Ok, im have an existing document/site: http://www.helenbwilson.com/helen-portfolio-1.html I want the table cell in the left to have a scroll bar (only with the height part). I want the "block" of the images to have a height of 400px. Now

  • Error when connecting to database in windows2000 professionnel

    i have a database in unix and another database in windows 2000 professionnel when i want to connect using sqlplus to database in windows 2000 professionel from database in unix the message error will appear memory fault(coredump)

  • Mark songs in iPod/iPhone for recognition in iTunes

    Hi, over the years I accumulated a lot of music. Now I want to use my iPod function on my iPhone to mark specific songs so I can change some metadata within iTunes later on. I tried to make a smart playlist in iTunes which shows me all tracks that ha

  • DataLoadRule file - Date conversion

    Hi, While working on a Dataload rule file,I was facing this problem. I'm getting date in the format "m(m)/d(d)/yyyy hh:mm:ss". Is there a way to change this to "mm/yy" ?? (There won't be anyproblem if I get mm/dd/yyyy hh:mm:ss style. but unfortunatel

  • How to download midlet in SDK from tomcat server on localhost

    how to download midlet OVER THE AIR in Java ME SDK 3 from tomcat server running on localhost THANKS!