Updated source for HttpUpload Example

Revised HttpInputStream
========================
// $Header$
// Copyright (c) 2000 Oracle Corporation
package ifs.pm.examples.webUI;
import javax.servlet.ServletInputStream;
import java.io.InputStream;
import java.io.IOException;
import ifs.pm.common.trace.Alert;
* A Class class.
* <P>
* @author Mark D. Drake
* Please complete these missing tags
* @rref
* @copyright
* @concurrency
* @see
public class HttpInputStream extends InputStream
private static final boolean DUMPBYTECOUNT = true;
private static final boolean DEBUG = false;
private static final boolean BYTEBUFFERDEBUG = false;
private static final boolean BYTELEVELDEBUG = false;
private byte [] m_ByteBuffer = new byte [ 0 ];
private byte [] m_PreservedBytes = new byte [ 0 ];
private int m_AvailableBytesCount = 0;
private int m_BytesProcessed = 0;
private long m_BytesRead = 0;
// Note Combination of ByteBufferDebug and 64K Buffer will cause out-of-memory error
private int m_ByteBufferSize = 64 * 1024;
private boolean m_ReadEndOfPart = false;
private ServletInputStream m_InputStream;
private String m_EndOfStreamMarker;
private String m_EndOfPartMarker;
private boolean m_EndOfStream = false;
* Please complete the missing tags for HttpInputStream
* @param
* @return
* @throws
* @pre
* @post
public HttpInputStream( ServletInputStream is, String endOfPart, String endOfStream)
m_InputStream = is;
m_EndOfStreamMarker = endOfPart;
m_EndOfPartMarker = endOfStream;
if( m_EndOfStreamMarker.length() > m_ByteBufferSize )
// Extremly Unlikely....
m_ByteBufferSize = m_EndOfStreamMarker.length() * 2;
m_ByteBuffer = new byte [ m_ByteBufferSize ];
public boolean readEndOfStream()
return m_EndOfStream;
* Reads the next byte of data from the input stream. The value byte is
* returned as an <code>int</code> in the range <code>0</code> to
* <code>255</code>. If no byte is available because the end of the stream
* has been reached, the value <code>-1</code> is returned. This method
* blocks until input data is available, the end of the stream is detected,
* or an exception is thrown.
* <p> A subclass must provide an implementation of this method.
* @return the next byte of data, or <code>-1</code> if the end of the
* stream is reached.
* @exception IOException if an I/O error occurs.
* Please complete the missing tags for read
* @param
* @throws
* @pre
* @post
public int read() throws IOException
if( readEndOfPart() )
return - 1;
if( m_BytesProcessed == m_AvailableBytesCount )
if( DUMPBYTECOUNT )
m_BytesRead = m_BytesRead + m_BytesProcessed;
Alert.log( "HttpInputStream.read(): Total Bytes read " + m_BytesRead );
m_BytesProcessed = 0;
m_AvailableBytesCount = 0;
while( m_AvailableBytesCount == 0 )
// Refill the Byte Buffer from the Servlet Input Stream
if( DEBUG )
Alert.log( "HttpInputStream.read(): Attempting to read " + m_ByteBufferSize + " byes from ServletInputStream." );
int offset = m_PreservedBytes.length;
// m_ByteBuffer = new byte[m_ByteBufferSize];
if( BYTEBUFFERDEBUG )
Alert.log( "HttpInputStream.read(): Buffer Size = " + m_ByteBuffer.length + ". Offset = " + offset + ". Bytes Count = " + ( m_ByteBuffer.length - offset ) );
int bytesReadFromStream = readLine( m_ByteBuffer, offset, ( m_ByteBuffer.length - offset ) );
if( DEBUG )
Alert.log( "HttpInputStream.read(): Bytes Read = " + bytesReadFromStream );
if( ( bytesReadFromStream == m_EndOfPartMarker.length() ) &#0124; &#0124; ( bytesReadFromStream == m_EndOfStreamMarker.length() ) )
// Potentially read the EndOfPart or EndOfStream Marker....
String lineRead = new String( m_ByteBuffer, offset, bytesReadFromStream );
if( DEBUG )
Alert.log( "HttpInputStream.read(): Next Line = " + lineRead );
m_ReadEndOfPart = endOfPart( lineRead );
if( readEndOfPart() )
if( DEBUG )
Alert.log( "HttpInputStream.read(): Detected EndOfPart." );
return - 1;
// Copy the Preserved Bytes into the first Bytes of the new Buffer.
if( DEBUG )
Alert.log( "HttpInputStream.read(): Restoring " + offset + " preserved Characters." );
for( int i = 0; i < offset; i++ )
m_ByteBuffer [ i ] = m_PreservedBytes [ i ];
m_AvailableBytesCount = bytesReadFromStream + offset;
if( DEBUG )
Alert.log( "HttpInputStream.read(): Bytes Available = " + m_AvailableBytesCount );
// Check if we need to preserve Bytes at the end of the Input Stream
if( byteBufferEndsWithCRLF() )
if( DEBUG )
Alert.log( "HttpInputStream.read(): Preserving Trailing 2 Bytes." );
m_PreservedBytes = new byte [ 2 ];
m_PreservedBytes [ 0 ] = m_ByteBuffer [ m_AvailableBytesCount - 2 ];
m_PreservedBytes [ 1 ] = m_ByteBuffer [ m_AvailableBytesCount - 1 ];
m_AvailableBytesCount = m_AvailableBytesCount - 2;
else
m_PreservedBytes = new byte [ 0 ];
if( DEBUG )
Alert.log( "HttpInputStream.read(): ByteBuffer contains " + m_AvailableBytesCount + " bytes." );
if( BYTEBUFFERDEBUG )
String line = new String( m_ByteBuffer, 0, m_AvailableBytesCount );
Alert.log( "HttpInputStream.read(): Byte Buffer Contents = " + line );
if( DEBUG )
Alert.log( "HttpInputStream.read(): Buffer Ready - Size = " + m_ByteBuffer.length + ". Buffer Contains " + m_AvailableBytesCount + " Bytes." );
// Byte Buffer now Available for Processing.
if( BYTELEVELDEBUG )
Alert.log( "Reading Byte " + m_BytesProcessed );
int retVal = m_ByteBuffer [ m_BytesProcessed ];
retVal = ( retVal < 0 ) ? 256 + retVal: retVal;
if( BYTELEVELDEBUG )
Alert.log( "Byte " + m_BytesProcessed + "=" + retVal );
m_BytesProcessed++;
return retVal;
* Reads some number of bytes from the input stream and stores them into
* the buffer array <code>b</code>. The number of bytes actually read is
* returned as an integer. This method blocks until input data is
* available, end of file is detected, or an exception is thrown.
* <p> If <code>b</code> is <code>null</code>, a
* <code>NullPointerException</code> is thrown. If the length of
* <code>b</code> is zero, then no bytes are read and <code>0</code> is
* returned; otherwise, there is an attempt to read at least one byte. If
* no byte is available because the stream is at end of file, the value
* <code>-1</code> is returned; otherwise, at least one byte is read and
* stored into <code>b</code>.
* <p> The first byte read is stored into element <code>b[0]</code>, the
* next one into <code>b[1]</code>, and so on. The number of bytes read is,
* at most, equal to the length of <code>b</code>. Let <i>k</i> be the
* number of bytes actually read; these bytes will be stored in elements
* <code>b[0]</code> through <code>b[</code><i>k</i><code>-1]</code>,
* leaving elements <code>b[</code><i>k</i><code>]</code> through
* <code>b[b.length-1]</code> unaffected.
* <p> If the first byte cannot be read for any reason other than end of
* file, then an <code>IOException</code> is thrown. In particular, an
* <code>IOException</code> is thrown if the input stream has been closed.
* <p> The <code>read(b)</code> method for class <code>InputStream</code>
* has the same effect as: <pre><code> read(b, 0, b.length) </code></pre>
* @param b the buffer into which the data is read.
* @return the total number of bytes read into the buffer, or
* <code>-1</code> is there is no more data because the end of
* the stream has been reached.
* @exception IOException if an I/O error occurs.
* @ see java.io.InputStream#read(byte[], int, int)
* Please complete the missing tags for read
* @throws
* @pre
* @post
public int read( byte [] b ) throws IOException
if( DEBUG )
Alert.log( "HttpInputStream.read(byte[] b)." );
return super.read( b );
* Reads up to <code>len</code> bytes of data from the input stream into
* an array of bytes. An attempt is made to read as many as
* <code>len</code> bytes, but a smaller number may be read, possibly
* zero. The number of bytes actually read is returned as an integer.
* <p> This method blocks until input data is available, end of file is
* detected, or an exception is thrown.
* <p> If <code>b</code> is <code>null</code>, a
* <code>NullPointerException</code> is thrown.
* <p> If <code>off</code> is negative, or <code>len</code> is negative, or
* <code>off+len</code> is greater than the length of the array
* <code>b</code>, then an <code>IndexOutOfBoundsException</code> is
* thrown.
* <p> If <code>len</code> is zero, then no bytes are read and
* <code>0</code> is returned; otherwise, there is an attempt to read at
* least one byte. If no byte is available because the stream is at end of
* file, the value <code>-1</code> is returned; otherwise, at least one
* byte is read and stored into <code>b</code>.
* <p> The first byte read is stored into element <code>b[off]</code>, the
* next one into <code>b[off+1]</code>, and so on. The number of bytes read
* is, at most, equal to <code>len</code>. Let <i>k</i> be the number of
* bytes actually read; these bytes will be stored in elements
* <code>b[off]</code> through <code>b[off+</code><i>k</i><code>-1]</code>,
* leaving elements <code>b[off+</code><i>k</i><code>]</code> through
* <code>b[off+len-1]</code> unaffected.
* <p> In every case, elements <code>b[0]</code> through
* <code>b[off]</code> and elements <code>b[off+len]</code> through
* <code>b[b.length-1]</code> are unaffected.
* <p> If the first byte cannot be read for any reason other than end of
* file, then an <code>IOException</code> is thrown. In particular, an
* <code>IOException</code> is thrown if the input stream has been closed.
* <p> The <code>read(b,</code> <code>off,</code> <code>len)</code> method
* for class <code>InputStream</code> simply calls the method
* <code>read()</code> repeatedly. If the first such call results in an
* <code>IOException</code>, that exception is returned from the call to
* the <code>read(b,</code> <code>off,</code> <code>len)</code> method. If
* any subsequent call to <code>read()</code> results in a
* <code>IOException</code>, the exception is caught and treated as if it
* were end of file; the bytes read up to that point are stored into
* <code>b</code> and the number of bytes read before the exception
* occurred is returned. Subclasses are encouraged to provide a more
* efficient implementation of this method.
* @param b the buffer into which the data is read. * @param off the start offset in array <code>b</code>
* at which the data is written.
* @param len the maximum number of bytes to read.
* @return the total number of bytes read into the buffer, or
* <code>-1</code> if there is no more data because the end of
* the stream has been reached.
* @exception IOException if an I/O error occurs.
* @see java.io.InputStream#read()
* Please complete the mi ssing tags for read
* @throws
* @pre
* @post
public int read( byte [] b, int off, int len ) throws IOException
if( DEBUG )
Alert.log( "HttpInputStream.read(byte[] b,int off,int len): Buffer Size = " + len );
int byteCount = super.read( b, off, len );
if( DEBUG )
Alert.log( "HttpInputStream.read(byte[] b,int off,int len): BytesRead = " + byteCount );
return byteCount;
* Skips over and discards <code>n</code> bytes of data from this input
* stream. The <code>skip</code> method may, for a variety of reasons, end
* up skipping over some smaller number of bytes, possibly <code>0</code>.
* This may result from any of a number of conditions; reaching end of file
* before <code>n</code> bytes have been skipped is only one possibility.
* The actual number of bytes skipped is returned. If <code>n</code> is
* negative, no bytes are skipped.
* <p> The <code>skip</code> method of <code>InputStream</code> creates a
* byte array and then repeatedly reads into it until <code>n</code> bytes
* have been read or the end of the stream has been reached. Subclasses are
* encouraged to provide a more efficient implementation of this method.
* @param n the number of bytes to be skipped.
* @return the actual number of bytes skipped.
* @exception IOException if an I/O error occurs.
* Please complete the missing tags for skip
* @throws
* @pre
* @post
public long skip( long n ) throws IOException
if( DEBUG )
Alert.log( "HttpInputStream.read(byte[] b,int off,int len)." );
return super.skip( n );
* Returns the number of bytes that can be read (or skipped over) from
* this input stream without blocking by the next caller of a method for
* this input stream. The next caller might be the same thread or or
* another thread.
* <p> The <code>available</code> method for class <code>InputStream</code>
* always returns <code>0</code>.
* <p> This method should be overridden by subclasses.
* @return the number of bytes that can be read from this input stream
* without blocking.
* @exception IOException if an I/O error occurs.
* Please complete the missing tags for available
* @param
* @throws
* @pre
* @post
public int available() throws IOException
if( DEBUG )
Alert.log( "HttpInputStream.available()." );
return 0;
* Closes this input stream and releases any system resources associated
* with the stream.
* <p> The <code>close</code> method of <code>InputStream</code> does
* nothing.
* @exception IOException if an I/O error occurs.
* Please complete the missing tags for close
* @param
* @return
* @throws
* @pre
* @post
public void close() throws IOException
if( DEBUG )
Alert.log( "HttpInputStream.close()." );
if( ! readEndOfPart() )
if( DEBUG )
Alert.log( "HttpInputStream.close(): Skipping rest of Part." );
// Read Until the End of Part is Detected.
readToEndOfPart();
* Marks the current position in this input stream. A subsequent call to
* the <code>reset</code> method repositions this stream at the last marked
* position so that subsequent reads re-read the same bytes.
* <p> The <code>readlimit</code> arguments tells this input stream to
* allow that many bytes to be read before the mark position gets
* invalidated.
* <p> The general contract of <code>mark</code> is that, if the method
* <code>markSupported</code> returns <code>true</code>, the stream somehow
* remembers all the bytes read after the call to <code>mark</code> and
* stands ready to supply those same bytes again if and whenever the method
* <code>reset</code> is called. However, the stream is not required to
* remembe r any data at all if more than <code>readlimit</code> bytes are
* read from the stream before <code>reset</code> is called.
* <p> The <code>mark</code> method of <code>InputStream</code> does
* nothing.
* @param readlimit the maximum limit of bytes that can be read before
* the mark position becomes invalid.
* @see java.io.InputStream#reset()
* Please complete the missing tags for mark
* @return
* @throws
* @pre
* @post
public synchronized void mark( int readlimit )
if( DEBUG )
Alert.log( "HttpInputStream.mark(int readlimit)." );
super.mark( readlimit );
* Repositions this stream to the position at the time the
* <code>mark</code> method was last called on this input stream.
* <p> The general contract of <code>reset</code> is:
* <p><ul>
* <li> If the method <code>markSupported</code> returns
* <code>true</code>, then:
* <ul><li> If the method <code>mark</code> has not been called since
* the stream was created, or the number of bytes read from the stream
* since <code>mark</code> was last called is larger than the argument
* to <code>mark</code> at that last call, then an
* <code>IOException</code> might be thrown.
* <li> If such an <code>IOException</code> is not thrown, then the
* stream is reset to a state such that all the bytes read since the
* most recent call to <code>mark</code> (or since the start of the
* file, if <code>mark</code> has not been called) will be resupplied
* to subsequent callers of the <code>read</code> method, followed by
* any bytes that otherwise would have been the next input data as of
* the time of the call to <code>reset</code>. </ul>
* <li> If the method <code>markSupported</code> returns
* <code>false</code>, then:
* <ul><li> The call to <code>reset</code> may throw an
* <code>IOException</code>.
* <li> If an <code>IOException</code> is not thrown, then the stream
* is reset to a fixed state that depends on the particular type of the
* input stream and how it was created. The bytes that will be supplied
* to subsequent callers of the <code>read</code> method depend on the
* particular type of the input stream. </ul></ul>
* <p> The method <code>reset</code> for class <code>InputStream</code>
* does nothing and always throws an <code>IOException</code>.
* @exception IOException if this stream has not been marked or if the
* mark has been invalidated.
* @see java.io.InputStream#mark(int)
* @see java.io.IOException
* Please complete the missing tags for reset
* @param
* @return
* @throws
* @pre
* @post
public synchronized void reset() throws IOException
if( DEBUG )
Alert.log( "HttpInputStream.reset()." );
super.reset();
* Tests if this input stream supports the <code>mark</code> and
* <code>reset</code> methods. The <code>markSupported</code> method of
* <code>InputStream</code> returns <code>false</code>.
* @return <code>true</code> if this true type supports the mark and reset
* method; <code>false</code> otherwise.
* @see java.io.InputStream#mark(int)
* @see java.io.InputStream#reset()
* Please complete the missing tags for markSupported
* @param
* @throws
* @pre
* @post
public boolean markSupported()
if( DEBUG )
Alert.log( "HttpInputStream.markSupported()." );
return false;
* Please complete the missing tags for readEndOfPart
* @param
* @return
* @throws
* @pre
* @post
private boolean readEndOfPart()
return m_ReadEnd OfPart;
* Please complete the missing tags for byteBufferEndsWithCRLF
* @param
* @return
* @throws
* @pre
* @post
private boolean byteBufferEndsWithCRLF()
if( m_AvailableBytesCount > 1 )
byte rbyte = m_ByteBuffer [ m_AvailableBytesCount - 2 ];
byte nbyte = m_ByteBuffer [ m_AvailableBytesCount - 1 ];
return( ( rbyte == '\r' ) && ( nbyte == '\n' ) );
else
return false;
* Please complete the missing tags for readLine
* @param
* @return
* @throws
* @pre
* @post
private int readLine( byte [] buf, int offset, int len )
throws IOException
// Replace Buggy ReadLine in ServletInputStream...
int nextByte;
for( nextByte = offset; nextByte < buf.length; nextByte++ )
int next = m_InputStream.read();
if( next < 0 )
// No More Bytes to Read -- Bytes Read is last Byte Filled - 1;
// Will return -1 if no characters are read.
nextByte--;
break;
buf [ nextByte ] = ( next < 128 ) ? ( byte ) next: ( byte ) ( next - 256 );
if( buf [ nextByte ] == '\n' )
// Hit LF -- Bytes Read is last Byte Filled + 1;
nextByte++;
break;
// If we get here without a 'Break' then we filled the Buffer.
// nextByte was incremented by the 'for' statement prior to exiting the Loop.
return nextByte - offset;
* Please complete the missing tags for endOfPart
* @param
* @return
* @throws
* @pre
* @post
protected boolean endOfPart( String line )
// Check if the Line starts with the defined Multi-Part Boundary
if( line.equals( m_EndOfPartMarker ) )
return true;
else
if( line.equals( m_EndOfStreamMarker ) )
m_EndOfStream = true;
return true;
return false;
* Please complete the missing tags for readToEndOfPart
* @param
* @return
* @throws
* @pre
* @post
protected void readToEndOfPart()
throws IOException
for( String nextLine = getLineAsString( m_InputStream );
! endOfPart( nextLine );
nextLine = getLineAsString( m_InputStream ) )
* Please complete the missing tags for getLineAsString
* @param
* @return
* @throws
* @pre
* @post
protected static String getLineAsString( ServletInputStream sis )
throws IOException
String line = "";
byte [] bytes = new byte [ 8 * 1024 ];
int bytesRead = 0;
for( bytesRead = sis.readLine( bytes, 0, bytes.length );
bytesRead == bytes.length;
bytesRead = sis.readLine( bytes, 0, bytes.length ) )
line = line + new String( bytes, 0, bytesRead );
line = line + new String( bytes, 0, bytesRead );
return line;
}

