checkin_new cause intradoc.data.DataException:! csDbUnableToStartTransaction

Hi all

Our requirement is to unzip a file and documentation of all the files and folders individual in Complutense University of MADRID when a zip file is recorded.
Achieve the same that I work on the development of a java component. I have successfully:
-Unzip the file and place all of its contents (files and folders) on the UCM backend (I placed the slot/slot/ems2124/oracle/Oracle/Middleware/user_projects/domains/dev_domain/ucm/cs/bin/temp /)
-Record keeping maintaining their hierarchy structure using service COLLECTION_ADD

The code is as follows:
target package;

Intradoc.data import. *;
Intradoc.common import. *;
Intradoc.shared import. *;
Intradoc.server import. *;

Import Java.util;
java.util.zip import. *;
to import java.util.Enumeration;
import java. IO;





/ public class UnzipExtract implements FilterImplementor
{
final public static String ZIP_ASSOC_FIELD = SharedObjects.getEnvironmentValue ("zipAssociationField");
public static final char DOS_SEPARATOR = ' \';
public static final char UNIX_SEPARATOR = ' / ';.
private static final int BUFF_SIZE = 8192;
public String extLinkText = "";
public String extLinkAdd = "";
public String extLinkDoc = "";




public int doFilter (ws, DataBinder, ExecutionContext cxt m_binder workspace)
get DataException, ServiceException
{

System.out.println ("* entry filter *");


String primaryFile = null;
String extractFlag = null;

primaryFile = m_binder.getLocal ("primaryFile");
extractFlag = m_binder.getLocal ("xExtract");

If (primaryFile! = null & & primaryFile.length () > 0)
{
If (primaryFile.endsWith (".zip")) / / & & extractFlag.equals ("Yes"))
{

Try
{

System.out.println ("* found Zip file *");
unzipFiles (ws, m_binder, cxt);

}
catch (System.Exception e)
{
System.out.println (e.getMessage ());
e.printStackTrace ();
throw new ServiceException ("Runtime zip checkin error" + e.getMessage (), e);
}
}
}
Back to CONTINUE;
}


protected void unzipFiles (workspace ws, linking DataBinder, ExecutionContext cxt)
{
String filename;

try {}
/*
* before we run the new service, we save the old
the data so as not to pollute the environment.
*/
DataBinder m_binder = new DataBinder();
m_binder. Merge (Binder);
System.out.println ("* new workbook of data *");
System.out.println (m_binder);

Properties newData = new Properties ();
String = m_binder.getLocal ("dID") dId.
String dDocName = new String();



System.out.println ("path of the vault construction file");
String docName = DirectoryLocator.computeVaultFileName (m_binder);
String vaultFile = m_binder.getLocal ("VaultfilePath");

System.out.println ("vaultFile" + vaultFile);

int count = 0;
String primaryZipName = m_binder.getLocal ("dDocName");
String originalZipName = m_binder.getLocal ("dOriginalName");

Unzip the file
System.out.println ("* decompression file *");
System.out.println (vaultFile);
ZipFile primaryZipFile = new ZipFile (vaultFile);
File myFile = new queue (vaultFile);
Unzip (myFile, ws, m_binder, cxt);



}
catch (Exception e) {}
System.out.println ("error zipCheckin" + e.getMessage ());
e.printStackTrace ();

}

}





public void unzip (zip, ws, m_binder DataBinder Workspace, ExecutionContext cxt) survey IOException, FileNotFoundException {}

System.out.println ("enter unpack");
String PATH = ' / files/TestComponent ";
String entityName = null;
String delimiter = null;
S service = new service();
String NomDossierParent = new String ("ShwnayakTest2");
ParentId a string = new String ('-1');



try {}
parentId = getFolderId (ws, parentFolderName);
s.init (ws, null, m_binder, ServiceData()) new;
s.initDelegatedObjects ();
} catch (Exception e) {}
System.out.println ("error zipCheckin" + e.getMessage ());
e.printStackTrace ();
}

UserData u = new UserData ("sysadmin");
u.m_attributes = new Hashtable();
u.m_hasAttributesLoaded = true;
u.addAttribute ('account', '#all', '15');
u.addAttribute ("role", "admin", "15");

s.setUserData (u);


Understand the separators
char correctSeparator = File.separatorChar;
char wrongSeparator;
If (correctSeparator == DOS_SEPARATOR) {}
Delimiter = ' \. ';
wrongSeparator = UNIX_SEPARATOR;
} else {}
Delimiter = ' / ';.
wrongSeparator = DOS_SEPARATOR;
}

System.out.println ("delimiter value is:" + delimiter);

String relativeDir = SharedObjects.getEnvironmentValue ("BinDir");
If (! relativeDir.endsWith (File.separator)) {}
relativeDir += File.separator;
}

relativeDir += 'temp' + File.separator;

System.out.println ("value of relativeDir:" + relativeDir);

FileInputStream input = new FileInputStream (zipFile);
ZipInputStream zipinputstream = new ZipInputStream (input);

try {}

ZipEntry zipentry = zipinputstream.getNextEntry ();

While (zipentry! = null) {}

String the EntryName = relativeDir + zipentry.getName ();
System.out.println ("value of the EntryName:" + nom_entree);
Translate separators from one platform to the correct platform
The entryname = entryName.replace (wrongSeparator, correctSeparator);

Boolean isDirectory = zipentry.isDirectory ();

Make sure that the directory exists
String path = new queue (entryName) .getParent ();
String parentPath = path + File.separator;

System.out.println ("value of path:" + path);
New File (path) .mkdirs ();




String [] dirNames;
dirNames = entryName.split (delimiter);
for (int i = 0; i < dirNames.length; i ++) {}
entityName = dirNames;
System.out.println (dirNames [i]);
}

m_binder.setEnvironment (SharedObjects.getEnvironment ());

If (! isDirectory) {}
System.out.println ("It's a file" + entityName);
FileOutputStream outFile = new FileOutputStream ("entryName");

try {}
transferStreams (zipinputstream, outFile);

System.out.println ("done with the download stream");

}
catch (Exception e) {}
e.printStackTrace ();
}
{Finally
If (outFile! = null) {}
outFile.close ();
}
}



}
else {}
System.out.println ("it is a directory");


try {}

To keep the hierarchy, compare the path and relative dir if even its high Ed,.
otherwise get the folder_name parent of the path, and then click query to get sound collectionid
and set it as parentcollectionId to this folder

If (parentPath.equals (relativeDir)) {}
It comes to upper folder.
System.out.println ("it comes to upper folder" + entityName);
} else {}
This isn't high back, so calculate the parentcollectionId
System.out.println ("This is not high-back" + entityName);
dirNames = parentPath.split (delimiter);
for (int i = 0; i < dirNames.length; i ++) {}
NomDossierParent = [i] dirNames;
System.out.println (dirNames [i]);
}


System.out.println ("NomDossierParent is" + NomDossierParent);
parentId = getFolderId (ws, parentFolderName);
}

m_binder.putLocal ("IdcService", "COLLECTION_ADD");
m_binder.putLocal ("hasParentCollectionID", "true");
m_binder.putLocal ("dCollectionName", EntityName);
m_binder.putLocal ("dParentCollectionID", ParentId);
m_binder.putLocal ("dCollectionOwner", "sysadmin");
m_binder.putLocal ("dDocTitle", EntityName);
m_binder.putLocal ("dDocName", entityName); This must be unique for each record. Change later
m_binder.putLocal ("dDocType", "System");
m_binder.putLocal ("dSecurityGroup", "public");
m_binder.putLocal ("dDocAuthor", "sysadmin");
m_binder.putLocal("dCreateDate","");
executeService (ws, m_binder, "sysadmin", true);

System.out.println ("folder created successfully");

resetting the binder to the order of the day
m_binder.clearResultSets ();
m_binder.getLocalData (). Clear();



} catch (Exception e) {}
e.printStackTrace ();
}

}


zipinputstream.closeEntry ();

ZipEntry = zipinputstream.getNextEntry ();

} //while

System.out.println ("Unzip success");
} {Finally
If (zipinputstream! = null) {}
ZipInputStream.Close ();
}

If (ws! = null)
ws.releaseConnection ();


}
}


public String getFolderId (workspace ws, String NomDossierParent)
get DataException, ServiceException
{

System.out.println ("enter getFolderId");
String val = new String ('-1');

String sql = "select dcollectionid from collections +.
"where dcollectionname = '" + NomDossierParent + "'";
System.out.println ("request sql is" + sql);

ResultSet rs = ws.createResultSetSQL (sql);
if(RS == null) {}
System.out.println ("result set for getFolderId is empty... problem");
throw the new ServiceException ("" for getFolderId Resultset is empty... problem "");
}
Result DataResultSet = new DataResultSet();
result. Copy (RS);
If (result.getNumRows () > = 1) {}
System.out.println ("result.getNumRows () for getFolderId is greater than 1");
result. First();
Val = result.getStringValue (0);
System.out.println ("dcollectionid is" + val);
Return val;
}
else {}
System.out.println ("dcollectionid is - 1");
Return val;
}
}


