SshException: Failed to read remote identification [Unknown cause]

I have set up the cygwin server to run sftp in my project, but i got these exception, how should i solve it?
Here is the exception :
com.maverick.ssh.SshException: com.maverick.ssh.SshException
     at com.maverick.ssh.SshException.<init>(Unknown Source)
     at com.maverick.ssh.SshConnector.A(Unknown Source)
     at com.maverick.ssh.SshConnector.connect(Unknown Source)
     at com.maverick.ssh.SshConnector.connect(Unknown Source)
     at qrcom.util.EdtFTPClient.edtUploadFile(EdtFTPClient.java:182)
     at qrcom.SUPPORT.files.dao.local.FTP.CreateFTPFileEON.runFTPFile(CreateFTPFileEON.java:183)
     at qrcom.SUPPORT.files.dao.local.FTP.CreateFTPFileEON.initFTPFile(CreateFTPFileEON.java:129)
     at qrcom.SUPPORT.files.dao.local.FTP.CreateFTPFileEON.startReport(CreateFTPFileEON.java:101)
     at qrcom.SUPPORT.files.dao.local.FTP.CreateFTPFileEON.main(CreateFTPFileEON.java:1052)
Caused by: com.maverick.ssh.SshException: Failed to read remote identification [Unknown cause]
     ... 9 more
