Working fine with JAVA code and Error Occured while using in JSP

Hi.....
When initiating a BPEL process from JAVA the code is working fine and the Process is getting initiated.But while using that code in J2EE project as a java code and while calling that method Error is occuring.....
Here by i am attaching my JAVA Code which runs as an applicateion and package which runs in Server....
JAVA Code (Run as Application) Working Fine:
package bo;
import com.oracle.bpel.client.Locator;
import com.oracle.bpel.client.NormalizedMessage;
import com.oracle.bpel.client.delivery.IDeliveryService;
import java.util.Map;
import java.util.Properties;
import oracle.xml.parser.v2.XMLElement;
/*import javax.servlet.RequestDispatcher;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest ;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession; */
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
public class processit {
     public static void main(String args[]){
          String input = "TATA";
          String xmlInput= "<ns1:AccessDBBPELProcessRequest xmlns:ns1=\"http://xmlns.oracle.com/AccessDBBPEL\"><ns1:input>"+input+"</ns1:input></ns1:AccessDBBPELProcessRequest>";
          String xml="<ns1:BPELProcess1ProcessRequest xmlns:ns1=\"http://xmlns.oracle.com/BPELProcess1\">";
          xml=xml+"<ns1:input>"+input+"</ns1:input>";
          xml=xml+"</ns1:BPELProcess1ProcessRequest>";
          try{
          Properties props=new Properties();
          props.setProperty("orabpel.platform","ias_10g");
          props.setProperty("java.naming.factory.initial","com.evermind.server.rmi.RMIInitialContextFactory");
          props.setProperty("java.naming.provider.url","opmn:ormi://157.227.132.226:6003:home/orabpel");
          props.setProperty("java.naming.security.principal","oc4jadmin");
          props.setProperty("java.naming.security.credentials","oc4jadmin");
          props.setProperty("dedicated.rmicontext", "true");
          Locator locator = new Locator("default", "bpel", props);
          System.out.println("After creating the locator object......");
          IDeliveryService deliveryService =(IDeliveryService)locator.lookupService(IDeliveryService.SERVICE_NAME);
          System.out.println("Before creating the NormalizedMessage object......");
          NormalizedMessage nm = new NormalizedMessage();
          System.out.println("After creating the NormalizedMessage object.*.*.*...");
          nm.addPart("payload", xml);
          System.out.println("Before creating response object......");
          NormalizedMessage res = deliveryService.request("BPELProcess1", "process", nm);
          System.out.println("After calling the BPELProcess1 .*.*.*...");
          Map payload = res.getPayload();
          System.out.println("BPEL called");
          XMLElement xmlEl=(oracle.xml.parser.v2.XMLElement)payload.get("payload");
          String replyText=xmlEl.getText();
          System.out.println("Reply from BPEL Process>>>>>>>>>>>>> "+replyText);
          catch (Exception e) {
          System.out.println("Exception : "+e);
          e.printStackTrace();
JSP and Java Method Used:
JSP Code:
===============
<%@ page import=" bo.callbpel" %>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>FEATT - I30</title>
</head>
<body>
<%
String input=request.getParameter("dnvalue");
callbpel p=new callbpel();
String Output=p.Initiate(input);
out.print("The Input Given to the BPEL Process is : "+input);
%>
<BR><BR><BR><BR><BR><BR>
<%
out.print("The Reply from BPEL Process is : "+Output);
%>
</body>
</html>
Java Code:
package bo;
import com.oracle.bpel.client.Locator;
import com.oracle.bpel.client.NormalizedMessage;
import com.oracle.bpel.client.delivery.IDeliveryService;
import java.util.Map;
import java.util.Properties;
import oracle.xml.parser.v2.XMLElement;
/*import javax.servlet.RequestDispatcher;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest ;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession; */
//import java.util.*;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
public class callbpel {
     public String Initiate(String value){
          String replyText=null;
          String input = value;
          System.out.println(input);
          String xmlInput= "<ns1:AccessDBBPELProcessRequest xmlns:ns1=\"http://xmlns.oracle.com/AccessDBBPEL\"><ns1:input>"+input+"</ns1:input></ns1:AccessDBBPELProcessRequest>";
          String xml="<ns1:BPELProcess1ProcessRequest xmlns:ns1=\"http://xmlns.oracle.com/BPELProcess1\">";
          xml=xml+"<ns1:input>"+input+"</ns1:input>";
          xml=xml+"</ns1:BPELProcess1ProcessRequest>";
          try{
          Properties props=new Properties();
          props.setProperty("orabpel.platform","ias_10g");
          props.setProperty("java.naming.factory.initial","com.evermind.server.rmi.RMIInitialContextFactory");
          props.setProperty("java.naming.provider.url","opmn:ormi://157.227.132.226:6003:home/orabpel");
          props.setProperty("java.naming.security.principal","oc4jadmin");
          props.setProperty("java.naming.security.credentials","oc4jadmin");
          props.setProperty("dedicated.rmicontext", "true");
          Locator locator = new Locator("default", "bpel", props);
          String uniqueBpelId = com.collaxa.cube.util.GUIDGenerator.generateGUID();
          //System.out.println(uniqueBpelId);
          //java.util.Map msgProps = new HashMap();
          System.out.println("After creating the locator object......");
          IDeliveryService deliveryService =(IDeliveryService)locator.lookupService(IDeliveryService.SERVICE_NAME);
          System.out.println("Before creating the NormalizedMessage object......");
          NormalizedMessage nm = new NormalizedMessage();
          System.out.println("After creating the NormalizedMessage object.*.*.*...");
          //msgProps.put("conversationId",uniqueBpelId);
          //nm.setProperty("conversationId",uniqueBpelId);
          nm.addPart("payload", xml);
          System.out.println("Before creating response object......");
          NormalizedMessage res = deliveryService.request("BPELProcess1", "process", nm);
          System.out.println("After calling the BPELProcess1 .*.*.*...");
          Map payload = res.getPayload();
          System.out.println("BPEL called");
          XMLElement xmlEl=(oracle.xml.parser.v2.XMLElement)payload.get("payload");
          replyText=xmlEl.getText();
          System.out.println("Reply from BPEL Process>>>>>>>>>>>>> "+replyText);
          catch (Exception e) {
          System.out.println("Exception : "+e);
          e.printStackTrace();
          return replyText;
While Creating and Object for the Class callbpel and Whilw Calling that Method
callbpel p=new callbpel();
String Output=p.Initiate(input);
Its throwing an Error:
Error Occured is:
After creating the locator object......
Before creating the NormalizedMessage object......
After creating the NormalizedMessage object.*.*.*...
Before creating response object......
Apr 24, 2008 9:12:00 AM org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet jsp threw exception
java.lang.NoClassDefFoundError: javax/ejb/EJBException
     at com.oracle.bpel.client.util.ExceptionUtils.handleServerException(ExceptionUtils.java:76)
     at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:254)
     at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:83)
     at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:53)
     at bo.callbpel.Initiate(callbpel.java:55)
     at org.apache.jsp.output_jsp._jspService(output_jsp.java:55)
     at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
     at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)
     at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
     at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
     at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151)
     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:874)
     at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
     at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
     at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
     at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689)
     at java.lang.Thread.run(Unknown Source)
For Running JSP i am Using Eclipse 3.2.0 and apache-tomcat-5.5.25
Please Provide me a Solution......
Thanks in Advance.....
Regards,
Suresh K

A JSP is not the same as a Java application. A Java application has package statment, import statements, try/catch block, a JSP doesn't.

Similar Messages