/**
Run a service call based on the data in the workbook to help
* the supplied user credentials
*/
' Public Sub executeService (workspace ws, newBinder DataBinder, String userName, boolean)
suppressServiceError)
get DataException, ServiceException
{
System.out.println ("input run service");


UserData u = new UserData ("sysadmin");
u.m_attributes = new Hashtable();
u.m_hasAttributesLoaded = true;
u.addAttribute ('account', '#all', '15');
u.addAttribute ("role", "admin", "15");

get a connection to the database
Workspace workspace = ws;
Look for a value of IdcService
String cmd = newBinder.getLocal ("IdcService");
If (cmd is nothing)
throw new DataException("!csIdcServiceMissing");
get the service definition
ServiceData serviceData = ServiceManager.getFullService (cmd);
If (serviceData is nothing)
throw new DataException (LocaleUtils.encodeMessage ("!")) csNoServiceDefined", null,
cmd));
create the object for this service
The service = ServiceManager.createService (serviceData.m_classID,
workspace, null, newBinder, serviceData);
Get the data from the full user of this user
service.setUserData (u);
newBinder.m_environment.put ("REMOTE_USER", username);
System.out.println ("Done with setup");


ServiceException error = null;
Try
{

System.out.println ("setSendFlags");
init service do not return HTML
service.setSendFlags (true, true);


System.out.println ("initDelegatedObjects");
create the ServiceHandlers and producers
service.initDelegatedObjects ();

System.out.println ("globalSecurityCheck");
do a safety check
service.globalSecurityCheck ();

System.out.println ("preActions");
prepare for service
service.preActions ();

System.out.println ("shares");
run the service
service.doActions ();

System.out.println ("postActions");
perform a cleanup
service.postActions ();
store new data customization

service.updateSubjectInformation (true);
service.updateTopicInformation (newBinder);

extLinkDoc = newBinder.getLocal ("dDocName");
extLinkText = newBinder.getLocal ("xLinkTextToDisplay");
extLinkAdd = newBinder.getLocal ("xLinkWebAddress");

System.out.println ("done with the performance of service");

(/ * SystemUtils.trace(AHA_COMPONENT_DEBUG,"dDocName="+newBinder.getLocal("dDocName")\);
SystemUtils.trace (AHA_COMPONENT_DEBUG, "link
Text = "+ newBinder.getLocal ("infoLinkText"));"
SystemUtils.trace (AHA_COMPONENT_DEBUG, "link
Address = "+ newBinder.getLocal ("infoLinkAdd"));" * /

}
catch (ServiceException (e)
{
error = e;
}
Finally
{
Delete all temporary files.
service.cleanUp (true);

}
handle any error
If (error! = null)
{
System.out.println ("errors found");
If (suppressServiceError)
{
System.out.println ("suppressServiceError is true");
error.printStackTrace ();
System.out.println (Error.PrintStackTrace ());
If (newBinder.getLocal ("StatusCode") is nothing)
{
System.out.println ("status code is null");
newBinder.putLocal ("StatusCode", String.valueOf (error.m_errorCode));
newBinder.putLocal ("StatusMessage", error.getMessage ());
}
} else {}
System.out.println ("suppressServiceError is false");
throw new ServiceException (error.m_errorCode, error.getMessage ());
}
}

}


public long transferStreams (in InputStream, OutputStream out)
throws IOException {}
ubyte [] buffer = new byte [BUFF_SIZE];
int iNoOfBytes = - 1;
long totalBytes = 0;
While ((iNoOfBytes = in.read (buffer))! = - 1) {}
out. Write(buffer,0,iNoOfBytes);
out. Flush();
totalBytes += iNoOfBytes;
}
totalBytes return;
}

}




Now, I want to archive files in the respective folders (i.e. maintaining their hierarchy structure in the zip file).

Modification of completed code code above are:
If (! isDirectory) {}
System.out.println ("It's a file" + entityName);
FileOutputStream outFile = new FileOutputStream ("entryName");
try {}
transferStreams (zipinputstream, outFile);

System.out.println ("done with the download stream");

m_binder.putLocal ("IdcService", "CHECKIN_NEW");
m_binder.putLocal ("dDocTitle", EntityName);
m_binder.putLocal ("dDocName", entityName); This must be unique for each record. Change later
m_binder.putLocal ("xCollectionID", ParentId);
m_binder.putLocal ("dDocType", "Document");
m_binder.putLocal ("dSecurityGroup", "public");
m_binder.putLocal ("dDocAuthor", "sysadmin");
m_binder.putLocal ("primaryFile", entityName);
m_binder.putLocal ("primaryFile:path", the EntryName);
System.out.println ("primaryFile:path CHECKIN_NEW with error as real id is" + nom_entree);

executeService (ws, m_binder, "sysadmin", true);

System.out.println ("successfully created file");

resetting the binder to the order of the day
m_binder.clearResultSets ();
m_binder.getLocalData (). Clear();

}
catch (Exception e) {}
e.printStackTrace ();
}
{Finally
If (outFile! = null) {}
outFile.close ();
}
}
} else {}
...//existing code logging directory...
}


But I can't do the same. I get the below exception while I run the program. No exception for the directory, but when it runs executeService on file (i.e. CHECKIN_NEW) it errors. Same error if I change the name of the service of CHECKIN_UNIVERSAL
intradoc.common.ServiceException:
at intradoc.data.WorkspaceTransactionWrapper.beginTransaction(WorkspaceTransactionWrapper.java:62)
at intradoc.server.ServiceRequestImplementor.beginTransaction(ServiceRequestImplementor.java:347)
at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1542)
at intradoc.server.Service.doAction(Service.java:547)
at intradoc.server.Service.doScriptableAction(Service.java:3964)
at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)
at intradoc.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:310)
at intradoc.common.ClassHelperUtils.executeMethod(ClassHelperUtils.java:)
....
at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
Caused by: intradoc.data.DataException:! csDbUnableToStartTransaction! csJdbcStartTranWithinATranNotAllowed
at intradoc.jdbc.JdbcWorkspace.handleSQLException(JdbcWorkspace.java:2546)
at intradoc.jdbc.JdbcWorkspace.beginTranEx(JdbcWorkspace.java:1137)
at intradoc.data.WorkspaceTransactionWrapper.beginTransaction(WorkspaceTransactionWrapper.java:57)
... more than 117
Caused by: java.sql.SQLException:! csJdbcStartTranWithinATranNotAllowed
at intradoc.jdbc.JdbcWorkspace.beginTranEx(JdbcWorkspace.java:1090)
... more than 118



I also tried to create a component with only a single file archiving and even that fails with the same error. Code:

public int doFilter (ws, DataBinder, ExecutionContext cxt serviceBinder workspace)
get DataException, ServiceException
{

System.out.println ("enter unpack again");
serviceBinder = new DataBinder();
serviceBinder.setEnvironment (SharedObjects.getEnvironment ());


serviceBinder.putLocal ("IdcService", "CHECKIN_NEW");
serviceBinder.putLocal ("dDocTitle", "ShwnayakTestJune15");
serviceBinder.putLocal ("dDocType", "Document");
serviceBinder.putLocal ("dSecurityGroup", "Public");
serviceBinder.putLocal("primaryFile","/slot/ems2124/oracle/Oracle/Middleware/user_projects/domains/dev_domain/ucm/cs/bin/temp/TestCode/ShwnayakTestJune15.txt");

executeService (serviceBinder, "sysadmin", true);

System.out.println ("successfully created file");

resetting the binder to the order of the day
serviceBinder.clearResultSets ();
serviceBinder.getLocalData () .clear ();

Back to CONTINUE;
}


The code in the .hda file:
<? had version = "7.5.1 (050330) ' jcharset = Cp1252 encoding = iso-8859-1? >
LocalData @Properties
version = 2007_02_27 (version 2)
classpath = $COMPONENT_DIR/classes
blFieldTypes =
LIBPATH = $COMPONENT_DIR/lib
NomComposant = UnzipAndExtract
hasPreferenceData = false
blDateFormat = M/d/yy {hh: mm [: ss] [zzz] {aa}}! mAM, MP! tAmerica/Chicago
@end
Filters @ResultSet
4
type
location
parameter
loadOrder
postWebfileCreation
Target.UnzipExtract
null
1
@end
@ResultSet MergeRules
4
Obtained
toTable
column
loadOrder
@end
@ResultSet ResourceDefinition
4
type
file name
tables
loadOrder
@end
@ResultSet ClassAliases
2
ClassName
location
@end



I rebooted the WLS (in order to restart the database), but no luck.
Can someone please help to analyze the cause of this error.

Thanks in advance,
Benhamdia