these is the function that i think causes it :
public void edtUploadFile(String fileFullPath, String remoteFileName, ArrayList attachList, String strftpIP, String ftpPortNo, String strftpUserID, String strftpPwd, FTPMessage ftpMailMessage) throws FTPFileException, Exception{
StringBuffer ftpMailMsg = new StringBuffer();
FTPClient ftp = null;
FTPMessageCollector listener = null;
try
* Create an SshConnector instance
SshConnector con = SshConnector.getInstance();
// Lets do some host key verification
con.getContext(SshConnector.SSH2).setHostKeyVerification(new ConsoleKnownHostsKeyVerification("C:\\cygwin\\home\\wmlam\\.ssh\\known_hosts"));
Ssh2Context ssh2Context = (Ssh2Context)con.getContext(SshConnector.SSH2);
//ssh2Context.setPreferredPublicKey(Ssh2Context.PUBLIC_KEY_SSHDSS);
ssh2Context.setPreferredPublicKey(Ssh2Context.PUBLIC_KEY_SSHRSA);
* Connect to the host
int port = Integer.parseInt(ftpPortNo);
SocketTransport t = new SocketTransport(strftpIP, port);
t.setTcpNoDelay(true);
PublicKeyAuthentication pk = new PublicKeyAuthentication();
SshPrivateKeyFile pkfile = SshPrivateKeyFileFactory.parse(new FileInputStream("C:\\cygwin\\home\\wmlam\\.ssh\\id_rsa"));
SshKeyPair pair;
if(pkfile.isPassphraseProtected()) {
pair = pkfile.toKeyPair(Ssh2Context.PUBLIC_KEY_SSHRSA);
} else
pair = pkfile.toKeyPair(null);
pk.setPrivateKey(pair.getPrivateKey());
pk.setPublicKey(pair.getPublicKey());
SshClient ssh = con.connect(t, strftpUserID);
* Determine the version
if(ssh instanceof Ssh1Client) {
System.out.println(strftpIP + " is an SSH1 server!! SFTP is not supported");
ssh.disconnect();
System.exit(0);
else
System.out.println(strftpIP + " is an SSH2 server");
Ssh2Client ssh2 = (Ssh2Client)ssh;
* Authenticate the user using password authentication
com.maverick.ssh.PasswordAuthentication pwd = new com.maverick.ssh.PasswordAuthentication();
do {
pwd.setPassword(strftpPwd);
while(ssh2.authenticate(pwd)!=SshAuthentication.COMPLETE
&& ssh.isConnected());
* Start a session and do basic IO
if(ssh.isAuthenticated()) {
SftpClient sftp = new SftpClient(ssh2);
// Tell the client which EOL the remote client is using - note
// that this will be ignored with version 4 of the protocol
sftp.setRemoteEOL(SftpClient.EOL_LF);
// Now put the file, the remote file should end up with all \r\n changed to \n
//sftp.put(textFile.getAbsolutePath());
sftp.put(fileFullPath+remoteFileName);
* Now perform some binary operations
sftp.setTransferMode(SftpClient.MODE_BINARY);
* List the contents of the directory
SftpFile[] ls = sftp.ls();
for(int i=0;i<ls.length;i++) {
ls.getParent();
System.out.println(SftpClient.formatLongname(ls[i]));
ftpMailMsg.append("<TABLE border=1 width=100% cellspacing=1 cellpadding=1>");
ftpMailMsg.append("<TR>");
ftpMailMsg.append("<TD width=60%> <b>CSMS</b></TD>");
ftpMailMsg.append("<TD width=40%> <b>FTP</b></TD>");
ftpMailMsg.append("</TR>");
ftpMailMsg.append("<TR>");
ftpMailMsg.append("<TD>"+fileFullPath+"</TD>");
ftpMailMsg.append("<TD>"+remoteFileName+"</TD>");
ftpMailMsg.append("</TR>");
if(attachList!=null && !attachList.isEmpty()){
Iterator iter = attachList.iterator();
String [] strAtth;
String strAtthPathAndName = "";
String strAtthFTPServerFileName = "";
for(int i=0; i<attachList.size();i++){
strAtth = (String [])attachList.get(i);
strAtthPathAndName = qrMisc.trim(strAtth[1]);
strAtthFTPServerFileName = qrMisc.trim(strAtth[2]);
sftp.setTransferMode(SftpClient.MODE_BINARY);
sftp.put(strAtthPathAndName,strAtthFTPServerFileName);
ftpMailMsg.append("<TR>");
ftpMailMsg.append("<TD>"+strAtthPathAndName+"</TD>");
ftpMailMsg.append("<TD>"+strAtthFTPServerFileName+"</TD>");
ftpMailMsg.append("</TR>");
ftpMailMsg.append("</TABLE>");
if(ftpMailMessage!=null){
String tmpFtpMailMsg = qrMisc.trim(ftpMailMsg.toString());
ftpMailMessage.setFTPMessage(tmpFtpMailMsg);
System.out.println("Test complete");
ssh.disconnect();
catch(FileNotFoundException exp){
exp.printStackTrace();
     listener.logCommand("[FileNotFoundException]Error occur while transfering file :"+exp);
writeToLog(listener.getLog());
throw new FTPFileException("[FileNotFoundException] Error occur while transfering file :"+exp.toString());
}catch(IOException exp){
exp.printStackTrace();
     listener.logCommand("[IOException]Error occur while transfering file :"+exp);
writeToLog(listener.getLog());
throw new FTPFileException("[IOException] Error occur while transfering file :"+exp.toString());
} catch (Exception exp) {
exp.printStackTrace();
listener.logCommand("[Exception]Error occur while transfering file :"+exp);
writeToLog(listener.getLog());
throw new FTPFileException("[Exception] Error occur while transfering file :"+exp.toString());
the program stopped at this line, while trying to connect to ssh :
SshClient ssh = con.connect(t, strftpUserID);
Can i use ftp together with sftp? how can i solve this ?
Edited by: gloria_lai on Dec 13, 2007 9:54 AM

Hi,
The issue which you are facing can be the result of security or authentication problems (such as attempting to manage a remote server in an untrusted domain, for example; or attempting to manage a server by using credentials that are not recognized as those
of an administrator on the remote server), or configuration problems (missing Windows PowerShell, remote management not enabled on the target server, etc.). For more information you can refer below article.
Windows Server 2012 - Server Manager
Troubleshooting Guide, Part II: Troubleshoot Manageability Status Errors in Server Manager
In addition if you want to enable Remote Management you can try to enable using command line or Windows Power Shell. Go through
this article for additional details.
To Enable through Command line & Windows Power-Shell (Run as Administrator):
Configure-SMRemoting.exe –enable
Hope it helps!
Thanks.
 

Similar Messages

  • Remote Management: "Failed to read remoting state" error

    Hello,
    I am facing the following error on my Windows Server 2012 Datacenter installation:
    If I try to enable the Remote (Server) Management from the Server Manager UI I get the following error: "Internal Error: Failed to read remoting state. The system cannot find the file specified."
    Has anyone else faced the same error? What could be the cause of this error?
    Thank you in advance

    Hi,
    The issue which you are facing can be the result of security or authentication problems (such as attempting to manage a remote server in an untrusted domain, for example; or attempting to manage a server by using credentials that are not recognized as those
    of an administrator on the remote server), or configuration problems (missing Windows PowerShell, remote management not enabled on the target server, etc.). For more information you can refer below article.
    Windows Server 2012 - Server Manager
    Troubleshooting Guide, Part II: Troubleshoot Manageability Status Errors in Server Manager
    In addition if you want to enable Remote Management you can try to enable using command line or Windows Power Shell. Go through
    this article for additional details.
    To Enable through Command line & Windows Power-Shell (Run as Administrator):
    Configure-SMRemoting.exe –enable
    Hope it helps!
    Thanks.
     

  • Restart causing Failed to read wsdl and BaseScheduledWorker null pointer

    Hoped that 10.1.3.3.1 patchset would fix this but doesn't seem to have done so. I'm doing a test whereby I restart the application server under simulated load conditions, two BPEL domain log files are created, possibly indicating it has had a problem coming back up, domain.log.1 contains this :
    <2007-12-06 10:39:37,758> <ERROR> <default.collaxa.cube.engine.dispatch> <BaseScheduledWorker::process> Failed to handle dispatch message ... exception
    java.lang.NullPointerException
         at com.collaxa.cube.engine.dispatch.InstanceQueue.acknowledge(InstanceQueue.java:285)
         at com.collaxa.cube.engine.dispatch.BaseDispatchSet.acknowledge(BaseDispatchSet.java:241)
         at com.collaxa.cube.engine.dispatch.Dispatcher.acknowledge(Dispatcher.java:650)
    <2007-12-06 10:39:40,764> <ERROR> <default.collaxa.cube.engine> <CubeEngine::checkExpirable> Failed to unschedule work item "140957-BpInv3-BpSeq1.3-4" from the expiration agent.
    ORABPEL-00025
    Cannot unschedule agent.
    An attempt to unschedule the "expiration" agent with the scheduler has failed. The exception reported is: org.quartz.SchedulerException: Scheduler with name 'BPELPMRamScheduler' already exists.
         at org.quartz.impl.SchedulerRepository.bind(SchedulerRepository.java:87)
         at org.quartz.impl.StdSchedulerFactory.instantiate(StdSchedulerFactory.java:967)
    Async processes caught up in this are getting errors trying to pass back a response back to their invoking process as follows (note these processes work fine when I'm not restarting the app server underneath them) :
    <remoteFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="summary"><summary>when invoking locally the endpoint 'http://pukldr00000.whatever.co.uk:7833/orabpel/default/invoker_name/1.0/processname/rolename', ; nested exception is:
         ORABPEL-00000
    Exception not handled by the Collaxa Cube system.
    An unhandled exception has been thrown in the Collaxa Cube system. The exception reported is: "ORABPEL-08003
    Failed to read wsdl.
    Failed to read wsdl at "http://pukldr00000.whatever.co.uk:7833/orabpel/default/processname/processname?wsdl", because "Failed to read WSDL from http://pukldr00000.whatever.co.uk:7833/orabpel/default/processname/processname?wsdl: HTTP connection error code is 500"
    Any help gratefully appreciated.

    SR has been filed for some time and includes an example. My example is as follows, async process A calls async process B, async process B just does a 20 second sleep in java before doing callback to A. To demonstrate the issue I just set off process A and shut down the oc4j through Enterprise Manager, process B hits the failed to read wsdl when it tries to callback to A. It seems like some of the infrastructure has been taken down before all of the in-memory processes have hit a dehydration point, which is not good !
    SR # is 6615784.993 I am now escalating.

  • "HTTP500 - OTHER_ERROR: Failed to read WSDL" creating a Web Service in OBPM

    I'm currently experiencing a problem with OBPM 11g when trying to consume a Web service into my composite application.
    I have created a BPM Application and have previously been able to consume Web Services from our service bus. Since a recent restart of my client however, I can nolonger consume the same (or indeed any) service from any location as JDeveloper gives nme the following error when trying to access the WSDL file...
    Error while reading wsdl file
    http://<server>:<port>/<service>).wsdl
    Exception:
    WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from
    http://<server>:<port>/<service>).wsdl:
    HTTP Connection error code is 500
    I can navigate to the WSDL within IE on the same client and I have switched off the "Use HTTP Proxy Server" within the "Web Browser and Proxy" preferences'. Are there any other preferences or settings that could be causing this issue?
    Steps to reproduce...
    Open the cmpsite.xml view of the application
    Drag a Web service component from the Service Adapters within the SOA Componet pane
    Enter the name of the Service
    Paste the WSDL location into the WSDL URL
    Try to select port type
    At this point the error is received
    Thanks to anyone who can assist
    Darren
    Edited by: 784610 on 27-Jul-2010 02:32
    Edited by: 784610 on 27-Jul-2010 02:32

    Hi,
    I am facing the same issue while generating the client java class from IBM RAD 6.0.
    Here is the error I am getting.
    WSDLException (at /wsdl:definitions/wsdl:portType/wsp:Policy): faultCode=INVALID_WSDL: Encountered unexpected element 'Policy'.:
         [java] at com.ibm.wsdl.util.xml.DOMUtils.throwWSDLException(Unknown Source)
         [java] at com.ibm.wsdl.xml.WSDLReaderImpl.parsePortType(Unknown Source)
         [java] at com.ibm.wsdl.xml.WSDLReaderImpl.parseDefinitions(Unknown Source)
         [java] at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
         [java] at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
         [java] at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
         [java] at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:516)
         [java] at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:495)
         [java] at org.apache.axis.wsdl.gen.Parser$WSDLRunnable.run(Parser.java:361)
         [java] at java.lang.Thread.run(Thread.java:571)
    Please guide me to resolve this issue.
    Thanks & Regards,
    Vijay

  • Dgidx error  ... XMLParser: failed to read record data

    Have looked at a similar discussion https://community.oracle.com/thread/3555623
    And we too have just created a 1Gb file for the first time. We dont have any new versions of the MDEX or Platform Services that could cause incompatibility issues.
    Our baseline is failing in our staging environment
    the Dgidx log contains these error details ...
    Property["thisSite"]: Value[000000001C84D350] "KANDCO"
    Rec 402,011 records       6,300,000 text fields          69,150,465 entries
    Rec 408,797 records       6,400,000 text fields          69,907,942 entries
    .Rec 415,471 records       6,500,000 text fields          70,825,125 entries
    Rec 422,047 records       6,600,000 text fields          71,903,843 entries
    Rec 427,876 records       6,700,000 text fields          73,110,468 entries
    Rec 433,626 records       6,800,000 text fields          74,279,227 entries
    Rec 440,450 records       6,900,000 text fields          75,340,092 entries
    Rec 447,388 records       7,000,000 text fields          76,817,152 entries
    Rec 454,230 records       7,100,000 text fields          78,225,065 entries
    ERROR  07/03/14 07:43:47.086 UTC (1404373427086)        DGIDX   {dgidx,baseline}               Property detected with an empty or NULL name while parsing binary records. Properties without names are not allowed in this system.        
    ERROR  07/03/14 07:43:47.086 UTC (1404373427086)        DGIDX   {dgidx,baseline}               Error parsing the record property name   
    ERROR  07/03/14 07:43:47.086 UTC (1404373427086)        DGIDX   {dgidx,baseline}               Error parsing record property.   
    ERROR  07/03/14 07:43:47.086 UTC (1404373427086)        DGIDX   {dgidx,baseline}               Error reading record properties.               
    ERROR  07/03/14 07:43:47.086 UTC (1404373427086)        DGIDX   {dgidx,baseline}               XMLParser: failed to read record data      
    ERROR  07/03/14 07:43:47.117 UTC (1404373427110)        DGIDX   {dgidx,baseline}               XMLParser: failed to read records                
    FATAL   07/03/14 07:43:47.117 UTC (1404373427110)        DGIDX   {dgidx,baseline}               Binary record parsing of file 'C:\Endeca\Apps\liveISMEen\data\forge_output\\SDGen-sgmt0.records.binary' unsuccessful.
    The baseline log contains this info ...
    Jul 3, 2014 8:43:54 AM com.endeca.soleng.eac.toolkit.script.Script runBeanShellScript
    SEVERE: Batch component 'Dgidx' failed. Refer to component logs in C:\Endeca\Apps\liveISMEen\config\script\..\..\.\logs\dgidxs\Dgidx on host ITLHost.
    Occurred while executing line 81 of valid BeanShell script:
    78|        Forge.archiveLogDir();
    79|        Forge.run();
    80|        Dgidx.archiveLogDir();
    81|        Dgidx.run();
    82|       
    83|        // distributed index, update Dgraphs
    84|        DistributeIndexAndApply.run();
    Jul 3, 2014 8:43:54 AM com.endeca.soleng.eac.toolkit.Controller execute
    SEVERE: Caught an exception while invoking method 'run' on object 'BaselineUpdate'. Releasing locks.
    java.lang.reflect.InvocationTargetException
                    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 com.endeca.soleng.eac.toolkit.Controller.invokeRequestedMethod(Controller.java:923)
                    at com.endeca.soleng.eac.toolkit.Controller.execute(Controller.java:208)
                    at com.endeca.soleng.eac.toolkit.Controller.main(Controller.java:87)
    Caused by: com.endeca.soleng.eac.toolkit.exception.AppControlException: Error executing valid BeanShell script.
                    at com.endeca.soleng.eac.toolkit.script.Script.runBeanShellScript(Script.java:132)
                    at com.endeca.soleng.eac.toolkit.script.Script.run(Script.java:80)
                    ... 7 more
    Caused by: com.endeca.soleng.eac.toolkit.exception.EacComponentControlException: Batch component  'Dgidx' failed. Refer to component logs in C:\Endeca\Apps\liveISMEen\config\script\..\..\.\logs\dgidxs\Dgidx on host ITLHost.
                    at com.endeca.soleng.eac.toolkit.component.BatchComponent.run(BatchComponent.java:77)
                    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 bsh.Reflect.invokeMethod(Unknown Source)
                    at bsh.Reflect.invokeObjectMethod(Unknown Source)
                    at bsh.Name.invokeMethod(Unknown Source)
                    at bsh.BSHMethodInvocation.eval(Unknown Source)
                    at bsh.BSHPrimaryExpression.eval(Unknown Source)
                    at bsh.BSHPrimaryExpression.eval(Unknown Source)
                    at bsh.BSHBlock.evalBlock(Unknown Source)
                    at bsh.BSHBlock.eval(Unknown Source)
                    at bsh.BSHBlock.eval(Unknown Source)
                    at bsh.BSHIfStatement.eval(Unknown Source)
                    at bsh.Interpreter.eval(Unknown Source)
                    at bsh.Interpreter.eval(Unknown Source)
                    at bsh.Interpreter.eval(Unknown Source)
                    at com.endeca.soleng.eac.toolkit.script.Script.runBeanShellScript(Script.java:118)
                    ... 8 more

    Have looked at a similar discussion https://community.oracle.com/thread/3555623
    And we too have just created a 1Gb file for the first time. We dont have any new versions of the MDEX or Platform Services that could cause incompatibility issues.
    Our baseline is failing in our staging environment
    the Dgidx log contains these error details ...
    Property["thisSite"]: Value[000000001C84D350] "KANDCO"
    Rec 402,011 records       6,300,000 text fields          69,150,465 entries
    Rec 408,797 records       6,400,000 text fields          69,907,942 entries
    .Rec 415,471 records       6,500,000 text fields          70,825,125 entries
    Rec 422,047 records       6,600,000 text fields          71,903,843 entries
    Rec 427,876 records       6,700,000 text fields          73,110,468 entries
    Rec 433,626 records       6,800,000 text fields          74,279,227 entries
    Rec 440,450 records       6,900,000 text fields          75,340,092 entries
    Rec 447,388 records       7,000,000 text fields          76,817,152 entries
    Rec 454,230 records       7,100,000 text fields          78,225,065 entries
    ERROR  07/03/14 07:43:47.086 UTC (1404373427086)        DGIDX   {dgidx,baseline}               Property detected with an empty or NULL name while parsing binary records. Properties without names are not allowed in this system.        
    ERROR  07/03/14 07:43:47.086 UTC (1404373427086)        DGIDX   {dgidx,baseline}               Error parsing the record property name   
    ERROR  07/03/14 07:43:47.086 UTC (1404373427086)        DGIDX   {dgidx,baseline}               Error parsing record property.   
    ERROR  07/03/14 07:43:47.086 UTC (1404373427086)        DGIDX   {dgidx,baseline}               Error reading record properties.               
    ERROR  07/03/14 07:43:47.086 UTC (1404373427086)        DGIDX   {dgidx,baseline}               XMLParser: failed to read record data      
    ERROR  07/03/14 07:43:47.117 UTC (1404373427110)        DGIDX   {dgidx,baseline}               XMLParser: failed to read records                
    FATAL   07/03/14 07:43:47.117 UTC (1404373427110)        DGIDX   {dgidx,baseline}               Binary record parsing of file 'C:\Endeca\Apps\liveISMEen\data\forge_output\\SDGen-sgmt0.records.binary' unsuccessful.
    The baseline log contains this info ...
    Jul 3, 2014 8:43:54 AM com.endeca.soleng.eac.toolkit.script.Script runBeanShellScript
    SEVERE: Batch component 'Dgidx' failed. Refer to component logs in C:\Endeca\Apps\liveISMEen\config\script\..\..\.\logs\dgidxs\Dgidx on host ITLHost.
    Occurred while executing line 81 of valid BeanShell script:
    78|        Forge.archiveLogDir();
    79|        Forge.run();
    80|        Dgidx.archiveLogDir();
    81|        Dgidx.run();
    82|       
    83|        // distributed index, update Dgraphs
    84|        DistributeIndexAndApply.run();
    Jul 3, 2014 8:43:54 AM com.endeca.soleng.eac.toolkit.Controller execute
    SEVERE: Caught an exception while invoking method 'run' on object 'BaselineUpdate'. Releasing locks.
    java.lang.reflect.InvocationTargetException
                    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 com.endeca.soleng.eac.toolkit.Controller.invokeRequestedMethod(Controller.java:923)
                    at com.endeca.soleng.eac.toolkit.Controller.execute(Controller.java:208)
                    at com.endeca.soleng.eac.toolkit.Controller.main(Controller.java:87)
    Caused by: com.endeca.soleng.eac.toolkit.exception.AppControlException: Error executing valid BeanShell script.
                    at com.endeca.soleng.eac.toolkit.script.Script.runBeanShellScript(Script.java:132)
                    at com.endeca.soleng.eac.toolkit.script.Script.run(Script.java:80)
                    ... 7 more
    Caused by: com.endeca.soleng.eac.toolkit.exception.EacComponentControlException: Batch component  'Dgidx' failed. Refer to component logs in C:\Endeca\Apps\liveISMEen\config\script\..\..\.\logs\dgidxs\Dgidx on host ITLHost.
                    at com.endeca.soleng.eac.toolkit.component.BatchComponent.run(BatchComponent.java:77)
                    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 bsh.Reflect.invokeMethod(Unknown Source)
                    at bsh.Reflect.invokeObjectMethod(Unknown Source)
                    at bsh.Name.invokeMethod(Unknown Source)
                    at bsh.BSHMethodInvocation.eval(Unknown Source)
                    at bsh.BSHPrimaryExpression.eval(Unknown Source)
                    at bsh.BSHPrimaryExpression.eval(Unknown Source)
                    at bsh.BSHBlock.evalBlock(Unknown Source)
                    at bsh.BSHBlock.eval(Unknown Source)
                    at bsh.BSHBlock.eval(Unknown Source)
                    at bsh.BSHIfStatement.eval(Unknown Source)
                    at bsh.Interpreter.eval(Unknown Source)
                    at bsh.Interpreter.eval(Unknown Source)
                    at bsh.Interpreter.eval(Unknown Source)
                    at com.endeca.soleng.eac.toolkit.script.Script.runBeanShellScript(Script.java:118)
                    ... 8 more

  • Failed to save library - an Unknown Error Occurred

    I have iTunes 10.7.0.24 running on a Windows 7 64bit (Dual 3.07Ghz 2GB RAM) VM. My library has 18,376 songs, 636 movies, 2,328 TV Shows, and 194 apps. iTunes is providing content to 3 Apple TV's, 3 iPhones, 1 iPad, and 1 iPod.  Occasionally(several times a year), when adding or deleting content I see the message 'Failed to Save Library - an unknown error has occurred'.  When this happens the iTunes process is generally using around 400-500MB of memory. The system always has at least 1GB of available memory (above that being used by the system and iTunes). The computer does nothing else except run iTunes.  If I restart iTunes memory consumption drops to around 120MB. So far I have not found any errors (i.e. files I added are there and files I deleted are gone).. I currently have 933GB of free space on the disk storing the files and library. There are no backup processes running on the PC (Backups are timed to occur at night when the system is idle and are processed by a server that hosts the iTunes Media disk). I am using Microsoft Security Essentials on the PC. The network connection between the iTunes PC and Server hosting the media disk is 10GB (sic).
    Does anyone else see this error or know what could be causing it?  My current thinking is the problem is updating the library XML file (currently just over 33MB).

    Use the Rebuild command. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.

  • Portal failed to access remote resource due to network failures

    Hi,
    We have a portlet that allows users to upload files to a SQL Server database and make it available for other users to access. The portlet code is on our remote servers. Everything works fine in dev environment, but certain files fail in pre-prod and prod within the portal, but work fine when the code is executed outside the portal.
    I keep getting this error:
    Error - Portal failed to access remote resource due to network failures. Try again later or contact your portal administrator.     
    What could the problem be?
    Thank you for your help.
    Rad

    If the Studio service looks good on the remote server where Studio is installed (check that
    the service is started and look in the Studio logs for any warnings or errors), you should
    also verify the configuration settings in the Studio remote server object. Is it properly
    configured and pointing to the correct remote server?
    If so, check the portal servers access to the Studio server via the port specified in the remote
    server (default is 11935). You can test this by doing a telnet test on the portal server. In a cmd
    prompt (Windows) or on the CLI (Unix), type 'telnet [studioserver] 11935', where "<servername> is
    the name of your Studio remote server. The screen should just go blank, meaning that there is
    something accepting connections on that port on the given server. (We would hope it's the Studio
    app and not another service occupying that port.) If you get "Could not open connection to the host"
    or some such similar result, check that the network between the portal and the Studio remote server
    is open (ie, make sure there isn't any port blocking or a firewall in place that would hinder the
    communication between the two servers).

  • T61 DVD/CD-RW drive fails to read and crashes

    Hello Everyone, I hope people still visit this area of the forums!
    I've highlighted and bolded the symptoms to make them easier to find.
    I recently purchased a T61 6457-C15 on eBay, and have been in the proccess of setting up and customizing it to suit my tastes. When I recieved the laptop, it looked as though Windows had been restored to original factory state, plus some free software, so I proceeded under that assumption. First I used Windows Update to download all the updates that it could find including IE8. I wanted to have an anti-virus program running on my computer before I used a browser to access the internet. I ran IE8 and went straight to the Microsoft Security Essentials website and downloaded the Install program. At this point I tried to remove the pre-installed and expired Norton Internet Security using the built-in uninstall, but it failed. A message box popped saying that I needed to put the Norton installation disc in the CD-ROM drive so that the uninstall program could find a Norton support file. My computer did not come with any discs, but my mothe had bought Norton 2008, so I took that disc and put it in the drive. The drive started spinning right away, and the uninstall program found the file it was looking for in a few seconds. The support file directed me to the Norton website to get their removal tool, which removed Norton from my system in short order. Afterwards, I ran the Microsoft Security Essentials install program and got MSE running on my computer before doing anything else.
    Then I went to the Lenovo support website and had it auto-detect my system. That took me to the support page for my system, where I went to the "Downloads and Drivers" page. I downloaded Access Connections and ThinkVantage Toolbox for Vista 32-bit (my OS is Vista Business 32-bit). I then used Lenovo System Update to retrieve all the updates it deemed neccessary from Lenovo, including those for itself and system components, both software and firmware. There were 35 or more updates suggested, and I trusted the software, so I started downloading them all. I'm not sure, but I think that a DVD/CD-RW drive update was included in the list, but I can't remember if it was auxiliary software, drivers or firmware. After Lenovo System Update was convinced that it had all the neccessary updates, I downloaded Revo Uninstaller and set about removing uneccassary and unwanted programs from my computer and trimming the startup list. I did not touch any Windows or ThinkVantage components, and I searched each program online, so I'm sure that I did not delete or disable any drivers or system files, or anything from Lenovo. I mainly removed Apple products and non-functional software from my system, including an integrated camera driver (my system does not have an integrated camera) and third-party programs that were already missing files or otherwise inoperable when I got my computer. Up to this point I had been using a gigabit ethernet connection to download software; I had not used the DVD/CD-RW drive except for the one time I specified earlier.
    Now that I had my system set up to my liking, including personalization and power settings, I started to install my first program: Command & Conquer the First Decade from a DVD-ROM. When I put the disc in the drive and closed it, it took a few seconds for the drive to spin up, and once it did, it was constantly running at high speed and I could hear the reader constantly moving back and forth quickly. After a few minutes the disc's install menu finally appeared, so I clicked on the install button. I waited several minutes but nothing happened, so I tried to view the contents of the drive by going to My Computer > DVD/CD-RW drive (D, right clicking and selecting explore from the menu options. When I did that, the address bar of the My Computer window started to fill up with a dark gray progress bar and said "loading (D", I think with the drive or disc name after it. After it took several minutes to fill completely, nothing happened. I waited a few more minutes to see if anything would change, (nothing did,) I clicked on the X button in the top right corner of the window to close it. A few minutes and clicks later, the My Computer window was labeled as (not responding), and the window itself became grayed-out. I started Task Manager and tried to close the My Computer window, but the entire Windows Desktop disappeared along with it, saying that it would attempt to restart. Even Task Manager became non-responsive and quit after closing My Computer. After a few minutes of staring at my background (and nothing else), I ejected the disc, and Windows Desktop reappeared immediately and acted as if nothing had ever been wrong.
    I checked Device Manager, but neither the DVD/CD-RW drive nor any of the ATA controllers were flagged; in fact they all said they were working properly with up-to-date drivers. I ran the ThinkVantage Toolbox diagnostics on the drive using a data CD, a music CD and a different DVD-ROM, but in each case the drive failed the tests and a message box popped-up saying that the discscould not be read because they were scratched or there was a hardware problem. I checked the discs both before I put them in and after I took them out, and they were not scratched; also, all of the discs are publisher-manufactured from a software or music company. I restarted my computer, booted the Rescue and Recovery option and Ran PC-Doctor from there. I ran the same drive read tests with the same failure results. The entire time the drive was behaving the same way it had when it first failed to read a disc. Next I removed and cleaned the drive both inside and out with a can of compressed air; I also cleaned the ultrabay itself. Finally I tried fixing the problem with Microsoft Fix It, but when it automatically ejected the drive and i put a disc in, the disc became trapped in the drive and Windows froze up like before. I had to restart Windows twice (once with a BSOD) in order to get the disc out. When the disc was removed the computer went back to normal operation once again.
    Please help me, my DVD/CD-RW drive is a Matshi ta UJDA775, my operating system is Windows Vista Business and my T61's model number is 6457-C15. I have tried all the troubleshooting fixes and none have worked. I have tried updating drivers and using diagnostic software and they have not worked. I have tried disabling drag-to-disc burning and it has not worked. I have treid removing and cleaning the drive and that has not solved my problem. I did notice that the driver for the "Intel(R) ICH8M-E/M SATA AHCI controller" is the only related driver that can be rolled back, so maybe that might fix it. I'm also wondering if a firmware change caused this, and if so, if there is any way I can undo that. The only other fix I've heard of that I haven't tried is editing the registry, but I'm hesitant to do that. I haven't tried booting from the CD drive because I have no bootable CDs and I'm worried that my computer might get stuck in that mode. I'm hoping that someone can tell me what I can do to try to fix this problem, preferably without wrecking my computer. Thank you for taking the time to read my post.
    P.S. Just adding a note; I went through both the Microsoft and Lenovo Update histories and the only related updates I could find were: ThinkPad BIOS update, Easy Eject utility, Intel Matrix Storager Manager driver for Windows (32-bit), and maybe one of the two Intel Chipset Support for Vista updates. I tried rolling back the AHCI driver but it had no effect.
    Solved!
    Go to Solution.

    Well, my problem is fixed, and here's how. I had some trouble figuring out how to contact Lenovo technical support; online options directed me to the IBM support website, which was clearly designed for businesses. Selecting the "Call technical support" option on the Lenovo support website and then choosing my country gave me a 24/7 hotline number. After waiting about five minutes on hold, a nice young fellow by the name of "Tyrese" answered (I maybe misspelling his name), but the connection was so bad that we could barely hear each other. Although he semed eager to help, when I told him my problem the first things he suggested were simple, like cleaning the drive, However, when I told him all of my efforts, described above, to fix the problem myself and read him the log from the Rescue and Recovery diagnostic program, after he checked the error codes against his computer database he promptly replied that the only fix was to send out a new drive. I was happy to have gotten such a successful resolution to a support call in less than fifteen minutes; apparently, all the work I had done trying to solve the problem myself had paid off in a way. Unfortunately, although I had tried to spell out my address for him, some of it got left off of the address label, which caused some trouble in receiving the new drive. Once I got it, I installed it using the uninstall & remove (old drive), shut down, start up, insert & install (new drive) method that I referenced earlier in this topic. I've been using the new drive since then without any trouble, so I guess that the only fix was to replace the drive. Also, I noticed that the new drive was a Hitachi, perhaps a T400/410 or T500/510 Ultrabay Slim drive, which should help me avoid the problems that other users were having with the older Matshi-ta drives. I hope this description helps anyone else having a problem with the optical drives on the T61/61p.

  • Failed to read WSDL - connectException and unknownHostException

    Hi Guys,
    I am starting out with a new installation of SOA Suite 10g on my local windows machine.
    I've tested out a simple BPEL process deployment and all works fine.
    My next step is to test an Invoke of an external webservice: http://www.w3schools.com/webservices/tempconvert.asmx?WSDL
    Initially I had to setup proxy of my Jdev installation to get JDev to look at this WSDL (could not validate the WSDL without this):
    Proxy: 10.176.227.40
    Port: 8080
    Exceptions: |D701341|d701341|localhost
    But when I tried to deploy the BPEL process from jDev, I got an UnknownHostException:
    BUILD FAILED
    C:\jdev10g\jdev\mywork\NetworkRailSHLApplication\Pilot2\build.xml:78: A problem occured while connecting to server "localhost" using port "8888": bpel_Pilot2_1.0.jar failed to deploy. Exception message is: ORABPEL-05215
    Error while loading process.
    The process domain encountered the following errors while loading the process "Pilot2" (revision "1.0"): Failed to read wsdl.
    Error happened when reading wsdl at "C:\soa10gdemo\bpel\domains\default\tmp\.bpel_Pilot2_1.0_e0b22fe325615e2ac6bf1710ef089616.tmp\ExternalWS.wsdl", because "Error reading import of file:/C:/soa10gdemo/bpel/domains/default/tmp/.bpel_Pilot2_1.0_e0b22fe325615e2ac6bf1710ef089616.tmp/ExternalWS.wsdl: Failed to read wsdl file at: "http://www.w3schools.com/webservices/tempconvert.asmx?WSDL", caused by: java.net.UnknownHostException. : www.w3schools.com: www.w3schools.com".
    Make sure wsdl exists at that URL and is valid.
    After searching a bit on the forums, found out that I might have to fiddle with my HOSTS file: C:\WINNT\system32\drivers\etc\hosts
    I added the following line to my hosts file:
    127.0.0.1 localhost
    216.128.29.26     www.w3schools.com
    This time when I tried to deploy the same process, got a ConnectException:
    BUILD FAILED
    C:\jdev10g\jdev\mywork\NetworkRailSHLApplication\Pilot2\build.xml:78: A problem occured while connecting to server "localhost" using port "8888": bpel_Pilot2_1.0.jar failed to deploy. Exception message is: ORABPEL-05215
    Error while loading process.
    The process domain encountered the following errors while loading the process "Pilot2" (revision "1.0"): Failed to read wsdl.
    Error happened when reading wsdl at "C:\soa10gdemo\bpel\domains\default\tmp\.bpel_Pilot2_1.0_e0b22fe325615e2ac6bf1710ef089616.tmp\ExternalWS.wsdl", because "Error reading import of file:/C:/soa10gdemo/bpel/domains/default/tmp/.bpel_Pilot2_1.0_e0b22fe325615e2ac6bf1710ef089616.tmp/ExternalWS.wsdl: Failed to read wsdl file at: "http://www.w3schools.com/webservices/tempconvert.asmx?WSDL", caused by: java.net.ConnectException. : Connection timed out: connect".
    Make sure wsdl exists at that URL and is valid.
    I can visit view WSDL from my Internet Explorer with the same proxy config as mentioned above.
    I am not sure how do I get my local SOA Suite to talk to the external web service.
    Could someone point me in the right direction please?
    Thanks,
    Ravi

    I am also facing the similar kind of issue. Please suggest a solution

  • Curve 8310 fails to read microSD card

    Greetings,
    I bought a Blackberry Curve 8310 last summer and it worked fine until November of last year when the phone failed to read my Micro SD media card. Thinking the media card was the problem, I have bought a new media card a few months ago to try fixing the problem. The problem still persists and I need help getting this fixed.
    I currently use Blackberry 4.5 Device OS. Under Options in the phone's menu:
    Media card support: on
    Encryption mode: none
    Mass storage mode support: on
    Auto enable MSM when connected: Yes
    Total space: 1.8 GB
    Free Space: 1.4 GB.
    This means the phone knows I have a media card but just cannot read it. For pictures, only the pictures I saved onto the microSD card using my computer can be seen, but pictures I took using the phone doesn't show up. When taking pictures, the camera indicates "File system out of resources". For music, all the music is visible, but when trying to play the songs, it doesn't do anything.
    I have tried everything from turning off/on the phone, removing the battery to do a hard reset, not downloading any applications to see if they were the cause, and formatting the media card for blackberry use. I have even reformatted the phone 5 to 6 times and installed a clean new OS onto the phone and the problem is still there. The only short-term solution I found in fixing this problem is when using the Desktop Manager to backup my data on the phone. After backing up the data, the phone will recognize my media card and I can access it fine for about 2 to 3 days. Then the phone fails again and I have to keep backing up my data to get my phone to work. Now I am very tired of repeating this process. Either I get a long-term solution or I need a new phone (I believe I still have warrenty).
    The phone is great but this problem is getting on my nerves. Someone please help me!

    Hi and Welcome to the Forums!
    From everything you've described, you've done everything possible. Hence, I recommend you seek out your warranty support.
    Good luck and let us know.
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • CAF Authorization Tool - failed to read ObjectTypes

    Hi everybody,
    We are facing a problem with the CAF Authorization Tool.
    In the screen it says:
    "failed to read ObjectTypes: Unexpected exception occured while trying to load all deployed CAF projects. CAF cannot recover from this situation. See the trace for more details."
    In the default trace we found that the bimmrejb application is failing to start as shown inn the following traces:
    Cannot activate endpoint for message-driven bean sap.com/bimmrejbxml|sap.combisobi~modelfactory_ejb.jarxml|RequestListener
    com.sap.engine.services.deploy.container.DeploymentException: Cannot activate endpoint for message-driven bean sap.com/bimmrejbxml|sap.combisobi~modelfactory_ejb.jarxml|RequestListener
    at com.sap.engine.services.ejb3.container.ContainerInterfaceImpl$Actions.perform(ContainerInterfaceImpl.java:903)
    at com.sap.engine.services.ejb3.container.ContainerInterfaceImpl.prepareStart(ContainerInterfaceImpl.java:435)
    at com.sap.engine.services.deploy.server.utils.container.ContainerWrapper.prepareStart(ContainerWrapper.java:363)
    at com.sap.engine.services.deploy.server.application.StartTransaction.prepareCommon(StartTransaction.java:254)
    at com.sap.engine.services.deploy.server.application.StartTransaction.prepare(StartTransaction.java:212)
    at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:502)
    at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesImpl(ParallelAdapter.java:483)
    at com.sap.engine.services.deploy.server.application.StartTransaction.makeAllPhasesImpl(StartTransaction.java:587)
    at com.sap.engine.services.deploy.server.application.ParallelAdapter.runMe(ParallelAdapter.java:180)
    at com.sap.engine.services.deploy.server.application.ParallelAdapter.access$000(ParallelAdapter.java:43)
    at com.sap.engine.services.deploy.server.application.ParallelAdapter$1.run(ParallelAdapter.java:340)
    at com.sap.engine.frame.core.thread.Task.run(Task.java:73)
    at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:162)
    at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:260)
    Caused by: com.sap.engine.services.ejb3.container.ActionException: Cannot activate endpoint for message-driven bean sap.com/bimmrejbxml|sap.combisobi~modelfactory_ejb.jarxml|RequestListener
    at com.sap.engine.services.ejb3.runtime.impl.Actions_MDBEndpointActivation.perform(Actions_MDBEndpointActivation.java:103)
    at com.sap.engine.services.ejb3.container.CompositeAction.perform(CompositeAction.java:81)
    at com.sap.engine.services.ejb3.container.ApplicationStarter.perform(ApplicationStarter.java:59)
    at com.sap.engine.services.ejb3.container.ContainerInterfaceImpl$Actions.perform(ContainerInterfaceImpl.java:897)
    ... 13 more
    Caused by: javax.resource.ResourceException: No suitable ResourceAdapter has been found for message listener type 'javax.resource.cci.MessageListener'
    at com.sap.engine.services.connector.jca15.EndpointActivationImpl.findResourceAdapterByMessageListenerType(EndpointActivationImpl.java:320)
    at com.sap.engine.services.connector.jca15.EndpointActivationImpl.findAdapter(EndpointActivationImpl.java:88)
    at com.sap.engine.services.connector.jca15.EndpointActivationImpl.activateEndpoint(EndpointActivationImpl.java:59)
    at com.sap.engine.services.ejb3.runtime.impl.Actions_MDBEndpointActivation.perform(Actions_MDBEndpointActivation.java:95)
    ... 16 more
    ERROR CODE DPL.DS.5029] Exception in operation with application sap.com/bi~mmr~ejb.
    com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Exception in operation with application sap.com/bi~mmr~ejb.
    at com.sap.engine.services.deploy.server.application.ApplicationTransaction.rollbackPart(ApplicationTransaction.java:619)
    at com.sap.engine.services.deploy.server.application.StartTransaction.rollbackPart(StartTransaction.java:656)
    at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:506)
    at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesImpl(ParallelAdapter.java:483)
    at com.sap.engine.services.deploy.server.application.StartTransaction.makeAllPhasesImpl(StartTransaction.java:587)
    at com.sap.engine.services.deploy.server.application.ParallelAdapter.runMe(ParallelAdapter.java:180)
    at com.sap.engine.services.deploy.server.application.ParallelAdapter.access$000(ParallelAdapter.java:43)
    at com.sap.engine.services.deploy.server.application.ParallelAdapter$1.run(ParallelAdapter.java:340)
    at com.sap.engine.frame.core.thread.Task.run(Task.java:73)
    at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:162)
    at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:260)
    Caused by: com.sap.engine.services.deploy.container.DeploymentException: Cannot activate endpoint for message-driven bean sap.com/bimmrejbxml|sap.combisobi~modelfactory_ejb.jarxml|RequestListener
    at com.sap.engine.services.ejb3.container.ContainerInterfaceImpl$Actions.perform(ContainerInterfaceImpl.java:903)
    at com.sap.engine.services.ejb3.container.ContainerInterfaceImpl.prepareStart(ContainerInterfaceImpl.java:435)
    at com.sap.engine.services.deploy.server.utils.container.ContainerWrapper.prepareStart(ContainerWrapper.java:363)
    at com.sap.engine.services.deploy.server.application.StartTransaction.prepareCommon(StartTransaction.java:254)
    at com.sap.engine.services.deploy.server.application.StartTransaction.prepare(StartTransaction.java:212)
    at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:502)
    ... 8 more
    Caused by: com.sap.engine.services.ejb3.container.ActionException: Cannot activate endpoint for message-driven bean sap.com/bimmrejbxml|sap.combisobi~modelfactory_ejb.jarxml|RequestListener
    at com.sap.engine.services.ejb3.runtime.impl.Actions_MDBEndpointActivation.perform(Actions_MDBEndpointActivation.java:103)
    at com.sap.engine.services.ejb3.container.CompositeAction.perform(CompositeAction.java:81)
    at com.sap.engine.services.ejb3.container.ApplicationStarter.perform(ApplicationStarter.java:59)
    at com.sap.engine.services.ejb3.container.ContainerInterfaceImpl$Actions.perform(ContainerInterfaceImpl.java:897)
    ... 13 more
    Caused by: javax.resource.ResourceException: No suitable ResourceAdapter has been found for message listener type 'javax.resource.cci.MessageListener'
    at com.sap.engine.services.connector.jca15.EndpointActivationImpl.findResourceAdapterByMessageListenerType(EndpointActivationImpl.java:320)
    at com.sap.engine.services.connector.jca15.EndpointActivationImpl.findAdapter(EndpointActivationImpl.java:88)
    at com.sap.engine.services.connector.jca15.EndpointActivationImpl.activateEndpoint(EndpointActivationImpl.java:59)
    at com.sap.engine.services.ejb3.runtime.impl.Actions_MDBEndpointActivation.perform(Actions_MDBEndpointActivation.java:95)
    ... 16 more
    EndpointActivationImpl.findResourceAdapterByMessageListenerType, Activate: true, MessageListenerType: 'javax.resource.cci.MessageListener', MessageEndpointFactory: com.sap.engine.services.ejb3.runtime.impl.MessageEndpointFactoryImpl@17f3760f, Error: 
    javax.resource.ResourceException: No suitable ResourceAdapter has been found for message listener type 'javax.resource.cci.MessageListener'
    at com.sap.engine.services.connector.jca15.EndpointActivationImpl.findResourceAdapterByMessageListenerType(EndpointActivationImpl.java:320)
    at com.sap.engine.services.connector.jca15.EndpointActivationImpl.findAdapter(EndpointActivationImpl.java:88)
    at com.sap.engine.services.connector.jca15.EndpointActivationImpl.activateEndpoint(EndpointActivationImpl.java:59)
    at com.sap.engine.services.ejb3.runtime.impl.Actions_MDBEndpointActivation.perform(Actions_MDBEndpointActivation.java:95)
    at com.sap.engine.services.ejb3.container.CompositeAction.perform(CompositeAction.java:81)
    at com.sap.engine.services.ejb3.container.ApplicationStarter.perform(ApplicationStarter.java:59)
    at com.sap.engine.services.ejb3.container.ContainerInterfaceImpl$Actions.perform(ContainerInterfaceImpl.java:897)
    at com.sap.engine.services.ejb3.container.ContainerInterfaceImpl.prepareStart(ContainerInterfaceImpl.java:435)
    at com.sap.engine.services.deploy.server.utils.container.ContainerWrapper.prepareStart(ContainerWrapper.java:363)
    at com.sap.engine.services.deploy.server.application.StartTransaction.prepareCommon(StartTransaction.java:254)
    at com.sap.engine.services.deploy.server.application.StartTransaction.prepare(StartTransaction.java:212)
    at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:502)
    at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesImpl(ParallelAdapter.java:483)
    at com.sap.engine.services.deploy.server.application.StartTransaction.makeAllPhasesImpl(StartTransaction.java:587)
    at com.sap.engine.services.deploy.server.application.ParallelAdapter.runMe(ParallelAdapter.java:180)
    at com.sap.engine.services.deploy.server.application.ParallelAdapter.access$000(ParallelAdapter.java:43)
    at com.sap.engine.services.deploy.server.application.ParallelAdapter$1.run(ParallelAdapter.java:340)
    at com.sap.engine.frame.core.thread.Task.run(Task.java:73)
    at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:162)
    at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:260)
    We tried to stop and restart the application via NWA (in Start & Stop: Java EE Applications) but it doesn´t start.
    All referenced Applications, Interfaces, Libraries and Services are started.
    Looking up on SDN didn't help us.
    Any ideas ?
    Thanks,
    Daniel

    Hi Steffen,
    We didn't find a good solution, we just undeployed and redeployed all our DCs and it worked but this is not a serious solution.
    We posted several CAF issues and got no replies, it seems that not much people is using CAF or not people knows anything about this technology. As a result of this we are thinking about using another mid-layer framework for persistance and intermediate business logic.
    Regards,
    Daniel.

  • *** ERROR = Connect to database failed, rc = -4008 (POS(1) Unknown user na

    Hello
    I have just finished a dbcopy of Maxdb 7.6  to a new system with initilization.i can bring the db online. I have  ran the xuser command to fix the db users as below command as per note 39439
    i changed them in home dir of sidadm,sqdsid
                          xuser -U DEFAULT -u SAP<SID>,<password> -d <database_name> -n <database_server> -S SAPR3 -t 0 -I 0 set
    c) DBM user: for example, CONTROL.
                           xuser -U c -u CONTROL,<password> -d <database_name> -n <database_server> -S INTERNAL set
    d) SYSDBA user: for example, SUPERDBA.
                           xuser -U w -u SUPERDBA,<password> -d <database_name> -n <database_server> -S INTERNAL set 
    But iam having the below error now when trying to bring the SAP system up in dev_w0
    C  Try to connect (DEFAULT) onconnection 0 ...
    C
    C Mon Dec 19 21:46:11 2011
    C  *** ERROR => Connect to database failed, rc = -4008 (POS(1) Unknown user name/password combinati
    on)
    [dbsdbsql.cpp 137]
    B  ***LOG BY2=> sql error -4008  performing CON [dbsh#3 @ 1208] [dbsh    1208 ]
    B  ***LOG BY0=> POS(1) Unknown user name/password combination [dbsh#3 @ 1208] [dbsh    1208 ]
    B  ***LOG BY2=> sql error -4008  performing CON [dblink#8 @ 433] [dblink  0433 ]
    B  ***LOG BY0=> POS(1) Unknown user name/password combination [dblink#8 @ 433] [dblink  0433 ]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1537]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10837]
    M
    is there something  that i missed somewhere?
    Any ideas welcome

    erpsyscs1:cs1adm 46> xuser list
    XUSER Entry  1
    Key         :DEFAULT
    Username    :SAPCS1
    UsernameUCS2:S.A.P.C.S.1. . . . . . . . . . . . . . . . . . . . . . . . . . .
    Password    :?????????
    PasswordUCS2:?????????
    Dbname      :CS1
    Nodename    :erpsyscs1
    Sqlmode     :SAPR3
    Cachelimit  :-1
    Timeout    
    Isolation  
    Charset     :<unspecified>
    XUSER Entry  2
    Key         :c
    Username    :CONTROL
    UsernameUCS2:C.O.N.T.R.O.L. . . . . . . . . . . . . . . . . . . . . . . . . .
    Password    :?????????
    PasswordUCS2:?????????
    Dbname      :CS1
    Nodename    :erpsyscs1
    Sqlmode     :INTERNAL
    Cachelimit  :-1
    Timeout     :-1
    Isolation   :-1
    Charset     :<unspecified>
    XUSER Entry  3
    Key         :c_J2EE
    Username    :CONTROL
    UsernameUCS2:C.O.N.T.R.O.L. . . . . . . . . . . . . . . . . . . . . . . . . .
    Password    :?????????
    PasswordUCS2:?????????
    Dbname      :CS1
    Nodename    :erpsyscs1
    Sqlmode     :SAPR3
    Cachelimit  :-1
    Timeout    
    Isolation  
    Charset     :<unspecified>
    XUSER Entry  4
    Key         :w
    Username    :SUPERDBA
    UsernameUCS2:S.U.P.E.R.D.B.A. . . . . . . . . . . . . . . . . . . . . . . . .
    Password    :?????????
    PasswordUCS2:?????????
    Dbname      :CS1
    Nodename    :erpsyscs1
    Sqlmode     :INTERNAL
    Cachelimit  :-1
    Timeout     :-1
    Isolation   :-1
    Charset     :<unspecified>

  • Check in failed. Read timed out

    Hi,
    When I finished checking in an activity,I got an failed message:
    Failed to execute operations.Communication error[[cause:Read timed out]] at 09:34:32.550
    How to deal with it?
    Regards,
    Abe

    Hi,
    You are right. Still, if you checkin or activate something, then a build takes place. In your case this is not possible due to some kind of timeout, I wanted to see some details why.
    Perhaps it also makes sense to switch on some client side tracing as well. For this. please see the note:
    #751640 - How To Configure Logging For NWDI Developer Studio
    Best Regards,
    Ervin
    Edited by: Ervin Szolke on Sep 13, 2010 12:31 PM

  • Failed to read/update the registry for the BO XI R2 Critical Hot Fix

    We are trying to apply service pack 4 for the BO XI R2 Sp4 for SAP Integration Kits and received the following error message during install and unable to proceed:
    "Failed to read/update the registry for the BO XI R2 Critical Hot Fix for Partner Integration Kits"
    We had applied a Critical Hot Fix about one week ago and it might be causing the error. How do we uninstall the Critical Hot Fix if it is indeed causing the problem?
    Additionally, we have uninstalled the Integration Kit and reinstalled it hoping it will solve the problem but it didn't.
    Any help will be greatly appreciated.
    Thanks.

    Please post this query to the Business Objects Enterprise Administration forum:
    BI Platform
    That forum is monitored by qualified technicians and you will get a faster response there. Also, all BOE queries remain in one place and thus can be easily searched in one place.
    Thank you for your understanding,
    Ludek

  • (Failed to read from channel: -1)

    Hi,
    I get an error Failed to read from channel: -1 when I try and connect to my company server using the Remote Desktop MAC OS X client. It appears that I am actually communicating with my companies server as I did get asked if I recognised
    the security certificate but I get this message shortly after. I can't seem to find anything on it on the Web so could do with some assistance.
    If anyone wants further information or want's me to create a log (and knows how to direct me) then I will do.
    Thanks,
    virka

    Same problem here. I can't figure out why i get this error
    Log file:
    [2014-Apr-16 12:07:59] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-16 12:07:59] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-16 12:07:59] RDP (0): Server supports RAIL
    [2014-Apr-16 12:08:00] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-16 12:08:42] RDP (0): Server hides cursor
    [2014-Apr-16 12:08:46] RDP (0): Server shows cursor
    [2014-Apr-16 12:11:09] RDP (0): Server hides cursor
    [2014-Apr-16 12:11:13] RDP (0): Server shows cursor
    [2014-Apr-16 12:11:53] RDP (0): Server hides cursor
    [2014-Apr-16 12:11:55] RDP (0): Server shows cursor
    [2014-Apr-16 12:12:09] RDP (0): Server hides cursor
    [2014-Apr-16 12:15:52] RDP (0): Exception caught: Exception in file '../../librdp/rpcoverhttp.cpp' at line 353
        User Message : Failed to read from channel: -1
    [2014-Apr-16 12:15:52] RDP (0): Exception caught: Exception in file '../../librdp/rpcoverhttp.cpp' at line 353
        User Message : Failed to read from channel: -1
    [2014-Apr-16 12:15:52] RDP (0): Protocol state changed to: ProtocolDisconnecting(7)
    [2014-Apr-16 12:15:52] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-16 12:15:52] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-16 12:41:29] RDP (0): Final rdp configuration used: gatewayhostname:s: confidencial
    screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:confidencial
    audiomode:i:0
    username:s: confidencial
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:1
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com"font-family:Helvetica;line-height:normal;" />bookmarktype:i:3
    use redirection server name:i:0

