Content server log showing exception in stream

Hi all,
I am connecting to ecm with the follwoing cod eand error
on transfere stream is ocurring
after connection was paralyesd for about 4 minutes then
ecxeption occure then server log shows
a service exception
the follwoing is the used code
PLZ HELP ME
* Copyright (c) 1997-2001 IntraNet Solutions, Incorporated. All rights reserved.
* Copyright (c) 2001-2007 Stellent, Incorporated. All rights reserved.
package com.stellent.cis.sdk.samples.checkin;
import java.net.MalformedURLException;
import java.rmi.RemoteException;
import java.util.Date;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import com.stellent.cis.client.command.CommandException;
import com.stellent.cis.client.io.ICISTransferStream;
import com.stellent.cis.client.api.scs.ISCSContent;
import com.stellent.cis.client.api.scs.ISCSContentID;
import com.stellent.cis.client.api.scs.document.checkin.ISCSDocumentCheckinAPI;
import com.stellent.cis.client.api.scs.document.checkin.ISCSCheckinFlags;
import com.stellent.cis.client.api.scs.document.checkin.ISCSDocumentCheckinResponse;
import com.twainconnect.sample.UCPMClient1;
import java.io.FileInputStream;
import java.io.InputStream;
* This class shows how to check in a file into the content server. This takes a bunch of command line switches most of which is
* optional. If some required values are not given, it creates random values for them.
* -file : the absolute path to the file which is to be checked in (required)
* -contentid : the content id of the document (auto generated)
* -title : the title of the document (auto generated)
* -type : the type of the document (defaults to ADACCT)
* -securitygroup : the security group (defaults to Public)
public class CheckinFile extends UCPMClient1 {
// The path to the primary file of the document
private String primaryFile = null;
// The content id of the document
private String contentId = null;
// The title of the document
private String title = null;
// the type of the document
private String type = null;
// the security group of the document
private String securityGroup = null;
// The check in api from the cis
private ISCSDocumentCheckinAPI api = null;
public static void main(String[] args) {
CheckinFile checkin = new CheckinFile();
checkin.initialize(args);
try {
checkin.connect();
checkin.execute();
} catch (CommandException e) {
e.printStackTrace();
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (RemoteException e) {
e.printStackTrace();
System.exit(0);
* Executes the services to perform a content server check in.
protected void execute() throws RemoteException, CommandException {
// Get the Document check in api from the active api.
api = getClient().getUCPMAPI().getActiveAPI().getDocumentCheckinAPI();
// Perform a check in of the file with the values provided. The check in flags is generated in the method
// getCheckinFlags(). Also see getActiveContent(), getActiveContentId()
try {
ICISTransferStream transferStream = getClient().getUCPMAPI().createTransferStream();
transferStream.setFile(new File("D:\\ddd.doc"));
System.out.println("read b4 get === "+transferStream.getInputStream().read());
// InputStream inputStreamxx = new FileInputStream( );//transferStream.getInputStream();
// FileInputStream inputStreamxx = new FileInputStream(new File("D:\\ddd.doc"));
// transferStream.setInputStream(inputStreamxx);
// System.out.println("after setting "+transferStream.getInputStream().read());
// byte[] input = new byte[25];
// for (int i = 0; i < input.length; i++) {
// int b = transferStream.getInputStream().read(input);
// if (b == -1)
// break;
// input[i] = (byte)b;
// System.out.println("\n---------\n"+input.length);
// System.out.println("Whole legnth= "+transferStream.getInputStream().read(input));
// System.out.println(inputStream .read());
// System.out.println(getPrimaryFile());
// transferStream.setFileName("mmm");
// transferStream.setContentType("text/plain");
// transferStream.setContentLength(5);
ISCSDocumentCheckinResponse result =
api.checkinFileStream(getSCSContext(), getActiveContent(),
transferStream);
//getSCSContext().setCrendentials();
// The message from the content server , if any
String message = result.getMessage();
// Print a status message to the console
print("Checked in the file [" + getPrimaryFile() +
"] with content id " + getContentId() + ". Message:" +
message);
} catch (FileNotFoundException exp) {
throw new CommandException(exp);
} catch (IOException exp) {
throw new CommandException(exp);
} catch (Exception exp) {
exp.printStackTrace();
* This creates a new SCSCheckinFlags object which can be used to define the check-in properties.
* @return new SCSCheckinFlags object
* @throws RemoteException
* @throws com.stellent.cis.client.command.CommandException
protected ISCSCheckinFlags getCheckinFlags() throws RemoteException,
CommandException {
log.fine("Entering getCheckinFlags");
ISCSCheckinFlags checkinFlags =
(ISCSCheckinFlags)getClient().getUCPMAPI().createObject(ISCSCheckinFlags.class);
// Specify that the file should be copied, and not be deleted after the check in.
checkinFlags.setFileCopy(true);
// Specify this to true if this is a workflow step checkin.
checkinFlags.setFinished(false);
return checkinFlags;
* Creates a new SCSContent object where all the document specific properties and meta-data values can be set for the
* check-in process.
* @return new SCSContent object with the properties set
* @throws RemoteException
* @throws com.stellent.cis.client.command.CommandException
protected ISCSContent getActiveContent() throws RemoteException,
CommandException {
// Create a new content object for the executing context
ISCSContent activeContent =
(ISCSContent)getClient().getUCPMAPI().createObject(ISCSContent.class);
ISCSContentID contentID =
(ISCSContentID)getClient().getUCPMAPI().createObject(ISCSContentID.class);
contentID.setContentID(getContentId());
activeContent.setContentID(contentID);
// Set the Title of the document
activeContent.setTitle(getTitle());
// set the type of the document
activeContent.setType(getType());
// set the security group of the document
activeContent.setSecurityGroup(getSecurityGroup());
return activeContent;
* Override the initialize method to read in more document specific values from the command line.
protected void initialize(String[] args) {
log.fine("Entering initialize");
super.initialize(args);
// Provide a default value for the fields so that we don't have to enter it always. ;-)
// Date is random enough for us.
Date now = new Date();
setPrimaryFile(readArgsAsString("-file", args, null));
setTitle(readArgsAsString("-title", args,
"Title By SDK " + now.getTime()));
setContentId(readArgsAsString("-contentid", args,
now.getTime() + "Content-Id-SDK"));
setType(readArgsAsString("-type", args, "ADACCT"));
setSecurityGroup(readArgsAsString("-securitygroup", args, "Public"));
// Getters and setters for the variables
public String getPrimaryFile() {
primaryFile = "D:\\w.txt";
return primaryFile;
public void setPrimaryFile(String primaryFile) {
this.primaryFile = primaryFile;
public String getContentId() {
return contentId;
public void setContentId(String contentId) {
this.contentId = contentId;
public String getTitle() {
return title;
public void setTitle(String title) {
this.title = title;
public String getSecurityGroup() {
return securityGroup;
public void setSecurityGroup(String securityGroup) {
this.securityGroup = securityGroup;
public String getType() {
return type;
public void setType(String type) {
this.type = type;
Edited by: user7326470 on Oct 17, 2009 2:52 AM

<?xml version="1.0" encoding="windows-1256" ?>
<config>
<adapter default="true" name="myadapter" type="scs">
<config>
<property name="type">web</property>
<property name="vaultType">web</property>
<property
name="host">http://192.168.0.104/MIC_ECM/idcplg</propert
y>
<property name="port">4444</property>
<property
name="contentServerAdminID">sysadmin</property>
<property
name="contentServerAdminPassword">idc</property>
<property
name="eventPollingEnabled">true</property>
<property
name="persistentConnection">true</property>
<property name="cacheEnabled">true</property>
<property
name="connectionTimeout">9999999999999999999999999999999
9999999999999999999999999999999999999999999999999999</pr
operty>
<property
name="contentServerMappedVault"></property>
<property name="appserverMappedVault"></property>
</config>
<beans template="classpath:/META-
INF/resources/adapter/adapter-services-scs.jxml"/>
</adapter>
<adapter name="checkin" type="scs">
<config>
<property name="type">web</property>
<property
name="host">http://192.168.0.104/MIC_ECM/idcplg</propert
y>
<property name="port">4444</property>
<property
name="contentServerAdminID">sysadmin</property>
<property
name="contentServerAdminPassword">idc</property>
<property
name="eventPollingEnabled">true</property>
<property
name="persistentConnection">false</property>
<property name="cacheEnabled">true</property>
<property
name="connectionTimeout">9999999999999999999999999999</p
roperty>
<property
name="contentServerMappedVault"></property>
<property name="appserverMappedVault"></property>
</config>
<beans template="classpath:/META-
INF/resources/adapter/adapter-services-scs.jxml"/>
</adapter>
</config>
the JDeveloper exception is as foolows
[2009-10-17 11:24:10,749] [SCS EventPoller [myadapter]]
WARN
(com.stellent.cis.server.api.scs.event.impl.SCSEventPoll
er) - No password credentials supplied for background
polling thread but adapter config 'myadapter' is set to
type web which requires authentication will attempt to
poll with no credentials
[2009-10-17 11:24:10,811] [SCS EventPoller [myadapter]]
WARN
(com.stellent.cis.server.api.scs.event.impl.SCSEventPoll
er) - Error in content server event poller
com.stellent.cis.client.command.CommandException: Error
reading the response from the Content Server: 401
     at
com.stellent.cis.server.api.scs.impl.SCSCommand.executeR
equest(SCSCommand.java:338)
     at
com.stellent.cis.server.api.scs.impl.SCSCommand.execute
(SCSCommand.java:222)
     at
com.stellent.cis.client.command.impl.services.CommandExe
cutorService.executeCommand
(CommandExecutorService.java:57)
     at
com.stellent.cis.client.command.impl.CommandFacade.execu
teCommand(CommandFacade.java:158)
     at
com.stellent.cis.client.command.impl.BaseCommandAPI.invo
keCommand(BaseCommandAPI.java:84)
     at
com.stellent.cis.client.api.scs.administrative.query.imp
l.SCSAdministrativeQueryAPI.queryDocumentHistory
(SCSAdministrativeQueryAPI.java:76)
     at
com.stellent.cis.server.api.scs.event.impl.SCSEventPolle
r$SCSFileCachePollingThread.run(SCSEventPoller.java:275)
Caused by:
com.stellent.cis.server.api.scs.request.SCSRequestExcept
ion: Error reading the response from the Content Server:
401
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestP
rocessor.sendRequest(SCSRequestProcessor.java:156)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestP
rocessor.processRequest(SCSRequestProcessor.java:112)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestF
ilterChain.doRequestFilter
(SCSRequestFilterChain.java:61)
     at
com.stellent.cis.server.api.scs.request.stream.SCSOptimi
zedPublishFilter.handleRequest
(SCSOptimizedPublishFilter.java:128)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestF
ilterChain.doRequestFilter
(SCSRequestFilterChain.java:58)
     at
com.stellent.cis.server.api.scs.request.stream.SCSOptimi
zedRetrieveFilter.handleRequest
(SCSOptimizedRetrieveFilter.java:250)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestF
ilterChain.doRequestFilter
(SCSRequestFilterChain.java:58)
     at
com.stellent.cis.server.api.scs.request.rewrite.SCSRewri
teURLFilter.handleRequest(SCSRewriteURLFilter.java:140)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestF
ilterChain.doRequestFilter
(SCSRequestFilterChain.java:58)
     at
com.stellent.cis.server.api.scs.request.cache.impl.SCSSe
rviceCacheFilter.handleRequest
(SCSServiceCacheFilter.java:112)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestF
ilterChain.doRequestFilter
(SCSRequestFilterChain.java:58)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestE
xecutorProxy.execute(SCSRequestExecutorProxy.java:105)
     at
com.stellent.cis.server.api.scs.impl.SCSCommand.executeV
iaProxy(SCSCommand.java:353)
     at
com.stellent.cis.server.api.scs.impl.SCSCommand.executeR
equest(SCSCommand.java:335)
     ... 6 more
Caused by:
com.stellent.cis.common.exception.HttpException: 401
     at
com.stellent.cis.server.api.scs.protocol.impl.httpclient
.HdaViaHttpProtocol.writeMessage
(HdaViaHttpProtocol.java:171)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestP
rocessor.sendRequest(SCSRequestProcessor.java:148)
     ... 19 more
[2009-10-17 11:29:10,847] [SCS EventPoller [myadapter]]
WARN
(com.stellent.cis.server.api.scs.event.impl.SCSEventPoll
er) - Error in content server event poller
com.stellent.cis.client.command.CommandException: Error
reading the response from the Content Server: 401
     at
com.stellent.cis.server.api.scs.impl.SCSCommand.executeR
equest(SCSCommand.java:338)
     at
com.stellent.cis.server.api.scs.impl.SCSCommand.execute
(SCSCommand.java:222)
     at
com.stellent.cis.client.command.impl.services.CommandExe
cutorService.executeCommand
(CommandExecutorService.java:57)
     at
com.stellent.cis.client.command.impl.CommandFacade.execu
teCommand(CommandFacade.java:158)
     at
com.stellent.cis.client.command.impl.BaseCommandAPI.invo
keCommand(BaseCommandAPI.java:84)
     at
com.stellent.cis.client.api.scs.administrative.query.imp
l.SCSAdministrativeQueryAPI.queryDocumentHistory
(SCSAdministrativeQueryAPI.java:76)
     at
com.stellent.cis.server.api.scs.event.impl.SCSEventPolle
r$SCSFileCachePollingThread.run(SCSEventPoller.java:275)
Caused by:
com.stellent.cis.server.api.scs.request.SCSRequestExcept
ion: Error reading the response from the Content Server:
401
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestP
rocessor.sendRequest(SCSRequestProcessor.java:156)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestP
rocessor.processRequest(SCSRequestProcessor.java:112)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestF
ilterChain.doRequestFilter
(SCSRequestFilterChain.java:61)
     at
com.stellent.cis.server.api.scs.request.stream.SCSOptimi
zedPublishFilter.handleRequest
(SCSOptimizedPublishFilter.java:128)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestF
ilterChain.doRequestFilter
(SCSRequestFilterChain.java:58)
     at
com.stellent.cis.server.api.scs.request.stream.SCSOptimi
zedRetrieveFilter.handleRequest
(SCSOptimizedRetrieveFilter.java:250)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestF
ilterChain.doRequestFilter
(SCSRequestFilterChain.java:58)
     at
com.stellent.cis.server.api.scs.request.rewrite.SCSRewri
teURLFilter.handleRequest(SCSRewriteURLFilter.java:140)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestF
ilterChain.doRequestFilter
(SCSRequestFilterChain.java:58)
     at
com.stellent.cis.server.api.scs.request.cache.impl.SCSSe
rviceCacheFilter.handleRequest
(SCSServiceCacheFilter.java:112)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestF
ilterChain.doRequestFilter
(SCSRequestFilterChain.java:58)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestE
xecutorProxy.execute(SCSRequestExecutorProxy.java:105)
     at
com.stellent.cis.server.api.scs.impl.SCSCommand.executeV
iaProxy(SCSCommand.java:353)
     at
com.stellent.cis.server.api.scs.impl.SCSCommand.executeR
equest(SCSCommand.java:335)
     ... 6 more
Caused by:
com.stellent.cis.common.exception.HttpException: 401
     at
com.stellent.cis.server.api.scs.protocol.impl.httpclient
.HdaViaHttpProtocol.writeMessage
(HdaViaHttpProtocol.java:171)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestP
rocessor.sendRequest(SCSRequestProcessor.java:148)
     ... 19 more
com.stellent.cis.client.command.CommandException: Error
reading the response from the Content Server: 500
     at
com.stellent.cis.server.api.scs.impl.SCSCommand.executeR
equest(SCSCommand.java:338)
     at
com.stellent.cis.server.api.scs.impl.SCSCommand.execute
(SCSCommand.java:222)
     at
com.stellent.cis.client.command.impl.services.CommandExe
cutorService.executeCommand
(CommandExecutorService.java:57)
     at
com.stellent.cis.client.command.impl.CommandFacade.execu
teCommand(CommandFacade.java:158)
     at
com.stellent.cis.client.command.impl.BaseCommandAPI.invo
keCommand(BaseCommandAPI.java:84)
     at
com.stellent.cis.client.api.scs.document.checkin.impl.SC
SDocumentCheckinAPI.checkinFileStream
(SCSDocumentCheckinAPI.java:663)
     at
com.stellent.cis.sdk.samples.checkin.CheckinFile.execute
(CheckinFile.java:118)
     at
com.stellent.cis.sdk.samples.checkin.CheckinFile.main
(CheckinFile.java:71)
Caused by:
com.stellent.cis.server.api.scs.request.SCSRequestExcept
ion: Error reading the response from the Content Server:
500
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestP
rocessor.sendRequest(SCSRequestProcessor.java:156)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestP
rocessor.processRequest(SCSRequestProcessor.java:112)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestF
ilterChain.doRequestFilter
(SCSRequestFilterChain.java:61)
     at
com.stellent.cis.server.api.scs.request.stream.SCSOptimi
zedPublishFilter.handleRequest
(SCSOptimizedPublishFilter.java:128)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestF
ilterChain.doRequestFilter
(SCSRequestFilterChain.java:58)
     at
com.stellent.cis.server.api.scs.request.stream.SCSOptimi
zedRetrieveFilter.handleRequest
(SCSOptimizedRetrieveFilter.java:250)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestF
ilterChain.doRequestFilter
(SCSRequestFilterChain.java:58)
     at
com.stellent.cis.server.api.scs.request.rewrite.SCSRewri
teURLFilter.handleRequest(SCSRewriteURLFilter.java:140)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestF
ilterChain.doRequestFilter
(SCSRequestFilterChain.java:58)
     at
com.stellent.cis.server.api.scs.request.cache.impl.SCSSe
rviceCacheFilter.handleRequest
(SCSServiceCacheFilter.java:112)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestF
ilterChain.doRequestFilter
(SCSRequestFilterChain.java:58)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestE
xecutorProxy.execute(SCSRequestExecutorProxy.java:105)
     at
com.stellent.cis.server.api.scs.impl.SCSCommand.executeV
iaProxy(SCSCommand.java:353)
     at
com.stellent.cis.server.api.scs.impl.SCSCommand.executeR
equest(SCSCommand.java:335)
     ... 7 more
Caused by:
com.stellent.cis.common.exception.HttpException: 500
     at
com.stellent.cis.server.api.scs.protocol.impl.httpclient
.HdaViaHttpProtocol.writeMessage
(HdaViaHttpProtocol.java:171)
     at
com.stellent.cis.server.api.scs.request.impl.SCSRequestP
rocessor.sendRequest(SCSRequestProcessor.java:148)
     ... 20 more
Process exited with exit code 0.
the server exception in log of content server is as
follows
Event generated by user 'anonymous' at host
'192.168.0.104'. Stream terminated before being able to
read HTTP protocol line. Stream terminated before being
able to read HTTP protocol line. [ Details ]
An error has occurred. The stack trace below shows more
information.
!csUserEventMessage,anonymous,192.168.0.104!$!
syStreamTerminatedBeforeProtocol!
syStreamTerminatedBeforeProtocol
intradoc.common.ServiceException: !
syStreamTerminatedBeforeProtocol
     at
intradoc.server.ServiceRequestImplementor.doRequest
(ServiceRequestImplementor.java:628)
     at intradoc.server.Service.doRequest
(Service.java:1709)
     at
intradoc.server.ServiceManager.processCommand
(ServiceManager.java:357)
     at intradoc.server.IdcServerThread.run
(IdcServerThread.java:195)
Caused by: java.io.IOException: !
syStreamTerminatedBeforeProtocol
     at
intradoc.serialize.DataBinderSerializer.readStreamLineBy
teEx(DataBinderSerializer.java:1588)
     at
intradoc.serialize.DataBinderSerializer.readStreamLineEx
(DataBinderSerializer.java:1556)
     at
intradoc.serialize.DataBinderSerializer.readLineEx
(DataBinderSerializer.java:1528)
     at
intradoc.serialize.DataBinderSerializer.parseForData
(DataBinderSerializer.java:1336)
     at
intradoc.serialize.DataBinderSerializer.parseMultiConten
t(DataBinderSerializer.java:1283)
     at
intradoc.serialize.DataBinderSerializer.continueParse
(DataBinderSerializer.java:1244)
     at
intradoc.data.DataSerializeUtils.continueParse
(DataSerializeUtils.java:138)
     at intradoc.server.Service.continueParse
(Service.java:415)
     at
intradoc.server.ServiceRequestImplementor.doRequest
(ServiceRequestImplementor.java:620)
     ... 3 more

Similar Messages

  • Server log showing problems with Mail Server

    Ok, so I followed the instructions in that PDF about how to make virtual mail users in 10.5.1 since they are broken. So I did it in the WGM and the Postfix stuff as the document said. Now I get all these errors in the server log and I have no idea how to fix the problem or if what I did was even done right. Here is the error log below:
    Jan 30 23:33:26 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling
    Jan 30 23:34:03 xpmedia1 postfix/smtpd[53603]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:34:03 xpmedia1 postfix/smtpd[53603]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:34:04 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/smtpd pid 53603 exit status 1
    Jan 30 23:34:04 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
    Jan 30 23:34:26 xpmedia1 postfix/cleanup[53611]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:34:26 xpmedia1 postfix/cleanup[53611]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:34:27 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/cleanup pid 53611 exit status 1
    Jan 30 23:34:27 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling
    Jan 30 23:35:04 xpmedia1 postfix/smtpd[53615]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:35:04 xpmedia1 postfix/smtpd[53615]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:35:05 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/smtpd pid 53615 exit status 1
    Jan 30 23:35:05 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
    Jan 30 23:35:16 xpmedia1 sudo[53616]: root : TTY=unknown ; PWD=/ ; USER=_cyrus ; COMMAND=/usr/bin/cyrus/bin/cyrus-quota -r
    Jan 30 23:35:27 xpmedia1 postfix/cleanup[53625]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:35:27 xpmedia1 postfix/cleanup[53625]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:35:28 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/cleanup pid 53625 exit status 1
    Jan 30 23:35:28 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling
    Jan 30 23:36:05 xpmedia1 postfix/smtpd[53633]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:36:05 xpmedia1 postfix/smtpd[53633]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:36:06 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/smtpd pid 53633 exit status 1
    Jan 30 23:36:06 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
    Jan 30 23:36:28 xpmedia1 postfix/cleanup[53646]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:36:28 xpmedia1 postfix/cleanup[53646]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:36:29 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/cleanup pid 53646 exit status 1
    Jan 30 23:36:29 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling
    Jan 30 23:37:06 xpmedia1 postfix/smtpd[53650]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:37:06 xpmedia1 postfix/smtpd[53650]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:37:07 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/smtpd pid 53650 exit status 1
    Jan 30 23:37:07 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
    Jan 30 23:37:29 xpmedia1 postfix/cleanup[53662]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:37:29 xpmedia1 postfix/cleanup[53662]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:37:30 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/cleanup pid 53662 exit status 1
    Jan 30 23:37:30 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling
    Jan 30 23:38:07 xpmedia1 postfix/smtpd[53666]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:38:07 xpmedia1 postfix/smtpd[53666]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:38:08 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/smtpd pid 53666 exit status 1
    Jan 30 23:38:08 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
    Jan 30 23:38:30 xpmedia1 postfix/cleanup[53678]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:38:30 xpmedia1 postfix/cleanup[53678]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:38:31 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/cleanup pid 53678 exit status 1
    Jan 30 23:38:31 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling
    Jan 30 23:39:08 xpmedia1 postfix/smtpd[53682]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:39:08 xpmedia1 postfix/smtpd[53682]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:39:09 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/smtpd pid 53682 exit status 1
    Jan 30 23:39:09 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
    Jan 30 23:39:31 xpmedia1 imap[53683]: TLS server engine: cannot load CA data
    Jan 30 23:39:31 xpmedia1 imap[53683]: TLS server engine: No CA file specified. Client side certs may not work
    Jan 30 23:39:31 xpmedia1 imap[53683]: STARTTLS negotiation failed: host-12-152-82-88.orbitelcom.com [12.152.82.88]
    Jan 30 23:39:31 xpmedia1 postfix/cleanup[53695]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:39:31 xpmedia1 postfix/cleanup[53695]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:39:32 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/cleanup pid 53695 exit status 1
    Jan 30 23:39:32 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling
    Jan 30 23:39:46 xpmedia1 imap[53683]: starttls: TLSv1 with cipher AES128-SHA (128/128 bits new) no authentication
    Jan 30 23:39:46 xpmedia1 imap[53683]: login: host-12-152-82-88.orbitelcom.com [12.152.82.88] postmaster CRAM-MD5+TLS User logged in
    Jan 30 23:40:09 xpmedia1 postfix/smtpd[53699]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:40:09 xpmedia1 postfix/smtpd[53699]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:40:10 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/smtpd pid 53699 exit status 1
    Jan 30 23:40:10 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
    Jan 30 23:40:32 xpmedia1 postfix/cleanup[53700]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:40:32 xpmedia1 postfix/cleanup[53700]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:40:33 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/cleanup pid 53700 exit status 1
    Jan 30 23:40:33 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling
    Jan 30 23:41:10 xpmedia1 postfix/smtpd[53719]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:41:10 xpmedia1 postfix/smtpd[53719]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:41:11 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/smtpd pid 53719 exit status 1
    Jan 30 23:41:11 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
    Jan 30 23:41:33 xpmedia1 postfix/cleanup[53720]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:41:33 xpmedia1 postfix/cleanup[53720]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:41:34 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/cleanup pid 53720 exit status 1
    Jan 30 23:41:34 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling
    Jan 30 23:42:11 xpmedia1 postfix/smtpd[53735]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:42:11 xpmedia1 postfix/smtpd[53735]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:42:12 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/smtpd pid 53735 exit status 1
    Jan 30 23:42:12 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
    Jan 30 23:42:34 xpmedia1 postfix/cleanup[53736]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:42:34 xpmedia1 postfix/cleanup[53736]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:42:35 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/cleanup pid 53736 exit status 1
    Jan 30 23:42:35 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling
    Jan 30 23:43:12 xpmedia1 postfix/smtpd[53752]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:43:12 xpmedia1 postfix/smtpd[53752]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:43:13 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/smtpd pid 53752 exit status 1
    Jan 30 23:43:13 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
    Jan 30 23:43:35 xpmedia1 postfix/cleanup[53753]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:43:35 xpmedia1 postfix/cleanup[53753]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:43:36 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/cleanup pid 53753 exit status 1
    Jan 30 23:43:36 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling

    I did what you said and I don't see all those weird messages anymore, but we switched over our MX records today to our mail server in hopes that it would all work and now no one can get their mail. I can log into the mail server no problem via IMAP, but to send messages is not working. And those using POP don't seem to work at all. Even to send messages the Server is rejecting saying that my messages isn't addresed right. Which it is. I can't even send something to myself. I'm trying not to be frustrated with this thing. I'm just not sure what to do since we have a whole bunch of people needing mail and it doesn't seem to be working and I'm not a mail server expert. Any help would be appreciated.
    Here is what I with postconf -n:
    command_directory = /usr/sbin
    config_directory = /etc/postfix
    content_filter = smtp-amavis:[127.0.0.1]:10024
    daemon_directory = /usr/libexec/postfix
    debugpeerlevel = 2
    enableserveroptions = yes
    html_directory = no
    inet_interfaces = all
    localrecipientmaps =
    luser_relay = postmaster
    mail_owner = _postfix
    mailboxsizelimit = 0
    mailbox_transport = cyrus
    mailq_path = /usr/bin/mailq
    manpage_directory = /usr/share/man
    mapsrbldomains =
    messagesizelimit = 10485760
    mydestination = $myhostname,localhost.$mydomain,localhost
    mydomain = xpmedia.com
    mydomain_fallback = localhost
    myhostname = mail.xpmedia.com
    mynetworks = 98.173.129.235,98.173.129.238
    newaliases_path = /usr/bin/newaliases
    queue_directory = /private/var/spool/postfix
    readme_directory = /usr/share/doc/postfix
    relayhost =
    sample_directory = /usr/share/doc/postfix/examples
    sendmail_path = /usr/sbin/sendmail
    setgid_group = _postdrop
    smtpdclientrestrictions = permit_mynetworks zen.spamhaus.org permit
    smtpdpw_server_securityoptions = login,cram-md5
    smtpdrecipientrestrictions = permitsasl_authenticated,permit_mynetworks,reject_unauthdestination,permit
    smtpdsasl_authenable = yes
    smtpduse_pwserver = yes
    unknownlocal_recipient_rejectcode = 550
    virtualaliasdomains = hash:/etc/postfix/virtual_domains
    virtualaliasmaps = hash:/etc/postfix/virtual
    virtualmailboxdomains = hash:/etc/postfix/virtualdomainsxp
    virtual_transport = lmtp:unix:/var/imap/socket/lmtp
    Here is what I got in the system log:
    11:29:53 xpmedia1 loginwindow[57389]: received ATSServer died message. (old server pid = 58904, new pid = 58934, session ID = 256)
    Jan 31 11:29:53 xpmedia1 /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer[5 7421]: received ATSServer died message. (old server pid = 58904, new pid = 58934, session ID = 256)
    Jan 31 11:29:53 xpmedia1 /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder[57422]: received ATSServer died message. (old server pid = 58904, new pid = 58934, session ID = 256)
    Jan 31 11:29:54 xpmedia1 com.apple.launchd[1] (0x10f510.login[58959]): Could not setup Mach task special port 9: (os/kern) no access
    Jan 31 11:29:54 xpmedia1 login[58959]: USER_PROCESS: 58959 ttys000
    Jan 31 11:30:03 xpmedia1 login[58959]: DEAD_PROCESS: 58959 ttys000
    Jan 31 11:30:22 xpmedia1 master[58971]: process started
    Jan 31 11:30:22 xpmedia1 org.clamav.clamd[58975]: clamd daemon 0.91.2 (OS: darwin9.0, ARCH: i386, CPU: i386)
    Jan 31 11:30:22 xpmedia1 org.clamav.clamd[58975]: Log file size limited to 1048576 bytes.
    Jan 31 11:30:22 xpmedia1 org.clamav.clamd[58975]: Reading databases from /var/clamav
    Jan 31 11:30:22 xpmedia1 org.clamav.clamd[58975]: Not loading PUA signatures.
    Jan 31 11:30:23 xpmedia1 postfix/postfix-script[58983]: fatal: the Postfix mail system is not running
    Jan 31 11:30:23 xpmedia1 ctl_cyrusdb[58973]: verifying cyrus databases
    Jan 31 11:30:23 xpmedia1 ctl_cyrusdb[58973]: skiplist: recovered /Volumes/Kingdom/Mail_Database/imap/mailboxes.db (29 records, 5640 bytes) in 0 seconds
    Jan 31 11:30:23 xpmedia1 ctl_cyrusdb[58973]: skiplist: recovered /Volumes/Kingdom/Mail_Database/imap/annotations.db (0 records, 144 bytes) in 0 seconds
    Jan 31 11:30:24 xpmedia1 org.clamav.clamd[58975]: Loaded 198723 signatures.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Unix socket file /var/amavis/clamd
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Setting connection queue length to 15
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Archive: Archived file size limit set to 10485760 bytes.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Archive: Recursion level limit set to 8.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Archive: Files limit set to 1000.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Archive: Compression ratio limit set to 250.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Archive support enabled.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Algorithmic detection enabled.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Portable Executable support enabled.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: ELF support enabled.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Mail files support enabled.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Mail: Recursion level limit set to 64.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: OLE2 support enabled.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: PDF support disabled.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: HTML support enabled.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Self checking every 1800 seconds.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Set stacksize to 1048576
    Jan 31 11:30:25 xpmedia1 com.apple.launchd[1] (edu.cmu.andrew.cyrus.master[58971]): Stray process with PGID equal to this dead job: PID 58973 PPID 1 ctl_cyrusdb
    Jan 31 11:30:25 xpmedia1 com.apple.launchd[1] (edu.cmu.andrew.cyrus.master[58971]): Exited abnormally: User defined signal 1
    Jan 31 11:30:25 xpmedia1 com.apple.launchd[1] (edu.cmu.andrew.cyrus.master): Throttling respawn: Will start in 8 seconds
    Jan 31 11:30:33 xpmedia1 master[59034]: process started
    Jan 31 11:30:34 xpmedia1 ctl_cyrusdb[59035]: verifying cyrus databases
    Jan 31 11:30:34 xpmedia1 ctl_cyrusdb[59035]: skiplist: recovered /Volumes/Kingdom/Mail_Database/imap/mailboxes.db (29 records, 5640 bytes) in 0 seconds
    Jan 31 11:30:34 xpmedia1 ctl_cyrusdb[59035]: skiplist: recovered /Volumes/Kingdom/Mail_Database/imap/annotations.db (0 records, 144 bytes) in 0 seconds
    Jan 31 11:30:35 xpmedia1 com.apple.launchd[1] (edu.cmu.andrew.cyrus.master[59034]): Stray process with PGID equal to this dead job: PID 59035 PPID 1 ctl_cyrusdb
    Jan 31 11:30:35 xpmedia1 com.apple.launchd[1] (edu.cmu.andrew.cyrus.master[59034]): Exited abnormally: User defined signal 1
    Jan 31 11:30:35 xpmedia1 com.apple.launchd[1] (edu.cmu.andrew.cyrus.master): Throttling respawn: Will start in 9 seconds
    Jan 31 11:30:43 xpmedia1 postfix/smtpd[59036]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:30:44 xpmedia1 master[59041]: process started
    Jan 31 11:30:45 xpmedia1 ctl_cyrusdb[59042]: verifying cyrus databases
    Jan 31 11:30:45 xpmedia1 ctl_cyrusdb[59042]: skiplist: recovered /Volumes/Kingdom/Mail_Database/imap/mailboxes.db (29 records, 5640 bytes) in 0 seconds
    Jan 31 11:30:45 xpmedia1 ctl_cyrusdb[59042]: skiplist: recovered /Volumes/Kingdom/Mail_Database/imap/annotations.db (0 records, 144 bytes) in 0 seconds
    Jan 31 11:30:46 xpmedia1 postfix/smtpd[59036]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:30:47 xpmedia1 ctl_cyrusdb[59042]: done verifying cyrus databases
    Jan 31 11:30:47 xpmedia1 master[59041]: Cyrus POP/IMAP Server v2.3.8 ready for work
    Jan 31 11:30:47 xpmedia1 ctl_cyrusdb[59045]: checkpointing cyrus databases
    Jan 31 11:30:47 xpmedia1 ctl_cyrusdb[59045]: done checkpointing cyrus databases
    Jan 31 11:31:09 xpmedia1 postfix/smtpd[59036]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:31:13 xpmedia1 pop3[59050]: login: host-12-152-82-113.orbitelcom.com [12.152.82.113] jsowerby APOP User logged in
    Jan 31 11:31:13 xpmedia1 pop3[59051]: login: host-12-152-82-113.orbitelcom.com [12.152.82.113] rsowerby APOP User logged in
    Jan 31 11:31:14 xpmedia1 imap[59053]: login: [66.182.118.39] bcorbin CRAM-MD5 User logged in
    Jan 31 11:31:14 xpmedia1 imap[59052]: login: [66.182.118.39] postmaster CRAM-MD5 User logged in
    Jan 31 11:31:14 xpmedia1 imap[59054]: login: [66.182.118.39] bcorbin CRAM-MD5 User logged in
    Jan 31 11:31:14 xpmedia1 imap[59055]: login: [66.182.118.39] postmaster CRAM-MD5 User logged in
    Jan 31 11:31:15 xpmedia1 imap[59055]: skiplist: recovered /Volumes/Kingdom/Mail_Database/imap/user/p/postmaster.seen (0 records, 144 bytes) in 0 seconds
    Jan 31 11:31:15 xpmedia1 imap[59054]: skiplist: recovered /Volumes/Kingdom/Mail_Database/imap/user/b/bcorbin.seen (2 records, 572 bytes) in 0 seconds
    Jan 31 11:31:15 xpmedia1 imap[59053]: login: [66.182.118.39] postmaster CRAM-MD5 User logged in
    Jan 31 11:31:15 xpmedia1 imap[59056]: login: [66.182.118.39] bcorbin CRAM-MD5 User logged in
    Jan 31 11:31:16 xpmedia1 imap[59052]: login: [66.182.118.39] postmaster CRAM-MD5 User logged in
    Jan 31 11:31:17 xpmedia1 imap[59057]: login: [66.182.118.39] postmaster CRAM-MD5 User logged in
    Jan 31 11:31:17 xpmedia1 imap[59058]: login: [66.182.118.39] bcorbin CRAM-MD5 User logged in
    Jan 31 11:31:18 xpmedia1 imap[59059]: login: [66.182.118.39] bcorbin CRAM-MD5 User logged in
    Jan 31 11:31:25 xpmedia1 pop3[59050]: no secret in database
    Jan 31 11:31:25 xpmedia1 pop3[59050]: badlogin: 71-223-32-176.phnx.qwest.net [71.223.32.176] CRAM-MD5 user not found
    Jan 31 11:31:25 xpmedia1 postfix/smtpd[59036]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:31:25 xpmedia1 pop3[59051]: login: [66.182.125.209] cbrundidge APOP User logged in
    Jan 31 11:31:30 xpmedia1 pop3[59051]: login: 71-223-32-176.phnx.qwest.net [71.223.32.176] kbarr APOP User logged in
    Jan 31 11:31:44 xpmedia1 postfix/smtpd[59036]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:31:44 xpmedia1 postfix/smtpd[59063]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:32:07 xpmedia1 imap[59069]: login: [66.182.118.39] postmaster CRAM-MD5 User logged in
    Jan 31 11:32:07 xpmedia1 imap[59068]: login: [66.182.118.39] bcorbin CRAM-MD5 User logged in
    Jan 31 11:32:25 xpmedia1 pop3[59050]: login: [66.182.125.209] cbrundidge APOP User logged in
    Jan 31 11:32:29 xpmedia1 postfix/smtpd[59063]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:33:01 xpmedia1 postfix/smtpd[59036]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:33:25: --- last message repeated 1 time ---
    Jan 31 11:33:25 xpmedia1 pop3[59050]: no secret in database
    Jan 31 11:33:25 xpmedia1 pop3[59050]: badlogin: 71-223-32-176.phnx.qwest.net [71.223.32.176] CRAM-MD5 user not found
    Jan 31 11:33:25 xpmedia1 postfix/smtpd[59086]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:33:26 xpmedia1 pop3[59091]: login: [66.182.125.209] cbrundidge APOP User logged in
    Jan 31 11:33:30 xpmedia1 pop3[59091]: login: 71-223-32-176.phnx.qwest.net [71.223.32.176] kbarr APOP User logged in
    Jan 31 11:34:12 xpmedia1 postfix/smtpd[59063]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:34:23: --- last message repeated 7 times ---
    Jan 31 11:34:23 xpmedia1 pop3[59050]: login: [66.182.118.39] jrossilli APOP User logged in
    Jan 31 11:34:25 xpmedia1 pop3[59091]: login: [66.182.125.209] cbrundidge APOP User logged in
    Jan 31 11:34:31 xpmedia1 postfix/smtpd[59086]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:34:50 xpmedia1 sudo[59121]: root : TTY=unknown ; PWD=/ ; USER=_cyrus ; COMMAND=/usr/bin/cyrus/bin/cyrus-quota -r
    Jan 31 11:34:52 xpmedia1 sudo[59127]: root : TTY=unknown ; PWD=/ ; USER=_cyrus ; COMMAND=/usr/bin/cyrus/bin/cyrus-quota -r
    Jan 31 11:35:18 xpmedia1 pop3[59050]: login: host-12-152-82-113.orbitelcom.com [12.152.82.113] rsowerby APOP User logged in
    Jan 31 11:35:18 xpmedia1 pop3[59091]: login: host-12-152-82-113.orbitelcom.com [12.152.82.113] jsowerby APOP User logged in
    Jan 31 11:35:25 xpmedia1 pop3[59091]: no secret in database
    Jan 31 11:35:25 xpmedia1 pop3[59091]: badlogin: 71-223-32-176.phnx.qwest.net [71.223.32.176] CRAM-MD5 user not found
    Jan 31 11:35:25 xpmedia1 pop3[59050]: login: [66.182.125.209] cbrundidge APOP User logged in
    Jan 31 11:35:26 xpmedia1 postfix/smtpd[59063]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:35:30 xpmedia1 pop3[59050]: login: 71-223-32-176.phnx.qwest.net [71.223.32.176] kbarr APOP User logged in
    Jan 31 11:35:35 xpmedia1 pop3[59091]: badlogin: 32-109-248-206-catv.choicecable.net [206.248.109.32] APOP (<[email protected]>) Error: -6

  • SAP Content Server logs

    Hi..
    SAP Content Server 6.40 on Solaris 10, Apache 1.3. xx installed successfully. i unable to connect from ECC to SAP Content server gives error in error_logs of app ache
    [Mon Sep  6 14:46:55 2010] [error] [client 172.16.20.219] File does not exist: /usr/sap/XXX/apache/htdocs//ContentServer/ContentServer.dll
    It really great full, If you can help.
    Regards,
    Panu
    Edited by: kumar panu on Sep 6, 2010 2:02 PM

    Hi Ravindra,
    We have created repository in OAC0 but when we connect going to connect through the CSADMIN unable to connect to SAP Content Server.
    Can you please confirm the script is correct for Solaris Sytem?
    HTTP SCRIPT: /ContentServer/ContentServer.dll
    Regards,
    Panu
    Edited by: kumar panu on Sep 7, 2010 7:36 AM

  • ICal Server: logs showing "Too many matching components" errors

    Setup:
         MacMini3,1 (Core2Duo) running OS X 10.6.8 Server
    Services Enabled:
         AFP
         iCal
         NetBoot
         Open Directory
         Push Notifications
         SMB
         Web
    iCal Server:
         About 100 users in OpenDirectory, but the only thing OD is used for is to provide iCal accounts.  Our iCal clients are split evenly among native iCal client users, Thunderbird/Lightning users, and those who access via http.  One thing that may be worth mentioning is the way we use this calendar: Management has decided that they want one calendar user who gets invited to nearly every **** event that anyone schedules, an "overview" so that everyone can add this user as a read-only delegate, and then they can see what everyone at the company is up to at a glance.  So this has created one gigantic iCal account with perhaps 15 events per-day every-day for the last 3 years - and all 100 users have read access to these events.
    The Problem: error.log is full of messages like this:
    2012-01-06 14:32:16+0100 [-] [caldav-8010]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:32:18+0100 [-] [caldav-8011]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:32:40+0100 [-] [caldav-8012]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:32:43+0100 [-] [caldav-8010]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:37:15+0100 [-] [caldav-8012]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:37:18+0100 [-] [caldav-8009]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:37:41+0100 [-] [caldav-8009]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:37:44+0100 [-] [caldav-8011]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:42:17+0100 [-] [caldav-8009]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:42:18+0100 [-] [caldav-8012]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:42:51+0100 [-] [caldav-8011]  [PooledMemCacheProtocol,client] [twistedcaldav.directory.appleopendirectory.OpenDirectoryRecord#error] OpenDirectory (node=/Search) error while performing digest authentication for user bob: ('DirectoryServices Error: Exception raised in file src/CDirectoryService.cpp at line 1078', -14002)
    2012-01-06 14:42:52+0100 [-] [caldav-8010]  [PooledMemCacheProtocol,client] [twistedcaldav.directory.appleopendirectory.OpenDirectoryRecord#error] OpenDirectory (node=/Search) error while performing digest authentication for user bob: ('DirectoryServices Error: Exception raised in file src/CDirectoryService.cpp at line 1078', -14002)
    2012-01-06 14:42:52+0100 [-] [caldav-8011]  [PooledMemCacheProtocol,client] [twistedcaldav.directory.appleopendirectory.OpenDirectoryRecord#error] OpenDirectory (node=/Search) error while performing digest authentication for user bob: ('DirectoryServices Error: Exception raised in file src/CDirectoryService.cpp at line 1078', -14002)
    2012-01-06 14:47:21+0100 [-] [caldav-8010]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:47:22+0100 [-] [caldav-8012]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:47:44+0100 [-] [caldav-8012]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:47:48+0100 [-] [caldav-8010]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:47:50+0100 [-] [caldav-8011]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    I've not be able to find any documentation on this error in my google searches...  Does anyone have experience with this error, or a possible solution?
    Thanks!

    rajeshappsdba wrote:
    Hi,
    we have EBusiness suite 11.5.10.2 Solaris 5.10 Production server. Until last 3 week (for the past 1.5 years), there were max 10 archive log generation (archive size like 250mb) now which has been increased to 200 kb,152kb,1mb archives for every 1 MIN.
    I am unable to understand this behaviour. The number of users still remain the same and the usage is as usual.
    Is there a way I can check what has gone wrong? I could not see any errors also in the alert.log
    Please suggest what can be done.
    Thanks
    Rajeshredo generation is the result of the activity on the system. You've therefore either started doing much more work - which the business users might well be able to let you know about - or you've started doing you existing workload extremely inefficently, which your business users will probably have noticed. I would start in this case, not with logminer, but with the business and the application - ebusiness suite for example keeps pretty good logs of what activity has happened on the system. Id also be interested in what was changed 3 weeks ago, because something was!
    Niall

  • Server log shows error and warning 108 & 1085 every 5 minutes. Faile dto apply changes to software installation settings.

    Event: 108
    Failed to apply changes to software installation settings. Software changes could not be applied. A previous log entry with details should exist. The error was : %%2147746153
    Event: 1085
    Windows failed to apply the Software Installation settings. Software Installation settings might have its own log file. Please click on the "More information" link.
    This errors have been happening a long while and do not appear to be having any effects on our end users. However, they are making
    it very hard to sift through our log files as you could imagine! This DC is windows 2008 r2.
    If there is any other information needed, let me know. Thanks!

    In addition you can debug the software installation Policy easily.
    GPO Troubleshooting
    Also you can use the ADM/ADMX for GPO related issues (GPO DEBUG LOGGING).
    http://www.gpoguy.com/FreeTools/FreeToolsLibrary/tabid/67/agentType/View/PropertyID/85/Default.aspx
    http://www.gpoguy.com/FreeTools/FreeToolsLibrary/tabid/67/agentType/View/PropertyID/84/Default.aspx
    Use this tool for registry key change.
    http://www.gpoguy.com/FreeTools/FreeToolsLibrary/tabid/67/agentType/View/PropertyID/87/Default.aspx 
    I have tested all the above tools and all are working fine.
    Best regards Biswajit Biswas Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights. MCP 2003,MCSA 2003, MCSA:M 2003, CCNA, MCTS, Enterprise Admin

  • Content Server can't find my native document

    I have inserted the default Dyanmic Conversion element into a Secondary Page Region in Site Studio. When I preview the page and try to Check out and Open the page I get this error message from MS Word.
    Could not open "http://[server name]/idc/idcplg/webdav/core/tip/TESTSTYLES/teststyles
    Where TESTSTYLES is the content ID and teststyles is the name of the native docuument.
    Can someone please tell me what I've set up wrong and how to fix this?

    So basically the checkoutandopen component needs to be loaded after folders and webdav?
    I am having the same problem and have tried to uninstall (gave error message but still removed it) and then reinstalling.
    I'm also seeing this error message in the content server log -
    Event generated by user 'higginj_a' at host 'stellent'. Unable to execute service GET_ENVIRONMENT and function loadEnvironment.
    (System Error: The column 'key' does not exist in this table.) [ Details ]
    An error has occurred. The stack trace below shows more information. !csUserEventMessage,higginj_a,stellent!$!csServiceDataException,GET_ENVIRONMENT,loadEnvironment!$!csSystemError,\!syColumnDoesNotExist\,key intradoc.common.ServiceException: !csServiceDataException,GET_ENVIRONMENT,loadEnvironment!$!csSystemError,\!syColumnDoesNotExist\,key
    at intradoc.server.Service.buildServiceException(Service.java:2312)
    at intradoc.server.Service.createServiceExceptionEx(Service.java:2228)
    at intradoc.server.Service.createServiceException(Service.java:2223)
    at intradoc.server.Service.doAction(Service.java:646)
    at intradoc.server.Service.doActions(Service.java:425)
    at intradoc.server.Service.doRequest(Service.java:1860)
    at intradoc.server.ServiceManager.processCommand(ServiceManager.java:350)
    at intradoc.server.IdcServerThread.run(Unknown Source)
    Caused by: intradoc.data.DataException: !syColumnDoesNotExist,key
    at intradoc.data.ResultSetUtils.createInfoList(ResultSetUtils.java:230)
    at intradoc.data.ResultSetUtils.createFilteredStringTableEx(ResultSetUtils.java:111)
    at intradoc.data.ResultSetUtils.createFilteredStringTable(ResultSetUtils.java:54)
    at intradoc.data.ResultSetUtils.findValueEx(ResultSetUtils.java:351)
    at intradoc.data.ResultSetUtils.findValue(ResultSetUtils.java:310)
    at collections.HelperHandler.loadEnvironment(HelperHandler.java:876)
    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:585)
    at intradoc.common.IdcMethodHolder.invokeMethod(Unknown Source)
    at intradoc.common.ClassHelperUtils.executeMethodReportStatus(Unknown Source)
    at intradoc.server.ServiceHandler.executeAction(Unknown Source)
    at intradoc.server.Service.doCodeEx(Service.java:674)
    at intradoc.server.Service.doCode(Service.java:656)
    at intradoc.server.Service.doAction(Service.java:580)
    ... 4 more

  • Issue with Users trying to contribute a file to content server

    Hi,
    I have an instance of UCM 10g 10.1.3.3 installed and off later suddenly some users have started getting the message "Unable to build check in form. User '<username>' does not have sufficient privileges." when they try to checkin a file.
    I checked the user admin to see these users previliges and they seem fine. I mean they have RW previliges on the group.
    When the user logs into the system they cannot see the "New Checkin" option which is also strange.
    Here is what got recorded in the content server log file..
    Event generated by user '<username>' at host 'orclinsight.oraclecorp.com'. Content item <undefined> was not successfully checked in. User '<username>' does not have sufficient privileges. [ Details ]
    An error has occurred. The stack trace below shows more information.
    !csUserEventMessage,[email protected],orclinsight.oraclecorp.com!$!csUnableToCheckIn,!csUserInsufficientAccess,[email protected]
    intradoc.common.ServiceException: !csUnableToCheckIn,!csUserInsufficientAccess,[email protected]
         at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:1739)
         at intradoc.server.Service.buildServiceException(Service.java:1999)
         at intradoc.server.Service.createServiceExceptionEx(Service.java:1993)
         at intradoc.server.ServiceSecurityImplementor.validateSecurityPrivilegeLevel(ServiceSecurityImplementor.java:956)
         at intradoc.server.DocumentAccessSecurity.checkSecurity(DocumentAccessSecurity.java:114)
         at intradoc.server.DocumentAccessSecurity.checkSecurity(DocumentAccessSecurity.java:67)
         at intradoc.server.ServiceSecurityImplementor.checkSecurity(ServiceSecurityImplementor.java:320)
         at intradoc.server.Service.checkSecurity(Service.java:2546)
         at intradoc.server.Service.checkSecurity(Service.java:2524)
         at sun.reflect.GeneratedMethodAccessor23.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at intradoc.common.IdcMethodHolder.invokeMethod(ClassHelperUtils.java:461)
         at intradoc.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:128)
         at intradoc.common.ClassHelperUtils.executeMethod(ClassHelperUtils.java:113)
         at intradoc.server.Service.doCodeEx(Service.java:505)
         at collections.CollectionUserHandler.checkSecurity(CollectionUserHandler.java:1058)
         at sun.reflect.GeneratedMethodAccessor12.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at intradoc.common.IdcMethodHolder.invokeMethod(ClassHelperUtils.java:461)
         at intradoc.common.ClassHelperUtils.executeMethodReportStatus(ClassHelperUtils.java:142)
         at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:75)
         at intradoc.server.Service.doCodeEx(Service.java:488)
         at intradoc.server.Service.doCode(Service.java:470)
         at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1350)
         at intradoc.server.Service.doAction(Service.java:450)
         at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1191)
         at intradoc.server.Service.doActions(Service.java:445)
         at intradoc.server.ServiceRequestImplementor.executeActions(ServiceRequestImplementor.java:1111)
         at intradoc.server.Service.executeActions(Service.java:431)
         at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:632)
         at intradoc.server.Service.doRequest(Service.java:1709)
         at intradoc.server.ServiceManager.processCommand(ServiceManager.java:357)
         at intradoc.server.IdcServerThread.run(IdcServerThread.java:195)
    Any help will be much appreciated.
    Thanks

    Yes Tim is correct. Support would say that any direct changes to the DB layer without the CS services layer doing it would not be supported. Only in rare cases where development tells support to do otherwise are direct DB level edits supported.
    So approaching the external users getting the correct security as a problem; support would probably suggest something like use the proxycredentialsmap component to map your security from the SSO application to the proper roles in the CS instead of using scripts to create local users and map them manually. Or create the users one time at beginning of the project (using your db level edits to create users and give them roles etc) and test to see if it works and do no integration with a SSO application that can change your users and mess up your plans later.
    I would guess that a one time creation of users via script in the CS would be no real problem to support but anything dynamic and coded that would have to be debugged would be a problem. Custom code (even simple custom code in a workflow or profile) is not directly supported. Too big of a pandora's box being opened.

  • Content Server error

    Hi All,
    I am trying to write a Java utility that will create a document using Content Server HTTP API in a repository with security turned on. I use SAP SSF classes to calculate the secKey value for my request, but everytime I get HTTP 401 error and the Content server log contains following error:
    Security SsfVerify failed rc=12, lasterror=18, decoding error for, PSE=
    ?\C:\Program Files\SAP\Content Server\Security\ZT1.pse,"
    My algorithm is following: first I calculate the MD5 hash of the parameters:
    byte[] digest = null;
    MessageDigest md = MessageDigest.getInstance("MD5");
    md.update(param.getBytes());
    digest = md.digest();
    Then I sign it using SAP SSF classes:
    ByteArrayInputStream bais = new ByteArrayInputStream(digest);
    // create object of ssf data
    ISsfData data = null;
    try {
        data = new SsfDataPKCS7(bais);
        KeyStore keystore = KeyStore.getInstance("PKCS12");
        keystore.load(new FileInputStream("c:\\work\\PKI\\CS_NW1.p12"), "pwd".toCharArray());               
        SsfProfileKeyStore profile = new SsfProfileKeyStore(keystore, "cs_nw1", "pwd");
        boolean res = data.sign(profile);
        if (!res) {
            System.out.println("Creation of signature failed");
        } else {
         ByteArrayOutputStream baos = new ByteArrayOutputStream();
         data.writeTo(baos);
         result = Base64.encodeBase64URLSafeString(baos.toByteArray());
    } catch (Exception e) {
       e.printStackTrace();
    Is anyone here who has experience with the Content Server HTTP API in combination with digital signatures and could help me with my problem?
    Many thanks in advance!
    Best regards,
    Tomas

    Hi Tomas,
    I tried to implement the interface with C# and got same error as you mentioned above (Security SsfVerify failed rc=12, lasterror=18, decoding error for).
    I'm not sure if my problem comes from the certificate which I created using makecert.exe or if I did somethime wrong signing the URL. How did you create your certificate?
    Maybe you can see a major fault in my code. I tried it that way:
    byte
    [] byteArray = File.ReadAllBytes(@"C:\_xbound_ocf\Development\Dev\Binaries\Release\ENUtxt.pdf");
    string docId = Guid.NewGuid().ToString().Replace("-", "").ToUpper();
    string expiration = DateTime.Now.Add(new TimeSpan(2, 0, 0)).ToString("yyyyMMddHHmmss");
    string accessMode = "c";
    string parameterToBeSigned = ReplaceCharacter(_ContRep.Text) + ReplaceCharacter(_CompID.Text) + ReplaceCharacter(docId) + ReplaceCharacter(_DocProt.Text) +
    ReplaceCharacter(accessMode) + ReplaceCharacter(_AuthId.Text) + ReplaceCharacter(expiration);
    string path = @"C:\_xbound_ocf\Development\Dev\ProcessDirector\ArchiveLinkTest\ArchiveLinkTest\certs\DSAWithSHA1\MyUserCert.pfx";
    X509Certificate2 certificate = new X509Certificate2(path, "alba&1");
    DSACryptoServiceProvider provider = ( DSACryptoServiceProvider)certificate.PrivateKey;
    System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding();
    ASCIIEncoding encoding2 = new System.Text.ASCIIEncoding();
    byte[] data = encoding2.GetBytes(parameterToBeSigned);
    SHA1Managed sha1 = new SHA1Managed();
    byte[] hash = sha1.ComputeHash(data);
    byte[] signed = provider.CreateSignature(hash);
    string secKey = Convert.ToBase64String(signed);
    string url = _URL.Text + "?create" +
         "&contRep=" + ReplaceCharacter(_ContRep.Text) +
          "&compId=" + ReplaceCharacter(_CompID.Text) +
          "&docId=" + ReplaceCharacter(docId) +
          "&pVersion=" + ReplaceCharacter(_Version.Text) +
          "&Content-Length=" + byteArray.Length.ToString() +
          "&docProt=" + ReplaceCharacter(_DocProt.Text) +
          "&accessMode=" + ReplaceCharacter(accessMode) +
          "&authId=" + ReplaceCharacter(_AuthId.Text) +
          "&expiration=" + ReplaceCharacter(expiration) +
          "&secKey=" + ReplaceCharacter(secKey);
    ReplaceCharacter is a function which replaces the invalid characters for url.
    Best regards
    Anja

  • Error executing CIS APIs on content server

    Hi I am trying to execute the client samples that came with the CIS jarfiles. All the files are getting terminated with this error..
    oracle.stellent.ridc.protocol.ProtocolException:java.io.IOException: Input terminated before being able to read line
    the error is in the getResponseAsBinder method call.
    I am using eclipse to execute these class files...
    Plz let me know if I am missing some imp configurations etc.
    Regards
    Jo

    Hey jogeo,
    Are you getting any errors in your content server logs? Or in the Server System Output?
    I've seen a similarly vague error from the CIS api's when either my content server wasn't running, the conneciton to the content server db had timed out, or I didn't have my SocketHostAddressSecurityFilter set correctly in config.cfg.
    If you could post any errors from the two places I mentioned above we could probably narrow down the issue.
    Andy Weaver - Senior Software Consultant
    Fishbowl Solutions < http://www.fishbowlsolutions.com?WT.mc_id=L_Oracle_Consulting_amw >

  • Application hangs and sql log shows "I/O is frozen" for minutes until "I/O was resumed"

    VSS is being invoked to backup our SQL Server 2012 databases throughout the day.  Occasionally, maybe once every few days, the application using the database hangs for a few minutes and coincidentally the sql server log shows that I/O was frozen for
    a few minutes (rather than less then a second for all other backups):
    11/25/2014 09:11:50,spid87,Unknown,I/O was resumed on database ourdatabase. No user action is required.
    11/25/2014 09:09:10,spid87,Unknown,I/O is frozen on database ourdatabase. No user action is required. However<c/> if I/O is not resumed promptly<c/> you could cancel the backup.
    AppAssure (backup software) support said this may be an issue with VSS.  What is the best way to go about troubleshooting this?  I've read many posts with people having similar issues dating back to 2010 and haven't really come across any
    solutions.  Should I simply open a case with MS support?
    SQL Server 2012
    Windows Server 2012 2 node cluster
    Database file on Dell Equallogic iCSCI SAN
    Dell AppAssure for Backups
    Thanks,
    -Bob

    Hi Bob,
    AFAIK yes this issue of ''I/O was frozen'' might occur when you use backup tool which uses VSS to take backups. This is actually how VSS backups works . There are few steps when backup is being taken using TP tool which uses VS. One of the steps is to create
    snapshot so that consistent backup could be taken
    In the snapshot creation phase following happens
    a) SQL Writer talks to SQL Server to prepare for a snapshot backup
    b) Then all I/O for the database being backed up is frozen, and then we create the snapshot.
    c) Once this is done, the I/O is resumed. This process is called "thaw".
    The second step would freeze I/O momentarily and you might see little freezing. AFAIK this is default behavior how VSS backups work
    You must read below excellent article It would help you in understanding how this backup works
    http://blogs.msdn.com/b/sqlserverfaq/archive/2009/04/28/informational-shedding-light-on-vss-vdi-backups-in-sql-server.aspx
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • Weblogic 11g Admin console - Admin Server Health shows "Warning"

    Hi,
    My env details : db 11.1.0.7, wls1033, RCU 11.1.1.3, soa 11.1.1.3, AIA11gR1 PS2
    When I start only Admin server, Health shows "Ok" but when I start soa_server1, Admin Server Health becomes "Warning".
    When I checked "Health information details" for Admin server, threadpool subsystem is showing "Warning".
    Steps I tried to resolve this issue : increased "Stuck Thread Max Time" to "1200" and "Stuck Thread Timer Interval" to "120" and restarted server, but still it shows "Warning" for Admin server Health
    Once I start soa_server1, Admin Server log shows below trace
    <Sep 30, 2010 3:39:38 PM IST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    <Sep 30, 2010 5:17:34 PM IST> <Error> <org.apache.beehive.netui.pageflow.internal.AdapterManager> <BEA-000000> <ServletContainerAdapter manager not initialized correctly.>
    <Sep 30, 2010 5:21:34 PM IST> <Warning> <netuix> <BEA-423420> <Redirect is executed in begin or refresh action. Redirect url is /console/console.portal?_nfpb=true&_pageLabel=WLSServerControlTablePage.>
    <Sep 30, 2010 5:41:37 PM IST> <Error> <WebLogicServer> <BEA-000337> <[STUCK] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)' has been busy for "1,203" seconds working on the request "weblogic.kernel.WorkManagerWrapper$1@dbf6176", which is more than the configured time (StuckThreadMaxTime) of "1,200" seconds. Stack trace:
    Thread-21 "[STUCK] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'" <alive, in native, suspended, priority=1, DAEMON> {
    jrockit.net.SocketNativeIO.readBytesPinned(SocketNativeIO.java:???)
    jrockit.net.SocketNativeIO.socketRead(SocketNativeIO.java:24)
    java.net.SocketInputStream.socketRead0(SocketInputStream.java:???)
    java.net.SocketInputStream.read(SocketInputStream.java:107)
    sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:250)
    sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:289)
    sun.nio.cs.StreamDecoder.read(StreamDecoder.java:125)
    ^-- Holding lock: java.io.InputStreamReader@dbf1cdd[thin lock]
    java.io.InputStreamReader.read(InputStreamReader.java:167)
    java.io.BufferedReader.fill(BufferedReader.java:105)
    java.io.BufferedReader.readLine(BufferedReader.java:288)
    ^-- Holding lock: java.io.InputStreamReader@dbf1cdd[thin lock]
    java.io.BufferedReader.readLine(BufferedReader.java:362)
    weblogic.nodemanager.client.NMServerClient.checkResponse(NMServerClient.java:287)
    weblogic.nodemanager.client.NMServerClient.checkResponse(NMServerClient.java:312)
    weblogic.nodemanager.client.NMServerClient.start(NMServerClient.java:93)
    ^-- Holding lock: weblogic.nodemanager.client.PlainClient@dbf5115[thin lock]
    weblogic.nodemanager.mbean.StartRequest.start(StartRequest.java:75)
    weblogic.nodemanager.mbean.StartRequest.execute(StartRequest.java:45)
    weblogic.kernel.WorkManagerWrapper$1.run(WorkManagerWrapper.java:63)
    weblogic.work.ExecuteThread.execute(ExecuteThread.java:198)
    weblogic.work.ExecuteThread.run(ExecuteThread.java:165)
    >
    <Sep 30, 2010 5:41:37 PM IST> <Notice> <Diagnostics> <BEA-320068> <Watch 'StuckThread' with severity 'Notice' on server 'AdminServer' has triggered at Sep 30, 2010 5:41:37 PM IST. Notification details:
    WatchRuleType: Log
    WatchRule: (SEVERITY = 'Error') AND (MSGID = 'BEA-000337')
    WatchData: DATE = Sep 30, 2010 5:41:37 PM IST SERVER = AdminServer MESSAGE = [STUCK] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)' has been busy for "1,203" seconds working on the request "weblogic.kernel.WorkManagerWrapper$1@dbf6176", which is more than the configured time (StuckThreadMaxTime) of "1,200" seconds. Stack trace:
    Thread-21 "[STUCK] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'" <alive, in native, suspended, priority=1, DAEMON> {
    jrockit.net.SocketNativeIO.readBytesPinned(SocketNativeIO.java:???)
    jrockit.net.SocketNativeIO.socketRead(SocketNativeIO.java:24)
    java.net.SocketInputStream.socketRead0(SocketInputStream.java:???)
    java.net.SocketInputStream.read(SocketInputStream.java:107)
    sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:250)
    sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:289)
    sun.nio.cs.StreamDecoder.read(StreamDecoder.java:125)
    ^-- Holding lock: java.io.InputStreamReader@dbf1cdd[thin lock]
    java.io.InputStreamReader.read(InputStreamReader.java:167)
    java.io.BufferedReader.fill(BufferedReader.java:105)
    java.io.BufferedReader.readLine(BufferedReader.java:288)
    ^-- Holding lock: java.io.InputStreamReader@dbf1cdd[thin lock]
    java.io.BufferedReader.readLine(BufferedReader.java:362)
    weblogic.nodemanager.client.NMServerClient.checkResponse(NMServerClient.java:287)
    weblogic.nodemanager.client.NMServerClient.checkResponse(NMServerClient.java:312)
    weblogic.nodemanager.client.NMServerClient.start(NMServerClient.java:93)
    ^-- Holding lock: weblogic.nodemanager.client.PlainClient@dbf5115[thin lock]
    weblogic.nodemanager.mbean.StartRequest.start(StartRequest.java:75)
    weblogic.nodemanager.mbean.StartRequest.execute(StartRequest.java:45)
    weblogic.kernel.WorkManagerWrapper$1.run(WorkManagerWrapper.java:63)
    weblogic.work.ExecuteThread.execute(ExecuteThread.java:198)
    weblogic.work.ExecuteThread.run(ExecuteThread.java:165)
    SUBSYSTEM = WebLogicServer USERID = <WLS Kernel> SEVERITY = Error THREAD = [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' MSGID = BEA-000337 MACHINE = navistarlnx01.in.corp.sa TXID = CONTEXTID = a29dda85e23940b7:-4a5394b7:12b621e55e6:-8000-000000000000005d TIMESTAMP = 1285848697597
    WatchAlarmType: AutomaticReset
    WatchAlarmResetPeriod: 600000
    >
    <Sep 30, 2010 5:41:55 PM IST> <Alert> <Diagnostics> <BEA-320016> <Creating diagnostic image in /u01/app/ora11g/Oracle/Middleware/user_projects/domains/base_domain/servers/AdminServer/adr/diag/ofm/base_domain/AdminServer/incident/incdir_10 with a lockout minute period of 1.>
    <Sep 30, 2010 5:43:37 PM IST> <Error> <WebLogicServer> <BEA-000337> <[STUCK] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)' has been busy for "1,323" seconds working on the request "weblogic.kernel.WorkManagerWrapper$1@dbf6176", which is more than the configured time (StuckThreadMaxTime) of "1,200" seconds. Stack trace:
    Thread-21 "[STUCK] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'" <alive, in native, suspended, priority=1, DAEMON> {
    jrockit.net.SocketNativeIO.readBytesPinned(SocketNativeIO.java:???)
    jrockit.net.SocketNativeIO.socketRead(SocketNativeIO.java:24)
    java.net.SocketInputStream.socketRead0(SocketInputStream.java:???)
    java.net.SocketInputStream.read(SocketInputStream.java:107)
    sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:250)
    sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:289)
    sun.nio.cs.StreamDecoder.read(StreamDecoder.java:125)
    ^-- Holding lock: java.io.InputStreamReader@dbf1cdd[thin lock]
    java.io.InputStreamReader.read(InputStreamReader.java:167)
    java.io.BufferedReader.fill(BufferedReader.java:105)
    java.io.BufferedReader.readLine(BufferedReader.java:288)
    ^-- Holding lock: java.io.InputStreamReader@dbf1cdd[thin lock]
    java.io.BufferedReader.readLine(BufferedReader.java:362)
    weblogic.nodemanager.client.NMServerClient.checkResponse(NMServerClient.java:287)
    weblogic.nodemanager.client.NMServerClient.checkResponse(NMServerClient.java:312)
    weblogic.nodemanager.client.NMServerClient.start(NMServerClient.java:93)
    ^-- Holding lock: weblogic.nodemanager.client.PlainClient@dbf5115[thin lock]
    weblogic.nodemanager.mbean.StartRequest.start(StartRequest.java:75)
    weblogic.nodemanager.mbean.StartRequest.execute(StartRequest.java:45)
    weblogic.kernel.WorkManagerWrapper$1.run(WorkManagerWrapper.java:63)
    weblogic.work.ExecuteThread.execute(ExecuteThread.java:198)
    weblogic.work.ExecuteThread.run(ExecuteThread.java:165)
    Thx for your help.

    Is there any information on this StuckThread Issue ?
    It happens in every restart of the SOA Managed server.

  • RV180W and server logs

    I updated my RV180W to the latest firmware and found that port forwarding works I started using it.
    I've just noticed that since changing over to the RV180W, my Apacher server logs show the router's IP address instead of the remote IP address - every remote request appears to come from  192.168.0.1.
    How do I get it to forward the remote IP.

    Hi Jon,
    This issue has been reported to Engineering and they are working towards a fix. Please call the SB Support helpdesk and open a case ticket.
    The engineer will then work with you helping to resolve your issue.
    http://www.cisco.com/en/US/support/tsd_cisco_small_business_support_center_contacts.html

  • Socket Exception in Admin Server Logs

    Hi All,
    We are facing a socket exception in Admin Server log. PFB for the exception logs:
    [2011-12-26T00:36:21.793-06:00] [AdminServer] [WARNING] [] [oracle.adfinternal.view.faces.renderkit.rich.TreeRendererUtils] [tid: [ACTIVE].ExecuteThread: '44' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: 0000JHt5O2e6yGD_n95EiZ1Ev5590005ms,0] [APP: em] [dcid: 88568bb1654f17ca:22e22403:1344b1dc283:-7ffe-0000000000042162] Context menu child is not a RichMenu
    [2011-12-26T00:39:05.574-06:00] [AdminServer] [ERROR] [] [oracle.adfinternal.view.faces.config.rich.RegistrationConfigurator] [tid: [ACTIVE].ExecuteThread: '44' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: 0000JHt60Xn6yGD_n95EiZ1Ev5590005nI,0] [APP: em] [dcid: 88568bb1654f17ca:22e22403:1344b1dc283:-7ffe-0000000000042182] Server Exception during PPR, #126[[
    java.net.SocketException: Write failed: Broken pipe
         at jrockit.net.SocketNativeIO.writeBytesPinned(Native Method)
         at jrockit.net.SocketNativeIO.socketWrite(SocketNativeIO.java:46)
         at java.net.SocketOutputStream.socketWrite0(SocketOutputStream.java)
         at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
         at java.net.SocketOutputStream.write(SocketOutputStream.java:136)
         at weblogic.servlet.internal.ChunkOutput.writeChunkTransfer(ChunkOutput.java:507)
         at weblogic.servlet.internal.ChunkOutput.writeChunks(ChunkOutput.java:486)
         at weblogic.servlet.internal.ChunkOutput.flush(ChunkOutput.java:382)
         at weblogic.servlet.internal.CharsetChunkOutput.flush(CharsetChunkOutput.java:313)
         at weblogic.servlet.internal.ChunkOutputWrapper.flush(ChunkOutputWrapper.java:174)
         at weblogic.servlet.internal.ServletOutputStreamImpl.flush(ServletOutputStreamImpl.java:111)
         at weblogic.servlet.internal.ServletResponseImpl.flushBuffer(ServletResponseImpl.java:185)
         at javax.servlet.ServletResponseWrapper.flushBuffer(ServletResponseWrapper.java:176)
         at javax.servlet.ServletResponseWrapper.flushBuffer(ServletResponseWrapper.java:176)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:229)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
         at oracle.sysman.emSDK.adfext.ctlr.EMViewHandlerImpl.renderView(EMViewHandlerImpl.java:149)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:710)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:273)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:205)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.help.web.rich.OHWFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.sysman.emSDK.license.LicenseFilter.doFilter(LicenseFilter.java:164)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.sysman.emas.fwk.MASConnectionFilter.doFilter(MASConnectionFilter.java:41)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.sysman.eml.app.AuditServletFilter.doFilter(AuditServletFilter.java:179)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.sysman.eml.app.EMRepLoginFilter.doFilter(EMRepLoginFilter.java:203)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.sysman.core.app.perf.PerfFilter.doFilter(PerfFilter.java:141)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.sysman.eml.app.ContextInitFilter.doFilter(ContextInitFilter.java:542)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    [2011-12-26T00:39:07.687-06:00] [AdminServer] [WARNING] [] [oracle.adfinternal.view.faces.renderkit.rich.TreeRendererUtils] [tid: [ACTIVE].ExecuteThread: '44' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: 0000JHt60co6yGD_n95EiZ1Ev5590005nJ,0] [APP: em] [dcid: 88568bb1654f17ca:22e22403:1344b1dc283:-7ffe-0000000000042183] Context menu child is not a RichMenu
    [2011-12-26T00:41:42.485-06:00] [AdminServer] [WARNING] [] [oracle.adfinternal.view.faces.renderkit.rich.TreeRendererUtils] [tid: [ACTIVE].ExecuteThread: '65' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: 0000JHt6aR46yGD_n95EiZ1Ev5590005na,0] [APP: em] [dcid: 88568bb1654f17ca:22e22403:1344b1dc283:-7ffe-0000000000042198] Context menu child is not a RichMenu
    [2011-12-26T10:30:56.963-06:00] [AdminServer] [WARNING] [] [org.apache.myfaces.trinidad.webapp.ResourceServlet] [tid: [ACTIVE].ExecuteThread: '30' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: 0000JHvDUMs6yGD_n95EiZ1Ev5590005q5,0] [APP: em] [dcid: 88568bb1654f17ca:22e22403:1344b1dc283:-7ffe-0000000000046718] ResourceServlet._setHeaders(): Content type for /bi/jsLibs/engine_20100410.swf is NULL![[
    Cause: Unknown file extension
    Kindly provide us a solution to avoid this issue.
    Thanks & Regards,
    Prabhu

    It seems that chunking is causing the issue. In the HTTP Transport Configuration Options of your business service, disable the setting "Use Chunked Streaming Mode"
    Regards,
    Anuj

  • GlassFish Tools - Eclipse console does not show server log output

    Hi,
    I just installed the latest Glassfish Tools (6.2.1.201308190137) on Eclipse Kepler and Glassfish Server 3.1.2.  But when I start the server and open the console ('view log file' button) there is no output displayed (also not during deployment). When I open the server.log file in a text editor I can clearly see the log output. Re-starting Eclipse, re-opening the console view didn't help. I have this bug both on Windows 8 and OSX 10.8.4.
    Is there something obvious that I am missing? In my previous pre-kepler Eclipse installation this works like a charm (using the same glassfish server). Also the path to the log file displayed on the top of the console view is correct.
    This might be related to the following thread:
    GlassFish > View Log File opens in editor instead of console
    Will have to use my old eclipse installation until this is resolved. Any help is appreciated.
    -- Mike

    Apparently, the GlassFish Tools for eclipse is expecting the log messages in 'ODLLogFormatter' format only, and will refuse to show any logs messages that don't adhere to this format.
    I've tried configuring my logback messages to match this format, and that works until an exception is thrown and a log message is entered somewhere using the 'UniformLogFormatter' format, which then causes the server.log parser to refuse to show any more messages.
    This is a bug, but I'm unsure where to report bugs now since the move to OEPE.  (Was https://java.net/jira/browse/GLASSFISHPLUGINS)

  • Can't get to log in page, can't log in to Content Server

    Hi,
    I have installed Content Server on my desktop. I took almost all of the default settings. Saw no errors in log. Both Content Service and Content Admin Service are running correctly. Since 'new' install did not work, I have also tried to 'update' it.
    Following instructions exist in install doc. The log in page itself does not come up. What am I missing?
    Go to the Content Server homepage (portal page). By default, the address is http://[host_name]/[web_root], for example http://master1/server/.
    UCM is installed in C:\Oracle\ucm\server - so what would be it's URL for homepage?
    Thanks in advance.
    Umesh

    Hi
    The correct format for accessing the portal page of CS is : http://hostname:port/webrelativeroott/portal.htm
    Before this make sure that the configurations are done properly in the webserver if apache is being used , httpd.conf.
    Hope this helps
    Thanks
    Srinath

Maybe you are looking for