You don't need to perform the service.cleanUp (true);

You need to change the filter type of "postWebFileCreation" to "serviceCleanUp".

Jonathan
http://redstonecontentsolutions.com
http://corecontentonly.com

Tags: Fusion Middleware

Similar Questions

  • How to convert java.sql.ResultSet to intradoc.data.DataResultSet

    I used a MS jdbc driver to perform a query and got a java.sql.ResultSet.
    Now when I try this

    DRS DataResultSet = new DataResultSet();
    ResultSet rs = stmt.executeQuery (sqlString);
    Drs.Copy ((intradoc. (Data.ResultSet) rs);

    I get an error "ClassCastException.
    But they compile even without the cast.

    I also tried this:

    {while (RS. Next())}
    trace ("CPC" + rs.getString (1));
    String s = rs.getString (1);
    Vector v = new Vector < String > < String > ();
    v.Add (s);
    drs.addRow (v);
    }

    and I get an error
    Caused by: java.lang.Error:! syFailedAppendRow

    Is there a way to do it (or something)? Y at - it the javadoc for intradoc.data.DataResultSet?

    I'm using eclipse and JRE 1.5
    And injectors scanner stellant 10gr 4

    Thank you

    Published by: kgough on March 2, 2011 06:36

    If this does not work, you can always try something like this

    public static DataResultSet toDataResultSet(
         final java.sql.ResultSet p_resultset,
         final boolean p_closeAfterCopy
    ) throws SQLException {
    
         final ResultSetMetaData rsmd = p_resultset.getMetaData();
         final int columnCount = rsmd.getColumnCount();
    
         // get headings
         final String[] columnNames = new String[ columnCount ];
         final int[] columnTypes = new int[ columnCount ];
         for ( int i = 0 ; i < columnCount ; i++ ) {
              columnNames[ i ] = rsmd.getColumnName( i + 1 );
              columnTypes[ i ] = rsmd.getColumnType( i + 1 );
         }
    
         final DataResultSet dataResultSet = new DataResultSet( columnNames );
    
         while ( p_resultset.next() ) {
    
              Vector row = new Vector();
              for ( int i = 0 ; i < columnCount ; i++ ) {
    
                   final int fieldType = columnTypes[ i ];
    
                   //if ( fieldType != Types.CHAR || fieldType != Types.VARCHAR ) {
                   //     // if you want stuff other than string, do smart stuff here
                   //}
                   row.add( p_resultset.getString( i + 1 ) );
    
              }
              dataResultSet.addRow( row );
    
         }
    
         if ( p_closeAfterCopy ) {
              p_resultset.close();
         }
    
         return dataResultSet;
    
    }
    
  • What are the causes of data loss during an update?

    Just what are really the causes of data loss or corruption when you update. Most sites will tell you to back up what I'm doing, but none of them actually appoint a cause to save.

    -Thanks in advance

    Minor updates in an OSX * may * break the file system.  Fully upgrades to other OSX replaces almost all file systems.

    Some backup of people even before you install some software packages, because they know how this package changes directories OSX.

    Backups are never a waste of time.

  • Application of expression Boolean generation causes a data loss condition tags that are excluded as 'NOT' tagged

    Hi all

    I am running FM12.0.2.389 on Win7-SP1 (64-bit) laptop with i7 & 16 GB of RAM.

    I reported this problem as a bug in the Adobe bug base, but they were not able to reproduce the bug with the files I sent. This leads me to believe that the conflict is perhaps the result of something gone wobbly or conflicting in my system. Here's what happens:

    Using 'Set expression' triggers crash FM on the next file > save, displays the error message on the imported graphic and loss of data which has been marked with conditions to exclude "NOT" in the phrase Boolean build.

    Steps to reproduce using my files (zipped):

    1. open Ch1_Introduction - 4FC.fm.

    2. create a build expression named 3DpartnerKitConditions using this definition:

    not "LIVEonly" and not 'InstallOnly' and not ('Commentary' or 'Deleted' or 'Future' or 'international' or 'PostInstall' or 'Question' or 'SDinstallOnly')

    3 file > save.

    4. apply the expression of the construction.

    5 file > save... (crash)

    Result: All conditions excluded via Boolean DO NOT tag data is not longer in the file, as seen in Ch1_Introduction - droppedText.fm.

    What I THOUGHT was going to happen are that tagged data excluded via Boolean DO NOT conditions should stay in the file but hidden and can be demonstrated easily through text show/hide conditional > show all with indicators of Condition Show. Sometimes it does not crash FM and must behave this way, but 90% of the time the result is the crash and data loss.

    Other things that I am looking at, I think I have a few scripts or running plugins that have been written for previous versions of FM. Yes, I'm addicted to the things of CudSpan, Bruce Foster, Silicon Prairie, FrameExpert, Sundorne and Miaramo. I noticed that (admittedly written in FM11) SafetyMIF causes crash FM at the exit, but as we use the Git repositories for incremental recording, trying to produce regularly the MIF is quite complicated the case, and record the bin file from FM bloats the referential way too technical to be happy at all.

    I don't know what triggers the question of expression Boolean tag, but I really, really need to solve. I'm a solo writer (for now) with a very heavy load of docs and deadlines that can be managed by only sound sourcing methods. Thus, these files depend on variables, condition labels, shared files between different books, shared graphics and overlays of text, if any.

    Someone in the community can help me find a way to identify the root cause? I plan to approach troubleshooting by first uninstalling FM, cleaning the trash to uninstall typical Windows, reinstall fresh FM, then adding the plugins one at the time and the attempt running Boolean tag setting after each plugin is added to see if I can tell which one is the trigger of the question. If it is a corrupt, obtained FM facility that would solve the problem, too.  What do you think guys?

    Thank you

    René

    Rene,

    It is a healthy approach and probably the only thing, because there may be interactions between them (even though I probably have most of the same and do not see the odd-ball accident during recording).

    Bruce Foster those who aren't are not compatible with FM12 (or even 11) - too old. Some of the plugins of Chris also had problems with FM11 and 12 If you don't have the correct MS 32-bit operating times installed (even on a 64-bit operating system).

  • How to detect which program is causing a data execution prevention Shut Down? __

    DEP my print spooler service stops and prevents me from printing.  I tried to make an exception to DEP for the print spooler program, but this was denied.  I installed the latest printer drivers for all my printers active and have run an in-depth analysis, but the problem persists.

    If I don't find the cause that I can disable DEP altogether?

    Hello

    Run through the above and you probably also need to make these to clear print spooler.

    Use this method to clear the spooler and then uninstall and reinstall your printer (check with the manufacturer for)
    the latest driver).

    Check Mr. Fixits here and if you use the other methods go back and try again later.

    Problems of print and error - a Mr Fixit of printing
    http://support.Microsoft.com/GP/printing_problems

    Solve printer problems - a Mr Fixit
    http://windowshelp.Microsoft.com/Windows/en-us/help/8c11977e-8244-408f-A036-7978a618d7a21033.mspx

    ------------------------------------------------------
    Logon as administrator

    Start - type in the search box-> COMMAND - control to the top of the list and RIGHT CLICK – RUN AS ADMIN

    You can copy and paste each line except those brackets and press ENTER after each.

    net stop Spooler

    (echo suppression of all print jobs)<-- you="" should="" see="" this="">

    ping localhost n 4 > zero

    del/q %SystemRoot%\system32\spool\printers\*.*

    net start Spooler

    (sound Done!)<-- you="" should="" see="" this="">

    ping localhost n 4 > zero

    Another way
    http://4sysops.com/archives/how-to-cancel-a-print-job-that-hangs-under-Windows-Vista-and-XP/

    Check the print - DELETE/STOP queue all jobs - then right click on the printer - REMOVAL
    http://windowshelp.Microsoft.com/Windows/en-us/help/bb6f81d9-4092-4ac8-9716-2bd008f513e11033.mspx

    If you use Control Panel - Classic - printers

    Try after unplugging your printer if necessary.
    -------------------------------------------------------------

    Also check the spooler print and its dependencies and addictions Service.

    Print Spooler service
    http://www.blackviper.com/WinVista/services/Print_Spooler.htm

    How difficulty Windows Vista print spooler starts do not
    http://www.ehow.com/how_4920100_vista-print-spooler-not-starting.html

    ------------------------------------------------------------

    Check this thread if necessary - to stop and erase the spooler

    http://social.answers.Microsoft.com/forums/en-us/vistaperformance/thread/a15779d6-ac0d-42FD-9Ac2-a1da241ea19f/

    and here
    http://social.answers.Microsoft.com/forums/en-us/vistahardware/thread/58b54fa9-cf6f-40F7-90b2-8093c6777493

    ------------------------------------------------------
    Clean the General corruption and repair or replace the damaged/missing files.

    Run DiskCleanup - start - all programs - Accessories - System Tools - Disk Cleanup

    Start - type this in the search box-> find COMMAND at the top and RIGHT CLICK – RUN AS ADMIN

    Enter this at the command prompt - sfc/scannow

    How to analyze the log file entries that the Microsoft Windows Resource Checker (SFC.exe) program
    generates in Windows Vista cbs.log
    http://support.Microsoft.com/kb/928228

    CheckDisk (chkdsk) runs at startup.

    How to run the check disk at startup in Vista
    http://www.Vistax64.com/tutorials/67612-check-disk-Chkdsk.html

    I hope this helps.
    Rob - bicycle - Mark Twain said it is good.

  • Can system table space cause multiple data files in several places?

    Hi experts,

    Our current system has a partition to keep the system tablespace data files, but I assumed that the partition is wrongly estimated and the size was maintained only 2 GB. Now the partition's got full and it seems no way to increase the partition from the OS. The only option I have is to create the new data for system tablespace file in another free partition. Is this possible? I have to consider all things important before doing this? Also can I create new data with the regular create command file or need to do something special for system tablespace?

    Thanks in advance

    Yes, you can create two data files for system tablespace into two partitions.

    To reduce the space in the system tablespace - you should check what are segments that occupy the space in the system tablespace.

    To get the examples if you have the Audit DB - then you can move the table to tablespace someother depending on availability.

  • Change the order of the columns does not cause any data found error report

    Hello. I have a weird problem (and I'm new to APEX). I have a subregion of report that shows the details of a master record based on the ID of the parent area. When I have everything first to change SQL for the query and apply the changes page works fine. When I go back and change the region > attributes report and use the arrows to change the order of the columns the region then returns:

    error report:
    ORA-01403: no data found

    I tried to change the query so that the columns found in the desired order and who has also not returned no data error. If I go back to my original query (which had 2 fewer columns) the page works again. Then I change to the new query (2 addtl columns), and then it works again, until I have change the order of the columns again. Don't know if it would be serious or not, but one of the columns is a 2 columns of the table concat.

    Any ideas would be appreciated, because I'm out of them.

    Thank you!

    use: Apex 4.0
    DB: 10g Exp

    "807428," Hi

    using 4.0 or 4.0.1? Can you reproduce the same problem on apex.oracle.com as well?

    Concerning
    Patrick
    -----------
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Can Flex 2 cause local data persistence?



    Guys, I just check the RIA development environments. I am aware that the flash local shared objects as a way to store data on a local computer. Is it available in Flex 2? It is essential for the application I want to write. Any help welcome.

    Best

    Steve

    It's just a local file, although the location is not good publicity. You could encrypt the data Save in it. I used MD5 with Flex library.

    Tracy

  • error page 404 not found error on the login page.

    Hello

    Past the existing to the new db and restarted the Admin db db connection and UCM managed server.

    After you restart the server, when you tried to connect to the 404 error page get url not found error. Connection pool SDR in admin shows running.

    Log file:

    < could not start server "server" to the URL by default relative web root "cs".

    javax.servlet.ServletException: could not start a deployment of servers of IDC.

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1268)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:531)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:460)

    to idcservlet. IdcFilter.initContentServer (IdcFilter.java:181)

    to idcservlet. IdcFilter.init (IdcFilter.java:156)

    to weblogic.servlet.internal.FilterManager$ FilterInitAction.run (FilterManager.java:343)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)

    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)

    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)

    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)

    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)

    to weblogic.application.internal.BaseDeployment$ 2.next(BaseDeployment.java:671)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)

    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)

    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)

    to weblogic.management.deploy.internal.DeploymentAdapter$ 1.doActivate(DeploymentAdapter.java:51)

    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)

    to weblogic.management.deploy.internal.AppTransition$ 2.transitionApp(AppTransition.java:30)

    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)

    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)

    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)

    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)

    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)

    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Caused by: java.io.IOException: Oracle WebCenter content could not initialize inside the servlet environment.

    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:139)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1257)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:531)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:460)

    to idcservlet. IdcFilter.initContentServer (IdcFilter.java:181)

    to idcservlet. IdcFilter.init (IdcFilter.java:156)

    to weblogic.servlet.internal.FilterManager$ FilterInitAction.run (FilterManager.java:343)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)

    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)

    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)

    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)

    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)

    to weblogic.application.internal.BaseDeployment$ 2.next(BaseDeployment.java:671)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)

    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)

    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)

    to weblogic.management.deploy.internal.DeploymentAdapter$ 1.doActivate(DeploymentAdapter.java:51)

    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)

    to weblogic.management.deploy.internal.AppTransition$ 2.transitionApp(AppTransition.java:30)

    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)

    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)

    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)

    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)

    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)

    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Caused by: intradoc.common.ServiceException:

    at intradoc.server.IdcServerManager.init(IdcServerManager.java:252)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:627)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)

    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:104)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:88)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1259)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:531)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:460)

    to idcservlet. IdcFilter.initContentServer (IdcFilter.java:181)

    to idcservlet. IdcFilter.init (IdcFilter.java:156)

    to weblogic.servlet.internal.FilterManager$ FilterInitAction.run (FilterManager.java:343)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)

    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)

    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1874)

    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3155)

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:487)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:427)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)

    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:427)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)

    to weblogic.application.internal.BaseDeployment$ 2.next(BaseDeployment.java:672)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)

    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)

    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)

    to weblogic.management.deploy.internal.DeploymentAdapter$ 1.doActivate(DeploymentAdapter.java:52)

    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)

    to weblogic.management.deploy.internal.AppTransition$ 2.transitionApp(AppTransition.java:31)

    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)

    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:170)

    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:124)

    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)

    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)

    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Caused by: intradoc.data.DataException:! csJdbcGenericError

    at intradoc.jdbc.JdbcWorkspace.handleSQLException(JdbcWorkspace.java:2595)

    at intradoc.jdbc.JdbcWorkspace.createResultSetSQL(JdbcWorkspace.java:830)

    at intradoc.jdbc.JdbcWorkspace.createResultSetSQL(JdbcWorkspace.java:769)

    at intradoc.server.IdcExtendedLoader.getDBConfigValue(IdcExtendedLoader.java:3294)

    at intradoc.server.IdcExtendedLoader.extraBeforeCacheLoadInit(IdcExtendedLoader.java:202)

    at intradoc.server.IdcSystemLoader.loadCaches(IdcSystemLoader.java:1246)

    at intradoc.server.IdcServerManager.init(IdcServerManager.java:142)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:627)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)

    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:104)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:88)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1259)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:531)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:460)

    to idcservlet. IdcFilter.initContentServer (IdcFilter.java:181)

    to idcservlet. IdcFilter.init (IdcFilter.java:156)

    to weblogic.servlet.internal.FilterManager$ FilterInitAction.run (FilterManager.java:343)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)

    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)

    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1874)

    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3155)

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:487)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:427)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)

    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:427)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)

    to weblogic.application.internal.BaseDeployment$ 2.next(BaseDeployment.java:672)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)

    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)

    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)

    to weblogic.management.deploy.internal.DeploymentAdapter$ 1.doActivate(DeploymentAdapter.java:52)

    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)

    to weblogic.management.deploy.internal.AppTransition$ 2.transitionApp(AppTransition.java:31)

    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)

    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:170)

    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:124)

    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)

    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)

    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Please provide entries.

    First checkpoint to ensure that this database is installed as case insensitive snack. Prerequisites on SQL database installation.

    ===================

    This happens usually when the user database of WCC is given role 'sysadmin '.

    Via SQL Server Management console, delete the "sysadmin" of the WCC database user role.

    It should solve the problem.

    Note: The default roles defined for the user of the WCC JDBC (default value is "DEV_OCS") by the regional coordination unit are only:

    Server role: Public

    The database role membership for: contentserver_role, Public

  • Facing a problem by opening the console of the AAU

    Hello

    I installed Webcenter content 12 c. I started the server of the University Complutense of MADRID. If the server is also running, I'm unable to open the cs console.

    Also, I see a few error messages in the logs at the server startup. Fix the content of the newspaper.

    Can someone please help me go further.

    javax.servlet.ServletException: could not start a deployment of servers of IDC.

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1340)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:593)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:522)

    ...................

    Caused by: java.io.IOException: csServletFailedToFullyInitialize

    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:139)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:497)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)

    ...................

    Caused by: intradoc.data.DataException:! Abandoned facility.

    at intradoc.server.IdcInstallInfo.continueEarlyInstall(IdcInstallInfo.java:553)

    at intradoc.server.IdcSystemConfig.initConfigEarly(IdcSystemConfig.java:205)

    at intradoc.server.IdcSystemConfig.loadInitialConfig(IdcSystemConfig.java:323)

    at intradoc.server.IdcServerManager.init(IdcServerManager.java:102)

    ............

    Caused by: java.lang.UnsatisfiedLinkError: intradoc.common.NativeOsUtilsBase.getNativeVersion () Ljava/lang/String;

    at intradoc.common.NativeOsUtilsBase.getNativeVersion (Native Method)

    at intradoc.common.NativeOsUtilsBase.doLoad(NativeOsUtilsBase.java:448)

    to intradoc.common.NativeOsUtilsBase. < init > (NativeOsUtilsBase.java:360)

    to intradoc.common.NativeOsUtils. < init > (NativeOsUtils.java:28)

    at intradoc.common.FileUtils.checkOrCreateDirectory(FileUtils.java:566)

    Hello

    Please check below doc ID

    csUnableToStartFileStoreProvider NativeOsUtils of the class is not loaded. The NativeOsUtils class is not loaded. java.lang.UnsatisfiedLinkError: intradoc / (Doc ID 1606897.1)

    There are two possible solutions to this problem:

    (1) obtain and install Visual C++ 2005 SP1 Redistributable Package (x 86 and x 64).

    (2) if the installation of Visual C++ does not resolve the problem, then please scroll through the Note 1333282.1.

    After the upgrade to 11.1.1.6.0 reception could not start deployment of admin IDC error when starting Managed Server (Doc ID 1561507.1)

    Thank you

    Amey

  • Error: csZipRenditionEntryNotFound - while the Archives of transfer

    Hello.


    I have a domain install Oracle Webcenter content 11.1.1.6.

    I have a new domain to install Oracle Webcenter content 11.1.1.8.

    When I configure a UCM to old domain replication and a new domain, error when download a document (docx extension .doc)

    ZipRenditionManagement component activated in old University Complutense of MADRID and the new University Complutense of MADRID.

    < 2 December 2015 16:31:08 ICT > < error > < oracle.ucm.idccs > < CMU-CS-000001 > < general exception >

    < 2 December 2015 16:31:08 ICT > < error > < oracle.ucm.idccs > < CMU-CS-000001 > < general exception

    intradoc.common.ServiceException:! csErrorAccessingForDownload, filename.doc

    at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:2173)

    at intradoc.server.Service.buildServiceException(Service.java:2402)

    at intradoc.server.Service.createServiceExceptionEx(Service.java:2396)

    at intradoc.server.Service.createServiceException(Service.java:2391)

    at intradoc.server.ServiceHttpImplementor.handleUploadException(ServiceHttpImplementor.java:2553)

    at intradoc.server.ServiceHttpImplementor.sendStreamResponse(ServiceHttpImplementor.java:2479)

    at intradoc.server.Service.doResponse(Service.java:2165)

    at intradoc.server.FileService.doResponse(FileService.java:1618)

    at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:824)

    at intradoc.server.Service.doRequest(Service.java:1974)

    at intradoc.server.ServiceManager.processCommand(ServiceManager.java:486)

    at intradoc.server.IdcServerThread.processRequest(IdcServerThread.java:265)

    at intradoc.idcwls.IdcServletRequestUtils.doRequest(IdcServletRequestUtils.java:1355)

    at intradoc.idcwls.IdcServletRequestUtils.processFilterEvent(IdcServletRequestUtils.java:1732)

    at intradoc.idcwls.IdcIntegrateWrapper.processFilterEvent(IdcIntegrateWrapper.java:223)

    at sun.reflect.GeneratedMethodAccessor139.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.executeContentServerIntegrateMethodOnConfig (ServletUtils.java:1680)

    to idcservlet. IdcFilter.doFilter (IdcFilter.java:457)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:119)

    at java.security.AccessController.doPrivileged (Native Method)

    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)

    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)

    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)

    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)

    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:163)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:119)

    at java.security.AccessController.doPrivileged (Native Method)

    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)

    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)

    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)

    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)

    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.wrapRun (WebAppServletContext.java:3730)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3696)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)

    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)

    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Caused by: intradoc.data.DataException:! csZipRenditionEntryNotFound, zipfile.zip, filename.doc

    at ziprenditions.storageimplementors.LegacyZipStorage.sendRenditionFileResponse(LegacyZipStorage.java:359)

    to ziprenditions. ZipRenditionsFilter.sendRenditionFileResponse (ZipRenditionsFilter.java:828)

    to ziprenditions. ZipRenditionsFilter.doFilter (ZipRenditionsFilter.java:185)

    at intradoc.shared.PluginFilters.filterWithAction(PluginFilters.java:114)

    at intradoc.shared.PluginFilters.filter(PluginFilters.java:68)

    at intradoc.server.ServiceHttpImplementor.checkDownloadOverride(ServiceHttpImplementor.java:2622)

    at intradoc.server.ServiceHttpImplementor.sendStreamResponse(ServiceHttpImplementor.java:2325)

    at intradoc.server.Service.doResponse(Service.java:2165)

    at intradoc.server.FileService.doResponse(FileService.java:1618)

    at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:824)

    at intradoc.server.Service.doRequest(Service.java:1974)

    at intradoc.server.ServiceManager.processCommand(ServiceManager.java:486)

    at intradoc.server.IdcServerThread.processRequest(IdcServerThread.java:265)

    at intradoc.idcwls.IdcServletRequestUtils.doRequest(IdcServletRequestUtils.java:1355)

    at intradoc.idcwls.IdcServletRequestUtils.processFilterEvent(IdcServletRequestUtils.java:1732)

    at intradoc.idcwls.IdcIntegrateWrapper.processFilterEvent(IdcIntegrateWrapper.java:223)

    at sun.reflect.GeneratedMethodAccessor139.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.executeContentServerIntegrateMethodOnConfig (ServletUtils.java:1680)

    to idcservlet. IdcFilter.doFilter (IdcFilter.java:457)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:119)

    at java.security.AccessController.doPrivileged (Native Method)

    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)

    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)

    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)

    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)

    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:163)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:119)

    at java.security.AccessController.doPrivileged (Native Method)

    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)

    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)

    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)

    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)

    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.wrapRun (WebAppServletContext.java:3730)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3696)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)

    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)

    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Suggest me where I was wrong

    Thank you

    Hoan.

    Hi Hoan,

    These content items have accessories added to them? There's the attachment not ascii names? If Yes, then it was a problem with 11.1.1.8.0 server that is fixed in the patches published. You will need to install the last group of MLR 14 hotfixes and restart the server.

    WebCenter - new content patches

    Thank you

    Srinath

  • WebCenter Content Server startup error csServiceDataException, DBSEARCH_UPDATE_ZONE_FIELDS

    Hello

    I installed and configured WebCenter Content Server 11.1.1.8 with the same settings as my other test environments. However, I encountered the error below while I was installing a new another server in another environment.

    What could be the possible cause? I used the same remote control, installation binaries WebCenter Content Server, WebCenter content patches and configurations. The only different is the operating system - I have 1 environment running on Linux and another running on Solaris.

    WebCenter content 11.1.1.8.0PSU - 2015-06-25 00:15:38Z - r130169 (Build: 7.3.5.185)

    < 6 November 2015 14:31:02 SGT > < error > < oracle.ucm.idccs > < CMU-CS-000001 > < general exception

    intradoc.common.ServiceException:! csServiceDataException, DBSEARCH_UPDATE_ZONE_FIELDS, addOrRemoveZoneFields! $

    at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:2176)

    at intradoc.server.Service.buildServiceException(Service.java:2410)

    at intradoc.server.Service.createServiceExceptionEx(Service.java:2404)

    at intradoc.server.Service.createServiceException(Service.java:2399)

    at intradoc.server.ServiceRequestImplementor.handleActionException(ServiceRequestImplementor.java:1816)

    at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1766)

    at intradoc.server.Service.doAction(Service.java:566)

    at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1483)

    at intradoc.server.Service.doActions(Service.java:561)

    at intradoc.server.ServiceRequestImplementor.executeActions(ServiceRequestImplementor.java:1415)

    at intradoc.server.Service.executeActions(Service.java:547)

    at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:751)

    at intradoc.server.Service.doRequest(Service.java:1982)

    at intradoc.server.ServiceManager.processCommand(ServiceManager.java:486)

    at intradoc.server.utils.CompInstallUtils.executeService(CompInstallUtils.java:522)

    at SiteStudioInstallerFilter.setupZoneSearchFields (unknown Source)

    at SiteStudioInstallerFilter.doInstall (unknown Source)

    at SiteStudioInstallerFilter.doFilter (unknown Source)

    at intradoc.shared.PluginFilters.filterWithAction(PluginFilters.java:114)

    at intradoc.shared.PluginFilters.filter(PluginFilters.java:68)

    at intradoc.server.IdcExtendedLoader.executeFilter(IdcExtendedLoader.java:463)

    at intradoc.server.IdcExtendedLoader.extraAfterServicesLoadInit(IdcExtendedLoader.java:448)

    at intradoc.server.IdcSystemLoader.loadServiceData(IdcSystemLoader.java:1157)

    at intradoc.server.IdcServerManager.init(IdcServerManager.java:203)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:626)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)

    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:103)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:606)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1257)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:531)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:460)

    to idcservlet. IdcFilter.initContentServer (IdcFilter.java:181)

    to idcservlet. IdcFilter.init (IdcFilter.java:156)

    to weblogic.servlet.internal.FilterManager$ FilterInitAction.run (FilterManager.java:343)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)

    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)

    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)

    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)

    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)

    to weblogic.application.internal.BaseDeployment$ 2.next(BaseDeployment.java:671)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)

    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)

    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)

    to weblogic.management.deploy.internal.DeploymentAdapter$ 1.doActivate(DeploymentAdapter.java:51)

    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)

    to weblogic.management.deploy.internal.AppTransition$ 2.transitionApp(AppTransition.java:30)

    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)

    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)

    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)

    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)

    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)

    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Caused by: intradoc.data.DataException:! csJdbcGenericError

    at intradoc.jdbc.JdbcWorkspace.handleSQLException(JdbcWorkspace.java:2680)

    at intradoc.jdbc.JdbcWorkspace.executeSQL(JdbcWorkspace.java:971)

    at dbsearchcontainsopsupport.server.DBSearchIndexUtil.addOrDropOracleFTIndex(DBSearchIndexUtil.java:188)

    at dbsearchcontainsopsupport.server.DBSearchIndexUtil.addFTIndex(DBSearchIndexUtil.java:163)

    at dbsearchcontainsopsupport.server.DBSearchIndexUtil.addFTIndexWithEngine(DBSearchIndexUtil.java:154)

    at dbsearchcontainsopsupport.server.DBSearchIndexUtil.checkAndAddFTIndexEx(DBSearchIndexUtil.java:392)

    at dbsearchcontainsopsupport.server.DBSearchIndexUtil.checkAndAddFTIndex(DBSearchIndexUtil.java:375)

    at dbsearchcontainsopsupport.server.DBSearchServiceHandler.addOrRemoveZoneFields(DBSearchServiceHandler.java:141)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:606)

    at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)

    at intradoc.common.ClassHelperUtils.executeMethodReportStatus(ClassHelperUtils.java:324)

    at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:79)

    at intradoc.server.Service.doCodeEx(Service.java:622)

    at intradoc.server.Service.doCode(Service.java:594)

    at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1693)

    at intradoc.server.Service.doAction(Service.java:566)

    at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1483)

    at intradoc.server.Service.doActions(Service.java:561)

    at intradoc.server.ServiceRequestImplementor.executeActions(ServiceRequestImplementor.java:1415)

    at intradoc.server.Service.executeActions(Service.java:547)

    at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:751)

    at intradoc.server.Service.doRequest(Service.java:1982)

    at intradoc.server.ServiceManager.processCommand(ServiceManager.java:486)

    at intradoc.server.utils.CompInstallUtils.executeService(CompInstallUtils.java:522)

    at SiteStudioInstallerFilter.setupZoneSearchFields (unknown Source)

    at SiteStudioInstallerFilter.doInstall (unknown Source)

    at SiteStudioInstallerFilter.doFilter (unknown Source)

    at intradoc.shared.PluginFilters.filterWithAction(PluginFilters.java:114)

    at intradoc.shared.PluginFilters.filter(PluginFilters.java:68)

    at intradoc.server.IdcExtendedLoader.executeFilter(IdcExtendedLoader.java:463)

    at intradoc.server.IdcExtendedLoader.extraAfterServicesLoadInit(IdcExtendedLoader.java:448)

    at intradoc.server.IdcSystemLoader.loadServiceData(IdcSystemLoader.java:1157)

    at intradoc.server.IdcServerManager.init(IdcServerManager.java:203)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:626)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)

    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:103)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:606)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1257)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:531)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:460)

    to idcservlet. IdcFilter.initContentServer (IdcFilter.java:181)

    to idcservlet. IdcFilter.init (IdcFilter.java:156)

    to weblogic.servlet.internal.FilterManager$ FilterInitAction.run (FilterManager.java:343)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)

    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)

    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)

    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)

    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)

    to weblogic.application.internal.BaseDeployment$ 2.next(BaseDeployment.java:671)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)

    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)

    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)

    to weblogic.management.deploy.internal.DeploymentAdapter$ 1.doActivate(DeploymentAdapter.java:51)

    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)

    to weblogic.management.deploy.internal.AppTransition$ 2.transitionApp(AppTransition.java:30)

    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)

    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)

    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)

    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)

    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)

    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    >

    (early) CREATE INDEX xDontShowInListsc7bbf_ZFT ON DocMeta (xDontShowInListsForWebsites) INDEXTYPE IS CTXSYS. CONTEXT PARAMETERS ("SYNC (ON COMMIT)")

    This issue is forthcoming because some of the areas that need to be implemented using the DBSearchContainsOperator component are not listed.

    Search for invalid objects in the database (in particular) to the fields of the area. Or you can turn off the field in the area for the time being from the server and then restart it. Once it is up and running, and then activate the fields of the area of the user interface.

  • Remove the storage with CRMI failure?

    Hi all.

    I am trying to remove the means of storage RIDC

    dataBinder.putLocal ("IdcService", "DELETE_STORAGE");
    dataBinder.putLocal ("dObjectID", dObjectID);

    view the error

    Evento generated por el usuario "sysadmin" host of el en 'CIS '. No to ha could run el servicio DELETE_STORAGE_SUB y the getStorageInfo funcion.

    No hay of characters no validos in the number 'physical '. [ Details ]

    Se ha producido un error. El rastreo de pila siguiente muestra más información. !csUserEventMessage,sysadmin,CIS!$!csServiceDataException,DELETE_STORAGE_SUB,getStorageInfo!$!csNumberInvalidCharacters,Physical intradoc.common.ServiceException: !csServiceDataException,DELETE_STORAGE_SUB,getStorageInfo!$ *ScriptStack DELETE_STORAGE_SUB 3:doSubService,**no captured values**DELETE_STORAGE_SUB,**no captured values**3:getStorageInfo,**no captured values** at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:2176) at intradoc.server.Service.buildServiceException(Service.java:2404) at intradoc.server.Service.createServiceExceptionEx(Service.java:2398) at intradoc.server.Service.createServiceException(Service.java:2393) at intradoc.server.ServiceRequestImplementor.handleActionException(ServiceRequestImplementor.java:1816) at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1766) at intradoc.server.Service.doAction(Service.java:566) at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1483) at intradoc.server.Service.doActions(Service.java:561) at intradoc.server.ServiceRequestImplementor.executeSubServiceCode(ServiceRequestImplementor.java:1346) at intradoc.server.Service.executeSubServiceCode(Service.java:4184) at intradoc.server.ServiceRequestImplementor.executeServiceEx(ServiceRequestImplementor.java:1222) at intradoc.server.Service.executeServiceEx(Service.java:4179) at intradoc.server.Service.executeService(Service.java:4163) at intradoc.server.Service.doSubService(Service.java:4073) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86) at intradoc.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:310) at intradoc.common.ClassHelperUtils.executeMethod(ClassHelperUtils.java:295) at intradoc.server.Service.doCodeEx(Service.java:639) at intradoc.server.Service.doCode(Service.java:594) at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1693) at intradoc.server.Service.doAction(Service.java:566) at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1483) at intradoc.server.Service.doActions(Service.java:561) at intradoc.server.ServiceRequestImplementor.executeActions(ServiceRequestImplementor.java:1415) at intradoc.server.Service.executeActions(Service.java:547) at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:751) at intradoc.server.Service.doRequest(Service.java:1976) at intradoc.server.ServiceManager.processCommand(ServiceManager.java:486) at intradoc.server.IdcServerThread.processRequest(IdcServerThread.java:265) at intradoc.server.IdcServerThread.run(IdcServerThread.java:160) at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256) at weblogic.work.ExecuteThread.run(ExecuteThread.java:221) Caused by: intradoc.data.DataException: !csNumberInvalidCharacters,Physical at intradoc.data.QueryUtils.appendParam(QueryUtils.java:487) at intradoc.jdbc.JdbcQueryUtils.buildQuery(JdbcQueryUtils.java:179) at intradoc.jdbc.JdbcWorkspace.buildQuery(JdbcWorkspace.java:821) at intradoc.jdbc.JdbcWorkspace.createResultSet(JdbcWorkspace.java:724) at commonutils.cache.CacheHandler.getCachedQueryResultSetEx(CacheHandler.java:200) at physicalcontentmanager.PcmProcessingUtils.getCachedQueryEx(PcmProcessingUtils.java:64) at physicalcontentmanager.PcmProcessingUtils.getCachedQuery(PcmProcessingUtils.java:45) at physicalcontentmanager.PhysicalContentManagerHandler.getStorageInfo(PhysicalContentManagerHandler.java:124) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86) at intradoc.common.ClassHelperUtils.executeMethodReportStatus(ClassHelperUtils.java:324) at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:79) at intradoc.server.Service.doCodeEx(Service.java:622) at intradoc.server.Service.doCode(Service.java:594) at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1693) ... 32 more 

    Yes, good dObjectID:-2197562894502623137 and 8527711723301911174

    concerning

  • Create storage with CRMI but failure than other parameters?

    Hi all, I'm creating a storage in PCM with CRMI

    but the description of create_storage of services

    Additional parameters of Service required

    • dParentID: the unique identifier of the storage location of the parent for the storage location must be created.
    • dObjectName: the name of the storage location must be created.
    • dStorageType: the unique identifier for the location type assigned to the storage location.

    but I ran the java and URM display error

    !csUserEventMessage,sysadmin,CIS!$!csServiceDataException,CREATE_STORAGE,validateStorage!$!syParameterNotFound,dObjectID
    intradoc.common.ServiceException: !csServiceDataException,CREATE_STORAGE,validateStorage!$
    *ScriptStack CREATE_STORAGE
    3:validateStorage,**no captured values**
      at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:2176)
      at intradoc.server.Service.buildServiceException(Service.java:2404)
      at intradoc.server.Service.createServiceExceptionEx(Service.java:2398)
      at intradoc.server.Service.createServiceException(Service.java:2393)
      at intradoc.server.ServiceRequestImplementor.handleActionException(ServiceRequestImplementor.java:1816)
      at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1766)
      at intradoc.server.Service.doAction(Service.java:566)
      at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1483)
      at intradoc.server.Service.doActions(Service.java:561)
      at intradoc.server.ServiceRequestImplementor.executeActions(ServiceRequestImplementor.java:1415)
      at intradoc.server.Service.executeActions(Service.java:547)
      at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:751)
      at intradoc.server.Service.doRequest(Service.java:1976)
      at intradoc.server.ServiceManager.processCommand(ServiceManager.java:486)
      at intradoc.server.IdcServerThread.processRequest(IdcServerThread.java:265)
      at intradoc.server.IdcServerThread.run(IdcServerThread.java:160)
      at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused by: intradoc.data.DataException: !syParameterNotFound,dObjectID
      at intradoc.data.DataBinder.getEx(DataBinder.java:1258)
      at intradoc.data.DataBinder.get(DataBinder.java:1057)
      at physicalcontentmanager.PhysicalContentManagerHandler.validateStorage(PhysicalContentManagerHandler.java:726)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
      at java.lang.reflect.Method.invoke(Method.java:606)
      at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)
      at intradoc.common.ClassHelperUtils.executeMethodReportStatus(ClassHelperUtils.java:324)
      at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:79)
      at intradoc.server.Service.doCodeEx(Service.java:622)
      at intradoc.server.Service.doCode(Service.java:594)
      at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1693)
      ... 13 more

    dObjectID must be set to 0 when creating storage under physical storage.

    The ObjectID for the parent under which extra storage is created must be defined as dParentID

    In this place, you can run the RIDC code to reach the requirement.

    dataBinder.putLocal ("IdcService", "CREATE_STORAGE");

    dataBinder.putLocal ("pcmType", "storage");

    dataBinder.putLocal("dObjectID","0");

    dataBinder.putLocal ("dObjectName", "RIDCCreate");

    dataBinder.putLocal ("dStorageType", "Row");

    dataBinder.putLocal ("dStatus", "wwwPcmAvailable");

    dataBinder.putLocal("dParentID","-6629038092695699769");

  • Error starting the cluster server UCM

    Hello

    I've got AAU installed 11.1.1.8.0 that runs on a single instance of WebLogic Server named "UCM_Server1".

    My requirement was to create a cluster, so I cloned the instance above and named 'UCM_Server2' and adds both the server instance managed by a Cluster ("Cluster_1").

    I target all deployments of the AAU to this cluster.

    The problem is when I type the url UCM_Sevrer1 it works very well. But, when I hit UCM_Server2 url it displays "Page not found" error

    Deployments are in the active state, but during the restart of the UCM_Server2 it shows error below:

    < 23 February 2015 14:59:03 IST > < error > < oracle.ucm.idccs > < CMU-CS-000001 > < general exception >

    < 23 February 2015 14:59:03 IST > < error > < oracle.ucm.idccs > < CMU-CS-000001 > < general exception

    intradoc.common.ServiceException:! csProviderUnableToStartSystem, SystemServerSocket

    at intradoc.server.IdcSystemLoader.startProvider(IdcSystemLoader.java:2809)

    at intradoc.server.IdcSystemLoader.prepareStartMonitorProviders(IdcSystemLoader.java:2723)

    at intradoc.server.IdcManagerBase.startProviders(IdcManagerBase.java:103)

    at intradoc.server.IdcManagerBase.serviceStart(IdcManagerBase.java:368)

    at intradoc.server.IdcServerManager.serviceStart(IdcServerManager.java:280)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:632)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)

    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:103)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1257)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:531)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:460)

    to idcservlet. IdcFilter.initContentServer (IdcFilter.java:181)

    to idcservlet. IdcFilter.init (IdcFilter.java:156)

    to weblogic.servlet.internal.FilterManager$ FilterInitAction.run (FilterManager.java:343)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)

    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)

    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)

    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)

    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)

    to weblogic.application.internal.BaseDeployment$ 2.next(BaseDeployment.java:671)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)

    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)

    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)

    to weblogic.management.deploy.internal.DeploymentAdapter$ 1.doActivate(DeploymentAdapter.java:51)

    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)

    to weblogic.management.deploy.internal.AppTransition$ 2.transitionApp(AppTransition.java:30)

    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)

    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)

    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)

    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)

    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)

    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

    to weblogic.work.SelfTuningWorkManagerImpl$ WorkAdapterImpl.run (SelfTuningWorkManagerImpl.java:545)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Caused by: intradoc.data.DataException:! csCouldNotListenOnPort, 4444

    at intradoc.provider.SocketIncomingProvider.startProvider(SocketIncomingProvider.java:254)

    at intradoc.provider.Provider.startProvider(Provider.java:87)

    at intradoc.provider.Provider.startProvider(Provider.java:80)

    at intradoc.server.IdcSystemLoader.startProvider(IdcSystemLoader.java:2779)

    at intradoc.server.IdcSystemLoader.prepareStartMonitorProviders(IdcSystemLoader.java:2723)

    at intradoc.server.IdcManagerBase.startProviders(IdcManagerBase.java:103)

    at intradoc.server.IdcManagerBase.serviceStart(IdcManagerBase.java:368)

    at intradoc.server.IdcServerManager.serviceStart(IdcServerManager.java:280)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:632)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)

    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:103)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1257)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:531)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:460)

    to idcservlet. IdcFilter.initContentServer (IdcFilter.java:181)

    to idcservlet. IdcFilter.init (IdcFilter.java:156)

    to weblogic.servlet.internal.FilterManager$ FilterInitAction.run (FilterManager.java:343)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)

    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)

    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)

    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)

    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)

    to weblogic.application.internal.BaseDeployment$ 2.next(BaseDeployment.java:671)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)

    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)

    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)

    to weblogic.management.deploy.internal.DeploymentAdapter$ 1.doActivate(DeploymentAdapter.java:51)

    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)

    to weblogic.management.deploy.internal.AppTransition$ 2.transitionApp(AppTransition.java:30)

    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)

    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)

    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)

    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)

    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)

    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

    to weblogic.work.SelfTuningWorkManagerImpl$ WorkAdapterImpl.run (SelfTuningWorkManagerImpl.java:545)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Caused by: exception java.net.BindException: address already in use

    at java.net.PlainSocketImpl.socketBind (Native Method)

    at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:383)

    at java.net.ServerSocket.bind(ServerSocket.java:328)

    at intradoc.provider.SocketIncomingProvider.createServerSocket(SocketIncomingProvider.java:548)

    at intradoc.provider.SocketIncomingProvider.startProvider(SocketIncomingProvider.java:233)

    at intradoc.provider.Provider.startProvider(Provider.java:87)

    at intradoc.provider.Provider.startProvider(Provider.java:80)

    at intradoc.server.IdcSystemLoader.startProvider(IdcSystemLoader.java:2779)

    at intradoc.server.IdcSystemLoader.prepareStartMonitorProviders(IdcSystemLoader.java:2723)

    at intradoc.server.IdcManagerBase.startProviders(IdcManagerBase.java:103)

    at intradoc.server.IdcManagerBase.serviceStart(IdcManagerBase.java:368)

    at intradoc.server.IdcServerManager.serviceStart(IdcServerManager.java:280)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:632)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)

    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:103)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1257)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:531)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:460)

    to idcservlet. IdcFilter.initContentServer (IdcFilter.java:181)

    to idcservlet. IdcFilter.init (IdcFilter.java:156)

    to weblogic.servlet.internal.FilterManager$ FilterInitAction.run (FilterManager.java:343)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)

    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)

    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)

    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)

    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)

    to weblogic.application.internal.BaseDeployment$ 2.next(BaseDeployment.java:671)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)

    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)

    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)

    to weblogic.management.deploy.internal.DeploymentAdapter$ 1.doActivate(DeploymentAdapter.java:51)

    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)

    to weblogic.management.deploy.internal.AppTransition$ 2.transitionApp(AppTransition.java:30)

    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)

    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)

    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)

    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)

    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)

    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

    to weblogic.work.SelfTuningWorkManagerImpl$ WorkAdapterImpl.run (SelfTuningWorkManagerImpl.java:545)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    >

    < 23 February 2015 14:59:03 IST > < error > < oracle.ucm.idccs > < CMU-CS-050021 > < Oracle WebCenter content cannot be initialized inside a servlet environment. >

    < 23 February 2015 14:59:03 IST > < error > < oracle.ucm.idccs > < CMU-CS-000001 > < general exception

    intradoc.common.ServiceException:! csProviderUnableToStartSystem, SystemServerSocket

    at intradoc.server.IdcSystemLoader.startProvider(IdcSystemLoader.java:2809)

    at intradoc.server.IdcSystemLoader.prepareStartMonitorProviders(IdcSystemLoader.java:2723)

    at intradoc.server.IdcManagerBase.startProviders(IdcManagerBase.java:103)

    at intradoc.server.IdcManagerBase.serviceStart(IdcManagerBase.java:368)

    at intradoc.server.IdcServerManager.serviceStart(IdcServerManager.java:280)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:632)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)

    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:103)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1257)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:531)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:460)

    to idcservlet. IdcFilter.initContentServer (IdcFilter.java:181)

    to idcservlet. IdcFilter.init (IdcFilter.java:156)

    to weblogic.servlet.internal.FilterManager$ FilterInitAction.run (FilterManager.java:343)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)

    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)

    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)

    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)

    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)

    to weblogic.application.internal.BaseDeployment$ 2.next(BaseDeployment.java:671)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)

    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)

    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)

    to weblogic.management.deploy.internal.DeploymentAdapter$ 1.doActivate(DeploymentAdapter.java:51)

    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)

    to weblogic.management.deploy.internal.AppTransition$ 2.transitionApp(AppTransition.java:30)

    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)

    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)

    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)

    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)

    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)

    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

    to weblogic.work.SelfTuningWorkManagerImpl$ WorkAdapterImpl.run (SelfTuningWorkManagerImpl.java:545)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Caused by: intradoc.data.DataException:! csCouldNotListenOnPort, 4444

    at intradoc.provider.SocketIncomingProvider.startProvider(SocketIncomingProvider.java:254)

    at intradoc.provider.Provider.startProvider(Provider.java:87)

    at intradoc.provider.Provider.startProvider(Provider.java:80)

    at intradoc.server.IdcSystemLoader.startProvider(IdcSystemLoader.java:2779)

    at intradoc.server.IdcSystemLoader.prepareStartMonitorProviders(IdcSystemLoader.java:2723)

    at intradoc.server.IdcManagerBase.startProviders(IdcManagerBase.java:103)

    at intradoc.server.IdcManagerBase.serviceStart(IdcManagerBase.java:368)

    at intradoc.server.IdcServerManager.serviceStart(IdcServerManager.java:280)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:632)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)

    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:103)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1257)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:531)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:460)

    to idcservlet. IdcFilter.initContentServer (IdcFilter.java:181)

    to idcservlet. IdcFilter.init (IdcFilter.java:156)

    to weblogic.servlet.internal.FilterManager$ FilterInitAction.run (FilterManager.java:343)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)

    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)

    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)

    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)

    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)

    to weblogic.application.internal.BaseDeployment$ 2.next(BaseDeployment.java:671)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)

    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)

    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)

    to weblogic.management.deploy.internal.DeploymentAdapter$ 1.doActivate(DeploymentAdapter.java:51)

    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)

    to weblogic.management.deploy.internal.AppTransition$ 2.transitionApp(AppTransition.java:30)

    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)

    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)

    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)

    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)

    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)

    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

    to weblogic.work.SelfTuningWorkManagerImpl$ WorkAdapterImpl.run (SelfTuningWorkManagerImpl.java:545)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Caused by: exception java.net.BindException: address already in use

    at java.net.PlainSocketImpl.socketBind (Native Method)

    at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:383)

    at java.net.ServerSocket.bind(ServerSocket.java:328)

    at intradoc.provider.SocketIncomingProvider.createServerSocket(SocketIncomingProvider.java:548)

    at intradoc.provider.SocketIncomingProvider.startProvider(SocketIncomingProvider.java:233)

    at intradoc.provider.Provider.startProvider(Provider.java:87)

    at intradoc.provider.Provider.startProvider(Provider.java:80)

    at intradoc.server.IdcSystemLoader.startProvider(IdcSystemLoader.java:2779)

    at intradoc.server.IdcSystemLoader.prepareStartMonitorProviders(IdcSystemLoader.java:2723)

    at intradoc.server.IdcManagerBase.startProviders(IdcManagerBase.java:103)

    at intradoc.server.IdcManagerBase.serviceStart(IdcManagerBase.java:368)

    at intradoc.server.IdcServerManager.serviceStart(IdcServerManager.java:280)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:632)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)

    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:103)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1257)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:531)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:460)

    to idcservlet. IdcFilter.initContentServer (IdcFilter.java:181)

    to idcservlet. IdcFilter.init (IdcFilter.java:156)

    to weblogic.servlet.internal.FilterManager$ FilterInitAction.run (FilterManager.java:343)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)

    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)

    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)

    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)

    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)

    to weblogic.application.internal.BaseDeployment$ 2.next(BaseDeployment.java:671)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)

    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)

    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)

    to weblogic.management.deploy.internal.DeploymentAdapter$ 1.doActivate(DeploymentAdapter.java:51)

    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)

    to weblogic.management.deploy.internal.AppTransition$ 2.transitionApp(AppTransition.java:30)

    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)

    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)

    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)

    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)

    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)

    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

    to weblogic.work.SelfTuningWorkManagerImpl$ WorkAdapterImpl.run (SelfTuningWorkManagerImpl.java:545)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    >

    < 23 February 2015 14:59:03 IST > < error > < ServletContext - > < BEA-000000 > < there is a failed to initialize at the start of the AAU. >

    < 23 February 2015 14:59:03 IST > < error > < ServletContext - > < BEA-000000 > < could not start server "server" to the URL by default relative web root "cs".

    javax.servlet.ServletException: could not start a deployment of servers of IDC.

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1268)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:531)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:460)

    to idcservlet. IdcFilter.initContentServer (IdcFilter.java:181)

    to idcservlet. IdcFilter.init (IdcFilter.java:156)

    Truncated. check the log file full stacktrace

    Caused by: java.io.IOException: Oracle WebCenter content could not initialize inside the servlet environment.

    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:139)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    Truncated. check the log file full stacktrace

    Caused by: intradoc.common.ServiceException:! csProviderUnableToStartSystem, SystemServerSocket

    at intradoc.server.IdcSystemLoader.startProvider(IdcSystemLoader.java:2809)

    at intradoc.server.IdcSystemLoader.prepareStartMonitorProviders(IdcSystemLoader.java:2723)

    at intradoc.server.IdcManagerBase.startProviders(IdcManagerBase.java:103)

    at intradoc.server.IdcManagerBase.serviceStart(IdcManagerBase.java:368)

    at intradoc.server.IdcServerManager.serviceStart(IdcServerManager.java:280)

    Truncated. check the log file full stacktrace

    Caused by: intradoc.data.DataException:! csCouldNotListenOnPort, 4444

    at intradoc.provider.SocketIncomingProvider.startProvider(SocketIncomingProvider.java:254)

    at intradoc.provider.Provider.startProvider(Provider.java:87)

    at intradoc.provider.Provider.startProvider(Provider.java:80)

    at intradoc.server.IdcSystemLoader.startProvider(IdcSystemLoader.java:2779)

    at intradoc.server.IdcSystemLoader.prepareStartMonitorProviders(IdcSystemLoader.java:2723)

    Truncated. check the log file full stacktrace

    Caused by: exception java.net.BindException: address already in use

    at java.net.PlainSocketImpl.socketBind (Native Method)

    at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:383)

    at java.net.ServerSocket.bind(ServerSocket.java:328)

    at intradoc.provider.SocketIncomingProvider.createServerSocket(SocketIncomingProvider.java:548)

    at intradoc.provider.SocketIncomingProvider.startProvider(SocketIncomingProvider.java:233)

    Truncated. check the log file full stacktrace

    Kindly help me with this.

    Thanks Rajeev,

    I am confirmed that we cannot have mutiple intradoc port in a config.cfg

    For this we would need more of a domain.

Maybe you are looking for