Revised HttpUploadHtml
=======================
// $Header$
// Copyright (c) 2000 Oracle Corporation
package ifs.pm.examples.webUI;
import oracle.ifs.common.IfsException;
import oracle.ifs.utils.common.LocaleUtilities;
import oracle.ifs.utils.common.CharacterSet;
import oracle.ifs.utils.common.Language;
import oracle.ifs.beans.ClassObject;
import oracle.ifs.beans.AccessControlList;
import oracle.ifs.beans.SystemAccessControlList;
import oracle.ifs.beans.ClassAccessControlList;
import oracle.ifs.common.AttributeValue;
import oracle.ifs.adk.http.HttpUtils;
import ifs.pm.common.trace.Alert;
import ifs.pm.common.renderer.RendererUtilities;
import oracle.ifs.beans.LibraryObject;
import oracle.ifs.beans.PublicObject;
import oracle.ifs.beans.Document;
import oracle.ifs.beans.ContentObject;
import javax.servlet.http.HttpServletRequest;
import oracle.ifs.common.Collection;
* A Class class.
* <P>
* @author Mark D. Drake
* Please complete these missing tags
* @rref
* @copyright
* @concurrency
* @see
public class HttpUploadHtml extends Object
public static final boolean DEBUG = false;
public static final String CHECKFILENAME_SCRIPT = "validateFileName";
public static final String SAVEATTRIBUTES_SCRIPT = "saveAttributeValues";
public static final String CLOSEUPLOAD_SCRIPT = "closeUploadForm";
public static final String SELECTCONTENTTYPE_FORM = "SelectClassObject";
public static final String EDITATTRIBUTES_FORM = "EditAttributes";
* Please complete the missing tags for getEnterFilenameAlert
* @param
* @return
* @throws
* @pre
* @post
protected String getEnterFilenameAlert()
return "Please enter / select a File before selecting 'Upload'.";
* Please complete the missing tags for getEnterPathAlert
* @param
* @return
* @throws
* @pre
* @post
protected String getEnterPathAlert()
return "Please enter a Path before selecting 'Upload'.";
* Please complete the missing tags for getSubClassList
* @param
* @return
* @throws
* @pre
* @post
protected String getSubClassList( ClassObject rootClassObject, ClassObject selected )
throws IfsException
return generateObjectListEntryHtml( rootClassObject, selected );
* Constructor
* Please complete the missing tags for generateFileUploadDialog
* @param
* @return
* @throws
* @pre
* @post
// ------------------- File Upload Dialog --------------------- //
protected String generateFileUploadDialog( HttpServletRequest request, HttpUploadBean bean )
throws IfsException
return generateCheckFilenameAlert( bean ) +
generateCloseUploadScript( HttpUtils.getURLFromIfsPath( request, bean.getTargetPath() ) ) +
"<FORM NAME=\"" + bean.UPLOADFILE + "\"" + "\r\n" +
" ENCTYPE=\"multipart/form-data\"" + "\r\n" +
" ACTION=\"" + bean.getJspPath() + "\"" + "\r\n" +
" METHOD=\"Post\">" + "\r\n" +
"<INPUT NAME=\"" + bean.STAGE + "\"" + "\r\n" +
" TYPE=\"hidden\"" + "\r\n" +
" Value=\"" + bean.UPLOADFILE + "\">" + "\r\n" +
generatePathInputHtml( HttpUtils.PATH_PARAMETER, bean.getTargetPath() ) + "\r\n" +
generateFileInputHtml( bean.SOURCE ) + "\r\n" +
generateDescriptionHtml( PublicObject.DESCRIPTION_ATTRIBUTE, bean.getDescription() ) + "\r\n" +
generateAclSelectorHtml( bean.getTargetAcl() ) + "\r\n" +
generateLanguageSelectorHtml( bean.getLanguage() ) + "\r\n" +
generateCharsetSelectorHtml( bean.getCharacterSet() ) + "\r\n" +
"<BR>" + "\r\n" +
"<INPUT NAME=\"" + bean.ACTION + "\"" + "\r\n" +
" VALUE=\"" + bean.UPLOAD + "\"" + "\r\n" +
" TYPE=\"Button\"" + "\r\n" +
" onClick=\"" + CHECKFILENAME_SCRIPT + "();\">" + "\r\n" +
"<INPUT NAME=\"" + bean.ACTION + "\"" + "\r\n" +
" VALUE=\"" + bean.CANCEL + "\"" + "\r\n" +
" TYPE=\"Button\"" + "\r\n" +
" onClick=\"" + CLOSEUPLOAD_SCRIPT + "()\">" + "\r\n" +
"</FORM>" + "\r\n";
* Please complete the missing tags for generatePathDialog
* @param
* @return
* @throws
* @pre
* @post
protected String generatePathDialog( HttpServletRequest request, HttpUploadBean bean )
throws IfsException
return generateCheckPathAlert( bean ) +
"<FORM NAME=\"" + bean.UPLOADFILE + "\"" + "\r\n" +
" ACTION=\"" + bean.getJspPath() + "\"" + "\r\n" +
" METHOD=\"Post\">" + "\r\n" +
"<INPUT NAME=\"" + bean.STAGE + "\"" + "\r\n" +
" TYPE=\"hidden\"" + "\r\n" +
" Value=\"" + bean.SELECTTARGETFOLDER + "\">" + "\r\n" +
"<INPUT NAME=\"" + bean.METHOD + "\"" + "\r\n" +
" TYPE=\"hidden\"" + "\r\n" +
" Value=\"" + bean.getMethod() + "\">" + "\r\n" +
"<INPUT NAME=\"" + bean.TEMPORARYOBJECTID + "\"" + "\r\n" +
" TYPE=\"hidden\"" + "\r\n" +
" Value=\"" + bean.getTemporaryObjectId() + "\">" + "\r\n" +
"<INPUT NAME=\"" + bean.SOURCE + "\"" + "\r\n" +
" TYPE=\"hidden\"" + "\r\n" +
" Value=\"" + bean.getSourceFileName() + "\">" + "\r\n" +
generatePathInputHtml( HttpUtils.PATH_PARAMETER, bean.getTargetPath() ) + "\r\n" +
generateFileDisplayHtml( bean.getSourceFileName() ) + "\r\n" +
generateDescriptionHtml( PublicObject.DESCRIPTION_ATTRIBUTE, bean.getDescription() ) + "\r\n" +
generateAclSelectorHtml( bean.getTargetAcl() ) + "\r\n" +
generateLanguageSelectorHtml( bean.getLanguage() ) + "\r\n" +
generateCharsetSelectorHtml( bean.getCharacterSet() ) + "\r\n" +
"<BR>" + "\r\n" +
"<INPUT NAME=\"" + bean.ACTION + "\"" + "\r\n" +
" VALUE=\"" + bean.UPLOAD + "\"" + "\r\n" +
" TYPE=\"Button\"" + "\r\n" +
" onClick=\"" + CHECKFILENAME_SCRIPT + "();\">" + "\r\n" +
"<INPUT NAME=\"" + bean.ACTION + "\"" + "\r\n" +
" VALUE=\"" + bean.CANCEL + "\"" + "\r\n" +
" TYPE=\"Button\">" + "\r\n" +
"</FORM>" + "\r\n" +
"<SCRIPT Language=\"Javascript\">" + "\r\n" +
" alert(\"" + bean.getErrorMessage() + "\");" + "\r\n" +
"</SCRIPT>";
* Please complete the missing tags for generateCheckFilenameAlert
* @param
* @return
* @throws
* @pre
* @post
protected String generateCheckFilenameAlert( HttpUploadBean bean )
return "<script language=\"javascript\">" + "\r\n" +
" function " + CHECKFILENAME_SCRIPT + "()" + "\r\n" +
" {" + "\r\n" +
" if (document." + bean.UPLOADFILE + "." + bean.SOURCE + ".value == \"\")" + "\r\n" +
" {" + "\r\n" +
" alert(\"" + getEnterFilenameAlert() + "\");" + "\r\n" +
" }" + "\r\n" +
" else" + "\r\n" +
" {" + "\r\n" +
" if (document." + bean.UPLOADFILE + "." + HttpUtils.PATH_PARAMETER + ".value == \"\")" + "\r\n" +
" {" + "\r\n" +
" alert(\"" + getEnterPathAlert() + "\");" + "\r\n" +
" }" + "\r\n" +
" else" + "\r\n" +
" {" + "\r\n" +
" document." + bean.UPLOADFILE + ".submit();" + "\r\n" +
" }" + "\r\n" +
" }" + "\r\n" +
" }" + "\r\n" +
"</script>" + "\r\n";
* Please complete the missing tags for generateCheckPathAlert
* @param
* @return
* @throws
* @pre
* @post
protected String generateCheckPathAlert( HttpUploadBean bean )
return "<script language=\"javascript\">" + "\r\n" +
" function " + CHECKFILENAME_SCRIPT + "()" + "\r\n" +
" {" + "\r\n" +
" if (document." + bean.UPLOADFILE + "." + HttpUtils.PATH_PARAMETER + ".value == \"\")" + "\r\n" +
" {" + "\r\n" +
" alert(\"" + getEnterPathAlert() + "\");" + "\r\n" +
" }" + "\r\n" +
" else" + "\r\n" +
" {" + "\r\n" +
" document." + bean.UPLOADFILE + ".submit();" + "\r\n" +
" }" + "\r\n" +
" }" + "\r\n" +
"</script>" + "\r\n";
* Please complete the missing tags for generateCloseUploadScript
* @param
* @return
* @throws
* @pre
* @post
protected String generateCloseUploadScript( String path )
return "<script language=\"javascript\">" + "\r\n" +
" function " + CLOSEUPLOAD_SCRIPT + "()" + "\r\n" +
" {" + "\r\n" +
" parent.frames.body.location=\"../jsps/container.jsp?path=" + path + "\"" + "\r\n" +
" }" + "\r\n" +
"</script>" + "\r\n";
* Please complete the missing tags for generatePathInputHtml
* @param
* @return
* @throws
* @pre
* @post
p rotected String generatePathInputHtml( String name, String value )
String inputField = "<INPUT NAME=\"" + name + "\"" + "\r\n" +
" TYPE=\"text\"" + "\r\n" +
" Value=\"" + value + "\"" + "\r\n" +
" SIZE=56" + "\r\n" +
" maxchars = 500>" + "\r\n";
return generateTableHtml( "Path", inputField );
* Please complete the missing tags for generateFileInputHtml
* @param
* @return
* @throws
* @pre
* @post
protected String generateFileInputHtml( String name )
String inputField = "<INPUT NAME=\"" + name + "\"" + "\r\n" +
" TYPE=\"file\"" + "\r\n" +
" ENCTYPE=\"multipart/form-data\"" + "\r\n" +
" SIZE=56" + "\r\n" +
" maxchars = 500>" + "\r\n";
return generateTableHtml( "File", inputField );
* Please complete the missing tags for generateEditAttributesDialog
* @param
* @return
* @throws
* @pre
* @post
// ------------------- Edit Attributes Dialog --------------------- //
protected String generateEditAttributesDialog( HttpServletRequest request, HttpUploadBean bean )
throws IfsException
String html = generatePathDisplayHtml( bean.getTargetPath() ) + "\r\n" +
generateFileDisplayHtml( bean.getSourceFileName() ) + "\r\n" +
generateCloseUploadScript( HttpUtils.getURLFromIfsPath( request, bean.getTargetPath() ) );
if( ! bean.createdViaParser() )
html = html + generateClassSelectionDialog( bean ) + "\r\n";
else
html = html + generateContentTypeDisplayHtml( bean ) + "\r\n";
html = html + generateAttributesDialog( bean );
return html;
* Please complete the missing tags for generatePathDisplayHtml
* @param
* @return
* @throws
* @pre
* @post
protected String generatePathDisplayHtml( String name )
return generateTableHtml( "Path", "<B>" + name + "</B>" );
* Please complete the missing tags for generateFileDisplayHtml
* @param
* @return
* @throws
* @pre
* @post
protected String generateFileDisplayHtml( String name )
return generateTableHtml( "File", "<B>" + name + "</B>" );
* Please complete the missing tags for generateClassSelectionDialog
* @param
* @return
* @throws
* @pre
* @post
// ------------------------ Class Selection Dialog -------------------------//
protected String generateClassSelectionDialog( HttpUploadBean bean )
throws IfsException
return generateSaveAttributesScript() +
"<FORM NAME=\"" + SELECTCONTENTTYPE_FORM + "\"" + "\r\n" +
" ACTION=\"" + bean.getJspPath() + "\"" + "\r\n" +
" METHOD=\"Post\">" + "\r\n" +
generateHiddenFieldHtml( bean ) +
"<INPUT NAME=\"" + PublicObject.DESCRIPTION_ATTRIBUTE + "\"" + "\r\n" +
" TYPE=\"hidden\"" + "\r\n" +
" Value=\"" + bean.getDescription() + "\">" + "\r\n" +
"<INPUT NAME=\"" + Document.ACL_ATTRIBUTE + "\"" + "\r\n" +
" TYPE=\"hidden\"" + "\r\n" +
" Value=\"" + bean.getAccessControlListId() + "\">" + "\r\n" +
"<INPUT NAME=\"" + ContentObject.LANGUAGE_ATTRIBUTE + "\"" + "\r\n" +
" TYPE=\"hidden\"" + "\r\n" +
" Value=\"" + bean.getLanguage() + "\">" + "\r\n" +
"<INPUT NAME=\"" + ContentObject.CHARACTERSET_ATTRIBUTE + "\"" + "\r\n" +
" TYPE=\"hidden\"" + "\r\n" +
" Value=\"" + bean.getCharacterSet() + "\">" + "\r\n" +
"<INPUT NAME=\"" + bean.STAGE + "\"" + "\r\n" +
" TYPE=\"hidden\"" + "\r\n" +
" Value=\"" + bean.SELECTCONTENTTYPE + "\">" + "\r\n" +
"<INPUT NAME=\"" + bean.ACTION + "\"" + "\r\n" +
" TYPE=\"hidden\"" + "\r\n" +
" Value=\"" + bean.SELECTCONTENTTYPE + "\">" + "\r\n" +
"<BR>" + "\r\n" +
generateContentTypeSelectorHtml( bean.CONTENTTYPELIST, bean.getUploadedObject().getClassObject(), bean.getTargetContentType() ) + "\r\n" +
"<BR>" + "\r\n" +
"</FORM>" + "\r\n";
* Please complete the missing tags for generateSaveAttributesScript
* @param
* @return
* @throws
* @pre
* @post
protected String generateSaveAttributesScript()
return "<script language=\"javascript\">" + "\r\n" +
" function " + SAVEATTRIBUTES_SCRIPT + "()" + "\r\n" +
" {" + "\r\n" +
" document." + SELECTCONTENTTYPE_FORM + "." + PublicObject.DESCRIPTION_ATTRIBUTE + ".value = document." + EDITATTRIBUTES_FORM + "." + PublicObject.DESCRIPTION_ATTRIBUTE + ".value;" + "\r\n" +
" document." + SELECTCONTENTTYPE_FORM + "." + PublicObject.ACL_ATTRIBUTE + ".value = document." + EDITATTRIBUTES_FORM + "." + PublicObject.ACL_ATTRIBUTE + ".value;" + "\r\n" +
" document." + SELECTCONTENTTYPE_FORM + "." + ContentObject.CHARACTERSET_ATTRIBUTE + ".value = document." + EDITATTRIBUTES_FORM + "." + ContentObject.CHARACTERSET_ATTRIBUTE + ".value;" + "\r\n" +
" document." + SELECTCONTENTTYPE_FORM + "." + ContentObject.LANGUAGE_ATTRIBUTE + ".value = document." + EDITATTRIBUTES_FORM + "." + ContentObject.LANGUAGE_ATTRIBUTE + ".value;" + "\r\n" +
" document." + SELECTCONTENTTYPE_FORM + ".submit();" + "\r\n" +
" }" + "\r\n" +
"</script>" + "\r\n";
* Please complete the missing tags for generateContentTypeSelectorHtml
* @param
* @return
* @throws
* @pre
* @post
// ------------------- Content Type Selector --------------------- //
protected String generateContentTypeSelectorHtml( String name, ClassObject rootClassObject, ClassObject selected )
throws IfsException
String inputField = "<SELECT NAME=\"" + name + "\"" + "\r\n" +
" onChange=\"" + SAVEATTRIBUTES_SCRIPT + "()\">" + "\r\n" +
getSubClassList( rootClassObject, selected ) + "\r\n" +
"</SELECT>";
return generateTableHtml( "Content Type", inputField );
* Please complete the missing tags for generateObjectListEntryHtml
* @param
* @return
* @throws
* @pre
* @post
protected String generateObjectListEntryHtml( ClassObject co, ClassObject selected )
throws IfsException
String retVal = null;
if( co.equals( selected ) )
retVal = "<option value=\"" + co.getName() + "\" selected>" + co.getName() + "</option>\"";
else
retVal = "<option value=\"" + co.getName() + "\">" + co.getName() + "</option>\"";
ClassObject [] subclasses = co.getDirectSubclasses();
if( co != null )
for( int i = 0; i < subclasses.length; i++ )
retVal = retVal + "\n" + generateObjectListEntryHtml( subclasses [ i ], selected );
return retVal;
* Please complete the missing tags for generateContentTypeDisplayHtml
* @param
* @return
* @throws
* @pre
* @post
protected String generateContentTypeDisplayHtml( HttpUploadBean bean )
throws IfsException
return generateTableHtml( "Content Type", "<B>" + bean.getTargetContentType() + "</B>" );
* Please complete the missing tags for generateAttributesDialog
* @param
* @return
* @throws
* @pre
* @post
// ------------------------ Edit Attributes Dialog -----------------------//
protected String generateAttributesDialog( HttpUploadBean bean )
throws IfsException
return "<FORM NAME=\"" + EDITATTRIBUTES_FORM + "\"" + "\r\n" +
" ACTION=\"" + bean.getJspPath() + "\"" + "\r\n" +
" METHOD=\"Post\">" + "\r\n" +
generateHiddenFieldHtml( bean ) +
"<INPUT NAME=\"" + bean.STAGE + "\"" + "\r\n" +
" TYPE=\"hidden\"" + "\r\n" +
" Value=\"" + bean.EDITATTRIBUTES + "\">" + "\r\n" +
"<INPUT NAME=\"" + bean.CONTENTTYPELIST + "\"" + "\r\n" +
" TYPE=\"hidden\"" + "\r\n" +
" Value=\"" + bean.getTargetContentType() + "\">" + "\r\n" +
generateDescriptionHtml( PublicObject.DESCRIPTION_ATTRIBUTE, bean.getDescription() ) + "\r\n" +
generateAclSelectorHtml( bean.getTargetAcl() ) + "\r\n" +
generateLanguageSelectorHtml( bean.getLanguage() ) + "\r\n" +
generateCharsetSelectorHtml( bean.getCharacterSet() ) + "\r\n" +
"<BR>" + "\r\n" +
bean.generateEditableAttributesHtml() + "\r\n" +
generateActionButtonHtml( bean ) + "\r\n" +
"</FORM>" + "\r\n";
* Please complete the missing tags for generateHiddenFieldHtml
* @param
* @return
* @throws
* @pre
* @post
protected String genera teHiddenFieldHtml( HttpUploadBean bean )
throws IfsException
return "<INPUT NAME=\"" + bean.TEMPORARYOBJECTID + "\"" + "\r\n" +
" TYPE=\"hidden\"" + "\r\n" +
" Value=\"" + bean.getTemporaryObjectId() + "\">" + "\r\n" +
"<INPUT NAME=\"" + bean.FOLDEREDOBJECTID + "\"" + "\r\n" +
" TYPE=\"hidden\"" + "\r\n" +
" Value=\"" + bean.getFolderedObjectId() + "\">" + "\r\n" +
"<INPUT NAME=\"" + bean.METHOD + "\"" + "\r\n" +
" TYPE=\"hidden\"" + "\r\n" +
" Value=\"" + bean.getMethod() + "\">" + "\r\n" +
"<INPUT NAME=\"" + HttpUtils.PATH_PARAMETER + "\"" + "\r\n" +
" TYPE=\"hidden\"" + "\r\n" +
" Value=\"" + bean.getTargetPath() + "\">" + "\r\n" +
"<INPUT NAME=\"" + bean.SOURCE + "\"" + "\r\n" +
" TYPE=\"hidden\"" + "\r\n" +
" Value=\"" + bean.getSourceFileName() + "\">" + "\r\n";
* Please complete the missing tags for generateDescriptionHtml
* @param
* @return
* @throws
* @pre
* @post
protected String generateDescriptionHtml( String name, String value )
String inputField = "<INPUT NAME=\"" + name + "\"" + "\r\n" +
" TYPE=\"text\"" + "\r\n" +
" Value=\"" + value + "\"" + "\r\n" +
" SIZE=56" + "\r\n" +
" maxchars = 500>" + "\r\n";
return generateTableHtml( "Description", inputField );
* Please complete the missing tags for generateAclSelectorHtml
* @param
* @return
* @throws
* @pre
* @post
// ------------------------- ACL Selector -------------------------- //
protected String generateAclSelectorHtml( AccessControlList selected )
throws IfsException
String inputField = "<SELECT NAME=\"" + PublicObject.ACL_ATTRIBUTE + "\">" + "\r\n" +
generateAclListHtml( selected ) + "\r\n" +
"</SELECT>";
return generateTableHtml( "Access Control List", inputField );
* Please complete the missing tags for generateAclListHtml
* @param
* @return
* @throws
* @pre
* @post
protected String generateAclListHtml( AccessControlList selected )
throws IfsException
String html = "";
Collection c = selected.getSession().getSystemAccessControlListCollection();
for( int i = 0; i < c.getItemCount(); i++ )
AccessControlList acl = ( AccessControlList ) c.getItems( i );
html = html + generateAclListEntryHtml( acl, selected ) + "\r\n";
c = selected.getSession().getClassObjectCollection();
ClassObject systemAclClassObject = ( ClassObject ) c.getItems( SystemAccessControlList.CLASS_NAME );
ClassObject classAclClassObject = ( ClassObject ) c.getItems( ClassAccessControlList.CLASS_NAME );
c = selected.getSession().getSharedAccessControlListCollection();
for( int i = 0; i < c.getItemCount(); i++ )
AccessControlList acl = ( AccessControlList ) c.getItems( i );
if( ( ! acl.isInstanceOf( systemAclClassObject ) ) && ( ! acl.isInstanceOf( classAclClassObject ) ) )
String ownerName = acl.getOwner().getName();
html = html + generateAclListEntryHtml( acl, selected ) + "\r\n";
return html;
* Please complete the missing tags for generateAclListEntryHtml
* @param
* @return
* @throws
* @pre
* @post
protected String generateAclListEntryHtml( AccessControlList acl, AccessControlList selected )
throws IfsException
String retVal = null;
String ownerName = acl.getOwner().getName();
String aclName = acl.getName() + " (" + ownerName + ")";
if( acl.equals( selected ) )
retVal = "<option value=\"" + acl.getId() + "\" selected>" + aclName + "</option>\"";
else
retVal = "<option value=\"" + acl.getId() + "\">" + aclName + "</option>\"";
return retVal;
* Please complete the missing tags for generateLanguageSelectorHtml
* @param
* @return
* @throws
* @pre
* @post
// ------------------------- Language Selector -------------------------- //
protected String generateLanguageSelectorHtml( String selected )
throws IfsException
String inputField = "<SELECT NAME=\"" + ContentObject.LANGUAGE_ATTRIBUTE + "\">" + "\r\n" +
generateLanguageListHtml( selected ) + "\r\n" +
"</SELECT>";
return generateTableHtml( "Language", inputField );
* Please complete the missing tags for generateLanguageListHtml
* @param
* @return
* @throws
* @pre
* @post
protected String generateLanguageListHtml( String selected )
throws IfsException
String html = "";
Language [] langs = LocaleUtilities.getAllLanguages();
for( int i = 0; i < langs.length; i++ )
html = html + generateLanguageListEntryHtml( langs [ i ], selected ) + "\r\n";
return html;
* Please complete the missing tags for generateLanguageListEntryHtml
* @param
* @return
* @throws
* @pre
* @post
protected String generateLanguageListEntryHtml( Language lang, String selected )
throws IfsException
if( lang.getLanguage().equalsIgnoreCase( selected ) )
return "<option value=\"" + lang.getLanguageCode() + "\" selected>" + lang.getLanguageDisplayName() + "</option>\"";
else
return "<option value=\"" + lang.getLanguage() + "\">" + lang.getLanguageDisplayName() + "</option>\"";
* Please complete the missing tags for generateCharsetSelectorHtml
* @param
* @return
* @throws
* @pre
* @post
// ------------------------- Character Set Selector -------------------------- //
protected String generateCharsetSelectorHtml( String selected )
throws IfsException
String inputField = "<SELECT NAME=\"" + ContentObject.CHARACTERSET_ATTRIBUTE + "\">" + "\r\n" +
generateCharsetListHtml( selected ) + "\r\n" +
"</SELECT>";
return generateTableHtml( "Character Set", inputField );
* Please complete the missing tags for generateCharsetListHtml
* @param
* @return
* @throws
* @pre
* @post
protected String generateCharsetListHtml( String selected )
throws IfsException
String html = "<option value=\"" + HttpUploadBean.NOTSPECIFIED + "\" selected>" + "<Not Specified>" + "</option>\"";
CharacterSet [] charsets = LocaleUtilities.getAllCharacterSets();
for( int i = 0; i < charsets.length; i++ )
html = html + generateCharsetListEntryHtml( charsets [ i ], selected ) + "\r\n";
return html;
* Please complete the missing tags for generateCharsetListEntryHtml
* @param
* @return
* @throws
* @pre
* @post
protected String generateCharsetListEntryHtml( CharacterSet charset, String selected )
throws IfsException
if( charset.getDisplayName().equalsIgnoreCase( selected ) )
return "<option value=\"" + charset.getIANACodeName().toUpperCase() + "\" selected>" + charset.getDisplayName() + "</option>\"";
else
return "<option value=\"" + charset.getDisplayName().toUpperCase() + "\">" + charset.getDisplayName() + "</option>\"";
* Please complete the missing tags for generateTableHtml
* @param
* @return
* @throws
* @pre
* @post
// ------------------------ Table Generator --------------------------------//
protected static String generateTableHtml( String caption, String value )
return "<table width=\"100%\" border=\"1\">" + "\r\n" +
generateTableRowHtml( caption, value ) +
"</table>" + "\r\n";
* Please complete the missing tags for generateTableRowHtml
* @param
* @return
* @throws
* @pre
* @post
protected static String generateTableRowHtml( String caption, String value )
return " <tr>" + "\r\n" +
" <td width=\"30%\"><B>" + caption + "</B></td>" + "\r\n" +
" <td width=\"70%\">" + "\r\n" +
value + "\r\n" +
" </td>" + "\r\n" +
" </tr>" + "\r\n";
* Please complete the missing tags for generateCloseWindowDialog
* @param
* @return
* @throws
* @pre
* @post
// ------------------------- Close Window Dialog ------------------------//
protected String generateCloseWindowDialog( HttpServletRequest request, HttpUploadBean bean )
return "<script language=\"javascr ipt\">" + "\r\n" +
" parent.frames.body.location=\"../jsps/container.jsp?path=" + HttpUtils.getURLFromIfsPath( request, bean.getTargetPath() ) + "\"" + "\r\n" +
"</script>" + "\r\n";
* Please complete the missing tags for generateExceptionDialog
* @param
* @return
* @throws
* @pre
* @post
// ------------------------- Exception Window Dialog ------------------------//
protected String generateExceptionDialog( HttpServletRequest request, HttpUploadBean bean )
throws IfsException
String html = "<table width=\"100%\" border=\"1\">" + "\r\n" +
" <tr>" + "\r\n" +
" <td width=\"100%\">" + "\r\n" +
" <B>Unexpected Exception encountered while uploading '" + bean.getSourceFileName() + "'.</B>" + "\r\n" +
" </td>" + "\r\n" +
" </tr>" + "\r\n" +
" <tr>" + "\r\n" +
" <td width=\"100%\">" + "\r\n" +
bean.getStackTrace() + "\r\n" +
" </td>" + "\r\n" +
" </tr>" + "\r\n" +
"</table>" + "\r\n" +
"<BR>" + "\r\n" +
"<FORM NAME = \"" + bean.REPORTEXCEPTION + "\"" + "\r\n" +
" ACTION =\"" + bean.getJspPath() + "\">" + "\r\n" +
"<INPUT NAME=\"" + bean.ACTION + "\"" + "\r\n" +
" VALUE=\"" + bean.CANCEL + "\"" + "\r\n" +
" TYPE=\"Submit\">" + "\r\n" +
"<INPUT NAME=\"" + bean.STAGE + "\"" + "\r\n" +
" TYPE=\"hidden\"" + "\r\n" +
" Value=\"" + bean.REPORTEXCEPTION + "\">" + "\r\n" +
"<INPUT NAME=\"" + bean.TEMPORARYOBJECTID + "\"" + "\r\n" +
" TYPE=\"hidden\"" + "\r\n" +
" Value=\"" + bean.getTemporaryObjectId() + "\">" + "\r\n" +
"</FORM>" + "\r\n";
return html;
* Please complete the missing tags for generateActionButtonHtml
* @param
* @return
* @throws
* @pre
* @post
// --------------------------- Action Buttons --------------------------//
protected String generateActionButtonHtml( HttpUploadBean bean )
throws IfsException
if( bean.canSaveObjectInFolder() )
return "<INPUT NAME=\"" + bean.ACTION + "\"" + "\r\n" +
" VALUE=\"" + bean.SAVECHANGES + "\"" + "\r\n" +
" TYPE=\"Submit\">" + "\r\n" +
"<INPUT NAME=\"" + bean.ACTION + "\"" + "\r\n" +
" VALUE=\"" + bean.CANCEL + "\"" + "\r\n" +
" TYPE=\"Submit\">" + "\r\n";
else
return "<INPUT NAME=\"" + bean.ACTION + "\"" + "\r\n" +
" VALUE=\"" + bean.VERSION + "\"" + "\r\n" +
" TYPE=\"Submit\">" + "\r\n" +
"<INPUT NAME=\"" + bean.ACTION + "\"" + "\r\n" +
" VALUE=\"" + bean.OVERWRITE + "\"" + "\r\n" +
" TYPE=\"Submit\">" + "\r\n" +
"<INPUT NAME=\"" + bean.ACTION + "\"" + "\r\n" +
" VALUE=\"" + bean.CANCEL + "\"" + "\r\n" +
" TYPE=\"Submit\">" + "\r\n";
null

