Error invoking a custom component in a Process.

Hi,
I've build a custom component that uses Output ES services.
If i run it as a Java app all runs well, he generates the output pdf files and output report .xml file.
If i import it as a component into Livecycle ES and use it in a process i get the following error:
2008-05-20 11:35:52,390 INFO [STDOUT] com.adobe.livecycle.output.exception.OutputException: java.lang.ClassCastException: com.adobe.livecycle.output.client.OutputResult
2008-05-20 11:35:52,390 INFO [STDOUT] at com.adobe.livecycle.output.client.OutputClient.generatePDFOutput(OutputClient.java:138)
2008-05-20 11:35:52,390 INFO [STDOUT] at outputfactory.Output.outputFromXML(Output.java:55)
2008-05-20 11:35:52,390 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2008-05-20 11:35:52,390 INFO [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
2008-05-20 11:35:52,390 INFO [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
2008-05-20 11:35:52,390 INFO [STDOUT] Caused by: java.lang.ClassCastException: com.adobe.livecycle.output.client.OutputResult
2008-05-20 11:35:52,390 INFO [STDOUT] at com.adobe.livecycle.output.client.OutputClient.generatePDFOutput(OutputClient.java:122)
I deploy it with th adobe-output-client.jar in my component jar and the reference for it in the component.xml file (also in my component.jar).
How can i solve this problem? thanks

Hi Rui
Very difficult to know from your description.
It's a class-cast exception - try to find the line in your code that's doing the cast, and find out what the actual object is.
It could also be a jar versioning problem, or a class-loader problem.
Sorry, very difficult to help without doing some detailed debugging.
Howard
http://www.avoka.com

Similar Messages

  • Error invoking bpel partner link from bpel process

    hello,
    i try to invoke a bpel web service (deployed correctly) from another bpel process.
    I've this error:
    Cannot find resource. Context:
    http://orcldemo.localdomain:9700/orabpel/xmllib/ws-addressing.xsd
    I've tried to add my wsdl to:
    \\orcldemo\orabpel\system\xmllib\
    In this way I can invoke bpel web service (http://orcldemo:9700/orabpel/xmllib/WebServiceName.wsdl)and deploy my bpel process without compilation error, but when I start my bpel process the instance isn't created.
    I've pm server on linux machine with oc4j
    ThankYou
    Andrea

    Resolved!! Edwin, was a name resolution problem, as you say!
    My problem also was that bpel server is on a remote linux machine, so soap server url with localhost (and similar) is not accepted by designer
    The better solution for Bpel server soap is:
    http://MachineIP:9700
    So I can invoke bpel process, and also JDev WS (deployed on oc4j) with endpoint as http://machineName:9700 and http://localhost:9700
    Thank you
    Andrea

  • Showing Error MEssage using Custom Component

    Hi,
    I have built the custom component to validate the File Size and File Extension.
    I.e user should be able to check in the document if size is less than 5MB and file extension is one of "Pdf", "doc", "tiff", "png".
    Here whenever the validation files i am throwing the exception "File Size Exeeds the Limit or Invalid file Type".
    I am able to get the custom component working as per the validation. And it is alsi logging the error in the Log file.
    But i need to show the error message when the user cllick on the check in button in UCM page.
    As of now it shows some generic error saying "Unable to execute service CHECKIN_NEW_SUB and function validateStandard.
    The error was caused by an internally generated issue. The error has been logged"
    Any help on this is highly appreciated.
    Regards,
    Rakshitha Shetty.

    Hi,
    You could throw a ServiceException in your filter with the message you want to display.
    Romain.

  • Error Invoking a DSC component

    Hi All,
    I have created a DSC component to control the task visibility as per the requirement.
    I successfully installed the DSC component on LCES server.
    And now I have facing issues in invoking this DSC component.
    I am calling this DSC service by using a Task Created start point event.
    my Java Code:
    package taskmanager;
    import java.util.*;
    import com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
    import com.adobe.idp.dsc.clientsdk.ServiceClientFactoryProperties;
    import com.adobe.idp.taskmanager.dsc.client.TaskManagerClientFactory;
    import com.adobe.idp.taskmanager.dsc.client.task.CompleteTaskResult;
    import com.adobe.idp.taskmanager.dsc.client.task.TaskManager;
    public class TaskVisible
        public void taskVisible(Long taskid, Boolean visibleflag)
            try{
                //Set connection properties required to invoke LiveCycle ES2                               
                Properties connectionProps = new Properties();
                connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_EJB_ENDPOINT, "jnp://localhost:1099");                                          connectionProps.setProperty(ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,Service ClientFactoryProperties.DSC_EJB_PROTOCOL);      
                connectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE, "JBoss");
                connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "administrator");
                connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "password");
                //Create a ServiceClientFactory object
                ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
                TaskManager tminstance =  TaskManagerClientFactory.getTaskManager(myFactory);
                tminstance.setVisibility(taskid, visibleflag);
                      }catch (Exception e)
                                          e.printStackTrace();
    Error on Sever Log File:
    2012-01-06 15:31:41,820 ERROR [STDERR] com.adobe.idp.taskmanager.dsc.client.task.TaskManagerException: ALC-DSC-003-000: com.adobe.idp.dsc.DSCInvocationException: Invocation error.
    2012-01-06 15:31:41,820 ERROR [STDERR]           at com.adobe.idp.taskmanager.dsc.client.TypedTaskManagerService.throwException(TypedTaskMana gerService.java:86)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at com.adobe.idp.taskmanager.dsc.client.TypedTaskManagerService.setVisibility(TypedTaskManag erService.java:1500)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at taskmanager.TaskVisible.taskVisible(TaskVisible.java:33)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at java.lang.reflect.Method.invoke(Method.java:597)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.DocumentPassivationInterceptor.intercept(DocumentPassi vationInterceptor.java:53)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTr ansactionCMTAdapterBean.java:357)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doSupports(Ej bTransactionCMTAdapterBean.java:227)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at sun.reflect.GeneratedMethodAccessor404.invoke(Unknown Source)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at java.lang.reflect.Method.invoke(Method.java:597)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at org.jboss.invocation.Invocation.performCall(Invocation.java:359)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:237)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:158)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:169)
    2012-01-06 15:31:41,820 ERROR [STDERR]           at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)
    2012-01-06 15:31:41,836 ERROR [STDERR]           at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)
    2012-01-06 15:31:41,836 ERROR [STDERR]           at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:378)
    2012-01-06 15:31:41,836 ERROR [STDERR]           at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:168)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:138)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:648)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at org.jboss.ejb.Container.invoke(Container.java:960)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:430)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:103)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at $Proxy186.doSupports(Unknown Source)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:104)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:188)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:129)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessage Receiver.java:93)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:22 5)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.workflow.engine.PEUtil.invokeAction(PEUtil.java:885)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.workflow.engine.SynchronousBranch.handleInvokeAction(SynchronousBranch.java:510 )
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.workflow.engine.SynchronousBranch.execute(SynchronousBranch.java:888)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.workflow.engine.ProcessEngineBMTBean.continueBranchAtAction(ProcessEngineBMTBea n.java:2792)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at com.adobe.workflow.engine.ProcessEngineBMTBean.asyncInvokeProcessCommand(ProcessEngineBMT Bean.java:697)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at java.lang.reflect.Method.invoke(Method.java:597)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at org.jboss.invocation.Invocation.performCall(Invocation.java:359)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:237)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:158)
    2012-01-06 15:31:41,851 ERROR [STDERR]           at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.plugins.AbstractTxInterceptorBMT.invokeNext(AbstractTxInterceptorBMT.java:1 73)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.plugins.TxInterceptorBMT.invoke(TxInterceptorBMT.java:77)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:169)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:168)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:138)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:648)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.Container.invoke(Container.java:960)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:430)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:103)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at $Proxy219.asyncInvokeProcessCommand(Unknown Source)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at com.adobe.idp.workflow.dsc.service.ProcessCommandExecutorService.invokeProcess(ProcessCom mandExecutorService.java:55)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at java.lang.reflect.Method.invoke(Method.java:597)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at com.adobe.idp.workflow.dsc.invoker.WorkflowDSCInvoker.invoke(WorkflowDSCInvoker.java:154)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.DocumentPassivationInterceptor.intercept(DocumentPassi vationInterceptor.java:53)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTr ansactionCMTAdapterBean.java:357)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doSupports(Ej bTransactionCMTAdapterBean.java:227)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at sun.reflect.GeneratedMethodAccessor404.invoke(Unknown Source)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at java.lang.reflect.Method.invoke(Method.java:597)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.invocation.Invocation.performCall(Invocation.java:359)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:237)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:158)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:169)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:378)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:168)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:138)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:648)
    2012-01-06 15:31:41,867 ERROR [STDERR]           at org.jboss.ejb.Container.invoke(Container.java:960)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:430)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:103)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at $Proxy186.doSupports(Unknown Source)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:104)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:165)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:129)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessage Receiver.java:93)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:22 5)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.workflow.engine.PEInvokeProcessCommand.execute(PEInvokeProcessCommand.java:126)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.workflow.workadapter.WorkflowCommandExecutionUnit.execute(WorkflowCommandExecut ionUnit.java:22)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.workmanager.adapter.ManagedAsynchronousWorkAdapter.run(ManagedAsynchron ousWorkAdapter.java:70)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at org.jboss.resource.work.WorkWrapper.execute(WorkWrapper.java:204)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at org.jboss.util.threadpool.BasicTaskWrapper.run(BasicTaskWrapper.java:275)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:743)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at java.lang.Thread.run(Thread.java:619)
    2012-01-06 15:31:41,883 ERROR [STDERR] Caused by: ALC-DSC-003-000: com.adobe.idp.dsc.DSCInvocationException: Invocation error.
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:152)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.DocumentPassivationInterceptor.intercept(DocumentPassi vationInterceptor.java:53)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTr ansactionCMTAdapterBean.java:357)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doRequiresNew (EjbTransactionCMTAdapterBean.java:299)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at sun.reflect.GeneratedMethodAccessor239.invoke(Unknown Source)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at java.lang.reflect.Method.invoke(Method.java:597)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at org.jboss.invocation.Invocation.performCall(Invocation.java:359)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:237)
    2012-01-06 15:31:41,883 ERROR [STDERR]           at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:158)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:169)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:404)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:168)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:138)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:648)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at org.jboss.ejb.Container.invoke(Container.java:960)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:430)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:103)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at $Proxy186.doRequiresNew(Unknown Source)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:143)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:165)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:129)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.invoke(AbstractMessageReceiv er.java:329)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at com.adobe.idp.dsc.provider.impl.ejb.receiver.EjbReceiverBean.invoke(EjbReceiverBean.java: 158)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at java.lang.reflect.Method.invoke(Method.java:597)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at org.jboss.invocation.Invocation.performCall(Invocation.java:359)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:237)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:158)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:169)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:378)
    2012-01-06 15:31:41,898 ERROR [STDERR]           at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:168)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:138)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:648)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at org.jboss.ejb.Container.invoke(Container.java:960)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at sun.reflect.GeneratedMethodAccessor604.invoke(Unknown Source)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at java.lang.reflect.Method.invoke(Method.java:597)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at org.jboss.invocation.local.LocalInvoker$MBeanServerAction.invoke(LocalInvoker.java:169)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:118)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at org.jboss.invocation.InvokerInterceptor.invokeLocalMarshalled(InvokerInterceptor.java:295 )
    2012-01-06 15:31:41,914 ERROR [STDERR]           at org.jboss.invocation.MarshallingInvokerInterceptor.invoke(MarshallingInvokerInterceptor.j ava:61)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:61)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:70)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at org.jboss.proxy.ejb.StatelessSessionInterceptor.invoke(StatelessSessionInterceptor.java:1 12)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:100)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at $Proxy309.invoke(Unknown Source)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at com.adobe.idp.dsc.provider.impl.ejb.EjbMessageDispatcher.doSend(EjbMessageDispatcher.java :148)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at com.adobe.idp.taskmanager.dsc.client.TypedTaskManagerService.invokeWithRetry2(TypedTaskMa nagerService.java:159)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at com.adobe.idp.taskmanager.dsc.client.TypedTaskManagerService.invokeWithRetry(TypedTaskMan agerService.java:147)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at com.adobe.idp.taskmanager.dsc.client.TypedTaskManagerService.setVisibility(TypedTaskManag erService.java:1495)
    2012-01-06 15:31:41,914 ERROR [STDERR]           ... 131 more
    2012-01-06 15:31:41,914 ERROR [STDERR] Caused by: com.adobe.idp.taskmanager.dsc.client.task.TaskNotFoundException: no task found for task ID = 1709
    2012-01-06 15:31:41,914 ERROR [STDERR]           at com.adobe.idp.taskmanager.dsc.service.TaskManagerServiceImpl.setVisibility(TaskManagerSer viceImpl.java:5209)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at java.lang.reflect.Method.invoke(Method.java:597)
    2012-01-06 15:31:41,914 ERROR [STDERR]           at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
    2012-01-06 15:31:41,914 ERROR [STDERR]           ... 212 more
    Please provide some pointers.
    Thanks and Regards,
    Chalukya.

    com.adobe.idp.taskmanager.dsc.client.task.TaskNotFoundException: no task found for task ID = 1709
    From the above log entry, it is apparent that the Task Id 1709 does not exist. Can you make sure that?
    Nith

  • Error in application: custom component Localization in flex library project

    Hi!
    I created custom component in flex library project and I created resource bundle for it. Now it all compiles, but when I add the component to other project I get an error: Unable to resolve resource bundle "Guestbook" for locale "en_US".
    So can someone help me with this?

    Where are your resource bundles located in relation to your Flex project src folder?
    You may need to add the path to the bundles using Project - Properties - Flex Build Path and then add the parent folder to the resource bundles.
    If this post answers your question or helps, please mark it as such.
    Greg Lafrance - Flex 2 and 3 ACE certified
    www.ChikaraDev.com
    Flex / AIR Development, Training, and Support Services

  • Custom component property value handling at run time

    I would like to develop simple custom component which has three properties PROP1, PROP2 & RESULT . These parameters are bound to excel sheet cells as follows..
    cell A1 connected to PROP1
    cell A2 connected to PROP2 and
    cell A3 connected to RESULT.
    In excel A1 cell has excel formula set as =IF(A2<5,10,0).
    Custom component would be simple button display at runtime and on click of the same, I would like to perform following actions in sequence with N number of times.
    1. First push any random number to PROP2. (which is simple task, I believe)
    2. Pick new value of PROP1 which is changed due to existance of excel formula (+ using dispatchevent I could able to pass value to excel cell A2. But not able to read new value of PROP1+)
    3. check new PROP1 value equal to 10. If it is 10 then count it otherwise again push new random value to PROP2.
    4. Continue step 1 to 3 till N number of times. and finally
    4. Push number of counts for PROP1 value 10 to RESULT parameter.
    All the parameters are bindable (getter/setter with [Bindable]) in Flex component application and flex propertysheet application use binding ID to bind with cell address. with binding direction BOTH and SINGLETON
    Here is flex function code which triggered at button click.
    public function test002():void {
    while ( N < 100)
      this.PROP2 = Math.round(Math.random()*1000);
      dispatchEvent(new PropertyChangeEvent(PropertyChangeEvent.PROPERTY_CHANGE, false, false, PropertyChangeEventKind.UPDATE, "PROP2", null, PROP2, this));
         if (this.PROP1 == 10)
          cnt++;
       this.RESULT = cnt;
    My observations are as follows.
    - new push of value to PROP2 get reflected to excel A2 when button click event is over, not at the time of while loop process execution.
    - Also I observed PROP1 value never changes and it is the value which is recorded just before button click event of component at run time and remain the same till button click event is over.
    - Further to this I notice as click event is over, new value of PROP2 reflected in cell A2 and change value (if it passes IF formula of excel ) in A1 as well. Next button click action takes these new A1 and A2 values in consideration and process the function "test002".
    I would like to understand possibility of custom component event execution process, which can able to pass as well as read value from component parameters to underlying excel with changes due to excel formula existance.  If it is not limitations (If so) what is the set of commands which can be helpful to achieve this. I appreciate if anybody explain typical event execution required in such scenarios with some actionscript code directions.
    Thanks
    Sandesh
    Edited by: Sandesh Darne on Feb 8, 2010 11:48 AM
    Edited by: Sandesh Darne on Feb 10, 2010 5:23 AM

    Marton,
    I have tried your solution. It works well immediately after xcelsius dashboard get displayed or preview. It does not wait click event to happen. So I modified further by adding one switch ( "switch001" in code piece shown below) to control iteration by click event. That stops running of iteration immediate after dashboard display.
    In order to see iteration I have to click twice on button. First click does send "frm" parameter value to excel and excel formula operates. The excel formula result send back to component via SETTER of "frmResult" . But it stops over there. If I click second time the iteration starts for 100 times.
    Also I try to export this to PDF. PDF file get generated. If I try to open PDF file it raise error.
    My code is attached here.
    "frm" is the parameter that sends random number to excel.
    "frmResult" parameter receives excel formula output and send it back to component.
    "test()" function operate on button click event and set switch001 and then calls "Calc" function for iterations.
    MXML code..........
      <mx:VBox>
           <mx:TextInput id="frmResultLabel" width="100" />
           <mx:Button label="test..." click="test()"/>
      </mx:VBox>
    Actionscript code
    public var cnt:int;
              public var N:int = 0;
              public var sum:int = 0;
              public var switch001:Boolean = false;
             public function test():void {
                   N = 0;
                   sum = 0;
                   switch001 = true;
              public function Calc():void {
              if (switch001 == true)
                if (N < 100)
                    this.frm = Math.round(Math.random() * 1000);
                else if (N == 100)  // return the result
                     this.frmResult = sum;
                     // Label component use to display frm and frmResult values at runtime
                     frmResultLabel.text = sum.toString() + ">" + this.frm + ">" + this.frmResult;
                 N++;
              [Bindable]
              private var _frm:int;
              private var _frmChanged:Boolean = true;
              [Bindable]
              public function get frm():int
                   return _frm;
              public function set frm(value:int):void
                   //if (value == null)  value = 0;
                   if (_frm != value)
                        _frm = value;
                        _frmChanged = true;
                        invalidateProperties();
              override protected function commitProperties():void
                 super.commitProperties();
                 if (_frmResultChanged == true)
                        // start the cycle again by generating a new random number,
                        // or write out the result
                        Calc();

  • How to invoke a custom adapter from a BPEL process

    Hi guys,
    I've implemented a custom outbound adapter and deployed successfully on Weblogic V.10.3.4.
    My current installation also consists of Oracle SOA Suite 11g / JDeveloper 11g (11.1.1.4.0)
    In the Weblogic administrator's console,
    *1.* I navigated to:
    Summary of Deployments -> AdapterName -> Configuration -> Outbound Connection Pools
    *2.* Selected: javax.resource.cci.ConnectionFactory and added new JNDI name for Outbound Connection Instance: "*eis/HelloWorld*"
    My task is to invoke the custom adapter from a BPEL process.
    I altered the customAdapter-config.xml so as to be able to use custom adapter wizard from JDeveloper's "Service Adapters" palette,
    and fullfilled the custom adapter wizard's fields accordingly. The 3rd step of the wizard requires Connection Information.
    I added: "*eis/HelloWorld*" in the "*Connection Factory Location*" field.
    Deployed BPEL process successfully, but testing failed due to binding.jca-12510 error:
    "The JCA Binding Component was unable to establish an outbound JCA CCI connection due to the following issue: BINDING.JCA-12510 JCA Resource Adapter location error. Unable to locate the JCA Resource Adapter via .jca binding file element <connection-factory/> The JCA Binding Component is unable to startup the Resource Adapter specified in the <connection-factory/> element: location='eis/HelloWorld'. The reason for this is most likely that either 1) the Resource Adapters RAR file has not been deployed successfully to the WebLogic Application server or 2) the '<jndi-name>' element in weblogic-ra.xml has not been set to eis/HelloWorld. In the last case you will have to add a new WebLogic JCA connection factory (deploy a RAR). Please correct this and then restart the Application Server "I tried to apply (just for testing) "eis/FileAdapter" in the "Connection Factory Location" field of the custom adapter wizard,
    and BPEL successfully invoked the adapter.
    Any ideas ?
    Thanks,
    George

    George, What deployment do you have this associated with?
    - D.J.

  • Error when calling bpm service from custom component

    Hi all,
    I have built a custom component in order to fetch task related data by calling a bpm service inside the method of my custom service.
    This is the error trace i got in audit info.
    "not loading page MSG_PAGE because it is up to date with timestamp 1324331008000
    Script stack dump (user: abc, request: IdcService=CUSTOM_SERVICE&dDocName=ABC018005)
    No resource include or function stack for error. "
    What does this error signify?
    In the service definition of my custom service, I am using MSG_PAGE as my template. Is it related to this why i am facing the error? how do i get to know for a particular  functionality i should use a particular template?
    Please provide your inputs asap.
    Thanks in advance.

    HI jiri,
    Please have a look at the stacktrace and provide me a solution as in how to overcome the error.
    I had included Report.trace in order to check the flow of the program and found that the problem arises when i establish the connection.
    Caused by: java.lang.IllegalArgumentException: interface bpmpackage.TaskQueryService is not visible from class loader
             at java.lang.reflect.Proxy.getProxyClass(Proxy.java:353)
             at java.lang.reflect.Proxy.newProxyInstance(Proxy.java:581)
             at weblogic.wsee.jaxws.spi.ClientInstance.createProxyInstance(ClientInstance.java:143)
             at weblogic.wsee.jaxws.spi.WLSProvider$ServiceDelegate.getPort(WLSProvider.java:855)
             at com.sun.xml.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:344)
             at weblogic.wsee.jaxws.spi.WLSProvider$ServiceDelegate.getPort(WLSProvider.java:792)
             at com.sun.xml.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:326)
             at javax.xml.ws.Service.getPort(Service.java:92)
             at bpmpackage.TaskQueryService_Service.getTaskQueryServicePort(TaskQueryService_Service.java:97)
             at package.BPMConnection.getService(BPMConnection.java:58)
             at package.classname.fetchTasks(classname.java:239)
             at package.classname.InboundServiceMethod(classname.java:311)
             at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
             at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
             at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
             at java.lang.reflect.Method.invoke(Method.java:597)
             at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)
             at intradoc.common.ClassHelperUtils.executeMethodReportStatus(ClassHelperUtils.java:324)
             at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:79)
    Thanks in advance.

  • Error when installing a Custom Component

    Hi there,
    I wrote a custom component and built the according jar-file. The next step was to import the jar-file into the workbench.
    When I tried to do so the following error occurred (workbench .log file):
    !ENTRY com.adobe.DSC_Admin_UI 4 4 2008-01-15 16:05:43.418
    !MESSAGE install of C:\tmp\adobe-components\adobe-component.jar failed
    !STACK 0
    ALC-DSC-000-000: com.adobe.idp.dsc.DSCRuntimeException: Internal error.
    Caused by: java.io.FileNotFoundException: C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\ArchiveStore\306\at\integrata\livecycle\component\Boot strapImpl.class (The system cannot find the path specified)
    Caused by: java.io.FileNotFoundException: C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\ArchiveStore\306\at\integrata\livecycle\component\Boot strapImpl.class (The system cannot find the path specified)
    The problem is, that the workbench is not running on the same computer as the ES server. When I extract the jar-file manually into the considered directory on the server everything works fine.
    Is this a bug or even not possible to import components from a remote workbench?
    kind regards
    Michael

    Hy all,
    I have been having the same problem.
    I think the cause with me is that I added libraries my component needs manually into the jar-file of my component and sometimes I added the component.xml file manually into the component-jar. I use 7Zip for this but every I did that I could not get the component to install correctly, unless I unpacked it manually in the temp-dir.
    I believe this is happens because when I manually place files in the jar file with a tool like 7Zip they are automatically being compressed and the jar-file of a component must not be compressed.
    So therefore I imported everything correctly in my Eclipse-project and now when I Export my component to a jar-file, everything is included and I don't have to place files manually into the jar-file of my component.
    When I install a component created like that I don't have any problems.
    Hope this helps for you to.
    Regards,
    RonnyR

  • Error when calling a custom component in Web UI.

    Hello Experts ,
    We have  created a custom component for guided procedure in Web UI . When we link the custome component with the standard component for the home page ( WCC_SSV_HOME ) we found that custom controller for guided procedure works . We are navigating the guided procedure for search functioanlity and it works fine and shows the search result .
    But when we click on any of the searched objects say a Case , then links on that  Case is not working .
    For example , we are getting the below  error :
    Exception Class  CX_BSP_WD_INCORRECT_IMPLEMENT - Define NavigationalLink BP for source view ZSOA.MainWindow
    Any inputs on this is higly apreciated.
    Regards
    Vinayak

    Hi Vinayak,
    I am assuming that the implementation of the navigation from the search result to the object details is not working.
    The error you mentioned pointed me that you do not have the navigation link. I don't know what is missing so I am giving you the full details please cross check what you missed.
    1> create and eventhandler e.g. EH_ONSINGLESELECTION
    2> create an outbound plug in your view - this plug is used for the navigation to the target of the hyperlink.
    3> create an outbound plug in the window.
    Define the navigation link whth the name according to the string you have put in the event handler in the search component e.g. SINGLESELECTION
    as source define the component usage for the search. as target define the component usage of header    -> this will handle the connection from search to the header.
    Hope this will help.
    Thanks,
    Vikash.

  • NoSuchMethodError when invoking EJB Component  From BPM Process

    Hi,
    I created BPM process which contains global creation activity and user interactive activity and catalogued ejb component. In user interactive activity i wrote the Process Business Language to invoke Remote EJB deployed in weblogic server. When i tried to execute user interactive activity, i got the following exception.
    Caused by: java.lang.NoSuchMethodError: weblogic.kernel.KernelStatus.isThinIIOPClient()Z
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.readObject(RemoteBusinessIntfProxy.java:192)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at java.io.ObjectStreamClass.invokeReadObject(Unknown Source)
         at java.io.ObjectInputStream.readSerialData(Unknown Source)
         at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
         at java.io.ObjectInputStream.readObject0(Unknown Source)
         at java.io.ObjectInputStream.defaultReadFields(Unknown Source)
         at java.io.ObjectInputStream.readSerialData(Unknown Source)
         at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
         at java.io.ObjectInputStream.readObject0(Unknown Source)
         at java.io.ObjectInputStream.readObject(Unknown Source)
         at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:195)
         at weblogic.rjvm.MsgAbbrevInputStream.readObject(MsgAbbrevInputStream.java:565)
         at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:191)
         at weblogic.rmi.internal.ObjectIO.readObject(ObjectIO.java:62)
         at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:201)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:338)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:252)
         at weblogic.jndi.internal.ServerNamingNode_921_WLStub.lookup(Unknown Source)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:374)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:362)
         at javax.naming.InitialContext.lookup(Unknown Source)
         at fuego.jndi.FaultTolerantContext.lookup(FaultTolerantContext.java:515)
         at fuego.connector.impl.BaseRemoteConnector.getReferencedObject(BaseRemoteConnector.java:116)
         at fuego.connector.impl.BaseRemoteConnector.getReferencedObject(BaseRemoteConnector.java:107)
         at fuego.ejb.EJBConnector.getEJBHome(EJBConnector.java:62)
         at fuego.ejb.EJBConnector.getEJBHome(EJBConnector.java:52)
         at fuego.ejb.EJBConnector.getResource(EJBConnector.java:101)
         at fuego.ejb.EJBConnector.getResource(EJBConnector.java:91)
         at fuego.ejb.EJBConnector.getResource(EJBConnector.java:79)
         at fuego.connector.ConnectorTransaction.getResource(ConnectorTransaction.java:276)
         at fuego.connector.EJBHelper.getEJBHome(EJBHelper.java:36)
         at fuego.connector.EJBHelper.getEJBHome(EJBHelper.java:30)
         at fuego.ejb.EJBHome.locate(EJBHome.java:119)
         at OrderManagement.SampleOrderProcess.Default_1_0.Instance.CIL_submitOrder(Instance.xcdl:1)
         at OrderManagement.SampleOrderProcess.Default_1_0.Instance.CIL_submitOrder(Instance.xcdl)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at fuego.component.ExecutionThreadContext.invokeMethod(ExecutionThreadContext.java:512)
    what i noticed here is in Oracle BPM Studio there is weblogic jar file which contains Kernel status file. The KernelStatus file do not have "isThinIIOPClient method". But in wlclient jar file there is Kernel status class which contains "isThinIIOPClient" method.
    How can I override the weblogic.jar and wlclient.jar for Oracle BPM?
    Please help me to resolve this problem.
    Thanks and Regards
    Mahesh Babu

    I resolved the above issue by generating ejb2.1 session bean and ejb2.1 client. But When i tried to invoke ejb2.1 session bean from process using Process Business Language, it throws the following exception.
    Task failed.
    Caused by: Task '0' in activity '/SampleOrderProcess#Default-1.0/Interactive[SubmitOrder]' for instance '/SampleOrderProcess#Default-1.0/1/0' could not be successfully executed. The task failed while executing method 'submitOrder'.
    Caused by: The method 'CIL_submitOrder' from class 'OrderManagement.SampleOrderProcess.Default_1_0.Instance' could not be successfully executed.
    Caused by: java.lang.IncompatibleClassChangeError
    Caused by: fuego.lang.ComponentExecutionException: The method 'CIL_submitOrder' from class 'OrderManagement.SampleOrderProcess.Default_1_0.Instance' could not be successfully executed.
         at fuego.component.ExecutionThreadContext.invokeMethod(ExecutionThreadContext.java:519)
         at fuego.component.ExecutionThreadContext.invokeMethod(ExecutionThreadContext.java:273)
         at fuego.fengine.FEEngineExecutionContext.invokeMethodAsCil(FEEngineExecutionContext.java:219)
         at fuego.server.execution.EngineExecutionContext.runCil(EngineExecutionContext.java:1280)
         at fuego.server.execution.TaskExecution.invoke(TaskExecution.java:401)
         at fuego.server.execution.InteractiveNormalCilExecution.invoke(InteractiveNormalCilExecution.java:425)
         at fuego.server.execution.TaskExecution.executeCIL(TaskExecution.java:513)
         at fuego.server.execution.TaskExecution.executeTask(TaskExecution.java:697)
         at fuego.server.execution.TaskExecution.executeTask(TaskExecution.java:657)
         at fuego.server.execution.TaskExecution.executeTask(TaskExecution.java:154)
         at fuego.server.execution.microactivity.InteractiveMicroActivity.executeNormalCil(InteractiveMicroActivity.java:501)
         at fuego.server.execution.microactivity.InteractiveMicroActivity.executeItem(InteractiveMicroActivity.java:454)
         at fuego.server.execution.microactivity.InteractiveMicroActivity.execute(InteractiveMicroActivity.java:104)
         at fuego.server.AbstractProcessBean$48.execute(AbstractProcessBean.java:3184)
         at fuego.server.execution.DefaultEngineExecution$AtomicExecutionTA.runTransaction(DefaultEngineExecution.java:304)
         at fuego.transaction.TransactionAction.startBaseTransaction(TransactionAction.java:470)
         at fuego.transaction.TransactionAction.startTransaction(TransactionAction.java:551)
         at fuego.transaction.TransactionAction.start(TransactionAction.java:212)
         at fuego.server.execution.DefaultEngineExecution.executeImmediate(DefaultEngineExecution.java:123)
         at fuego.server.execution.EngineExecution.executeImmediate(EngineExecution.java:66)
         at fuego.server.AbstractProcessBean.runTask(AbstractProcessBean.java:3188)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at fuego.lang.JavaClass.invokeMethod(JavaClass.java:1410)
         at fuego.lang.JavaObject.invoke(JavaObject.java:227)
         at fuego.component.Message.process(Message.java:585)
         at fuego.component.ExecutionThread.processMessage(ExecutionThread.java:780)
         at fuego.component.ExecutionThread.processBatch(ExecutionThread.java:755)
         at fuego.component.ExecutionThread.doProcessBatch(ExecutionThread.java:142)
         at fuego.component.ExecutionThread.doProcessBatch(ExecutionThread.java:134)
         at fuego.fengine.FEngineProcessBean.processBatch(FEngineProcessBean.java:244)
         at fuego.component.ExecutionThread.work(ExecutionThread.java:839)
         at fuego.component.ExecutionThread.run(ExecutionThread.java:408)
    Caused by: java.lang.IncompatibleClassChangeError
         at OrderManagement.SampleOrderProcess.Default_1_0.Instance.CIL_submitOrder(Instance.xcdl:5)
         at OrderManagement.SampleOrderProcess.Default_1_0.Instance.CIL_submitOrder(Instance.xcdl)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at fuego.component.ExecutionThreadContext.invokeMethod(ExecutionThreadContext.java:512)
         ... 34 more
    Please help me to resolve this issue.
    Thanks and Regards
    Mahesh Babu

  • Error  "expected a myfaces custom component class in package"

    Can anybody help me on this?
    just copied the sandbox code on selectmanypicklist and tried in a separate package of mine.
    created a jsp page and used the selectmanypicklist component and im getting the component on my browser.
    But whn i added the javascript resource calling by "encodeJavascript(facesContext, uiComponent);" im geting an error saying tht "expected a myfaces custom component class in package org.apache.myfaces.custom". i placed the java script file in "mypackage/list/resource/pikscript.js".
    should i add anything on faces-config.xml file or anywhr else?
    Anybody can help on this?
    Thanx in Advance.

    The problem is that it calls a method validateCustomComponent in MyFacesResourceHandler to see if it can load the js file. This method controlls if the path of the js file begins with org.apache.myfaces.custom. If not throws an exception and doesn't load the file. I changed the package of the class that's trying to load the file in org.apache.myfaces.custom.xx and the package of the file js in org.apache.myfaces.custom.xx.resource. Now it's working.

  • Error when start a new Custom Component

    Hi,
    I've created and installed a new basic Custom Component, but when I try to run it I get a error.
    Here the Eclipse error log:
    ALC-DSC-000-000: com.adobe.idp.dsc.DSCRuntimeException: Internal error.
    at com.adobe.idp.dsc.registry.component.client.ComponentRegistryClient.start(ComponentRegist ryClient.java:226)
    at com.adobe.common.utils.ServiceRegistryUtils.startComponent(ServiceRegistryUtils.java:624)
    Caused by: ALC-DSC-005-000: com.adobe.idp.dsc.DSCNotSerializableException: Not Serializable
    Caused by: ALC-DSC-000-000: com.adobe.idp.dsc.DSCRuntimeException: Internal error.
    at com.adobe.idp.dsc.registry.service.impl.ServiceRegistryImpl.createAndDeploy(ServiceRegist ryImpl.java:1398)
    at com.adobe.idp.dsc.registry.component.impl.ComponentRegistryImpl.start(ComponentRegistryIm pl.java:781)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    My component is very simple, and is based on article writen by Michael Hodgson.
    kind regards
    Valerio

    (...) What am i missing here? (...) - Sharepoint 2013 and probable bug in FIM related to it. Check this thread for workaround
    and resolution:
    http://social.technet.microsoft.com/Forums/en-US/1b76672d-1276-4c71-b9fc-5bb1fcb36877/event-id-3-with-approval-activity?forum=ilm2
    Tomek Onyszko, memberOf Predica FIM Team (http://www.predica.pl), IdAM knowledge provider @ http://blog.predica.pl

  • Cannot execute custom component.:Method not found error

    Hi,
    I have created a custom component. When i execute the component i am getting error message :"Unable to execute service ABC and function XYZ." The service method XYZ is not defined.
    intradoc.data.DataException: !csMethodNotDefined,XYZ
    Where else i have to define my method in component wizard?
    Please provide inputs
    Thanks in advance

    If you haven't done it yet, get a copy of the Bex's book http://www.amazon.com/Definitive-Stellent-Content-Server-Development/dp/1590596846
    The chapter 10 will explain how a service, and its methods are bound to Java package whose classes extend the standard interfaces.

  • Validation Error - JSF Custom Component

    I am trying to create a Custom Component. It is a pre-populated list of selection items. So all that the page author would have to do is use a tag like
    <jsfcust:mySelectOneComponent  value="#{requestScope.selectedItem}/>and this should display a drop-down list from which only one item can be selected. I got this working except for the final stretch.
    I created the following...
    1. tag in the .tld file
    2. CustSelectOneTag.java (set the value as a ValueBinding in setProperties() method)
    3. CustSelectComponent.java
    4. CustSelectRenderer.java (In the decode() method, called setSubmittedValue(value) on the component)
    5. updated the faces-config.xml file
    The display seems to be working fine. The problem is when I click on a Submit button and go to the next page where I want to display the selected value. It shows up as null. All that I want to do is be able to select an item from the custom drop down and display it in the next page after hitting submit.
    What is the proper way to send the value back in the response? In my case, I was merely trying to pass the value so that the next page can access it from the request scope and display it.
    I was not sure if I had to implement the getConvertedValue() method in my renderer. Can someone help?
    Thanks,
    JM

    Thanks for your reply! Your answer fixed my problems, so definitely thanks! I need to use escaped values for things like "<,&,#, etc", like the pound "amp" semicolon stuff. If I try to type out strings like these the forum unescapes them - fun part of posting forum questions about HTML escaping on HTML-based forums! :) I didn't realize an escaped querystring would still work as expected in a <a href ... />. You actually fixed both of my problems, and I... I do feel appropriately foolish now :) Had a feeling this might be a slaps forehead one. Thanks for the quick answer!,
    Jim