Maybe you are looking for

  • Unable to boot bankapp servers with Oracle 8.1.7 in windows2000

    Hello,I tried to run bankapp examples with oracle 8.1.7 in windows2000. But when I booted the servers using tmboot, there are some errors.(1)I used the following RM entries:Oracle_XA;xaosw;D:\Oracle\Ora81\precomp\lib\msvc\oraSQL8.lib D:\Oracle\Ora81\

  • Is there a way of printing off your Calender without having to buy it?

    Mac Newby here, I am trying to do the above in iPhoto6 and wondered if there was any way of printing my calender without buying? Any help much appreciated. T

  • How many photos are too many to import at once?

    My good ol' iPhoto 6.0.6  crashes these days when I try to import photos from my iPhone to my MacBook. I inadvertantly have built up to more than 4000+ photos on phone (at least 3000 already on iPhoto but I did not delete from phone) so trying to get

  • Connecting NEW HP Deskjet 2540 to Chromebook

    Hi Everyone,  Please help. I am trying to connect a NEW printer - HP deskjet 2540 to my google chromebook, but I cannot work out how to do it.. Do I need to attach the cable to the printer?  How can I set this up.. I have been trying for the last hou

  • IPhone 5 stuck pixels

    i have 3 stuck pixels on my screen. Can i use my warranty for this? what is the policy of Apple about the stuck pixels? Thanks