Similar Messages

  • Failed to Add Update Source for WUAgent Error = 0x87d00692 - HELP!!

    I am having trouble with my clients recieving updates.  I notice alot of my clients where my primary site is are recieving updates but all of my clients in my secondary sites are not.  Below is output from the WUAHandler.log on a client system.
    Group policy settings were overwritten by a higher authority (Domain Controller) to: Server HTTPS://SERVER.COMPANY.COM:443 and Policy ENABLED WUAHandler 4/12/2013 8:21:28 AM 4220 (0x107C)
    Failed to Add Update Source for WUAgent of type (2) and id ({AA27FC20-A281-46CC-B04F-D0940B5E072F}). Error = 0x87d00692. WUAHandler 4/12/2013 8:21:28 AM 4220 (0x107C)
    The server stated above is correct and we have no GPOs applied to our enviornment for an update server.
    I did just update to SCCM 2012 SP1 and have applied all the hotfixes for WSUS.  I am at a roadblock.  Would a site reset be advised?  Perhaps WSUS and SUP reinstall?  Any help would be appreciated I am out of ideas.
    My enviornment:
    1 primary server - roles- sup, dp, mp
    3 secondary sites - role - dp and mp - clients under these sites do not get updates
    Ryan Ventimiglio

    When I have checked this my current SCCM server address thats listed in the WUAHandler log is set in the registry for the client.  So this is the same address so its not like anything is conflicting. 
    Whats strange about this is that everything was working fine before the SP1 upgrade.  I just ran a site reset but no change.  Do you think a WSUS/SUP uninstall/reinstall would be the next step?  Is this done typically?  Any other
    things I should be checking.  I know we do not have any GPOs set in our enviornment for this so this cant be the problem.
    Ryan Ventimiglio

  • Cannot insert more than 1 WSUS update source with different unique ids

    Hello LnG
    I am aware that are a whole bunch of forum threads on this error however little bit of additional help would be of great help, as I have nearly tracked this 'pain' down.
    Our environment: SCCM 2007 R3
    1 Central
    15 Primaries and a whole bunch of secondaries
    Single WSUS server
    OK, so we have just taken handover of this new account and still getting a hang of the creek and corners in the environment. We have about 1000 machines sitting in "Failed to download updates" state.  Error
    = 0x80040694
    WUAHandler.log:
    Its a WSUS Update Source type ({A2762CA9-9739-4260-9C3A-DC4B36122E16}), adding it
    Cannot insert more than 1 WSUS update source with different unique ids
    Failed to Add Update Source for WUAgent of type (2) and id ({A2762CA9-9739-4260-9C3A-DC4B36122E16}). Error = 0x80040694.
    Its a WSUS Update Source type ({BCB9D60B-2668-459B-BFFD-6DDD11AADC53}), adding it
    Existing WUA Managed server was already set (http://WSUSServername:8530), skipping Group Policy registration.
    Added Update Source ({BCB9D60B-2668-459B-BFFD-6DDD11AADC53}) of content type: 2
    WUAHandler
    Async searching of updates using WUAgent started.
    Checked the
    CI_UpdateSources table and found 2 Update sources  unique ids:
    {BCB9D60B-2668-459B-BFFD-6DDD11AADC53} Date Created 2011-01-11 03:47:52.000/Date Modified 2011-01-11 03:47:52.000
    and
    {A2762CA9-9739-4260-9C3A-DC4B36122E16} Date Created 2014-07-09 02:48:46.000 / Date Modified 2014-07-09 02:48:46.000
    My questions:
    Can I rely on the last modified/created date for inactive update source and delete it off the database? in this case can I delete {BCB9D60B-2668-459B-BFFD-6DDD11AADC53}?
    When i browsed to the registry location on the Central Server
    HKLM\Software\Wow6432Node\Microsoft\SMS\Components\SMS_WSUS_SYNC_MANAGER i saw the update source as {BCB9D60B-2668-459B-BFFD-6DDD11AADC53}.
    Does it imply that a stale record?
    Any help/guidance will be much appreciated :)

    Well!! My wsyncmgr.log  says  this: 
    Set content version of update source {BCB9D60B-2668-459B-BFFD-6DDD11AADC53} for site XX to 18
    Set content version of update source {BCB9D60B-2668-459B-BFFD-6DDD11AADC53} for site XX1 to 18
    Set content version of update source {BCB9D60B-2668-459B-BFFD-6DDD11AADC53} for site XX2 to 18
    Set content version of update source {BCB9D60B-2668-459B-BFFD-6DDD11AADC53} for site XX3 to 18
    Set content version of update source {BCB9D60B-2668-459B-BFFD-6DDD11AADC53} for site XX4 to 18
    Set content version of update source {BCB9D60B-2668-459B-BFFD-6DDD11AADC53} for site XX5to 1
    Set content version of update source {BCB9D60B-2668-459B-BFFD-6DDD11AADC53} for site XX6 to 18
    So, this is an active update source! ?? I cannnot uninstall and reinstall SUP currently. Any thoughts?? Any ody?

  • HELP!  I tunes wouldn't update so I tried to delete and reinstall.  I keep getting a message stating the installation source for this product is not available.  Verify that the source exists and that you can access it.  please help!!

    Help!  Itunes wouldn't update so I tried to delet and reinstall.  I keep getting a message: The instillation source for this product is not available.  Verify that the source exists and that you can access it.  I also get this message:  The feature you are trying to use is on a network resource that is unavailable.  Click OK to try again, or enter an alternate path to a folder containing the installation package 'iTunes64.msi' in the box below.  Help I have no idea what that means or how to fix it. 

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page). Here's a screenshot showing the particular links on the page that you should be clicking:
    After clicking one of the circled links, you should be taken to another page, and after a few seconds you should see a download dialog appear for the msicuu2.exe file. Here's a screenshot of what it looks like for me in Firefox:
    Choose to Save the file. If the dialog box does not appear for you, click the link on the page that says "CLICK HERE IF IT DOES NOT". Here's a screenshot of the page with the relevant link circled:
    When the dialog appears, choose to save the file.
    (2) Go to the Downloads area for your Web browser. Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • How do I see the source code for 'NI Example Finder'?

    At the LabView Express demo, the rep showed us how to view the source code for 'NI Example Finder' (started with Help, Find Examples...). Please refresh my memory.
    --todd

    There are a couple of VI's that shipped with LabView 7.0, but you can't see the diagrams.
    C:\Program Files\National Instruments\LabVIEW 7.0\resource\system\HelpServer.llb\Run Example Finder__NATIONAL INSTRUMENTS.vi
    Press Ctrl-E on this VI and it prompts you for a password.
    This VI is run by C:\Program Files\National Instruments\LabVIEW 7.0\resource\system\HelpServer.llb\HelpServer__NAT​IONAL INSTRUMENTS.vi
    There's also C:\Program Files\National Instruments\LabVIEW 7.0\help\_exfinder.llb\Example Finder Launcher.vi.
    Tyring to open this VI starts the NI Example Finder. Note the taskbar icon which is different from the normal VI icon.
    It seems like NI is trying to keep us out, even if it used LabView to develop the Example Finder.

  • I have tried to upgade to the latest version of i tunes and am unable to do so so. The problem being that i have lost the installation source for apple software update any ideas of how to get this back ?

    i have tried to upgrade to the latest version of i tunes. I have been unable to do so as when it gets 2 thirds of the way through the installation a message appears saying that i have lost the installation source for apple software update any ideas of how to get this back and install itunes again?

    A second generation iPod touch can't be updated past 4.2.1.
    (86969)

  • Anyone have a source for the N93 updates?

    Now that nokia seems to have pulled support for N93 firmware updates, anyone have a source for them? Or am I stuck with the **bleep**tastic 10.0.025?Message Edited by kujako on 21-Nov-2006
    08:17 PM

    You'd be better trying your nearest Nokia Service Centre asking for the source is going to annoy people here... it's not publicly available.
    Nokia History: 3110, 5110, 7110, 7110, 3510i, 6210, 6310i, 5210, 6100, 6610, 7250, 7250i, 6650, 6230, 6230i, 6260, N70, N70, 5300, N95, N95, E71, E72
    Android History: HTC Desire, SE Xperia Arc, HTC Sensation, Sensation XE, One X+, Google Nexus 5

  • Can I create a muse web site for someone else and allow them to make edits to site. Example to update gigs for a musician web site.

    Can I create a muse web site for someone else and allow them to make edits to site. Example to update gigs for a musician web site.

    Yes, you can. Sites published with BusinessCatalyst or to an FTP host can be edited by clients. Here is a short tutorial about the new In-Browser Editing feature: In-browser Editing | Adobe Muse CC tutorials

  • Creative Cloud updates fail for Photoshop/CC U44M1P7

    Hi,
    I'm having problems updating my Creative Cloud applications - error code U44M1P7.
    PROBLEM: I still can't update Photoshop or most of the other CC apps.
    - I am running Application Manager 6.2 (7.0.0.189) and Extension Manager 6.04
    - MacPro 3.1, OSX 10.8.2
    - Changed permissions on folders
    - The early error log files said I was missing the language packs, so I removed and re-installed the apps
    - The latest update error is U44M1P7
    - To try and narrow things down, I only re-installed Photoshop and ran the Application Manager for updates to PS, ACR, Bridge, and extension manager. All failed U44M1P7 except for Bridge, which updated correctly.
    - I tried the online chat support but nothing worked.
    HISTORY: When I tried updating Photoshop CS6 on my MacPro (via the Application Manager), all of my CC apps came up in trial mode. I eventually got all the apps running, but not before I had to de-activate, un-install the entire CC suite of apps, run the cleaner, re-download/install and upgrading the OS from 10.7.5 to 10.8.2.
    HELP! All suggestions are appreciated.
    Here's the error log files from the Photoshop update and Camera Raw:
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.10.0
    OSX version: 10.8.2 
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 205 milliseconds (0.205 seconds) DTR = 78.0488 KBPS (0.0762195 MBPS)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: /Users/xxxx/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2
    Updating media info for: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: CSXSInfrastructure
      Path: /Users/xxxx/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2/payloads/A dobeCSXSInfrastructure3-mul-210612143620/AdobeCSXSInfrastructure3-mul-210612143620.dmg
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,6.2.10.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    [       0] Fri Dec 28 18:50:47 2012  INFO
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0: 0 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Patch {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 can be applied to product {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0
    Ignoring deployment input for the INSTALLDIR: marked as fixed
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 is: false
    Action string for {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0  is install
    END Setting requested payload actions
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: /Library/Application Support/Adobe/CS6ServiceManager
    ::START TIMER:: [System check :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 5 milliseconds (0.005 seconds)
    [       0] Fri Dec 28 18:50:48 2012  INFO
    BEGIN InstallOperationsQueue Unordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    ::START TIMER:: [Pre session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallSessionOpenProc
    Custom action return code: 0
    :: END TIMER :: [Pre session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    BEGIN InstallOperationsQueue Unordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Calling the custom action code for pre-install for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    ::START TIMER:: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In PrePayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    ::START TIMER:: [Payload Operation :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    [       1] Fri Dec 28 18:50:48 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} modify request for AdobeCode: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    Effective AdobeCode for: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} is {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    [       1] Fri Dec 28 18:50:49 2012  INFO
    PDB install manipulation failed
    [       0] Fri Dec 28 18:50:49 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: -1 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 104 milliseconds (0.104 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0, value of local var is -1
    Calling the ROLLBACK custom action code for pre-install for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    ::START TIMER:: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In PrePayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    No operation.  We're done:
    [       0] Fri Dec 28 18:50:51 2012  INFO
    Total components installed: 0
    Total components repaired: 0
    Total components removed: 0
    [       0] Fri Dec 28 18:50:51 2012 ERROR
    DW050: The following payload errors were found during install:
    DW050:  - Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul: Install failed
    [       0] Fri Dec 28 18:50:51 2012  INFO
    Call PostSession Custom Hook
    ::START TIMER:: [Post session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallSessionCloseProc
    Custom action return code: 0
    :: END TIMER :: [Post session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    :: END TIMER :: [Total Timer] took 9253 milliseconds (9.253 seconds) DTR = 2.16146 KBPS (0.0021108 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 1 error(s), 0 warning(s)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul: Install failed
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    [       0] Fri Dec 28 18:50:52 2012  INFO
    Exit Code: 7 - Unable to complete Silent workflow.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DW050 ...
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    -->  BELOW IS THE ERROR LOG FILE FOR UPDATING CAMERA RAW 7.3  <--
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.10.0
    OSX version: 10.8.2 
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 382 milliseconds (0.382 seconds) DTR = 240.838 KBPS (0.235193 MBPS)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: /Users/xxxx/Library/Caches/Adobe/AAMUpdater/PhotoshopCameraRaw7-7.0/7.3.37
    Updating media info for: {088691E4-0205-41CB-B073-4907FDF16D8E}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: AdobeCameraRaw-7.3-mul-AdobeUpdate
      Path: /Users/xxxx/Library/Caches/Adobe/AAMUpdater/PhotoshopCameraRaw7-7.0/7.3.37/payloads/Adobe CameraRaw7.0All-291112130512/AdobeCameraRaw7.0All-291112130512.dmg
    Updating media info for: {B2579A74-F4AA-40B1-B47A-E73BA173EC8C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: AdobeCameraRaw-7.3-mul-AdobeUpdate
      Path: /Users/xxxx/Library/Caches/Adobe/AAMUpdater/PhotoshopCameraRaw7-7.0/7.3.37/payloads/Adobe CameraRawProfile7.0All-291112130655/AdobeCameraRawProfile7.0All-291112130655.dmg
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,6.2.10.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    [       0] Fri Dec 28 01:41:17 2012  INFO
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0: 0 (0,0)
      {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0: 0 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Patch {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0 can be applied to product {CFC3110A-491C-4DBF-A97D-66C567600A2F} Photoshop Camera Raw 7 7.0.0.0
    Patch {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0 can be applied to product {539AEF15-3A2B-4A31-A587-7E90F7D9C700} Camera Profiles Installer 7.0.0.0
    [       0] Fri Dec 28 01:41:23 2012  INFO
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0 is: false
    Action string for {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0  is install
    Value returned on lookup of payload: {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0 is: false
    Action string for {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0  is install
    END Setting requested payload actions
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: /Library/Application Support/Adobe
    [       0] Fri Dec 28 01:41:25 2012  INFO
    BEGIN InstallOperationsQueue Unordered operations
      {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0:  with operation install
      {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0:  with operation install
      {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    BEGIN InstallOperationsQueue Unordered operations
      {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0:  with operation install
      {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0:  with operation install
      {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0:  with operation install
    END InstallOperationsQueue Ordered operations
    [       0] Fri Dec 28 01:41:27 2012  INFO
    Calling the custom action code for pre-install for payload {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0
    ::START TIMER:: [Payload Operation :{088691E4-0205-41CB-B073-4907FDF16D8E}]
    [       1] Fri Dec 28 01:41:27 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {088691E4-0205-41CB-B073-4907FDF16D8E} modify request for AdobeCode: {088691E4-0205-41CB-B073-4907FDF16D8E}
    Effective AdobeCode for: {088691E4-0205-41CB-B073-4907FDF16D8E} is {088691E4-0205-41CB-B073-4907FDF16D8E}
    PDB install manipulation failed
    [       0] Fri Dec 28 01:41:27 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: -1 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{088691E4-0205-41CB-B073-4907FDF16D8E}] took 205 milliseconds (0.205 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0, value of local var is -1
    Calling the ROLLBACK custom action code for pre-install for payload {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0
    [       0] Fri Dec 28 01:41:32 2012  INFO
    Calling the custom action code for pre-install for payload {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0
    ::START TIMER:: [Payload Operation :{B2579A74-F4AA-40B1-B47A-E73BA173EC8C}]
    [       2] Fri Dec 28 01:41:32 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {088691E4-0205-41CB-B073-4907FDF16D8E} modify request for AdobeCode: {B2579A74-F4AA-40B1-B47A-E73BA173EC8C}
    Effective AdobeCode for: {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} is {B2579A74-F4AA-40B1-B47A-E73BA173EC8C}
    PDB install manipulation failed
    [       0] Fri Dec 28 01:41:32 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: -1 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{B2579A74-F4AA-40B1-B47A-E73BA173EC8C}] took 206 milliseconds (0.206 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0, value of local var is -1
    Calling the ROLLBACK custom action code for pre-install for payload {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0
    [       0] Fri Dec 28 01:41:36 2012  INFO
    No operation.  We're done:
    [       0] Fri Dec 28 01:41:38 2012  INFO
    Total components installed: 0
    Total components repaired: 0
    Total components removed: 0
    [       0] Fri Dec 28 01:41:38 2012 ERROR
    DW050: The following payload errors were found during install:
    DW050:  - Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All: Install failed
    DW050:  - Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All: Install failed
    [       0] Fri Dec 28 01:41:38 2012  INFO
    Call PostSession Custom Hook
    :: END TIMER :: [Total Timer] took 38738 milliseconds (38.738 seconds) DTR = 24.0591 KBPS (0.0234952 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 2 error(s), 0 warning(s)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All: Install failed
    ERROR: DW050:  - Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All: Install failed
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    [       0] Fri Dec 28 01:41:39 2012  INFO
    Exit Code: 7 - Unable to complete Silent workflow.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DW050 ...
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.10.0
    OSX version: 10.8.2 
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 165 milliseconds (0.165 seconds) DTR = 533.333 KBPS (0.520833 MBPS)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: /Users/xxxx/Library/Caches/Adobe/AAMUpdater/PhotoshopCameraRaw7-7.0/7.3.37
    Updating media info for: {088691E4-0205-41CB-B073-4907FDF16D8E}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: AdobeCameraRaw-7.3-mul-AdobeUpdate
      Path: /Users/xxxx/Library/Caches/Adobe/AAMUpdater/PhotoshopCameraRaw7-7.0/7.3.37/payloads/Adobe CameraRaw7.0All-291112130512/AdobeCameraRaw7.0All-291112130512.dmg
    Updating media info for: {B2579A74-F4AA-40B1-B47A-E73BA173EC8C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: AdobeCameraRaw-7.3-mul-AdobeUpdate
      Path: /Users/xxxx/Library/Caches/Adobe/AAMUpdater/PhotoshopCameraRaw7-7.0/7.3.37/payloads/Adobe CameraRawProfile7.0All-291112130655/AdobeCameraRawProfile7.0All-291112130655.dmg
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,6.2.10.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    [       0] Fri Dec 28 18:53:37 2012  INFO
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0: 0 (0,0)
      {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0: 0 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Patch {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0 can be applied to product {CFC3110A-491C-4DBF-A97D-66C567600A2F} Photoshop Camera Raw 7 7.0.0.0
    Patch {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0 can be applied to product {539AEF15-3A2B-4A31-A587-7E90F7D9C700} Camera Profiles Installer 7.0.0.0
    [       0] Fri Dec 28 18:53:40 2012  INFO
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0 is: false
    Action string for {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0  is install
    Value returned on lookup of payload: {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0 is: false
    Action string for {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0  is install
    END Setting requested payload actions
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: /Library/Application Support/Adobe
    [       0] Fri Dec 28 18:53:41 2012  INFO
    BEGIN InstallOperationsQueue Unordered operations
      {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0:  with operation install
      {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0:  with operation install
      {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    BEGIN InstallOperationsQueue Unordered operations
      {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0:  with operation install
      {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0:  with operation install
      {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0:  with operation install
    END InstallOperationsQueue Ordered operations
    [       0] Fri Dec 28 18:53:42 2012  INFO
    Calling the custom action code for pre-install for payload {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0
    ::START TIMER:: [Payload Operation :{088691E4-0205-41CB-B073-4907FDF16D8E}]
    [       1] Fri Dec 28 18:53:42 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {088691E4-0205-41CB-B073-4907FDF16D8E} modify request for AdobeCode: {088691E4-0205-41CB-B073-4907FDF16D8E}
    Effective AdobeCode for: {088691E4-0205-41CB-B073-4907FDF16D8E} is {088691E4-0205-41CB-B073-4907FDF16D8E}
    PDB install manipulation failed
    [       0] Fri Dec 28 18:53:42 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: -1 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{088691E4-0205-41CB-B073-4907FDF16D8E}] took 105 milliseconds (0.105 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0, value of local var is -1
    Calling the ROLLBACK custom action code for pre-install for payload {088691E4-0205-41CB-B073-4907FDF16D8E} Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All 7.3.0.0
    [       0] Fri Dec 28 18:53:43 2012  INFO
    Calling the custom action code for pre-install for payload {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0
    ::START TIMER:: [Payload Operation :{B2579A74-F4AA-40B1-B47A-E73BA173EC8C}]
    [       1] Fri Dec 28 18:53:43 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {088691E4-0205-41CB-B073-4907FDF16D8E} modify request for AdobeCode: {B2579A74-F4AA-40B1-B47A-E73BA173EC8C}
    Effective AdobeCode for: {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} is {B2579A74-F4AA-40B1-B47A-E73BA173EC8C}
    PDB install manipulation failed
    [       0] Fri Dec 28 18:53:43 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: -1 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{B2579A74-F4AA-40B1-B47A-E73BA173EC8C}] took 105 milliseconds (0.105 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0, value of local var is -1
    Calling the ROLLBACK custom action code for pre-install for payload {B2579A74-F4AA-40B1-B47A-E73BA173EC8C} Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All 7.3.0.0
    [       0] Fri Dec 28 18:53:44 2012  INFO
    No operation.  We're done:
    [       0] Fri Dec 28 18:53:46 2012  INFO
    Total components installed: 0
    Total components repaired: 0
    Total components removed: 0
    [       0] Fri Dec 28 18:53:46 2012 ERROR
    DW050: The following payload errors were found during install:
    DW050:  - Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All: Install failed
    DW050:  - Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All: Install failed
    [       0] Fri Dec 28 18:53:46 2012  INFO
    Call PostSession Custom Hook
    :: END TIMER :: [Total Timer] took 14330 milliseconds (14.33 seconds) DTR = 38.2415 KBPS (0.0373452 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 2 error(s), 0 warning(s)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Photoshop Camera Raw 7_7.3_AdobeCameraRaw7.0All: Install failed
    ERROR: DW050:  - Camera Profiles Installer_7.3_AdobeCameraRawProfile7.0All: Install failed
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    [       0] Fri Dec 28 18:53:47 2012  INFO
    Exit Code: 7 - Unable to complete Silent workflow.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DW050 ...
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Message was edited by: GMatsumura - edited user path name

    Hi David,
    - Creating a new administrative account and installing from there still resulted in errors in updating.
    - I again uninstalled all the CS6 apps, ran the cleaner tool (CC and CS6), and  reinstalled ALL my CC apps. Ran the updater from the Application Manager while logged in and ALL the updates failed (U44M1P7).
    Thoughts?
    Here's one of the error log files:
    Photoshop CSXS
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.10.0
    OSX version: 10.8.2 
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 83 milliseconds (0.083 seconds) DTR = 144.578 KBPS (0.14119 MBPS)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: /Users/(EDITED)/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2
    Updating media info for: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: CSXSInfrastructure
      Path: /Users/(EDITED)/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2/payloa ds/AdobeCSXSInfrastructure3-mul-210612143620/AdobeCSXSInfrastructure3-mul-210612143620.dmg
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,6.2.10.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    [       0] Thu Jan 10 17:47:42 2013  INFO
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0: 0 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Patch {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 can be applied to product {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0
    Ignoring deployment input for the INSTALLDIR: marked as fixed
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 is: false
    Action string for {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0  is install
    END Setting requested payload actions
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: /Library/Application Support/Adobe/CS6ServiceManager
    ::START TIMER:: [System check :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 5 milliseconds (0.005 seconds)
    [       0] Thu Jan 10 17:47:43 2013  INFO
    BEGIN InstallOperationsQueue Unordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    ::START TIMER:: [Pre session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallSessionOpenProc
    Custom action return code: 0
    :: END TIMER :: [Pre session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    BEGIN InstallOperationsQueue Unordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Calling the custom action code for pre-install for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    ::START TIMER:: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In PrePayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    ::START TIMER:: [Payload Operation :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    [       1] Thu Jan 10 17:47:43 2013  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} modify request for AdobeCode: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    Effective AdobeCode for: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} is {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    [       1] Thu Jan 10 17:47:44 2013  INFO
    PDB install manipulation failed
    [       0] Thu Jan 10 17:47:44 2013  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: -1 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 206 milliseconds (0.206 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0, value of local var is -1
    Calling the ROLLBACK custom action code for pre-install for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    ::START TIMER:: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In PrePayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    No operation.  We're done:
    [       0] Thu Jan 10 17:47:46 2013  INFO
    Total components installed: 0
    Total components repaired: 0
    Total components removed: 0
    [       0] Thu Jan 10 17:47:46 2013 ERROR
    DW050: The following payload errors were found during install:
    DW050:  - Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul: Install failed
    [       0] Thu Jan 10 17:47:46 2013  INFO
    Call PostSession Custom Hook
    ::START TIMER:: [Post session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallSessionCloseProc
    Custom action return code: 0
    :: END TIMER :: [Post session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    :: END TIMER :: [Total Timer] took 9846 milliseconds (9.846 seconds) DTR = 2.03128 KBPS (0.00198367 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 1 error(s), 0 warning(s)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul: Install failed
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    [       0] Thu Jan 10 17:47:47 2013  INFO
    Exit Code: 7 - Unable to complete Silent workflow.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DW050 ...
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.10.0
    OSX version: 10.8.2 
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 68 milliseconds (0.068 seconds)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: /Users/(EDITED)/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2
    Updating media info for: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: CSXSInfrastructure
      Path: /Users/(EDITED)/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2/payloa ds/AdobeCSXSInfrastructure3-mul-210612143620/AdobeCSXSInfrastructure3-mul-210612143620.dmg
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,6.2.10.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    [       0] Thu Jan 10 23:22:17 2013  INFO
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0: 0 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Patch {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 can be applied to product {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0
    Ignoring deployment input for the INSTALLDIR: marked as fixed
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 is: false
    Action string for {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0  is install
    END Setting requested payload actions
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: /Library/Application Support/Adobe/CS6ServiceManager
    ::START TIMER:: [System check :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 40 milliseconds (0.04 seconds)
    [       0] Thu Jan 10 23:22:18 2013  INFO
    BEGIN InstallOperationsQueue Unordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    ::START TIMER:: [Pre session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallSessionOpenProc
    Custom action return code: 0
    :: END TIMER :: [Pre session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    BEGIN InstallOperationsQueue Unordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    [       0] Thu Jan 10 23:22:19 2013  INFO
    Calling the custom action code for pre-install for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    ::START TIMER:: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In PrePayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    ::START TIMER:: [Payload Operation :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    [       1] Thu Jan 10 23:22:19 2013  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} modify request for AdobeCode: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    Effective AdobeCode for: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} is {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    PDB install manipulation failed
    [       0] Thu Jan 10 23:22:19 2013  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: -1 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 206 milliseconds (0.206 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0, value of local var is -1
    Calling the ROLLBACK custom action code for pre-install for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    ::START TIMER:: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In PrePayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    No operation.  We're done:
    [       0] Thu Jan 10 23:22:21 2013  INFO
    Total components installed: 0
    Total components repaired: 0
    Total components removed: 0
    [       0] Thu Jan 10 23:22:21 2013 ERROR
    DW050: The following payload errors were found during install:
    DW050:  - Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul: Install failed
    [       0] Thu Jan 10 23:22:21 2013  INFO
    Call PostSession Custom Hook
    ::START TIMER:: [Post session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallSessionCloseProc
    Custom action return code: 0
    :: END TIMER :: [Post session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    :: END TIMER :: [Total Timer] took 10450 milliseconds (10.45 seconds) DTR = 0.382775 KBPS (0.000373804 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 1 error(s), 0 warning(s)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul: Install failed
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    [       0] Thu Jan 10 23:22:22 2013  INFO
    Exit Code: 7 - Unable to complete Silent workflow.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DW050 ...
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.10.0
    OSX version: 10.8.2 
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 59 milliseconds (0.059 seconds) DTR = 67.7966 KBPS (0.0662076 MBPS)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: /Users/(EDITED)/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2
    Updating media info for: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: CSXSInfrastructure
      Path: /Users/(EDITED)/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2/payloa ds/AdobeCSXSInfrastructure3-mul-210612143620/AdobeCSXSInfrastructure3-mul-210612143620.dmg
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,6.2.10.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    [       0] Thu Jan 10 23:24:35 2013  INFO
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0: 0 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Patch {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 can be applied to product {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0
    Ignoring deployment input for the INSTALLDIR: marked as fixed
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 is: false
    Action string for {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0  is install
    END Setting requested payload actions
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: /Library/Application Support/Adobe/CS6ServiceManager
    ::START TIMER:: [System check :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 2 milliseconds (0.002 seconds)
    BEGIN InstallOperationsQueue Unordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    ::START TIMER:: [Pre session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallSessionOpenProc
    Custom action return code: 0
    :: END TIMER :: [Pre session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    BEGIN InstallOperationsQueue Unordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    [       0] Thu Jan 10 23:24:36 2013  INFO
    Calling the custom action code for pre-install for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    ::START TIMER:: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In PrePayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    ::START TIMER:: [Payload Operation :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    [       1] Thu Jan 10 23:24:36 2013  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} modify request for AdobeCode: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    Effective AdobeCode for: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} is {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    PDB install manipulation failed
    [       0] Thu Jan 10 23:24:36 2013  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: -1 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 206 milliseconds (0.206 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0, value of local var is -1
    Calling the ROLLBACK custom action code for pre-install for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    ::START TIMER:: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In PrePayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    [       0] Thu Jan 10 23:24:37 2013  INFO
    No operation.  We're done:
    [       0] Thu Jan 10 23:24:39 2013  INFO
    Total components installed: 0
    Total components repaired: 0
    Total components removed: 0
    [       0] Thu Jan 10 23:24:39 2013 ERROR
    DW050: The following payload errors were found during install:
    DW050:  - Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul: Install failed
    [       0] Thu Jan 10 23:24:39 2013  INFO
    Call PostSession Custom Hook
    ::START TIMER:: [Post session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallSessionCloseProc
    Custom action return code: 0
    :: END TIMER :: [Post session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    :: END TIMER :: [Total Timer] took 12029 milliseconds (12.029 seconds) DTR = 0.665059 KBPS (0.000649472 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 1 error(s), 0 warning(s)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul: Install failed
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    [       0] Thu Jan 10 23:24:40 2013  INFO
    Exit Code: 7 - Unable to complete Silent workflow.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DW050 ...
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.10.0
    OSX version: 10.8.2 
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 91 milliseconds (0.091 seconds)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: /Users/(EDITED)/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2
    Updating media info for: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: CSXSInfrastructure
      Path: /Users/(EDITED)/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2/payloa ds/AdobeCSXSInfrastructure3-mul-210612143620/AdobeCSXSInfrastructure3-mul-210612143620.dmg
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,6.2.10.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    [       0] Thu Jan 10 23:48:14 2013  INFO
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0: 0 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Patch {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 can be applied to product {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0
    Ignoring deployment input for the INSTALLDIR: marked as fixed
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 is: false
    Action string for {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0  is install
    END Setting requested payload actions
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: /Library/Application Support/Adobe/CS6ServiceManager
    ::START TIMER:: [System check :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 3 milliseconds (0.003 seconds)
    BEGIN InstallOperationsQueue Unordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    ::START TIMER:: [Pre session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallSessionOpenProc
    Custom action return code: 0
    :: END TIMER :: [Pre session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    BEGIN InstallOperationsQueue Unordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    [       0] Thu Jan 10 23:48:15 2013  INFO
    Calling the custom action code for pre-install for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    ::START TIMER:: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In PrePayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    ::START TIMER:: [Payload Operation :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    [       1] Thu Jan 10 23:48:15 2013  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} modify request for AdobeCode: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    Effective AdobeCode for: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} is {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    PDB install manipulation failed
    [       0] Thu Jan 10 23:48:15 2013  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: -1 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 206 milliseconds (0.206 seconds) DTR = 291.262 KBPS (0.284436 MBPS)
    User specified overrideFile:
    The csu inventory was not updated for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0, value of local var is -1
    Calling the ROLLBACK custom action code for pre-install for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    ::START TIMER:: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In PrePayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    No operation.  We're done:
    [       0] Thu Jan 10 23:48:17 2013  INFO
    Total components installed: 0
    Total components repaired: 0
    Total components removed: 0
    [       0] Thu Jan 10 23:48:17 2013 ERROR
    DW050: The following payload errors were found during install:
    DW050:  - Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul: Install failed
    [       0] Thu Jan 10 23:48:17 2013  INFO
    Call PostSession Custom Hook
    ::START TIMER:: [Post session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallSessionCloseProc
    Custom action return code: 0
    :: END TIMER :: [Post session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    :: END TIMER :: [Total Timer] took 10326 milliseconds (10.326 seconds) DTR = 0.387372 KBPS (0.000378293 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 1 error(s), 0 warning(s)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul: Install failed
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    [       0] Thu Jan 10 23:48:18 2013  INFO
    Exit Code: 7 - Unable to complete Silent workflow.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DW050 ...
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.10.0
    OSX version: 10.8.2 
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 81 milliseconds (0.081 seconds)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: /Users/(EDITED)/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2
    Updating media info for: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: CSXSInfrastructure
      Path: /Users/(EDITED)/Library/Caches/Adobe/AAMUpdater/AdobeCSXSInfrastructureCS6-3/3.0.2/payloa ds/AdobeCSXSInfrastructure3-mul-210612143620/AdobeCSXSInfrastructure3-mul-210612143620.dmg
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,6.2.10.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    [       0] Thu Jan 10 23:53:06 2013  INFO
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0: 0 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Patch {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 can be applied to product {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0
    Ignoring deployment input for the INSTALLDIR: marked as fixed
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0 is: false
    Action string for {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0  is install
    END Setting requested payload actions
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: /Library/Application Support/Adobe/CS6ServiceManager
    ::START TIMER:: [System check :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 5 milliseconds (0.005 seconds)
    BEGIN InstallOperationsQueue Unordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    ::START TIMER:: [Pre session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallSessionOpenProc
    Custom action return code: 0
    :: END TIMER :: [Pre session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    BEGIN InstallOperationsQueue Unordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0:  with operation install
    END InstallOperationsQueue Ordered operations
    [       0] Thu Jan 10 23:53:07 2013  INFO
    Calling the custom action code for pre-install for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    ::START TIMER:: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In PrePayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    ::START TIMER:: [Payload Operation :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    [       1] Thu Jan 10 23:53:07 2013  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} modify request for AdobeCode: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    Effective AdobeCode for: {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} is {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}
    PDB install manipulation failed
    [       0] Thu Jan 10 23:53:07 2013  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: -1 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 205 milliseconds (0.205 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0, value of local var is -1
    Calling the ROLLBACK custom action code for pre-install for payload {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul 3.0.2.0
    ::START TIMER:: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In PrePayloadInstallProc
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    No operation.  We're done:
    [       0] Thu Jan 10 23:53:09 2013  INFO
    Total components installed: 0
    Total components repaired: 0
    Total components removed: 0
    [       0] Thu Jan 10 23:53:09 2013 ERROR
    DW050: The following payload errors were found during install:
    DW050:  - Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul: Install failed
    [       0] Thu Jan 10 23:53:09 2013  INFO
    Call PostSession Custom Hook
    ::START TIMER:: [Post session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}]
    In InstallSessionCloseProc
    Custom action return code: 0
    :: END TIMER :: [Post session :{E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8}] took 0 milliseconds (0 seconds)
    :: END TIMER :: [Total Timer] took 10788 milliseconds (10.788 seconds) DTR = 0.370782 KBPS (0.000362092 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 1 error(s), 0 warning(s)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul: Install failed
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    [       0] Thu Jan 10 23:53:10 2013  INFO
    Exit Code: 7 - Unable to complete Silent workflow.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DW050 ...
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*

  • Stored Procedure used as a data source for an Apex report

    Just wondering whether anyone has used a Stored Procedure as the data source for an Apex report. An option to select Stored Procedures(s) as the data source does not appear within the IDE (only displays Table, Views, Functions).
    Do you have to return the definition of the Stored Procedure via a function ... if so, how is this done ?
    Thank you.

    >
    Welcome to the forum: please read the FAQ and forum sticky threads (if you haven't done so already), and update your profile with a real handle instead of "920338".
    When you have a problem you'll get a faster, more effective response by including as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s)
    With APEX we're also fortunate to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproducing things there is the best way to troubleshoot most issues, especially those relating to layout and visual formatting. If you expect a detailed answer then it's appropriate for you to take on a significant part of the effort by getting as far as possible with an example of the problem on apex.oracle.com before asking for assistance with specific issues, which we can then see at first hand.
    Just wondering whether anyone has used a Stored Procedure as the data source for an Apex report. An option to select Stored Procedures(s) as the data source does not appear within the IDE (only displays Table, Views, Functions).
    Do you have to return the definition of the Stored Procedure via a function ... if so, how is this done ? When asking a question about "reports" it's firstly essential to differentiate between standard and interactive reports. Standard reports can be based on tables, views, SQL queries, or PL/SQL function blocks that return the text of a SQL query. Interactive reports can only be based on a SQL query.
    "Stored Procedures" are therefore not an option (unless you are using the term loosely to describe any PL/SQL program unit located in the database, thus including functions). What would a procedure used as the source of a report actually do? Hypothetically, by what mechanisms would the procedure (a) capture/select/generate data; and (b) make this data available for use in an APEX report? Why do you want to base a report on a procedure?

  • SAP HANA as a data source for Analysis Services

    I tried to use SAP's .net provider for HANA as a data source for an Analysis Services cube but to no avail.   I can connect, create a named query and preview data from the data source view designer but when SSAS actually tries to run the query,
    it wraps the named query in another query and produces a syntax error.  
    For example,  if the named query is "select * from ENTHANA.MARA", 
    SSAS sends a query like this "SELECT [test].* FROM (select * from ENTHANA.MARA) AS [test]"   (Test is the name of the named query).
    I know SSAS wraps queries and that's fine - except that brackets are not a valid way to quote an identifier in HANA.  HANA uses double quotes like Oracle. 
    Is there any setting in SSAS that can affect this behavior?   Will HANA ever be a fully supported data source for SSAS?  If so, when?

    Hi David,
    According to your description, you are creating a SQL Server Analysis Services project, now what you want is using SAP HANA as the data source, right?
    SSAS support many type of data source. However, as you can see on the link below, SAP HANA data source was not listed on that link. So this type of data source is not supported in current version of SSAS. Microsoft will update that document when it is supported.
    http://msdn.microsoft.com/en-IN/library/ms175608.aspx
    Thank you for your understanding.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Adding multiple data sources for P6 Analytics Star 3.4

    I need to extract data from 3 data sources and put into one star. I installed the necessary software, did the necessary configurations as per the documentation provided.
    Example:
    C:\star_1\star\etl_homes\staretl
    C:\star_1\star\etl_homes\staretl02
    C:\star_1\star\etl_homes\staretl03
    When I run the staretl process for 2nd source or 3rd source, I am not sure why the startetl.properties in C:\star_1\star\etl_homes\staretl\res is getting updated (Source changes to 2nd source or 3rd source as per the run). DBLINK01 is also getting changed.
    Please advise.
    Thanks

    Hallo,
    At the moment I do not see how your problem relates to OBIEE.
    Which applications are you using (and which version of each)?
    Regards,
    Ian Bristow

  • EBGP and IBGP and update-source loopback use

    Cisco curriculum CCNP1 V3.0 "9.3.3 EBGP and IBGP configuration example" says:
    (((Because EBGP sessions are typically point-to-point, there is no need to use update-source loopback command with EBGP))).
    Is this acceptable ? because we know we can use update-source loopback with EBGP,,,Don't we ?

    It is becasue of the nature of where EBGP is used as opposed to IBGP.
    IBGP is generally ran within your AS, along with an IGP such as OSPF, ISIS or EIGRP. Your routers generally have multiple interfaces and multiple paths to each IBGP neighbor. Therefore the use of a loopback interface as a source is the best option (it doesn't goe down etc).
    With EBGP you normally only have a single path to a Neighbor and you don't run other routing protocols to that neighbor. They are generally directly connected by a physical link. If the physical link goes down you generally want the EBGP peering to break as well so it is normal to use the physical interface IP address as the source for the neighbor relationship.
    Does that explain it any better?
    Andy

  • CC updates failes for DW,AI,PS,PR

    creative cloud says I have 4 updates.   DW cs6,, AI cs6, PS cs6, and PR cs6.   I have tried three times and even rebooted my macbook pro and stopped mackeeper but I still get update failed notication for al 4 items.
    I do have the CC version installed and running , as I previous had the CC cs6 versions and updated to the CC versions.
    since the CC installed as a separate version,  I now have two versions.   I thought the cs6 version were not going to be updated anymore?   so I don't really see why I should keep them as I have the newer CC versions.
    but also not really sure how to   remove the cs6 versions.  
    it's a little confusion.  at first I thought it was just updates to my CC software, but after  all 4 updates failed,
    I then realized that they are cs6  updates.      I would attach the log file with the failed items,
    but you don't allow attachments.  that is really a poor feature for support.  

    here is the failed install log forthe DW update.    I  stopped  mackeeper and the update still fails.   I have had people suggest that mackeeper was causing other problems in the past, but it was untrue.   if it were mackeeper, I would think that the CC apps would not update either.   also why do I need two copies of the same app, like CS6 and CC both?  how do i remove the CS6 applications ?                                                                                                       here is the log file: 
    07/24/13 20:34:09:479 | [INFO] |  | OOBE | DE |  |  |  | 202664 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    07/24/13 20:34:09:479 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Visit http://www.adobe.com/go/loganalyzer/ for more information
    07/24/13 20:34:09:479 | [INFO] |  | OOBE | DE |  |  |  | 202664 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    07/24/13 20:34:09:479 | [INFO] |  | OOBE | DE |  |  |  | 202664 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    07/24/13 20:34:09:479 | [INFO] |  | OOBE | DE |  |  |  | 202664 | START - Installer Session
    07/24/13 20:34:09:479 | [INFO] |  | OOBE | DE |  |  |  | 202664 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    07/24/13 20:34:09:480 | [INFO] |  | OOBE | DE |  |  |  | 202664 | RIBS version: 7.0.0.108
    07/24/13 20:34:09:483 | [INFO] |  | OOBE | DE |  |  |  | 202664 | OSX version: 10.8.4 
    07/24/13 20:34:09:483 | [INFO] |  | OOBE | DE |  |  |  | 202664 | ::START TIMER:: [Total Timer]
    07/24/13 20:34:09:483 | [INFO] |  | OOBE | DE |  |  |  | 202664 | CHECK: Single instance running
    07/24/13 20:34:09:483 | [INFO] |  | OOBE | DE |  |  |  | 202664 | CHECK : Credentials
    07/24/13 20:34:09:483 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Load Deployment File
    07/24/13 20:34:09:483 | [INFO] |  | OOBE | DE |  |  |  | 202664 | deploymentFile option not given
    07/24/13 20:34:09:483 | [INFO] |  | OOBE | DE |  |  |  | 202664 | CHECK : Another Native OS installer already running
    07/24/13 20:34:09:483 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Create Required Folders
    07/24/13 20:34:09:483 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Assuming install mode
    07/24/13 20:34:09:483 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Looking up install source path
    07/24/13 20:34:09:483 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Sync Media DB ...
    07/24/13 20:34:09:483 | [INFO] |  | OOBE | DE |  |  |  | 202664 | ::START TIMER:: [Sync Media DB]
    07/24/13 20:34:09:483 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Pre check media db sync
    07/24/13 20:34:09:483 | [INFO] |  | OOBE | DE |  |  |  | 202664 | End of Pre check media db sync. Exit code: 0
    07/24/13 20:34:09:483 | [INFO] |  | OOBE | DE |  |  |  | 202664 | :: END TIMER :: [Sync Media DB] took 36 milliseconds (0.036 seconds) DTR = 777.778 KBPS (0.759549 MBPS)
    07/24/13 20:34:09:483 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Ready to initialize session to start with ...
    07/24/13 20:34:09:483 | [INFO] |  | OOBE | DE |  |  |  | 202664 | ::START TIMER:: [CreatePayloadSession]
    07/24/13 20:34:09:484 | [INFO] |  | OOBE | DE |  |  |  | 202664 | -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    07/24/13 20:34:09:484 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Updated source path: /Users/bravo/Library/Caches/Adobe/AAMUpdater/AdobeExtensionManagerCS6-6.0/6.0.7
    07/24/13 20:34:09:484 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Updating media info for: {48BC197D-7053-434D-AF69-9233170D1614}
    07/24/13 20:34:09:484 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Ignoring original data since install source is local
    07/24/13 20:34:09:484 | [INFO] |  | OOBE | DE |  |  |  | 202664 |   Type: 0, Volume Order: 1, Media Name: AdobeExtensionManager-6.0.7-mul-AdobeUpdate
    07/24/13 20:34:09:484 | [INFO] |  | OOBE | DE |  |  |  | 202664 |   Path: /Users/bravo/Library/Caches/Adobe/AAMUpdater/AdobeExtensionManagerCS6-6.0/6.0.7/payloads/ AdobeExtensionManager6.0All-140713200537/AdobeExtensionManager6.0All-140713200537.dmg
    07/24/13 20:34:09:484 | [INFO] |  | OOBE | DE |  |  |  | 202664 | --------------------  END  - Updating Media Sources -  END  --------------------
    07/24/13 20:34:09:486 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Supported RIBS version range: [0.0.0.0,7.0.0.108]
    07/24/13 20:34:09:486 | [INFO] |  | OOBE | DE |  |  |  | 202664 | ----------------- CreatePayloadSession: machine is x86 ---------------
    07/24/13 20:34:10:288 | [INFO] |  | OOBE | DE |  |  |  | 202664 | ______ Verify Dependency Subscribers ______
    07/24/13 20:34:10:289 | [INFO] |  | OOBE | DE |  |  |  | 202664 | BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
    07/24/13 20:34:10:289 | [INFO] |  | OOBE | DE |  |  |  | 202664 |   Adobe Extension Manager CS6_6.0.7_AdobeExtensionManager6.0All 6.0.7.0 {48BC197D-7053-434D-AF69-9233170D1614}: 0 (0,0)
    07/24/13 20:34:10:289 | [INFO] |  | OOBE | DE |  |  |  | 202664 | END Operation order for all session payloads: mediaGroup (requires,satisfies)
    07/24/13 20:34:10:292 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Patch Adobe Extension Manager CS6_6.0.7_AdobeExtensionManager6.0All 6.0.7.0 {48BC197D-7053-434D-AF69-9233170D1614} can be applied to product Adobe Extension Manager CS6 6.0.0.0 {83463106-DD1C-4FE5-A61C-DF6715472AD4}
    07/24/13 20:34:10:316 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Setting property "installSourcePath" to: /Users/bravo/Library/Caches/Adobe/AAMUpdater/AdobeExtensionManagerCS6-6.0/6.0.7
    07/24/13 20:34:10:316 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Setting property "mode" to: silent
    07/24/13 20:34:10:316 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Setting property "updateManifestPath" to: /Users/bravo/Library/Application Support/Adobe/AAMUpdater/1.0/Data/AdobeExtensionManagerCS6-6.0/6.0.7/6.0.7.xml
    07/24/13 20:34:10:316 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Setting property "workflow" to: updater
    07/24/13 20:34:10:316 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Overwrite property "extensionsOnly" to: 1
    07/24/13 20:34:10:316 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Overwrite property "mode" to: silent
    07/24/13 20:34:10:316 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Overwrite property "patchesOnly" to: 1
    07/24/13 20:34:10:316 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Overwrite property "updateManifestPath" to: /Users/bravo/Library/Application Support/Adobe/AAMUpdater/1.0/Data/AdobeExtensionManagerCS6-6.0/6.0.7/6.0.7.xml
    07/24/13 20:34:10:316 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Overwrite property "workflow" to: updater
    07/24/13 20:34:10:316 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Found payload actions:
    07/24/13 20:34:10:316 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Deciding what installer mode to use...
    07/24/13 20:34:10:332 | [INFO] |  | OOBE | DE |  |  |  | 202664 | BEGIN Setting requested payload actions
    07/24/13 20:34:10:332 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Value returned on lookup of payload: Adobe Extension Manager CS6_6.0.7_AdobeExtensionManager6.0All 6.0.7.0 {48BC197D-7053-434D-AF69-9233170D1614} is: false
    07/24/13 20:34:10:332 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Action string for Adobe Extension Manager CS6_6.0.7_AdobeExtensionManager6.0All 6.0.7.0 {48BC197D-7053-434D-AF69-9233170D1614}  is install
    07/24/13 20:34:10:333 | [INFO] |  | OOBE | DE |  |  |  | 202664 | END Setting requested payload actions
    07/24/13 20:34:10:334 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Collected advanced path check information for INSTALLDIR
    07/24/13 20:34:10:334 | [INFO] |  | OOBE | DE |  |  |  | 202664 | INSTALLDIR is a well-formed path
    07/24/13 20:34:10:334 | [INFO] |  | OOBE | DE |  |  |  | 202664 | INSTALLDIR is not the root path
    07/24/13 20:34:10:334 | [INFO] |  | OOBE | DE |  |  |  | 202664 | INSTALLDIR is on a local volume
    07/24/13 20:34:10:334 | [INFO] |  | OOBE | DE |  |  |  | 202664 | INSTALLDIR is on a writable volume
    07/24/13 20:34:10:334 | [INFO] |  | OOBE | DE |  |  |  | 202664 | INSTALLDIR is not on a case sensitive volume
    07/24/13 20:34:10:334 | [INFO] |  | OOBE | DE |  |  |  | 202664 | INSTALLDIR passed path basic path validation: /Applications
    07/24/13 20:34:10:396 | [INFO] |  | OOBE | DE |  |  |  | 202664 | BEGIN InstallOperationsQueue Unordered operations
    07/24/13 20:34:10:396 | [INFO] |  | OOBE | DE |  |  |  | 202664 |   Adobe Extension Manager CS6_6.0.7_AdobeExtensionManager6.0All 6.0.7.0 {48BC197D-7053-434D-AF69-9233170D1614}:  with operation install
    07/24/13 20:34:10:396 | [INFO] |  | OOBE | DE |  |  |  | 202664 | END InstallOperationsQueue Unordered operations
    07/24/13 20:34:10:396 | [INFO] |  | OOBE | DE |  |  |  | 202664 | BEGIN InstallOperationsQueue Ordered operations
    07/24/13 20:34:10:396 | [INFO] |  | OOBE | DE |  |  |  | 202664 |   Adobe Extension Manager CS6_6.0.7_AdobeExtensionManager6.0All 6.0.7.0 {48BC197D-7053-434D-AF69-9233170D1614}:  with operation install
    07/24/13 20:34:10:396 | [INFO] |  | OOBE | DE |  |  |  | 202664 | END InstallOperationsQueue Ordered operations
    07/24/13 20:34:10:421 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Payloads passed preflight validation.
    07/24/13 20:34:10:421 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Call PreSession Custom Hook
    07/24/13 20:34:10:421 | [INFO] |  | OOBE | DE |  |  |  | 202664 | BEGIN InstallOperationsQueue Unordered operations
    07/24/13 20:34:10:421 | [INFO] |  | OOBE | DE |  |  |  | 202664 |   Adobe Extension Manager CS6_6.0.7_AdobeExtensionManager6.0All 6.0.7.0 {48BC197D-7053-434D-AF69-9233170D1614}:  with operation install
    07/24/13 20:34:10:421 | [INFO] |  | OOBE | DE |  |  |  | 202664 | END InstallOperationsQueue Unordered operations
    07/24/13 20:34:10:421 | [INFO] |  | OOBE | DE |  |  |  | 202664 | BEGIN InstallOperationsQueue Ordered operations
    07/24/13 20:34:10:421 | [INFO] |  | OOBE | DE |  |  |  | 202664 |   Adobe Extension Manager CS6_6.0.7_AdobeExtensionManager6.0All 6.0.7.0 {48BC197D-7053-434D-AF69-9233170D1614}:  with operation install
    07/24/13 20:34:10:421 | [INFO] |  | OOBE | DE |  |  |  | 202664 | END InstallOperationsQueue Ordered operations
    07/24/13 20:34:10:485 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Calling the custom action code for pre-install for payload Adobe Extension Manager CS6_6.0.7_AdobeExtensionManager6.0All 6.0.7.0 {48BC197D-7053-434D-AF69-9233170D1614}
    07/24/13 20:34:10:485 | [INFO] |  | OOBE | DE |  |  |  | 202664 | ::START TIMER:: [Payload Operation :{48BC197D-7053-434D-AF69-9233170D1614}]
    07/24/13 20:34:10:486 | [INFO] |  | OOBE | DE |  |  |  | 202680 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    07/24/13 20:34:10:486 | [INFO] |  | OOBE | DE |  |  |  | 202680 | Installer Operation: PayloadInstaller
    07/24/13 20:34:10:487 | [INFO] |  | OOBE | DE |  |  |  | 202680 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    07/24/13 20:34:10:487 | [INFO] |  | OOBE | DE |  |  |  | 202680 | Request to install payload
    07/24/13 20:34:10:495 | [INFO] |  | OOBE | DE |  |  |  | 202680 | Payload Adobe Extension Manager CS6_6.0.7_AdobeExtensionManager6.0All 6.0.7.0 {48BC197D-7053-434D-AF69-9233170D1614}: Calling ARKEngine from path /Applications/Utilities/Adobe Application Manager/DECore/DE6/resources
    07/24/13 20:34:11:738 | [INFO] |  | OOBE | DE |  |  |  | 202680 | CustomizedPatch property not found in database
    07/24/13 20:34:11:738 | [INFO] |  | OOBE | DE |  |  |  | 202680 | Beginning installation for payload at /private/tmp/.tempdirFG5wB16D/Install.db
    07/24/13 20:34:11:741 | [ERROR] |  | OOBE | DE |  |  |  | 202680 | DS015: Unable to read symlink target of source file "/Applications/Adobe Extension Manager CS6/Adobe Extension Manager CS6.app/Contents/CodeResources"(Seq 2)
    07/24/13 20:34:11:741 | [WARN] |  | OOBE | DE |  |  |  | 202680 | DW063: Command ARKCopySymlinkCommand failed.(Seq 2)
    07/24/13 20:34:11:741 | [INFO] |  | OOBE | DE |  |  |  | 202680 | Completing installation for payload at /private/tmp/.tempdirFG5wB16D/Install.db
    07/24/13 20:34:11:798 | [INFO] |  | OOBE | DE |  |  |  | 202664 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 2 =*=*=*=*=*=*=*=*=*=*=*=*=*
    07/24/13 20:34:11:798 | [INFO] |  | OOBE | DE |  |  |  | 202664 | :: END TIMER :: [Payload Operation :{48BC197D-7053-434D-AF69-9233170D1614}] took 1313 milliseconds (1.313 seconds) DTR = 3028.18 KBPS (2.95721 MBPS)
    07/24/13 20:34:11:802 | [INFO] |  | OOBE | DE |  |  |  | 202664 | User specified overrideFile:
    07/24/13 20:34:11:804 | [INFO] |  | OOBE | DE |  |  |  | 202664 | The csu inventory was not updated for payload Adobe Extension Manager CS6_6.0.7_AdobeExtensionManager6.0All 6.0.7.0 {48BC197D-7053-434D-AF69-9233170D1614}, value of local var is -1
    07/24/13 20:34:11:804 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Calling the ROLLBACK custom action code for pre-install for payload Adobe Extension Manager CS6_6.0.7_AdobeExtensionManager6.0All 6.0.7.0 {48BC197D-7053-434D-AF69-9233170D1614}
    07/24/13 20:34:11:850 | [INFO] |  | OOBE | DE |  |  |  | 202664 | No operation.  We're done:
    07/24/13 20:34:13:852 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Total components installed: 0
    07/24/13 20:34:13:853 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Total components repaired: 0
    07/24/13 20:34:13:853 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Total components removed: 0
    07/24/13 20:34:13:853 | [WARN] |  | OOBE | DE |  |  |  | 202664 | DW050: The following payload errors were found during install:
    07/24/13 20:34:13:853 | [WARN] |  | OOBE | DE |  |  |  | 202664 | DW050:  - Adobe Extension Manager CS6_6.0.7_AdobeExtensionManager6.0All: Install failed
    07/24/13 20:34:13:853 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Call PostSession Custom Hook
    07/24/13 20:34:13:853 | [INFO] |  | OOBE | DE |  |  |  | 202664 | :: END TIMER :: [Total Timer] took 4931 milliseconds (4.931 seconds) DTR = 814.439 KBPS (0.795351 MBPS)
    07/24/13 20:34:14:854 | [INFO] |  | OOBE | DE |  |  |  | 202664 | -------------------------------------- Summary --------------------------------------
    07/24/13 20:34:14:854 | [INFO] |  | OOBE | DE |  |  |  | 202664 |  - 0 fatal error(s), 1 error(s)
    07/24/13 20:34:14:854 | [INFO] |  | OOBE | DE |  |  |  | 202664 | OSX version: 10.8.4 
    07/24/13 20:34:14:854 | [INFO] |  | OOBE | DE |  |  |  | 202664 |
    07/24/13 20:34:14:854 | [INFO] |  | OOBE | DE |  |  |  | 202664 | ----------- Payload: Adobe Extension Manager CS6_6.0.7_AdobeExtensionManager6.0All 6.0.7.0 {48BC197D-7053-434D-AF69-9233170D1614} -----------
    07/24/13 20:34:14:854 | [INFO] |  | OOBE | DE |  |  |  | 202664 | ERROR: DS015: Unable to read symlink target of source file "/Applications/Adobe Extension Manager CS6/Adobe Extension Manager CS6.app/Contents/CodeResources"(Seq 2)
    07/24/13 20:34:14:854 | [INFO] |  | OOBE | DE |  |  |  | 202664 |
    07/24/13 20:34:14:854 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Please search the above error string(s) to find when the error occurred.
    07/24/13 20:34:14:854 | [INFO] |  | OOBE | DE |  |  |  | 202664 | These errors resulted in installer Exit Code mentioned below.
    07/24/13 20:34:14:854 | [INFO] |  | OOBE | DE |  |  |  | 202664 | -------------------------------------------------------------------------------------
    07/24/13 20:34:14:854 | [INFO] |  | OOBE | DE |  |  |  | 202664 |
    07/24/13 20:34:14:854 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Exit Code: 7 - Unable to complete Silent workflow.
    07/24/13 20:34:14:854 | [INFO] |  | OOBE | DE |  |  |  | 202664 | Please see specific errors for troubleshooting. For example, ERROR: DS015 ...
    07/24/13 20:34:14:854 | [INFO] |  | OOBE | DE |  |  |  | 202664 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    07/24/13 20:34:14:854 | [INFO] |  | OOBE | DE |  |  |  | 202664 | END - Installer Session
    07/24/13 20:34:14:854 | [INFO] |  | OOBE | DE |  |  |  | 202664 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*

  • New SW update available for Nokia 208 Dual SIM: v....

    Hey,
    we have started rolling out a new software update for Nokia 208 Dual SIM (RM-949 & RM-956): v. 9.05. This is a global update and should be already available to users in many countries/regions via FOTA (Over-The-Air).
    Find the update instructions from here: http://www.nokia.com/global/support/software-updat​e/asha-software-update
    Key changes compared to previous 3.39 SW version include:
    Battery performance improvements
    Phone software stability improvements.
    Transfer app added.
    Updated versions of Email, Notifications, Social Accounts and Twitter apps.
    Lunar calendar support added (available in China only).
    General usability & performance improvements.
    Cheers!
    http://www.microsoft.com/en/mobile/nokia-x-updates/
    http://www.microsoft.com/en/mobile/nokia-x2-update/
    http://www.microsoft.com/en/mobile/asha-software-update/
    http://www.microsoft.com/en/mobile/support/software-update/wp8-software-update/
    http://www.developer.nokia.com/Community/Wiki/Nokia_firmware_change_logs
    https://twitter.com/LumiaSWUpdates

    If you are located in Sri Lanka, your Nokia Care might refuse to change the product code. You have to double check with them and hope the best. Although, in a situation like yours, I would not waste much time and do it myself.
    That's something great to hear from you. I have been kind of a techy guy for a long time and I am a fast learner. So I believe that I will be able to execute the change of region task, if a set of instructions are there to follow. Can you provide me with a source that teaches how to change the region of a mobile phone?
    Regarding the suggestions to Nokia, I then don't think that they would want to hear views from their customers and they might well want to go on their own way (probably why Samsung overtook them in mobile industry). I do not know and this is actually my 2nd Nokia phone in my life (had a short stint with Nokia 2600 Classic, a long time ago). 
    For an example, the Sony Ericsson Cedar (and their other basic phones) had the feature to set specific "Message tones" to specific contacts, instead of setting a general message tone for every contact. But Nokia does not provide such a feature. Probably, they think that such features are not relevant, but still many of their customers around the world would have loved to have such kinds of small small features.This feature was very vital for me during the days I was using SE Cedar and I am missing that feature a lot from Nokia 208.
    The other major issue is that, Nokia does not allow minimizing of Java applications. For example, When I had SE Cedar, I used to browse internet using Opera Mini while I text with someone for a longer time. I mean, until the other party sends a reply, I browse the internet and once the reply arrives, I minimize it and continue texting and then get back to surfing internet again after sending the reply. But with Nokia, I have got to close the application to read the text message and that's been really annoying. 
    I tried to break the Nokia Security Wall with some sort of tutorial based on internet related to S40 firmwares, but it did not work. 
    Any help regarding the issues mentioned above, would be highly appreciated.
    Thanks and Regards,
    CricDasher

Maybe you are looking for

  • Bulk Load from OIM to OID

    hi, i am trying to figure out how to move existing user from OIM to OID in bulk. Is there anyway by which we can move all the existing user in OIM simultaneously rather than one by one through resource profile by provisioning. Regards Pegasus

  • Lenovo Ideapad s205 ACPI Problem?

    I have installed Arch linux in to subject notebook. Wile installing I skip efi support and boot with syslinux (not grub). This is first time I meet motherboard with efi support, so I'm not quite sure I have to reinstall distro. My installation works

  • Using SQL Statements in Error Exceptions

    Is there any way to include SQL statements within my catch routines (i.e. catch (java.io.IOException ex) { System.out.println("An error occurred whilst writing to the message buffer: " + ex); #sql { INSERT INTO DEBUG_TBL(CURRENT_DT,PROGRAM_ID,DEBUG__

  • I have a printer canon mp495 and I'm trying to connect it to my iPad. But my iPad can find it the printer. Do I have to reset the printer or what app do I use?

    I have a printer canon mp495 and I'm trying to connect it to my iPad. But my iPad can find it the printer. Do I have to reset the printer or what app do I use?

  • Ibook g4 ram addition

    i just bought adobe cs 2 and to run two applications at once it runs really slow. I called adobe and they told me that if I get more ram it will speed up my system so they will run correctly. I know that i need the 2700 ram to add to my computer and