Maybe you are looking for

  • Problem with Touch ID

    Hi,I have an iphone 5s.when I want to set a fingerprint in touch id after some scan this massage appears"Unable to scan try again" and I have this problem also in ios7.0.4.I try restoring or reseting but this problem didnt solve.please help me.

  • When will the new Mac Mini's ship

    I just pre-ordered one from Amazon since they don't charge tax or shipping, but I was wondering when will Apple be shipping the Mac Mini's to retailers. If anyone knows, please tell me. And this is my first Mac, so I'm kind of excited about it.

  • Poor commitment to support / bug fixes?

    I've just brought fireworks 8, but have found a bug when you re-size using CM as the gage. Reduce a page from 31cm to 21cm (A4), and it actually chooses 8.9cm. So I went to the adobe site as this product is less than 2 weeks old for me, and I have NO

  • Hold down sleep and home buttons to get power back to iPad 4 but nothing happens

    My iPad 4 was purchased 11/2013.  It's in pristine condition.  A few weeks ago i opened a email from a known source.  The screen vertical hold went loopy and then powered-off.  I held the sleep and home buttons and restarted and everything good.  Wee

  • Hyperlinked Pages Generate Unknown Printing Error

    I'm working in a 300+ page catalog that I've never had problems with. Today it decided to give methe following error when trying to print or export to a PDF: "Printing Error: The Adobe Print Engine has failed to output your data due to an unknown pro