  • TS3899 Cannot send email with new iPad air.  Works fine with old iPad and iPhone.

    Cannot send email with new iPad air.  Works fine with old iPad and iPhone.  I have deleted account and reinstalled.

    Thanks.  I got the problem fixed.  Spent time with the Apple folks and was kicked up to a senior advisor.  It seems the problem was with my internet provider - Tmie Warner.  Remember I could use the old ipad and the iphone to send mail.  I checked all the specifics between the three units.  It seems that TW is changing over from the RR.com  to TWC.com.  Since the new ipad air was just set up, it fell under the new TWC mail specifics. 

  • Macbook pro 15" mid 2010 i spilled water on keyboard now it wont power on if the battery is connected and the keys on keyboard doesnt work it works fine with no battery and external keyboard if i order a battery and new keyboard will every else work again

    macbook pro 15" mid 2010 i spilled water on keyboard now it wont power on if the battery is connected and the keys on keyboard doesnt work it works fine with no battery and external keyboard if i order a battery and new keyboard will every else work again lik it did before

    If you have records that show that you've taken your MacBook Pro in for a year to fix the machine, I would escalate the problem to Apple Customer Relations - unfortunately I don't have a number for Spain.
    It would only seem logical to me that if you've been trying to have the machine repaired during the time that the 'recall' was in effect that you should be eligible for a new logic board. But only customer relations will be able to make that call.
    Good luck - take the issue as high up the food chain as you can and see what happens.
    Clinton

  • HT201250 My 10.7.3 Time Machine won't work with external disks. Worked fine with Snow Leopard, and even Lion 10.7.1

    My 10.7.3 Time Machine won't work with external disks. Worked fine with Snow Leopard, and even Lion 10.7.1
    I have tried everything, even buy new external disk from different manufacture.
    If I cant get a fix soon, I am downgrading back to SnowL.

    Still no luck. I tried all the tricks, reconfiguring TM (remove selected disk option, and re-setting it, and trying different disks). Tried new combo updater, and the newer TM update after that. Tired two different disks too (one is my older firewire WD MyBook 1TB, and my brand new 3tb Seagate GoFlex USB... either one plugged into back of computer - no intermediary devices). I did get the TM buddy wiget and it produced the following log, from the last attempt, where I setup lots of exclusions so that backup quantity was small (under 10gb). Still it failed to complete. Here is that log, for what it is worth:
    Starting standard backup
    Backing up to: /Volumes/TM-Disk/Backups.backupdb
    9.56 GB required (including padding), 911.15 GB available
    Waiting for index to be ready (101)
    Copied 0 files (0 bytes) from volume Mac HD.
    Backup canceled.
    To prove a point, I will take these disks are run them on my other Tiger and Snow Leopard laptops to prove TM works fine on those with these disks. But I fear the only options are to either have my tech re-install LION... or just have him reinstall SL instead. Im at wits end.

  • WinRM cannot process the request. The following error occured while using Kerberos authentication: The network path was not found.

    I have two forests with a transitive on-way trust between them: PROD -> TEST (test trusts PROD). I had previously had kerberos authentication working with winrm from PROD to machines in TEST. I have verified the trust is healthy, I also verified users
    in TEST can use WINRM with kerberos just fine. Users from PROD cannot connect via kerberos to machines in TEST with winrm.
    I have verified the service has registered the appropriate SPNs. I ran dcdiag against all my PROD and TEST domain controllers and didn't find anything that would prevent kerberos from happening. I even tried disabling the firewall entirely on my TEST dcs
    but that didn't gain me anything.
    I've enabled kerberos logging but only see the expected errors such as it couldn't find a PROD SPN for the machine, which it shouldn't from what I understand, it should go to the TEST domain and find the SPN from there.
    I'm really out of next steps before I call PSS and hope someone here has run into this and could provide me some next steps.
    PowerShell Error:
    Connecting to remote server failed with the following error message : WinRM cannot process the request. The following error occured while using Kerberos authentication: The network path was not found.  
     Possible causes are:
      -The user name or password specified are invalid.
      -Kerberos is used when no authentication method and no user name are specified.
      -Kerberos accepts domain user names, but not local user names.
      -The Service Principal Name (SPN) for the remote computer name and port does not exist.
      -The client and remote computers are in different domains and there is no trust between the two domains.
     After checking for the above issues, try the following:
      -Check the Event Viewer for events related to authentication.
      -Change the authentication method; add the destination computer to the WinRM TrustedHosts configuration setting or use HTTPS transport.
     Note that computers in the TrustedHosts list might not be authenticated.
       -For more information about WinRM configuration, run the following command: winrm help config. For more information, see the about_Remote_Troubleshooting Help topic.
        + CategoryInfo          : OpenError: (:) [], PSRemotingTransportException
        + FullyQualifiedErrorId : PSSessionStateBroken
    winrs Error:
    Winrs error:
    WinRM cannot process the request. The following error occured while using Kerberos authentication: The network path was not found.  
     Possible causes are:
      -The user name or password specified are invalid.
      -Kerberos is used when no authentication method and no user name are specified.
      -Kerberos accepts domain user names, but not local user names.
      -The Service Principal Name (SPN) for the remote computer name and port does not exist.
      -The client and remote computers are in different domains and there is no trust between the two domains.
     After checking for the above issues, try the following:
      -Check the Event Viewer for events related to authentication.
      -Change the authentication method; add the destination computer to the WinRM TrustedHosts configuration setting or use HTTPS transport.
     Note that computers in the TrustedHosts list might not be authenticated.
       -For more information about WinRM configuration, run the following command: winrm help config.

    Hi Adam,
    I'm a little unclear about which SPNs you were looking for, in which case could you confirm you were checking that on the computer object belonging to the actual destination host it has the following SPNs registered?
    WSMAN/<NetBIOS name>
    WSMAN/<FQDN>
    If you were actually trying to use WinRM to connect to the remote forest's domain controllers, then what you said makes sense, but I was caught between assuming this was the case or you meant another member server in that remote forest.
    Also, from the client trying to connect to this remote server, are you able to telnet to port 5985? (If you've used something other than the default, try that port)
    If you can't, then you've got something else like a firewall (be that the Windows firewall on the destination or a hardware firewall somewhere in between) blocking you at the port level, or the listener on the remote box just isn't working as expected. I
    just replied to your other winrm post with steps for checking the latter, so I won't repeat myself here.
    If you can telnet to it and the SPNs exist, then you might be up against something called selective authentication which has to do with how the trust was defined. You can have a read of
    this to learn a bit more about selective trusts and whether or not it's affecting you.
    Cheers,
    Lain

  • I am trying to watch Prof. Susskind's video lectures from Stanford univ.U-tube lec work fine.With itunes video and audio have synch problem.Is there a way to fix this or the people who uploaded messed up and it is too late?

    I am trying to watch Prof. Susskind's lectures from Stanford Univ. U-tube lectures work fine.With I-tunes, there is a synchronization problem between audio and video. Is there a way to fix this or the people who uploaded messed up and it is too late?

    I had thought this situation was solved but it just got worse. In addition to being without service for several days I am now being charged  a cancellation fee for a broadband service that BT disconnected in error. BT Vision was also terminated by BT but the set up charges are still in place. Does anyone know who the relevant Ombudsman is? I called BT from America on Friday - for an hour - while someone called Aruj sorted out why there is an order 'in progress' that I didn't initiate; why I have fees relating to a problem created by BT and why there are references to a house move that didn't take place and a BT Vision service I no longer have but didn't cancel myself. He assured me it would be rectified and my bill would be reduced by 139 pounds and we would get confirmation of this later that day. I asked him what chance there was that this would not actually happen - he said no chance at all; my new bill would be 23.50.
    There was no text message. An online chat person today told me there had been a fee reduction request which had been declined and there was nothing else he could help me with as he dealt only with broadband. But he would get BT Vision to email me. They always seem so helpful.............
    I'm sure I'm listed somewhere as 'a problem', there's no other explanation for why I get the runaround

  • Adcfgclone failing with RC-00110: Fatal: Error occurred while relinking of

    Log file located at /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/log/VIS_infsgvm09/ApplyDBTier_12240910.log
    - 0% completed RC-00110: Fatal: Error occurred while relinking of ApplyDBTechStack
    ERROR while running Apply...
    Mon Dec 24 09:13:43 2012
    ERROR: Failed to execute /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/clone/bin/adclone.pl
    Please check logfile.
    Logfile:
    Started ApplyDBTier at Mon Dec 24 09:10:34 EST 2012
    Version:
         ApplyDBTier.java     :      120.6.12010000.3
    ApplyDBTier (prog) -1 true true true...
    # Calling ApplyDBTechStack...
    Executing runInstallDriver...
    Started unzipping files...
    Using admin directory: /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/clone/bin
    #------Log File time stamp: 1224091034------------
    # $Header: CloneContext.java 120.92.12010000.25 2011/08/12 21:29:46 jaedo ship $
    # Running on - infsgvm09
    # Source Host - null
    # Domain Name - sg.oracle.com
    # Context Location - /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/VIS_infsgvm09.xml
    # Context Type - null
    # Context Template - null
    # Clone Stage Area - null
    # Pairs File - null
    # Destination Context - null
    # Validation - true
    # Platform Migration - false
    # no prompt - true
    Checking Database Port on null: Port Value = 1521
    Database Port available: Port Value = 1521
    Checking DB ONS Local Port on null: Port Value = 6300
    DB ONS Local Port available: Port Value = 6300
    Checking DB ONS Remote Port on null: Port Value = 6400
    DB ONS Remote Port available: Port Value = 6400
    Completed runInstallDriver.
    Executing home registration for s_db_oh...
    instantiate file:
    source : /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/template/adouidb.pl
    dest : /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/clone/ouicli.pl
    backup : /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/clone/ouicli.pl to /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/out/ouicli8.pl
    setting permissions: 700
    AC-00425: Setting permissions failed for file: /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/clone/ouicli.pl
    Raised by oracle.apps.ad.autoconfig.InstantiateProcess
    setting ownership: r12ora:r12ora
    instantiate file:
    source : /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/template/config_ux.tmp
    dest : /u01/oracle/VIS/db/tech_st/11.1.0/rdbms/lib/config.c
    backup : /u01/oracle/VIS/db/tech_st/11.1.0/rdbms/lib/config.c to /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/out/config9.c
    setting permissions: 700
    AC-00425: Setting permissions failed for file: /u01/oracle/VIS/db/tech_st/11.1.0/rdbms/lib/config.c
    Raised by oracle.apps.ad.autoconfig.InstantiateProcess
    setting ownership: r12ora:r12ora
    instantiate file:
    source : /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/template/adlnkoh.sh
    dest : /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/clone/adlnkoh.sh
    backup : /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/clone/adlnkoh.sh to /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/out/adlnkoh8.sh
    setting permissions: 700
    AC-00425: Setting permissions failed for file: /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/clone/adlnkoh.sh
    Raised by oracle.apps.ad.autoconfig.InstantiateProcess
    setting ownership: r12ora:r12ora
    Executing script in InstantiateFile:
    /u01/oracle/VIS/db/tech_st/11.1.0/perl/bin/perl -I /u01/oracle/VIS/db/tech_st/11.1.0/perl/lib/5.8.3 -I /u01/oracle/VIS/db/tech_st/11.1.0/perl/lib/site_perl/5.8.3 -I /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/perl /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/clone/ouicli.pl
    script returned:
    Beginning OUI CLI cloning for s_db_ohMon Dec 24 09:10:35 2012
    /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/jre/bin/java -classpath /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/java:/u01/oracle/VIS/db/tech_st/11.1.0/oui/jlib/OraInstaller.jar:/u01/oracle/VIS/db/tech_st/11.1.0/appsutil/java/xmlparserv2.jar oracle.apps.ad.clone.util.OracleHomeCloner -OUICLI -e /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/VIS_infsgvm09.xml -nolink -oaVar s_db_oh -homestub db -log /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/log/VIS_infsgvm09/ohclone.log
    Running OUI CLI home cloning from within OracleHomeCloner:
    /u01/oracle/VIS/db/tech_st/11.1.0/oui/bin/runInstaller -clone -silent -force -nolink -waitForCompletion -invPtrLoc /u01/oracle/VIS/db/tech_st/11.1.0/oraInst.loc ORACLE_HOME=/u01/oracle/VIS/db/tech_st/11.1.0 ORACLE_BASE=/u01/oracle/VIS/db/tech_st/11.1.0 ORACLE_HOME_NAME=VIS_DB__u01_oracle_VIS_db_tech_st_11_1_0 -J-Doracle.installer.noLink=true
    Finished OUI CLI cloning for s_db_oh with return code: 0Mon Dec 24 09:12:04 2012
    .end std out.
    .end err out.
    Executing script in InstantiateFile:
    /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/clone/adlnkoh.sh
    script returned:
    adlnkoh.sh started at Mon Dec 24 09:12:04 EST 2012
    Log file located at /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/log/VIS_infsgvm09/make_12240912.log
    Using make file "ins_emagent.mk" for linking SYSMAN utilities...
    adlnkoh.sh completed sucessfully
    .end std out.
    chmod: changing permissions of `genclntsh': Operation not permitted
    .end err out.
    instantiate file:
    source : /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/template/adouidb.pl
    dest : /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/clone/ouicli.pl
    backup : /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/clone/ouicli.pl to /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/out/ouicli9.pl
    setting permissions: 700
    AC-00425: Setting permissions failed for file: /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/clone/ouicli.pl
    Raised by oracle.apps.ad.autoconfig.InstantiateProcess
    setting ownership: r12ora:r12ora
    instantiate file:
    source : /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/template/config_ux.tmp
    dest : /u01/oracle/VIS/db/tech_st/11.1.0/rdbms/lib/config.c
    backup : /u01/oracle/VIS/db/tech_st/11.1.0/rdbms/lib/config.c to /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/out/config10.c
    setting permissions: 700
    AC-00425: Setting permissions failed for file: /u01/oracle/VIS/db/tech_st/11.1.0/rdbms/lib/config.c
    Raised by oracle.apps.ad.autoconfig.InstantiateProcess
    setting ownership: r12ora:r12ora
    instantiate file:
    source : /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/template/adlnkoh.sh
    dest : /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/clone/adlnkoh.sh
    backup : /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/clone/adlnkoh.sh to /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/out/adlnkoh9.sh
    setting permissions: 700
    AC-00425: Setting permissions failed for file: /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/clone/adlnkoh.sh
    Raised by oracle.apps.ad.autoconfig.InstantiateProcess
    setting ownership: r12ora:r12ora
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution. Errors are grouped by directory and phase.
    The report format is:
    <filename> <phase> <return code where appropriate>
    [INSTANTIATE PHASE]
    AutoConfig could not successfully instantiate the following files:
    Directory: /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/clone
    adlnkoh.sh INSTE8_APPLY
    ouicli.pl INSTE8_APPLY
    Directory: /u01/oracle/VIS/db/tech_st/11.1.0/rdbms/lib
    config.c INSTE8
    AutoConfig is exiting with status 3
    RC-50013: Fatal: Instantiate driver did not complete successfully.
    /u01/oracle/VIS/db/tech_st/11.1.0/appsutil/driver/regclone.drv
    For help,thanks!!!!!
    I'm right now working for clone a EBS 12.1.3 env.

    AC-00425: Setting permissions failed for file: /u01/oracle/VIS/db/tech_st/11.1.0/rdbms/lib/config.cAs root user, please change permissions on this file and make sure it is owned by the correct OS user (usually the database tier nodes are owned by oracle user).
    The same error is reported in (How To Configure Apache In R12 (10.1.3) To Listen on a Restricted Port Such as 80 or 443 [ID 578001.1]) but the issue in the doc does not match the case you have. The doc clearly explains that setting permissions properly would fix the issue.
    Thanks,
    Hussein

  • I need help with Mavericks Server: an error occurred while configuring your server.  I

    I need help with Mavricks Server, I get the following: an error occurred while configuring your server.  I have deleted the Server.app several times along with the associated com.apple and Server folder.  Any more help would be appreciated.

    There are usually some log files around, related to the installation.  See if Console.app (Applications > Utilities) shows anything relevant to the error, when you've done a fresh install of Server.app and tried the configuration.

  • Wrong XML parsing in Java  6.0 , the same code works fine with Java 5.0

    I have the following xml data in a file ( C:\_rf\jrebug.xml ) :
    <?xml version="1.0" encoding="UTF-8"?>
    <rs>
         <data
              input3='aa[1]'
              input4='bb[1]'
              input6='cc[2]'
              input8='dd[7]'
              output2='ee[7]'
              output4='ff[511]'
              output6='gg[15]'
              output7='hh[1]'
         />
    </rs>
    I have the following code to parse this XML data :
    import java.io.IOException;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.ParserConfigurationException;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.NamedNodeMap;
    import org.w3c.dom.NodeList;
    import org.w3c.dom.Node;
    import org.xml.sax.SAXException;
    import org.xml.sax.ErrorHandler;
    import org.xml.sax.SAXParseException;
    public class DomParserBug {
         Document dom;
         public void runExample() {
    parseXmlFile("C:\\_rf\\jrebug.xml");
              parseDocument();
         private void parseXmlFile(String filename){
              //get the factory
              DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
              //dbf.setValidating(true);
    dbf.setValidating(false);
              try {
                   //Using factory get an instance of document builder
                   DocumentBuilder db = dbf.newDocumentBuilder();
                   db.setErrorHandler(new MyErrorHandler());
                   //parse using builder to get DOM representation of the XML file
                   dom = db.parse(filename);
              }catch(ParserConfigurationException pce) {
                   pce.printStackTrace();
              catch(SAXParseException spe) {
                   spe.printStackTrace();
              catch(IOException ioe) {
                   ioe.printStackTrace();
              catch(SAXException se) {
                   se.printStackTrace();
    private void parseDocument()
    Element docEle = dom.getDocumentElement();
    NodeList nl = docEle.getElementsByTagName("data");
    if(nl != null && nl.getLength() > 0)
    for(int i = 0 ; i < nl.getLength();i++)
    Element el = (Element)nl.item(i);
    NamedNodeMap attrsssss = el.getAttributes();
    for (int ii=0; ii<attrsssss.getLength(); ++ii)
    Node attr = attrsssss.item(ii);
    System.out.println("Attribute name is =" attr.getNodeName() " AND Attribute value is ="+attr.getNodeValue());
         public static void main(String[] args){
              DomParserBug dpe = new DomParserBug();
              dpe.runExample();
         class MyErrorHandler implements ErrorHandler {
              public void error(SAXParseException e) {
              System.out.println("error : " +e.toString());
         // This method is called in the event of a non-recoverable error
         public void fatalError(SAXParseException e) {
         System.out.println("fatalError : " +e.toString());
         // This method is called in the event of a warning
         public void warning(SAXParseException e) {
         System.out.println("warning : " +e.toString());
    The parsed output is :
    Attribute name is =input3 AND Attribute value is =aa[1]
    Attribute name is =input4 AND Attribute value is =bb[1]
    Attribute name is =input6 AND Attribute value is =cc[2]
    Attribute name is =input8 AND Attribute value is =dd[7]
    Attribute name is =output2 AND Attribute value is =ee[7]
    Attribute name is =output4 AND Attribute value is =ff[511]
    Attribute name   is  =output6 AND Attribute value  is =hh[1]]
    Attribute name   is  =output7 AND Attribute value  is =hh[1]
    THE LAST TWO LINES ARE SIMPLY WRONG.
    With java 5.0 the last two lines are parsed correctly :
    Attribute name   is  =output6 AND Attribute value  is =gg[15]
    Attribute name   is  =output7 AND Attribute value  is =hh[1]
    I have seen this issue only after I upgraded to java 6.0. I have searched the java 6.0 bug database but there is nothing there.
    I have also submitted a bug to the bugdatabase last month but have not heared anything.
    Anybody have any clue about this ???
    Thanks
    Edited by: skaushik on Jan 4, 2008 12:40 AM
    Edited by: skaushik on Jan 4, 2008 6:38 PM

    I have seen similar issue. I found that if you remove the square brackets from the first line in teh XML file, the last two lines are parsed correctly.
    Replace the follwing line : :
    Attribute name is =input3 AND Attribute value is =aa[1]
    with :
    Attribute name is =input3 AND Attribute value is =aa
    and the output is CORRECT :
    Attribute name is =input3 AND Attribute value is =aa
    Attribute name is =input4 AND Attribute value is =bb[1]
    Attribute name is =input6 AND Attribute value is =cc[2]
    Attribute name is =input8 AND Attribute value is =dd[7]
    Attribute name is =output2 AND Attribute value is =ee[7]
    Attribute name is =output4 AND Attribute value is =ff[511]
    Attribute name   is  =output6 AND Attribute value  is =gg[15]
    Attribute name   is  =output7 AND Attribute value  is =hh[1]

  • Need Help with Backup code and error

    Hi ,
    I am having trouble working out why the backup from a site i maintain has suddenly started failing. As i am a newby to Java and did create the site i am a bit stumped. From what i can tell it appears that the database connection fails.
    The backup used to work fine to around a month ago.
    Exception error below:
    Exception Occurance Date: 29/9/2007
    Exception Occurance Time: 9:0.23
    java.sql.SQLException: JZ006: Caught IOException: java.net.ConnectException: Connection timed out: connect
         at com.sybase.jdbc2.jdbc.ErrorMessage.raiseError(ErrorMessage.java:487)
         at com.sybase.jdbc2.jdbc.ErrorMessage.raiseErrorCheckDead(ErrorMessage.java:723)
         at com.sybase.jdbc2.tds.Tds.handleIOE(Tds.java:3071)
         at com.sybase.jdbc2.tds.Tds.login(Tds.java:394)
         at com.sybase.jdbc2.jdbc.SybConnection.tryLogin(SybConnection.java:218)
         at com.sybase.jdbc2.jdbc.SybConnection.regularConnect(SybConnection.java:195)
         at com.sybase.jdbc2.jdbc.SybConnection.<init>(SybConnection.java:174)
         at com.sybase.jdbc2.jdbc.SybConnection.<init>(SybConnection.java:126)
         at com.sybase.jdbc2.jdbc.SybDriver.connect(SybDriver.java:179)
         at java.sql.DriverManager.getConnection(Unknown Source)
         at java.sql.DriverManager.getConnection(Unknown Source)
         at database.SybaseConnection.createDatabaseConnection(SybaseConnection.java:76)
         at database.SybaseConnection.<init>(SybaseConnection.java:21)
         at database.DatabaseManager.aries(DatabaseManager.java:235)
         at Translog.execute(Translog.java:50)
         at Translog.<init>(Translog.java:23)
         at Translog.main(Translog.java:112)
    Anyone with any suggestions?

    Hi ,
    I am having trouble working out why the backup from a site i maintain has suddenly started failing. As i am a newby to Java and did create the site i am a bit stumped. From what i can tell it appears that the database connection fails.
    The backup used to work fine to around a month ago.
    Exception error below:
    Exception Occurance Date: 29/9/2007
    Exception Occurance Time: 9:0.23
    java.sql.SQLException: JZ006: Caught IOException: java.net.ConnectException: Connection timed out: connect
         at com.sybase.jdbc2.jdbc.ErrorMessage.raiseError(ErrorMessage.java:487)
         at com.sybase.jdbc2.jdbc.ErrorMessage.raiseErrorCheckDead(ErrorMessage.java:723)
         at com.sybase.jdbc2.tds.Tds.handleIOE(Tds.java:3071)
         at com.sybase.jdbc2.tds.Tds.login(Tds.java:394)
         at com.sybase.jdbc2.jdbc.SybConnection.tryLogin(SybConnection.java:218)
         at com.sybase.jdbc2.jdbc.SybConnection.regularConnect(SybConnection.java:195)
         at com.sybase.jdbc2.jdbc.SybConnection.<init>(SybConnection.java:174)
         at com.sybase.jdbc2.jdbc.SybConnection.<init>(SybConnection.java:126)
         at com.sybase.jdbc2.jdbc.SybDriver.connect(SybDriver.java:179)
         at java.sql.DriverManager.getConnection(Unknown Source)
         at java.sql.DriverManager.getConnection(Unknown Source)
         at database.SybaseConnection.createDatabaseConnection(SybaseConnection.java:76)
         at database.SybaseConnection.<init>(SybaseConnection.java:21)
         at database.DatabaseManager.aries(DatabaseManager.java:235)
         at Translog.execute(Translog.java:50)
         at Translog.<init>(Translog.java:23)
         at Translog.main(Translog.java:112)
    Anyone with any suggestions?

  • IDVD6 works fine with G4/400 and 10.4.11 ?

    Hi everyone..
    can anyone confirm, that above configuration works fine?
    I specially mean the DVD Menu Titles...
    ref. to thread http://discussions.apple.com/thread.jspa?messageID=8716733
    Thank you much !
    WH

    Hi
    If the speed 400MHz / 733MHz doesn't stop it from working please consider that
    the encoding time needed will be extream.
    I used a G4/600MHz with Devideon* resp an earlier version of iDVD and a movie
    with a duration of 60 minutes needed about 24 to 36 hours to do the calculations
    /encodings.
    A weekend-project.
    My dG5 2GHz is 1 hour movie = about 1 hour encoding (2 hours pro quality)
    Just as reference.
    If You got less than 10Gb of free space on internal (boot) hard disk my guess
    (G4/400MHz) would be 1 hour movie about 1 week time to encode
    AND MOST PROBABLY - Not a working DVD disk as a result.
    Secure a minimum of 25Gb free space.
    Yours Bengt W

  • Error occured while using checkInFileStream of CIS

    Hi,
    I am having problem using the CIS in client mode. I am trying to use the CheckIn api. I am unable to find the problem. Following are the details:
    FLOW: Custom application – client Api – cis-server(Deployed in oracle application server) – content server.
    The part of cis-server -- content server works. I have tested the chekin being successful using the web application http://localhost:8888/cis-admin/ucpmbrowsecategory.do?category=active
    But the Custom application – Client Api – cis-server part does not work for me
    Following is the code for CheckIn along with the exception trace:
    public String checkIn() {
    System.out.println("ECM1Service :: checkIn :: Started");
    String contentId ="";
    try {
    Properties properties = new Properties();
    properties.setProperty(ICISApplication.PROPERTY_CONFIG_TYPE, "client");
    properties.setProperty(ICISApplication.PROPERTY_CONFIG_CLIENT_CONNECTION, "jndi");
    properties.setProperty("jndi."+Context.INITIAL_CONTEXT_FACTORY,ConfigUtils.getEntry("jndiInitialContextFactory"));
    properties.setProperty("jndi."+Context.PROVIDER_URL, ConfigUtils.getEntry("jndiProviderUrl"));
    properties.setProperty("jndi."+Context.SECURITY_AUTHENTICATION, ConfigUtils.getEntry("jndiSecurityAuthentication"));
    properties.setProperty("jndi."+Context.SECURITY_PRINCIPAL,ConfigUtils.getEntry("jndiSecurityPrincipal"));
    properties.setProperty("jndi."+Context.SECURITY_CREDENTIALS, ConfigUtils.getEntry("jndiSecurityCredentials"));
    ICISApplication client = CISApplicationFactory.initialize(properties);
    //Connect
    System.out.println("ECM1Service :: checkIn :: Connect Started");
    ISCSDocumentCheckinAPI api = client.getUCPMAPI().getActiveAPI().getDocumentCheckinAPI();
    ICISTransferStream transferStream = client.getUCPMAPI ().createTransferStream();
    transferStream.setFile(new File ("c:\\fileStreamTest.txt"));
    //getSCSContext
    ISCSContext context = client.getUCPMAPI ().getActiveAPI ()._createSCSContext ();
    context.setUser ("sysadmin");
    context.setCrendentials("idcdev");
    context.setAdapterName ("ecm");
    //getActiveContent
    ISCSContent activeContent = (ISCSContent) client.getUCPMAPI ().createObject(ISCSContent.class);
    ISCSContentID contentID = (ISCSContentID) client.getUCPMAPI ().createObject(ISCSContentID.class);
    contentID.setContentID("TEST_1");
    AppLog.debug("ECM1Service :: checkIn :: contentID"+contentID.getContentID());
    activeContent.setContentID (contentID);
    activeContent.setTitle ("TEST_1");
    activeContent.setType ("Test");
    activeContent.setSecurityGroup ("Public");
    activeContent.setSecurityAccount("fiscalAssistantOnly");
    //Execute
    System.out.println("ECM1Service :: checkIn :: Execute Started");
    ISCSDocumentCheckinResponse result = api.checkinFileStream (context, activeContent, transferStream);
    System.out.println("ECM1Service :: checkIn :: Execute Started after");
    String message = result.getMessage ();
    ICISID icisId = result.getIdentifier();
    contentId = icisId.getPropertyAsString("dDocName");
    System.out.println("ECM1Service :: main :: message: "+message);
    System.out.println("ECM1Service :: main :: icisId: "+icisId.getPropertyAsString("dDocName"));
    System.out.println("ECM1Service :: checkIn :: Execute Completed");
    } catch (Exception e) {
    e.printStackTrace ();
    System.out.println("ECM1Service :: checkIn ::Completed");
    return contentId;
    EXCEPTION:
    INFO [main] (AppLog.java:40) - ECMService :: checkIn :: Execute Started
    [2008-08-30 15:11:20,234] [main] DEBUG (cis.profiler) - <Timer SectionName="invokeCommand" ThreadName="main" Begin="1220123480234" Desc="" />
    [2008-08-30 15:11:20,234] [main] DEBUG (cis.profiler) - <Timer SectionName="FacadeExecuteCommand" ThreadName="main" Begin="1220123480234" Desc="active.document.checkin.checkinFileStream" />
    [2008-08-30 15:11:21,734] [main] ERROR (com.stellent.cis.server.filetransfer.impl.ClientResourceHandler) - Error parsing XML
    org.dom4j.DocumentException: Error on line 9 of document : <Line 9, Column 46>: XML-20190: (Fatal Error) Whitespace required. Nested exception: <Line 9, Column 46>: XML-20190: (Fatal Error) Whitespace required.
         at org.dom4j.io.SAXReader.read(SAXReader.java:355)
         at org.dom4j.io.SAXReader.read(SAXReader.java:271)
         at org.dom4j.DocumentHelper.parseText(DocumentHelper.java:215)
         at com.stellent.cis.server.filetransfer.impl.ClientResourceHandler.uploadFile(ClientResourceHandler.java:242)
         at com.stellent.cis.server.filetransfer.impl.ClientResourceHandler.publishResource(ClientResourceHandler.java:155)
         at com.stellent.cis.server.filetransfer.SCSContentTransferStream.writeObject(SCSContentTransferStream.java:259)
         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)
    The message indicates that there is a parse error with the a xml file but I am unable to figure which xml file??
    My adapaterconfig.xml file is as below:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <config>
    - <properties>
    <property name="webPath">http://localhost:8888/cis-server</property>
    </properties>
    <jndi />
    - <adapter default="true" name="ecm" type="scs">
    - <config>
    <property name="port">xxxx</property>
    <property name="connectionTimeout">20000</property>
    <property name="type">socket</property>
    <property name="persistentConnection">false</property>
    <property name="host">ecmserver.xxx.com</property>
    <property name="eventPollingEnabled">true</property>
    <property name="cacheEnabled">true</property>
    </config>
    <beans template="classpath:/META-INF/resources/adapter/adapter-services-scs.jxml" />
    </adapter>
    </config>
    Please let me know pointers to this problem.
    Thanks in advance.
    Aparna
    Edited by: user537651 on Aug 30, 2008 12:56 PM

    Disabling the event polling has helped to some extent. I did not have any Command cache properties set and had event polling enabled. This came by default. Oracle support rep has told that he had seen miscellaneous errors with enabling the event poll while the chache properties are not set.
    This has helped when I deploy cis-admin application to the Oracle 10g app server on a windows machine but again, when I do the same on another machine i.e. a unix machine (I doubt if operating system would be the cause) it did not work.
    Thanks,
    Aparna Raj Golla

  • An unknown error occurred while using remote from iPhone to iTunes on Mac

    I have STF for this answer, but am probably using the wrong words.  I have an iPhone 3Gs with a remote app on it.  I have several things going on.
    I have a mini-mac running iTunes 10.4.  This computer runs both my music for the house as well as my Apple TV.  When I use the Remote App lately for playing and controling music, and I tap on a song within an album, I get this error.  "An unknown error occurred.  Please check your library and try again".  I am having miserable luck (basically no luck) finding or playing the music in my iTunes.
    Then an error pops up after this.  "Remote can't connect to your iTunes library.  Check your network settings and try again."
    Recently (about 5-6 days ago), my Network Gateway crashed.  This was a Linux box running Gateway software. (ClarkConnect).  Since the disk was hosed, I replaced it with a fairly new (8-10 month old) Apple Airport Extreme (version 7.5.2).  I have set this up to port forward and dispense DHCP within my house and wireless network.  Is it possible that something needs to be set additionally on this to allow remote connections to iTunes from my iPhone.  I should also say that my iPad does this just fine using the same Remote App.

    I am getting this error whilst attempting to move NEF (Nikon RAW files) either between folders on the same hard-drive or between hard-drives (which are incorporated into my Lightroom catalogue).
    Whenever I receive this error, a strange (locked) file appears in the directory/folder to which I intended to move the file and on examining this file in the terminal I can see that it contains the following error message: "cannot execute binary file...logout". The filename of this strange file is usually very random such as 470F00FF-9FBC-4517-84BF-26E52251B2B9-449-0000020C6A4DD5FD
    I do not have any problems with missing sidecars and always select "save metadata to files" before attempting to move the files...can anyone figure this out?

  • Topic: error occuring while use jsp

    code:
    Parsing of JSP File '/view.jsp' failed:-------------------------------------------------------------------------------- /view.jsp(18): "mybean" is not a defined bean variable on this pageprobably occurred due to an error in /view.jsp line 18:value="<jsp:getProperty name="mybean" property="firstname"/>"/>
    this is the error i am getting while accesing the view.jsp.
    here below is my view.jsp and mybean.java codes.
    view.jsp
    code:
    <jsp:useBean id="mybean" class="mvc.beans.mybean" scope="request"/ ><html><head><title>MVC View</title></head><body><h2>MVC Architecture View<h2><form method="post" action="myservlet"><table> <tr> <td>     First Name:     </td> <td>     <input type="text"           name="form first name"                    value="<jsp:getProperty name="mybean" property="firstname"/>"/>                                   </td>     </tr>      <tr>     <td>          Last Name:          </td>          <td>          <input type="text"               name="form last name"                    value="<jsp:getProperty name="mybean" property="lastname"/>"/>     </td>     </tr>      <tr>     <td>          E-mail:          </td>          <td>          <input type="text"               name="form mail"                    value="<jsp:getProperty name="mybean" property="email"/>"/>     </td>     </tr>      <tr>     <td>     <input type="submit"          value="submit"/>          <td>     <tr> </table></form></body>      <pre>     <jsp:getProperty name="mybean" property="message"> </pre></html>
    mybean.java
    code:
    package mvc.beans; public class mybean{ private String firstname; private String lastname; private String email;  public String getFirstname()     {       return fixNull(this.firstname);    } public String getLastname()     {      return fixNull(this.lastname);    } public String getEmail()     {       return fixNull(this.email);    } public void setFirstname(String firstname)     {      this.firstname=firstname;     } public void setLastname(String lastname)     {      this.lastname=lastname;     } public void setEmail(String email)     {       this.email=email;    } private String fixNull(String in){        return (in == null) ? "" : in;    }      public String getMessage()     {      return "\nFirst Name:" +  getFirstname() + "\n"              +"Last Name :" +  getLastname()  + "\n"                      +"email     :" +  getEmail()     + "\n";     } };
    please clarrify my error.

    Are u putting the bean in the request scope????

  • Mac - 10.11 - El Capitan - Error occurs while using Spotify

    While using Spotify on the mac (10.11 Dev preview) an error pops up with the following stack trace:  Exception Name: NSInvalidArgumentException
    Description: -[SPMediaKeyTap grab]: unrecognized selector sent to instance 0x7f98434166a0
    User Info: (null)
    0 CoreFoundation 0x00007fff87c07b35 __exceptionPreprocess + 165
    1 libobjc.A.dylib 0x00007fff8275646a objc_exception_throw + 48
    2 CoreFoundation 0x00007fff87c0ab1d -[NSObject(NSObject) doesNotRecognizeSelector:] + 205
    3 CoreFoundation 0x00007fff87b4658a ___forwarding___ + 1002
    4 CoreFoundation 0x00007fff87b46118 _CF_forwarding_prep_0 + 120
    5 Spotify 0x000000010af10b67 _ZThn56_N5boost16exception_detail19error_info_injectorINS_6system12system_errorEED0Ev + 37623
    6 Spotify 0x000000010af10cf3 _ZThn56_N5boost16exception_detail19error_info_injectorINS_6system12system_errorEED0Ev + 38019
    7 Spotify 0x000000010af10dea _ZThn56_N5boost16exception_detail19error_info_injectorINS_6system12system_errorEED0Ev + 38266
    8 Spotify 0x000000010af10530 _ZThn56_N5boost16exception_detail19error_info_injectorINS_6system12system_errorEED0Ev + 36032
    9 HIToolbox 0x00007fff8763c77e _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1231
    10 HIToolbox 0x00007fff8763bbe4 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14HandlerCallRec + 404
    11 HIToolbox 0x00007fff8763ba43 SendEventToEventTargetWithOptions + 43
    12 HIToolbox 0x00007fff876cc13c HIToolboxLSNotificationCallbackAllASNsFunc + 298
    13 LaunchServices 0x00007fff918b7102 ___LSScheduleNotificationFunction_block_invoke_2 + 47
    14 CoreFoundation 0x00007fff87b19f3c __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 12
    15 CoreFoundation 0x00007fff87b0c9b5 __CFRunLoopDoBlocks + 341
    16 CoreFoundation 0x00007fff87b0c712 __CFRunLoopRun + 2274
    17 CoreFoundation 0x00007fff87b0bbc8 CFRunLoopRunSpecific + 296
    18 HIToolbox 0x00007fff87665b4d RunCurrentEventLoopInMode + 235
    19 HIToolbox 0x00007fff876658df ReceiveNextEventCommon + 432
    20 HIToolbox 0x00007fff87665717 _BlockUntilNextEventMatchingListInModeWithFilter + 71
    21 AppKit 0x00007fff8bb5d972 _DPSNextEvent + 927
    22 AppKit 0x00007fff8bf3f234 -[NSApplication _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 324
    23 AppKit 0x00007fff8bb53297 -[NSApplication run] + 682
    24 Chromium Embedded Framework 0x000000010c4e3831 cef_time_delta + 359761
    25 Chromium Embedded Framework 0x000000010c4e300c cef_time_delta + 357676
    26 Chromium Embedded Framework 0x000000010c5346b3 cef_time_delta + 691155
    27 Chromium Embedded Framework 0x000000010c5212ed cef_time_delta + 612365
    28 Spotify 0x000000010b5b65f9 _ZNSt3__16vectorI12CefPageRangeNS_9allocatorIS1_EEE21__push_back_slow_pathIS1_EEvOT_ + 40873
    29 Spotify 0x000000010af04bce _ZNSt3__18multimapI13CefStringBaseI20CefStringTraitsUTF16ES3_NS_4lessIS3_EENS_9allocatorINS_4pairIKS3_S3_EEEEE16__construct_nodeIRA28_KcRA2_SD_JEEENS_10unique_ptrINS_11__tree_nodeINS_12__value_typeIS3_S3_EEPvEENS_21__map_node_destructorINS6_ISN_EEEEEEOT_OT0_DpOT1_ + 26206
    30 Spotify 0x000000010adf07c9 Spotify + 30665
    31 Spotify 0x000000010adf07b4 Spotify + 30644  The application continues running if I just click Continue -- but the error can appear continually and often while using the application.

    Hi mire3212, not so much a solution (sorry), but I believe that El Capitan is actually too new for Spotify at this point. I'm not entirely sure, so hopefully someone will be able to confirm/deny this, but if I am right, then it's just a matter of time as to when Spotify will be updated, and that should take care of the issue.  

Maybe you are looking for

  • Visual Studio 2013 problem setting localhost alias in IIS Express

    I'm trying to define an alias to localhost in development ambient in Visual Studio 2013. When I used previous versions of Visual Studio, I used the Visual Studio Development Server to debug and the only thing I needed to do was to change my hosts fil

  • FI-SD  Tax statement item missing for tax code R4

    Dear, I create a sales order in ECC 6.0, there are a sales type condition=0 and a tax type condition amunt =0, there are an other type condition <>0 without taxes.  I create the billing document without problems, but when I release to accounting appe

  • Can't migrate from iBook

    I just bought my new intel based 24" iMac and i can't get the migration assistant to work betwen my 1.4Ghz Power PC G4 iBook an this new one. It seems like the computers can't understand each other. I've done this procedure a dozen times before with

  • Debug/trace info from .c program.....

    Is there a way to capture debug info from a c file that was executed by teststand (dll adapter)? To be more clear....I have a dll that has a lot print to screen statements all over the place. I would like to be able to see those prints in somekind of

  • Issue Lenovo A3000h Chinese Hard reset

    Dear Lenovo support and User please i need some help i try to make a Hard Rest for my table  Lenovo A3000-H but i get  Chinese Hard reset menu how i can do it & can i change language menu in hard rest ??