Exception During Transcoding: unrecognized fill type

I'm running Flex 2.0.1 with HotFix 3. and everytime I output
any SWF from Flash, whether it be Flash 9/AS3 or Flash 8/AS2, and
try to embed it into my Flex Application I get an "exception during
transcoding: unrecognized fill style type: 19" error. I've tried
embeding the symbol that I want as well as embedding the entire
swf. I've noticed that when I change the fill type from Gradient to
Solid the style type goes from 19 to 255.
Is this a bug with the flex compiler?

I'm on Mac OSX Snow Leopard and I have the Adobe CS4 Master Collection updated to latest. I was using DVD Studio pro for a short project and I started to recreate the whole thing in Encore CS4 as I had more flexibility with Photoshop based menu system for the DVD.
I have a simple menu system created in Photoshop with the corresponding (+) naming for the layers. My menu has 4 text buttons, 1 logo layer and a background. I left all the text as text, didn't rasterize the text. ( I tried that after the crashes but with same bad result)
In Encore CS4 I imported the PSD file as a Menu Asset. I set up a video asset to loop as the background, and an audio asset to play.
I have 4 timeline assets with short videos.
I connected each button to the apropriate timeline to play.
At the end of each timeline I set up to go back to the Menu.
The Menu is set to Firts Play.
That't it.
When I go to Build I hit the Check Project and it tells me that I have 2 Orphan Menus. Now when I try to click on them Adobe Encore CS4 Crashes.
If I don't click on them and I hit Continue with Building, it starts transcoding but after a few minutes of trasncoding it crashes.
I found a long thread about the Orphan menu BUG Crash, but I didn't found a solution. I cleared my cache, I recreated the menu with rasterized text, but crashed again. I created a new menu system with buttons taken from the Library, the Orphan menu was not there anymore at Check Project, and the transcoding was building ok, but then after 30 minutes of trasncoding it crashed again.
Please help as I am frustrated with Encore CS4!!
Imre

Similar Messages

  • Embed tag for Fonts in AS3 "exception during transcoding"

    Hi,
    I have the following problem, I am embeding a font in a project with the embed tag and I get the following error "exception during transcoding".
    [Embed(source="D:/repo/docs/fonts/FreeSans.ttf", fontFamily="Free Sans", fontWeight = 'regular', mimeType = 'application/x-font')] public var auxFont:String;
    I had this same error in Flex but I found that adding "-managers flash.fonts.AFEFontManager" in the properties of the project, ActionScript compiler, Additional compiler arguments took care of it.
    I need to compile this project with the Flash compiler and not Flex is there any place in Flash that I can add that argument?
    Thanks,
    Ana

    Try this:
              [Embed(source="D:/repo/docs/fonts/FreeSans.ttf",  fontFamily="FreeSans")]
              private var freeSans:Class;
    Than, you can use the embedded font via font property of TextFormat class:     myTextFormat.font = "FreeSans";
    Regards,
    gc

  • Exception during transcoding: couldn't read 153600

    Hello everyone.
    I have a Assets.as class where I Embed all my assets.
    I'm trying to Embed a flash file, very simple file, and when I do the embed,
    [Embed(source="assets/ideosC8150/IdeosWidgets.swf")]
    public static const ideosWidgets:Class;

    --> please see the document for BufferedReader class at
    http://java.sun.com/javase/6/docs/api/java/io/BufferedReader.html and as the method you
    use throws a IOException you must either catch it in your code or throw it which is why
    the compiler gives the below error in your code stating that your code must catch
    the exception or throw it look at where the symbol ^ the compiler places it.
    C:\Depo\Save\Java\Chapter 1\Question 3\src\Question_3.java:30: unreported exception java.io.IOException; must be caught or declared to be thrown
            s = kbdReader.readLine();--> correct code is
    public static void main(String[] args) throws IOException
            BufferedReader kbdReader = new BufferedReader(new InputStreamReader(System.in));
            String s;
            s = kbdReader.readLine();
        }or
    public static void main(String[] args)
            BufferedReader kbdReader = new BufferedReader(new InputStreamReader(System.in));
            String s;
    try{
            s = kbdReader.readLine();
    }catch(IOException ex){
    ex.printStackTrace();
        }maybe the internet codes are just giving the code but not in much detail
    --> just add a throws clause or catch the exception and see if your code compiles or not
    --> also you need not used this import import java.lang.* as it is import into every class and interface automatically

  • SOAP Fault:javax.xml.rpc.soap.SOAPFaultException: Exception during processi

    Hi: We are using weblogic81 sp3. Other developers in my office ran the same porgram and got no errors.
    My startWebLogic.cmd are configured exactly same as theirs.
    My startWebLogic classpath:
    set CLASSPATH=%WL_HOME%\server\lib\ojdbc14.jar;%WL_HOME%\server\lib\CR122067_81sp3.jar;%WEBLOGIC_CLASSPATH%;%POINTBASE_CLASSPATH%;%JAVA_HOME%\jre\lib\rt.jar;%WL_HOME%\server\lib\webservices.jar;%CLASSPATH%
    I keep getting this webservice error.
    SOAP Fault:javax.xml.rpc.soap.SOAPFaultException: Exception during processing: w
    eblogic.xml.schema.binding.DeserializationException: mapping lookup failure. typ
    e=['java:language_builtins.util']:ArrayList schema context=TypedSchemaContext{ja
    vaType=[Ljava.lang.Object;} (see Fault Detail for stacktrace)
    Detail:
    <detail>
    <bea_fault:stacktrace xmlns:bea_fault="http://www.bea.com/servers/wls70/webse
    rvice/fault/1.0.0">weblogic.xml.schema.binding.DeserializationException: mapping
    lookup failure. type=['java:language_builtins.util']:ArrayList schema context=T
    ypedSchemaContext{javaType=[Ljava.lang.Object;}
    at weblogic.xml.schema.binding.RuntimeUtils.lookup_deserializer(RuntimeU
    tils.java:461)
    thank you for your help

    we used castor to do xml mapping

  • Overflow during the arithmetical operation (type P) in program "SAPLV61A

    hi,
        I am getting this error in VA01(sales order)
    Runtime error              Compute_bcd_overflow
    Except                       Cx_sy_arithmetic_overflow.
    Overflow during the arithmetical operation (type P) in program "SAPLV61A
    Error in particular line is.
    1388           ADD  xkomv-kwert  TO komp-mwsbp.
    Please give me the solution with detail decsription.How to solve with step by step.

    Hi,
    Instead of directly assigning the value to xkomv-kbetr. Store the value in a temporary variable of type p length 13 decimals 2 . Multiply by 10^n to get the correct result.
    Then assign the temp value to xkomv-kbetr.
    Sample Code
    DATA : lv_temp TYPE P length 13 decimals 2.
    lv_temp = ( xkwert * 10^n ) / komp-mgame. 
    Then assign lv_temp to xkomv-kbetr.
    To get proper value, you have to multiply or divide by 10^n .
    Regards,
    DPM

  • Exception during application deployment

    Hi all,
    I'm trying to deploy a wd application from NWDS (NW2004 sp19) and I get an error:
    The application references the following jars - com.sap.security.api, com.sap.security.api.ep5, bc.rf.framework_api and bc.util.public_api. I also defined a Sharing Reference - "PORTAL:sap.com/com.sap.km.application".
    Full error stacktrace:
    06/10/2008 10:20:25 /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] INFO:
    [007]Additional log information about the deployment
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[1.5.3.7186 - 630]/>
    <!NAME[D:\usr\sap\EPT\JC00\SDM\program\log\sdmcl20081006082023.log]/>
    <!PATTERN[sdmcl20081006082023.log]/>
    <!FORMATTER[com.sap.tc.logging.TraceFormatter(%24d %s: %m)]/>
    <!ENCODING[Cp1255]/>
    <!LOGHEADER[END]/>
    Oct 6, 2008 10:20:23 AM  Info: -
    Starting deployment -
    Oct 6, 2008 10:20:23 AM  Info: Error handling strategy: OnErrorStop
    Oct 6, 2008 10:20:23 AM  Info: Prerequisite error handling strategy: OnPrerequisiteErrorStop
    Oct 6, 2008 10:20:23 AM  Info: Update strategy: UpdateAllVersions
    Oct 6, 2008 10:20:23 AM  Info: Starting deployment prerequisites:
    Oct 6, 2008 10:20:23 AM  Info: Loading selected archives...
    Oct 6, 2008 10:20:23 AM  Info: Loading archive 'D:\usr\sap\EPT\JC00\SDM\program\temp\temp86DepthVisit.ear'
    Oct 6, 2008 10:20:24 AM  Info: Selected archives successfully loaded.
    Oct 6, 2008 10:20:24 AM  Info: Actions per selected component:
    Oct 6, 2008 10:20:24 AM  Info: Update: Selected development component 'DepthVisit'/'local'/'LOKAL'/'0.2008.10.06.10.20.19'/'0' updates currently deployed development component 'DepthVisit'/'local'/'LOKAL'/'0.2008.09.25.15.49.17'/'0'.
    Oct 6, 2008 10:20:24 AM  Info: Ending deployment prerequisites. All items are correct.
    Oct 6, 2008 10:20:24 AM  Info: Saved current Engine state.
    Oct 6, 2008 10:20:24 AM  Info: Starting: Update: Selected development component 'DepthVisit'/'local'/'LOKAL'/'0.2008.10.06.10.20.19'/'0' updates currently deployed development component 'DepthVisit'/'local'/'LOKAL'/'0.2008.09.25.15.49.17'/'0'.
    Oct 6, 2008 10:20:24 AM  Info: SDA to be deployed: D:\usr\sap\EPT\JC00\SDM\root\origin\local\DepthVisit\LOKAL\0\0.2008.10.06.10.20.19\temp86DepthVisit.ear
    Oct 6, 2008 10:20:24 AM  Info: Software type of SDA: J2EE
    Oct 6, 2008 10:20:24 AM  Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****
    Oct 6, 2008 10:20:24 AM  Info: Begin of log messages of the target system:
    08/10/06 10:20:24 -  ***********************************************************
    08/10/06 10:20:24 -  Start updating EAR file...
    08/10/06 10:20:24 -  start-up mode is lazy
    08/10/06 10:20:24 -  EAR file updated successfully for 63ms.
    08/10/06 10:20:24 -  Start updating...
    08/10/06 10:20:24 -  EAR file uploaded to server for 79ms.
    08/10/06 10:20:24 -  ERROR: Not updated. Deploy Service returned ERROR:
                         java.rmi.RemoteException: Cannot deploy application local/DepthVisit..
                         Reason: Exception during generation of components of application local/DepthVisit in container webdynpro.; nested exception is:
                              com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Exception during generation of components of application local/DepthVisit in container webdynpro.
                              at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:567)
                              at com.sap.engine.services.deploy.server.DeployServiceImpl.deployApplicationDuringUpdate(DeployServiceImpl.java:701)
                              at com.sap.engine.services.deploy.server.DeployServiceImpl.update(DeployServiceImpl.java:666)
                              at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1278)
                              at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:320)
                              at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:198)
                              at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:129)
                              at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
                              at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
                              at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
                              at java.security.AccessController.doPrivileged(Native Method)
                              at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
                              at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
                         Caused by: com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Exception during generation of components of application local/DepthVisit in container webdynpro.
                              at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:612)
                              at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:321)
                              at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:307)
                              at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:292)
                              at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:326)
                              at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:3184)
                              at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:552)
                              ... 12 more
                         Caused by: java.lang.NullPointerException
                              at com.sap.engine.services.webdynpro.util.Procedures.switchio(Procedures.java:40)
                              at com.sap.engine.services.webdynpro.ArchiveParser.extractEntry(ArchiveParser.java:127)
                              at com.sap.engine.services.webdynpro.ArchiveParser.process(ArchiveParser.java:101)
                              at com.sap.engine.services.webdynpro.PApplication.process(PApplication.java:170)
                              at com.sap.engine.services.webdynpro.WebDynproContainer.deploy(WebDynproContainer.java:838)
                              at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:606)
                              ... 18 more
                         For detailed information see the log file of the Deploy Service.
    08/10/06 10:20:24 -  ***********************************************************
    Oct 6, 2008 10:20:24 AM  Info: End of log messages of the target system.
    Oct 6, 2008 10:20:24 AM  Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Oct 6, 2008 10:20:24 AM  Error: Aborted: development component 'DepthVisit'/'local'/'LOKAL'/'0.2008.10.06.10.20.19'/'0':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Cannot deploy application local/DepthVisit..
    Reason: Exception during generation of components of application local/DepthVisit in container webdynpro.; nested exception is:
         com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Exception during generation of components of application local/DepthVisit in container webdynpro.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Oct 6, 2008 10:20:24 AM  Info: Starting to save the repository
    Oct 6, 2008 10:20:25 AM  Info: Finished saving the repository
    Oct 6, 2008 10:20:25 AM  Info: J2EE Engine is in same state (online/offline) as it has been before this deployment process.
    Oct 6, 2008 10:20:25 AM  Error: -
    At least one of the Deployments failed -

    Hi,
    Building the ear file is not the problem.
    The deployment fails.
    Seems that somehow I dont have those jars on the server.....
    Aviad
    Edit: I've done a search on the server and all the relevant jars are there, none is missing.
    Whats next?
    Edited by: Aviad Levy on Oct 6, 2008 4:41 PM

  • Error when activate analytic view (join tables)-Exception during activation

    Dear guru,
    I suffered an error showed "Exception during activation" when activate a newly created analytic view.
    I used two tables, one is NASDAQDAILY, one is NYSEDAILY.
    Private attribute are "DATE, STOCK(NYSE.STOCK), STOCK_1(NASDAQ.STOCK"
    Measure are "PRICEOPEN(NYSE), PRICEOPEN_1(NASDAQ)"
    JOINS are: Left Table-NASDAQ, Left Column-DATE
    Right Table-NYSE, Right Column-DATE
    Validate is sucessfully.
    But when "Save and Activate", it gave below error.
    Kindly help me on this. Thank you so much.
    com.sap.ndb.studio.sdk.resource.deployment.bi.DeploymentException: Error during deployment
    _     at com.sap.ndb.studio.sdk.resource.deployment.bi.cv.CubeElement.processMeasures(CubeElement.java:591)_
    _     at com.sap.ndb.studio.sdk.resource.deployment.bi.cv.CubeElement.initialize(CubeElement.java:170)_
    _     at com.sap.ndb.studio.sdk.resource.deployment.bi.cv.CubeSchemaRoot.initialize(CubeSchemaRoot.java:80)_
    _     at com.sap.ndb.studio.sdk.resource.deployment.bi.DeploymentExecutor.initialize(DeploymentExecutor.java:159)_
    _     at com.sap.ndb.studio.sdk.resource.deployment.bi.CubeDimensionDeploymentExecutor.initialize(CubeDimensionDeploymentExecutor.java:78)_
    _     at com.sap.ndb.studio.sdk.resource.bi.core.impl.BiResourceImpl.activateObjects(BiResourceImpl.java:236)_
    _     at com.sap.ndb.studio.sdk.resource.repository.core.impl.ResourceImpl.activateObjects(ResourceImpl.java:868)_
    _     at com.sap.ndb.studio.sdk.resource.repository.core.impl.ResourceImpl.activate(ResourceImpl.java:727)_
    _     at com.sap.ndb.studio.sdk.resource.repository.core.impl.ResourceManager.activateAll(ResourceManager.java:166)_
    _     at com.sap.ndb.studio.sdk.resource.repository.core.impl.ResourceManager.activateAll(ResourceManager.java:202)_
    _     at com.sap.ndb.studio.modeler.job.type.activate.ActivateJob.activateObjects(ActivateJob.java:92)_
    _     at com.sap.ndb.studio.modeler.job.type.activate.ActivateJob.run(ActivateJob.java:71)_
    _     at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)_

    Hello,
    This issue is resolved now.
    The problem was with the file system space on the Unix server(on which portal is installed).
    The server administrators and the Basis team extended the disk space and issue got resolved.
    Thanks for all your inputs.
    Sonali.

  • Exception during processing the payload in RFC Lookup through XSLT

    Hi All,
    We are working on a scenario which does a RFC lookup through the XSLT mapping.
    While testing the XSL in he Interface mapping an Exception is generated:
    19:06:32 Start of test
    Call XSLT processor with stylsheet UKMGetKeyMapLatest.xsl.
    START APPLICATION TRACE ***
    reqNode<?xml version="1.0" encoding="UTF-8"?><rfc:UKM_GET_KEY_MAPPINGS xmlns:rfc="urn:sap-com:document:sap:rfc:functions"><UKM_GET_KEY_MAPPING_Request>
    <b><b><b>LookupException com.sap.aii.mapping.lookup.LookupException: Exception during processing the payload.Problem when calling an adapter by using communication channel RFC_RCV_UKMS_TO_ISV_CSV_CSV (Party: , Service: RM_DEV_PI_ISV_001, Object ID: c09e707cfb253c8997dc2451cb83e3cd) XI AF API call failed. Module exception: 'error while processing the request to rfc-client: com.sap.aii.af.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: could not convert request from XML to RFC:com.sap.mw.jco.JCO$Exception</b></b></b>: (130) JCO_ERROR_XML_PARSER: Unexpecting end of buffer after <UKM_GET_KEY_MAPPING_Request>'. Cause Exception: 'error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: could not convert request from XML to RFC:com.sap.mw.jco.JCO$Exception: (130) JCO_ERROR_XML_PARSER: Unexpecting end of buffer after <UKM_GET_KEY_MAPPING_Request>'. com.sap.aii.mapping.lookup.LookupException: Problem when calling an adapter by using communication channel RFC_RCV_UKMS_TO_ISV_CSV_CSV (Party: , Service: RM_DEV_PI_ISV_001, Object ID: c09e707cfb253c8997dc2451cb83e3cd) XI AF API call failed. Module exception: 'error while processing the request to rfc-client: com.sap.aii.af.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: could not convert request from XML to RFC:com.sap.mw.jco.JCO$Exception: (130) JCO_ERROR_XML_PARSER: Unexpecting end of buffer after <UKM_GET_KEY_MAPPING_Request>'. Cause Exception: 'error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: could not convert request from XML to RFC:com.sap.mw.jco.JCO$Exception: (130) JCO_ERROR_XML_PARSER: Unexpecting end of buffer after <UKM_GET_KEY_MAPPING_Request>'. at com.sap.aii.ibrun.server.lookup.AdapterProxyLocal.process(AdapterProxyLocal.java:96) at com.sap.aii.ibrun.server.lookup.SystemAccessorInternal.call(SystemAccessorInternal.java:47) at com.sap.aii.ibrun.server.lookup.SystemAccessorHmiServer.process(SystemAccessorHmiServer.java:141) at com.sap.aii.ibrun.server.lookup.SystemAccessorHmiServer.process(SystemAccessorHmiServer.java:74) at com.sap.aii.utilxi.hmis.server.HmisServiceImpl.invokeMethod(HmisServiceImpl.java:169) at com.sap.aii.utilxi.hmis.server.HmisServer.process(HmisServer.java:178) at com.sap.aii.utilxi.hmis.web.HmisServletImpl.processRequestByHmiServer(HmisServletImpl.java:296) at com.sap.aii.utilxi.hmis.web.HmisServletImpl.processRequestByHmiServer(HmisServletImpl.java:211) at com.sap.aii.utilxi.hmis.web.workers.HmisInternalClient.doWork(HmisInternalClient.java:70) at com.sap.aii.utilxi.hmis.web.HmisServletImpl.doWork(HmisServletImpl.java:496) at com.sap.aii.utilxi.hmis.web.HmisServletImpl.doPost(HmisServletImpl.java:634) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365) at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944) at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266) at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95) at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:160) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170) Root Cause: com.sap.aii.af.service.api.AFException: XI AF API call failed. Module exception: 'error while processing the request to rfc-client: com.sap.aii.af.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: could not convert request from XML to RFC:com.sap.mw.jco.JCO$Exception: (130) JCO_ERROR_XML_PARSER: Unexpecting end of buffer after <UKM_GET_KEY_MAPPING_Request>'. Cause Exception: 'error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: could not convert request from XML to RFC:com.sap.mw.jco.JCO$Exception: (130) JCO_ERROR_XML_PARSER: Unexpecting end of buffer after <UKM_GET_KEY_MAPPING_Request>'. at com.sap.aii.af.service.api.AdapterAccess.sendMsg(AdapterAccess.java:214) at com.sap.aii.af.service.api.AdapterAccess.call(AdapterAccess.java:99) at com.sap.aii.ibrun.server.lookup.AdapterProxyLocal.process(AdapterProxyLocal.java:87) at com.sap.aii.ibrun.server.lookup.SystemAccessorInternal.call(SystemAccessorInternal.java:47) at com.sap.aii.ibrun.server.lookup.SystemAccessorHmiServer.process(SystemAccessorHmiServer.java:141) at com.sap.aii.ibrun.server.lookup.SystemAccessorHmiServer.process(SystemAccessorHmiServer.java:74) at com.sap.aii.utilxi.hmis.server.HmisServiceImpl.invokeMethod(HmisServiceImpl.java:169) at com.sap.aii.utilxi.hmis.server.HmisServer.process(HmisServer.java:178) at com.sap.aii.utilxi.hmis.web.HmisServletImpl.processRequestByHmiServer(HmisServletImpl.java:296) at com.sap.aii.utilxi.hmis.web.HmisServletImpl.processRequestByHmiServer(HmisServletImpl.java:211) at com.sap.aii.utilxi.hmis.web.workers.HmisInternalClient.doWork(HmisInternalClient.java:70) at com.sap.aii.utilxi.hmis.web.HmisServletImpl.doWork(HmisServletImpl.java:496) at com.sap.aii.utilxi.hmis.web.HmisServletImpl.doPost(HmisServletImpl.java:634) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365) at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944) at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266) at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95) at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:160) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    END APPLICATION TRACE ***
    TransfromerException during XSLT processing:
    javax.xml.transform.TransformerException: com.sap.engine.lib.xml.util.NestedException: Illegal number of arguments or types of arguments in a call of function 'lookup:getNodeContent'. at com.sap.engine.lib.jaxp.TransformerImpl.transform(TransformerImpl.java:251) at com.sap.aii.ibrep.server.mapping.ibrun.RepMappingTransformer.transform(RepMappingTransformer.java:150) at com.sap.aii.ibrep.server.mapping.ibrun.RepXSLTMapping.execute(RepXSLTMapping.java:81) at com.sap.aii.ibrep.server.mapping.ibrun.RepMappingHandler.run(RepMappingHandler.java:80) at com.sap.aii.ibrep.server.mapping.rt.MappingHandlerAdapter.run(MappingHandlerAdapter.java:107) at com.sap.aii.ibrep.server.mapping.ServerMapService.transformInterfaceMapping(ServerMapService.java:127) at com.sap.aii.ibrep.server.mapping.ServerMapService.transform(ServerMapService.java:104) at com.sap.aii.ibrep.sbeans.mapping.MapServiceBean.transform(MapServiceBean.java:40) at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0_0.transform(MapServiceRemoteObjectImpl0_0.java:167) at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0_0p4_Skel.dispatch(MapServiceRemoteObjectImpl0_0p4_Skel.java:104) at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:320) at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:198) at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:129) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170) Caused by: com.sap.engine.lib.xml.util.NestedException: Illegal number of arguments or types of arguments in a call of function 'lookup:getNodeContent'. at com.sap.engine.lib.xsl.xpath.ETFunction.evaluate(ETFunction.java:106) at com.sap.engine.lib.xsl.xpath.XPathProcessor.innerProcess(XPathProcessor.java:56) at com.sap.engine.lib.xsl.xpath.XPathProcessor.process(XPathProcessor.java:43) at com.sap.engine.lib.xsl.xpath.XPathProcessor.process(XPathProcessor.java:51) at com.sap.engine.lib.xsl.xslt.XSLValueOf.process(XSLValueOf.java:76) at com.sap.engine.lib.xsl.xslt.XSLNode.processFromFirst(XSLNode.java:296) at com.sap.engine.lib.xsl.xslt.XSLElement.process(XSLElement.java:248) at com.sap.engine.lib.xsl.xslt.XSLNode.processFromFirst(XSLNode.java:296) at com.sap.engine.lib.xsl.xslt.XSLElement.process(XSLElement.java:248) at com.sap.engine.lib.xsl.xslt.XSLNode.processFromFirst(XSLNode.java:296) at com.sap.engine.lib.xsl.xslt.XSLElement.process(XSLElement.java:248) at com.sap.engine.lib.xsl.xslt.XSLNode.processFromFirst(XSLNode.java:296) at com.sap.engine.lib.xsl.xslt.XSLElement.process(XSLElement.java:248) at com.sap.engine.lib.xsl.xslt.XSLNode.processFromFirst(XSLNode.java:296) at com.sap.engine.lib.xsl.xslt.XSLElement.process(XSLElement.java:248) at com.sap.engine.lib.xsl.xslt.XSLNode.processFromFirst(XSLNode.java:296) at com.sap.engine.lib.xsl.xslt.XSLTemplate.process(XSLTemplate.java:272) at com.sap.engine.lib.xsl.xslt.XSLStylesheet.process(XSLStylesheet.java:463) at com.sap.engine.lib.xsl.xslt.XSLStylesheet.process(XSLStylesheet.java:431) at com.sap.engine.lib.xsl.xslt.XSLStylesheet.process(XSLStylesheet.java:394) at com.sap.engine.lib.jaxp.TransformerImpl.transformWithStylesheet(TransformerImpl.java:398) at com.sap.engine.lib.jaxp.TransformerImpl.transform(TransformerImpl.java:240) ... 18 more -
    com.sap.engine.lib.xml.util.NestedException: Illegal number of arguments or types of arguments in a call of function 'lookup:getNodeContent'. at com.sap.engine.lib.xsl.xpath.ETFunction.evaluate(ETFunction.java:106) at com.sap.engine.lib.xsl.xpath.XPathProcessor.innerProcess(XPathProcessor.java:56) at com.sap.engine.lib.xsl.xpath.XPathProcessor.process(XPathProcessor.java:43) at com.sap.engine.lib.xsl.xpath.XPathProcessor.process(XPathProcessor.java:51) at com.sap.engine.lib.xsl.xslt.XSLValueOf.process(XSLValueOf.java:76) at com.sap.engine.lib.xsl.xslt.XSLNode.processFromFirst(XSLNode.java:296) at com.sap.engine.lib.xsl.xslt.XSLElement.process(XSLElement.java:248) at com.sap.engine.lib.xsl.xslt.XSLNode.processFromFirst(XSLNode.java:296) at com.sap.engine.lib.xsl.xslt.XSLElement.process(XSLElement.java:248) at com.sap.engine.lib.xsl.xslt.XSLNode.processFromFirst(XSLNode.java:296) at com.sap.engine.lib.xsl.xslt.XSLElement.process(XSLElement.java:248) at com.sap.engine.lib.xsl.xslt.XSLNode.processFromFirst(XSLNode.java:296) at com.sap.engine.lib.xsl.xslt.XSLElement.process(XSLElement.java:248) at com.sap.engine.lib.xsl.xslt.XSLNode.processFromFirst(XSLNode.java:296) at com.sap.engine.lib.xsl.xslt.XSLElement.process(XSLElement.java:248) at com.sap.engine.lib.xsl.xslt.XSLNode.processFromFirst(XSLNode.java:296) at com.sap.engine.lib.xsl.xslt.XSLTemplate.process(XSLTemplate.java:272) at com.sap.engine.lib.xsl.xslt.XSLStylesheet.process(XSLStylesheet.java:463) at com.sap.engine.lib.xsl.xslt.XSLStylesheet.process(XSLStylesheet.java:431) at com.sap.engine.lib.xsl.xslt.XSLStylesheet.process(XSLStylesheet.java:394) at com.sap.engine.lib.jaxp.TransformerImpl.transformWithStylesheet(TransformerImpl.java:398) at com.sap.engine.lib.jaxp.TransformerImpl.transform(TransformerImpl.java:240) at com.sap.aii.ibrep.server.mapping.ibrun.RepMappingTransformer.transform(RepMappingTransformer.java:150) at com.sap.aii.ibrep.server.mapping.ibrun.RepXSLTMapping.execute(RepXSLTMapping.java:81) at com.sap.aii.ibrep.server.mapping.ibrun.RepMappingHandler.run(RepMappingHandler.java:80) at com.sap.aii.ibrep.server.mapping.rt.MappingHandlerAdapter.run(MappingHandlerAdapter.java:107) at com.sap.aii.ibrep.server.mapping.ServerMapService.transformInterfaceMapping(ServerMapService.java:127) at com.sap.aii.ibrep.server.mapping.ServerMapService.transform(ServerMapService.java:104) at com.sap.aii.ibrep.sbeans.mapping.MapServiceBean.transform(MapServiceBean.java:40) at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0_0.transform(MapServiceRemoteObjectImpl0_0.java:167) at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0_0p4_Skel.dispatch(MapServiceRemoteObjectImpl0_0p4_Skel.java:104) at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:320) at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:198) at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:129) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    19:06:42 End of test <b></b>
    Can any one please help in sorting this out?
    Thanks in advance.
    Sri..

    check with this:
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/05a3d62e-0a01-0010-14bc-adc8efd4ee14">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/05a3d62e-0a01-0010-14bc-adc8efd4ee14</a>

  • Unknown exception during NsSAX2Reader parse

    Hello!
    I'm using java API for Berkeley DB XML 2.4.13 under Windows XP SP2.
    I have the following peace of code:
    documentConfig = new XmlDocumentConfig();
    XmlResults results = xmlContainer.getAllDocuments(documentConfig);
    while(results.hasNext()) {
    XmlDocument doc = results.next().asDocument();
    After the line "XmlDocument doc = results.next().asDocument()" I get an exception:
    com.sleepycat.dbxml.XmlException: Error: Unknown exception during NsSAX2Reader parse File: \dbxml-2.4.13\dbxml\src\dbxml\nodeStore\NsSAX2Reader.cpp Line: 366, errcode = INTERNAL_ERROR
         at com.sleepycat.dbxml.dbxml_javaJNI.XmlResults_nextInternal(Native Method)
         at com.sleepycat.dbxml.XmlResults.nextInternal(XmlResults.java:162)
         at com.sleepycat.dbxml.XmlResults.next(XmlResults.java:47)
    .... (exceptions in my code)
    Does anybody know how to figure out what is the reason of this error?
    Additional information:
    I added documents to the container via C++ API
    The container has WholeDoc type
    Thanks in advance
    Vyacheslav

    <?xml version="1.0" encoding="utf-8"?>
    <!DOCTYPE omdoc PUBLIC "-//OMDoc//DTD OMDoc V1.2//EN"
    "../../dtd/omdoc.dtd" []>
    <omdoc xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns="http://www.mathweb.org/omdoc"
    xml:id="alg1-omdoc">
    <metadata>
    <dc:title>The OpenMath Content Dictionary alg1.ocd in OMDoc form</dc:title>
    <dc:creator role="trl">Michael Kohlhase</dc:creator>
    <dc:creator role="ant">The OpenMath Society</dc:creator>
    <dc:date> 2001-03-12T00:00:00</dc:date>
    <dc:source>Derived from the OpenMath CD http://www.openmath.org/cd/alg1.ocd.</dc:source>
    <dc:type>Text</dc:type>
    <dc:format>application/omdoc+xml</dc:format>
    <dc:rights>Copyright (c) 2000-2002 Michael Kohlhase;
    This OMDoc content dictionary is released under the OpenMath license:
    http://monet.nag.co.uk/openmath/cdfiles/license.html
    </dc:rights>
    <dc:description>
    A CD of basic algebraic concepts
    At present this CD only holds definitions of zero and one. They are
    deliberately defined here without specifying any particular structure
    (e.g. a group) to which they correspond.
    </dc:description>
    </metadata>
    <theory xml:id="alg1">
    <imports xml:id="alg1-imports-quant1" from="quant1.omdoc#quant1"/>
    <imports xml:id="alg1-imports-relation1" from="relation1.omdoc#relation1"/>
    <imports xml:id="alg1-imports-arith1" from="arith1.omdoc#arith1"/>
    <imports xml:id="alg1-imports-logic1" from="logic1.omdoc#logic1"/>
    <imports xml:id="alg1-imports-set1" from="set1.omdoc#set1"/>
    <imports xml:id="alg1-imports-setname1" from="setname1.omdoc#setname1"/>
    <symbol name="zero" xml:id="zero">
    <metadata>
    <dc:description>This symbol represents the additive identity element.</dc:description><dc:subject>zero</dc:subject></metadata>
    <type system="sts.omdoc#sts">
    <OMOBJ xmlns="http://www.openmath.org/OpenMath"><OMV name="AbelianMonoid"/></OMOBJ>
    </type>
    </symbol>
    <presentation xml:id="pr-zero" for="#zero">
    <use format="default">0</use>
    <use format="cmml" element="zero"/>
    </presentation>
    <assertion xml:id="zero-prop-1" type="lemma">
    <CMP> for all a | a + 0 = a </CMP>
    <FMP>
    <OMOBJ xmlns="http://www.openmath.org/OpenMath">
    <OMBIND>
         <OMS cd="quant1" name="forall"/>
         <OMBVAR>
         <OMV name="a"/>
         </OMBVAR>
         <OMA>
         <OMS cd="relation1" name="eq"/>
         <OMA>
         <OMS cd="arith1" name="plus"/>
         <OMV name="a"/>
         <OMS cd="alg1" name="zero"/>
         </OMA>
         <OMV name="a"/>
         </OMA>
    </OMBIND>
    </OMOBJ>
    </FMP>
    </assertion>
    <assertion xml:id="zero-prop-3" type="lemma">
    <CMP> for all a | 0 * a = 0 </CMP>
    <FMP>
    <OMOBJ xmlns="http://www.openmath.org/OpenMath">
    <OMBIND>
         <OMS cd="quant1" name="forall"/>
         <OMBVAR>
         <OMV name="a"/>
         </OMBVAR>
         <OMA>
         <OMS cd="relation1" name="eq"/>
         <OMA>
         <OMS cd="arith1" name="times"/>
         <OMS cd="alg1" name="zero"/>
         <OMV name="a"/>
         </OMA>
         <OMS cd="alg1" name="zero"/>
         </OMA>
    </OMBIND>
    </OMOBJ>
    </FMP>
    </assertion>
    <assertion xml:id="zero-prop-5" type="lemma">
    <CMP>The zero of the integers is 0</CMP>
    <FMP>
    <OMOBJ xmlns="http://www.openmath.org/OpenMath">
    <OMBIND>
         <OMS cd="quant1" name="forall"/>
         <OMBVAR>
         <OMV name="x"/>
         </OMBVAR>
         <OMA>
         <OMS cd="logic1" name="implies"/>
         <OMA>
         <OMS cd="logic1" name="and"/>
         <OMA>
         <OMS cd="set1" name="in"/>
         <OMV name="x"/>
         <OMS cd="setname1" name="Z"/>
         </OMA>
         <OMA>
         <OMS cd="relation1" name="eq"/>
         <OMV name="x"/>
         <OMS cd="alg1" name="zero"/>
         </OMA>
         </OMA>
         <OMA>
         <OMS cd="relation1" name="eq"/>
         <OMV name="x"/>
         <OMI>0</OMI>
         </OMA>
         </OMA>
    </OMBIND>
    </OMOBJ>
    </FMP>
    </assertion>
    <symbol name="one" xml:id="one">
    <metadata>
    <dc:description>This symbol represents the multiplicative identity element.</dc:description><dc:subject>one</dc:subject></metadata>
    <type system="sts.omdoc#sts">
    <OMOBJ xmlns="http://www.openmath.org/OpenMath">
    <OMV name="Monoid"/>
    </OMOBJ>
    </type>
    </symbol>
    <presentation xml:id="pr-one" for="#one">
    <use format="default">1</use>
    <use format="cmml" element="one"/>
    </presentation>
    <assertion xml:id="one-prop-1" type="lemma">
    <CMP> for all a | 1 * a = a </CMP>
    <FMP>
    <OMOBJ xmlns="http://www.openmath.org/OpenMath">
    <OMBIND>
         <OMS cd="quant1" name="forall"/>
         <OMBVAR>
         <OMV name="a"/>
         </OMBVAR>
         <OMA>
         <OMS cd="relation1" name="eq"/>
         <OMA>
         <OMS cd="arith1" name="times"/>
         <OMS cd="alg1" name="one"/>
         <OMV name="a"/>
         </OMA>
         <OMV name="a"/>
         </OMA>
    </OMBIND>
    </OMOBJ>
    </FMP>
    </assertion>
    <assertion xml:id="one-prop-3" type="lemma">
    <CMP> for all a | a * 1 = a </CMP>
    <FMP>
    <OMOBJ xmlns="http://www.openmath.org/OpenMath">
    <OMBIND>
         <OMS cd="quant1" name="forall"/>
         <OMBVAR>
         <OMV name="a"/>
         </OMBVAR>
         <OMA>
         <OMS cd="relation1" name="eq"/>
         <OMA>
         <OMS cd="arith1" name="times"/>
         <OMV name="a"/>
         <OMS cd="alg1" name="one"/>
         </OMA>
         <OMV name="a"/>
         </OMA>
    </OMBIND>
    </OMOBJ>
    </FMP>
    </assertion>
    <assertion xml:id="one-prop-5" type="lemma">
    <CMP>The one of the integers is 1</CMP>
    <FMP>
    <OMOBJ xmlns="http://www.openmath.org/OpenMath">
    <OMBIND>
         <OMS cd="quant1" name="forall"/>
         <OMBVAR>
         <OMV name="x"/>
         </OMBVAR>
         <OMA>
         <OMS cd="logic1" name="implies"/>
         <OMA>
         <OMS cd="logic1" name="and"/>
         <OMA>
         <OMS cd="set1" name="in"/>
         <OMV name="x"/>
         <OMS cd="setname1" name="Z"/>
         </OMA>
         <OMA>
         <OMS cd="relation1" name="eq"/>
         <OMV name="x"/>
         <OMS cd="alg1" name="one"/>
         </OMA>
         </OMA>
         <OMA>
         <OMS cd="relation1" name="eq"/>
         <OMV name="x"/>
         <OMI>1</OMI>
         </OMA>
         </OMA>
    </OMBIND>
    </OMOBJ>
    </FMP>
    </assertion>
    </theory>
    </omdoc>

  • Error: Action "Install_WatsonX86_Cpu32_Action" threw an exception during execution

    During install of SqlServer Express 2008 (also I tried Developer Edition 2008 R2 with same error) I have error:
    2014-05-01 17:13:52 Slp: Running Action: Install_WatsonX86_Cpu32_Action
    2014-05-01 17:13:52 Slp: Error: Action "Install_WatsonX86_Cpu32_Action" threw an exception during execution.
    2014-05-01 17:13:52 Slp: Microsoft.SqlServer.Setup.Chainer.Workflow.ActionExecutionException: C:\WINDOWS\Installer\7affd.msi ---> System.IO.FileNotFoundException: C:\WINDOWS\Installer\7affd.msi
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Chainer.Infrastructure.MsiNativeMethodHelpers.GetSummaryInformationStringProperty(ServiceContainer context, String pathToMsi, SummaryInformationStreamPropertySet propertyId)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Chainer.Infrastructure.MsiNativeMethodHelpers.GetInstalledSummaryInformationStringProperty(ServiceContainer context, String productCode, SummaryInformationStreamPropertySet propertyId)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Configuration.SetupExtension.MsiInstallEngineActionBehavior.ModifyAction(String installedProductCode, String installedProductVersion, String pathOfPackageOnMedia, InstallAction pkgAction)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Configuration.SetupExtension.MSIInstallerEngine.InstallPackage(PackageId pkg, InstallAction pkgAction)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Configuration.MsiExtension.PackageInstallAction.Execute(String actionId, TextWriter errorStream)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.InvokeAction(WorkflowObject metabase, TextWriter statusStream)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Setup.Chainer.Workflow.PendingActions.InvokeActions(WorkflowObject metaDb, TextWriter loggingStream)
    2014-05-01 17:13:52 Slp:    --- Конец трассировки внутреннего стека исключений ---
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Setup.Chainer.Workflow.PendingActions.InvokeActions(WorkflowObject metaDb, TextWriter loggingStream)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Setup.Chainer.Workflow.ActionEngine.RunActionQueue()Error: Action "MsiTimingAction" threw an exception during execution.
    2014-05-01 17:13:52 Slp: Microsoft.SqlServer.Setup.Chainer.Workflow.ActionExecutionException: C:\WINDOWS\Installer\7affd.msi ---> System.IO.FileNotFoundException: C:\WINDOWS\Installer\7affd.msi
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Chainer.Infrastructure.MsiNativeMethodHelpers.GetSummaryInformationStringProperty(ServiceContainer context, String pathToMsi, SummaryInformationStreamPropertySet propertyId)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Chainer.Infrastructure.MsiNativeMethodHelpers.GetInstalledSummaryInformationStringProperty(ServiceContainer context, String productCode, SummaryInformationStreamPropertySet propertyId)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Configuration.SetupExtension.MsiInstallEngineActionBehavior.ModifyAction(String installedProductCode, String installedProductVersion, String pathOfPackageOnMedia, InstallAction pkgAction)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Configuration.SetupExtension.MSIInstallerEngine.InstallPackage(PackageId pkg, InstallAction pkgAction)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Configuration.MsiExtension.PackageInstallAction.Execute(String actionId, TextWriter errorStream)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.InvokeAction(WorkflowObject metabase, TextWriter statusStream)
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Setup.Chainer.Workflow.PendingActions.InvokeActions(WorkflowObject metaDb, TextWriter loggingStream)
    2014-05-01 17:13:52 Slp:    --- Конец трассировки внутреннего стека исключений ---
    2014-05-01 17:13:52 Slp:    в Microsoft.SqlServer.Setup.Chainer.Workflow.PendingActions.InvokeActions(WorkflowObject metaDb, TextWriter loggingStream)
    2014-05-01 17:13:52 Slp: Received request to add the following file to Watson reporting: C:\Documents and Settings\me\Local Settings\Temp\tmp1C4.tmp
    2014-05-01 17:13:52 Slp: The following is an exception stack listing the exceptions in outermost to innermost order
    2014-05-01 17:13:52 Slp: Inner exceptions are being indented
    2014-05-01 17:13:52 Slp:
    2014-05-01 17:13:52 Slp: Exception type: System.IO.FileNotFoundException
    2014-05-01 17:13:52 Slp:     Message:
    2014-05-01 17:13:52 Slp:         C:\WINDOWS\Installer\7affd.msi
    2014-05-01 17:13:52 Slp:     Stack:
    2014-05-01 17:13:52 Slp:         в Microsoft.SqlServer.Chainer.Infrastructure.MsiNativeMethodHelpers.GetSummaryInformationStringProperty(ServiceContainer context, String pathToMsi, SummaryInformationStreamPropertySet
    propertyId)
    2014-05-01 17:13:52 Slp:         в Microsoft.SqlServer.Chainer.Infrastructure.MsiNativeMethodHelpers.GetInstalledSummaryInformationStringProperty(ServiceContainer context, String productCode, SummaryInformationStreamPropertySet
    propertyId)
    2014-05-01 17:13:52 Slp:         в Microsoft.SqlServer.Configuration.SetupExtension.MsiInstallEngineActionBehavior.ModifyAction(String installedProductCode, String installedProductVersion, String pathOfPackageOnMedia,
    InstallAction pkgAction)
    2014-05-01 17:13:52 Slp:         в Microsoft.SqlServer.Configuration.SetupExtension.MSIInstallerEngine.InstallPackage(PackageId pkg, InstallAction pkgAction)
    2014-05-01 17:13:52 Slp:         в Microsoft.SqlServer.Configuration.MsiExtension.PackageInstallAction.Execute(String actionId, TextWriter errorStream)
    2014-05-01 17:13:52 Slp:         в Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.InvokeAction(WorkflowObject metabase, TextWriter statusStream)
    2014-05-01 17:13:52 Slp:         в Microsoft.SqlServer.Setup.Chainer.Workflow.PendingActions.InvokeActions(WorkflowObject metaDb, TextWriter loggingStream)
    2014-05-01 17:13:56 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Microsoft\Microsoft SQL Server to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140501_171325\Registry_SOFTWARE_Microsoft_Microsoft SQL Server.reg_
    2014-05-01 17:13:56 Slp: Sco: Unable to write hklm registry key SOFTWARE\Microsoft\Microsoft SQL Server to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140501_171325\Registry_SOFTWARE_Microsoft_Microsoft SQL Server.reg_, Win32 error
    2
    2014-05-01 17:13:56 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140501_171325\Registry_SOFTWARE_Microsoft_Windows_CurrentVersion_Uninstall.reg_
    2014-05-01 17:13:56 Slp: Sco: Attempting to write hklm registry key SOFTWARE\Microsoft\MSSQLServer to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140501_171325\Registry_SOFTWARE_Microsoft_MSSQLServer.reg_
    2014-05-01 17:13:56 Slp: Sco: Unable to write hklm registry key SOFTWARE\Microsoft\MSSQLServer to file C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140501_171325\Registry_SOFTWARE_Microsoft_MSSQLServer.reg_, Win32 error 2
    I checked C:\WINDOWS\Installer\ for "7affd.msi" - there is no such file. Also I checked same folder on Win7-64 machine and Notebook WinXP-Pro - there is no such file. I was able to install Express on both Win7-64 and Notebook, but not on this machine.
    I've tried searching for "7affd.msi" on internet without luck. Also I removed all Visual Studio Express 2010 and used any "Fix-It" utilities to check files and registry. And still have same error.
    How to fix it?

    Overall summary:
      Final result:                  Failed: see details below
      Exit code (Decimal):           -819060177
      Exit facility code:            1838
      Exit error code:               8751
      Exit message:                  C:\WINDOWS\Installer\7affd.msi
      Start time:                    2014-05-01 21:16:41
      End time:                      2014-05-01 21:17:00
      Requested action:              ComponentUpdate
      Log with failure:              C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140501_211629\Detail_ComponentUpdate.txt
      Exception help link:           http%3a%2f%2fgo.microsoft.com%2ffwlink%3fLinkId%3d20476%26ProdName%3dMicrosoft%2bSQL%2bServer%26EvtSrc%3dsetup.rll%26EvtID%3d50000%26ProdVer%3d10.0.1600.22%26EvtType%3d0xCF2E222F
    Machine Properties:
      Machine name:                  3R-XP
      Machine processor count:       4
      OS version:                    Windows XP
      OS service pack:               Service Pack 3
      OS region:                     Россия
      OS language:                   русский (Россия)
      OS architecture:               x86
      Process architecture:          32 Bit
      OS clustered:                  No
    Package properties:
      Description:                   SQL Server Database Services 2008
      SQLProductFamilyCode:          {628F8F38-600E-493D-9946-F4178F20A8A9}
      ProductName:                   SQL2008
      Type:                          RTM
      Version:                       10
      SPLevel:                       0
      Installation location:         j:\85c0db9df26d4ae0b40b522d393a\x86\setup\
      Installation edition:          EXPRESS
    User Input Settings:
      ACTION:                        ComponentUpdate
      CONFIGURATIONFILE:             
      HELP:                          False
      INDICATEPROGRESS:              False
      MEDIASOURCE:                   j:\85c0db9df26d4ae0b40b522d393a\
      PID:                           *****
      QUIET:                         False
      QUIETSIMPLE:                   False
      X86:                           False
      Configuration file:            C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140501_211629\ConfigurationFile.ini
    Detailed results:
    Rules with failures:
    Global rules:
    There are no scenario-specific rules.
    Rules report file:               C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140501_211629\SystemConfigurationCheck_Report.htm
    Exception summary:
    The following is an exception stack listing the exceptions in outermost to innermost order
    Inner exceptions are being indented
    Exception type: System.IO.FileNotFoundException
        Message:
            C:\WINDOWS\Installer\7affd.msi
        Data:
          DisableWatson = true
        Stack:
            в Microsoft.SqlServer.Chainer.Infrastructure.MsiNativeMethodHelpers.GetSummaryInformationStringProperty(ServiceContainer context, String pathToMsi, SummaryInformationStreamPropertySet propertyId)
            в Microsoft.SqlServer.Chainer.Infrastructure.MsiNativeMethodHelpers.GetInstalledSummaryInformationStringProperty(ServiceContainer context, String productCode, SummaryInformationStreamPropertySet propertyId)
            в Microsoft.SqlServer.Configuration.SetupExtension.MsiInstallEngineActionBehavior.ModifyAction(String installedProductCode, String installedProductVersion, String pathOfPackageOnMedia, InstallAction pkgAction)
            в Microsoft.SqlServer.Configuration.SetupExtension.MSIInstallerEngine.InstallPackage(PackageId pkg, InstallAction pkgAction)
            в Microsoft.SqlServer.Configuration.MsiExtension.PackageInstallAction.Execute(String actionId, TextWriter errorStream)
            в Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.InvokeAction(WorkflowObject metabase, TextWriter statusStream)
            в Microsoft.SqlServer.Setup.Chainer.Workflow.PendingActions.InvokeActions(WorkflowObject metaDb, TextWriter loggingStream)

  • Server Exception during PPR, #1 ... Problem...

    Hi,
    I am having the current exception...
    <RegistrationConfigurator><handleError> Server Exception during PPR, #1
    java.lang.NullPointerException
    This exception present in a method in my bean that i invoke with a "<af:serverListener type="handleCommandProcessing" method="#{NewOrderBean.cargarOrdenes}"/>" ....
    In my method "cargarOrdenes" i am trying to add a message to a component, and is in this line where i receive my exception...:
    FacesContext.getCurrentInstance().addMessage(component, message) ....
    ... But when i put a normal message
    FacesMessage toMessage = new FacesMessage("Se encontraron archivos repetidos.");
    toMessage.setSeverity(FacesMessage.SEVERITY_ERROR);
    loFctx.addMessage(null, toMessage);
    the app runs ok.... can anyone help me?
    Thanks.

    Hi Frank,
    My code is more or less like this:
    JSPX:
    <af:panelGroupLayout ....>
    ... with a panelForm with 20 input files...
    ... facet footer or the panelForm
    ... ... <af:commandButton text="Cargar Órdenes" id="BtnOrderCargar" icon="/images/mnu_ingreso_orden.gif" actionListener="#{NewOrderBean.empezarCarga}"/>
    </af:panelGroupLayout>
    <af:popup "glassPane" ...>
    .... animated gif for "Loading"
    .... <af:clientListener method="onPopupOpened" type="popupOpened"/>
    .... <af:serverListener type="handleCommandProcessing" method="#{NewOrderBean.cargarOrdenes}"/>
    </af:popup>
    JAVA BEAN
    public void empezarCarga(ActionEvent actionEvent) {
    if (isPbHasFile()) { //some logic mine
    this.showPopup(getPoGlassPane());
    } else {
    FacesContext toFctx = FacesContext.getCurrentInstance();
    FacesMessage toMessage = new FacesMessage("Por favor seleccione al menos un archivo valido.");
    toMessage.setSeverity(FacesMessage.SEVERITY_WARN);
    toFctx.addMessage(null, toMessage);
    public void cargarOrdenes(ClientEvent clientEvent) {
    FacesContext loFctx = FacesContext.getCurrentInstance();
    UIViewRoot loRoot = loFctx.getViewRoot();
    String lsFiles = "";
    String lsIdFiles = "";
    HttpSession session = (HttpSession)FacesContext.getCurrentInstance().getExternalContext().getSession(false);
    UploadFileBean loUpFile = (UploadFileBean)session.getAttribute("UploadFileBean");
    some business logic...
    else {
    this.hidePopup(getPoGlassPane()); //Hide the glass pane....
    /* HERE !!!!... if i try to put here a message to an specific input file i recive the PPR #1 Exception !!!!!!!! .... but with a normal "modal" message works ok ! */
    FacesMessage toMessage = new FacesMessage("Se encontraron archivos repetidos.");
    toMessage.setSeverity(FacesMessage.SEVERITY_ERROR);
    loFctx.addMessage(null, toMessage);
    /* CODE THAT DOESN'T WORK
    FacesMessage message = new FacesMessage("Campos obligatorio (s).");
    message.setSeverity(FacesMessage.SEVERITY_ERROR);
    FacesContext.getCurrentInstance().addMessage(null, message);
    FacesContext.getCurrentInstance().addMessage(root.findComponent("InputFileID_jspx").getClientId(context),
    new FacesMessage(FacesMessage.SEVERITY_ERROR, "Campo obligatorio.", "El campo de usuario es obligatorio."));
    Alberto Tapia

  • Exception during JDI installation

    Hello,
    while trying to install the JDI i'm receiving an error message for development component tc.CBS.Appl and the whole deployment aborts.
    I can't find any hints in the OSS so does anyone here has some suggestions?
    Following is a part of the SDM log file:
    [code]Jun 1, 2005 8:53:12 PM   Info: Starting: Initial deployment: Selected development component 'tc.CBS.Appl'/'sap.com'/'SAP AG'/'6.4011.00.0000.20050217163841.0000' will be deployed.
    Jun 1, 2005 8:53:12 PM   Info: SDA to be deployed: E:\usr\sap\C40\DVEBMGS00\SDM\root\origin\sap.com\tc.CBS.Appl\SAP AG\6.4011.00.0000.20050217163841.0000\CBSAppl.ear
    Jun 1, 2005 8:53:12 PM   Info: Software type of SDA: J2EE
    Jun 1, 2005 8:53:12 PM   Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****
    Jun 1, 2005 8:53:17 PM   Info: Begin of log messages of the target system:
    05/06/01 20:53:13 -  ***********************************************************
    05/06/01 20:53:15 -  Start updating EAR file...
    05/06/01 20:53:15 -  start-up mode is lazy
    05/06/01 20:53:15 -  EAR file updated successfully for 250ms.
    05/06/01 20:53:15 -  Start deploying ...
    05/06/01 20:53:15 -  EAR file uploaded to server for 359ms.
    05/06/01 20:53:17 -  ERROR: Not deployed. Deploy Service returned ERROR:
                         java.rmi.RemoteException: Cannot deploy application sap.com/tc.CBS.Appl..
                         Reason: Exception during generation of components of application sap.com/tc.CBS.Appl in container EJBContainer.; nested exception is:
                              com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Exception during generation of components of application sap.com/tc.CBS.Appl in container EJBContainer.
                              at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:477)
                              at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)
                              at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:291)
                              at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:183)
                              at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:119)
                              at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
                              at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
                              at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
                              at java.security.AccessController.doPrivileged(Native Method)
                              at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
                              at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
                         Caused by: com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Exception during generation of components of application sap.com/tc.CBS.Appl in container EJBContainer.
                              at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:609)
                              at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:365)
                              at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:296)
                              at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:290)
                              at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:321)
                              at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:3028)
                              at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:462)
                              ... 10 more
                         Caused by: java.lang.NoClassDefFoundError: com/sap/tc/cbs/api/IBSModel
                              at java.lang.Class.getDeclaredConstructors0(Native Method)
                              at java.lang.Class.privateGetDeclaredConstructors(Class.java:1618)
                              at java.lang.Class.getConstructors(Class.java:865)
                              at com.sap.engine.services.ejb.deploy.verifier.BeanClassCheck.check(BeanClassCheck.java:33)
                              at com.sap.engine.services.ejb.deploy.verifier.session.SessionBeanCheck.check(SessionBeanCheck.java:51)
                              at com.sap.engine.services.ejb.deploy.verifier.Verifier.checkBean(Verifier.java:82)
                              at com.sap.engine.services.ejb.deploy.verifier.Verifier.check(Verifier.java:46)
                              at com.sap.engine.services.ejb.deploy.DeployAdmin.generate(DeployAdmin.java:258)
                              at com.sap.engine.services.ejb.EJBAdmin.deploy(EJBAdmin.java:2057)
                              at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:594)
                              ... 16 more
                         For detailed information see the log file of the Deploy Service.
    05/06/01 20:53:17 -  ***********************************************************
    Jun 1, 2005 8:53:17 PM   Info: End of log messages of the target system.
    Jun 1, 2005 8:53:17 PM   Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Jun 1, 2005 8:53:17 PM   Error: Aborted: development component 'tc.CBS.Appl'/'sap.com'/'SAP AG'/'6.4011.00.0000.20050217163841.0000':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Cannot deploy application sap.com/tc.CBS.Appl..
    Reason: Exception during generation of components of application sap.com/tc.CBS.Appl in container EJBContainer.; nested exception is:
         com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Exception during generation of components of application sap.com/tc.CBS.Appl in container EJBContainer.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)[/code]

    Hello,
    i have had the same problem
    /community [original link is broken]
    The problem is, that before you can install the JDI Online SC, you have to restart the J2EE Engine. After the restart you can complete your install. So just do the following:
    1.) Install JDI Offline and JDI Built tool.
    2.) restart the J2EE engine
    3.) install the JDI Online Component, which contains the CBS.
    regards,
    Markus

  • Exception: cannot set unrecognized property:

    Hi guys,
    I am doing a PoC of Connection between BPEL PM 10.1.3.4 running over WLS 9.2 SP3 calling a HelloWorld WebService (a very simple one without authentication or security) that is deployed over a WLS 10.3 server.
    The problem is when I execute the BPEL process and it invokes the partner link that pointos to my WebService I get an exception of that type below.
    Exception: cannot set unrecognized property: disable.must.understand on a Call object.
    I looked inside the logs of AdminServer, ManagedServer and Domain Server and the output files and nothing new came in from them.
    Any ideas? Please...
    The sourcecode of this PoC is here
    http://download.yousendit.com/Y1RyeW55VnN0TW14dnc9PQ
    receiveInput
    [2009/09/25 11:29:41] Received "inputVariable" call from partner "client" More...
    Assign_1
    [2009/09/25 11:29:41] Updated variable "Invoke_1_getGreeting_InputVariable" More...
    Invoke_1 (faulted)
    [2009/09/25 11:29:41] Faulted while invoking operation "getGreeting" on provider "HelloWorldServiceDefinitions".menos
    Daniel
    ORABPEL-00000
    Exception not handled by the Collaxa Cube system.
    An unhandled exception has been thrown in the Collaxa Cube system. The exception reported is: "cannot set unrecognized property: disable.must.understand on a Call object
         at oracle.j2ee.ws.client.dii.BasicCall.setProperty(BasicCall.java:490)
         at com.collaxa.cube.ws.wsif.providers.oc4j.jaxrpc.WSIFOperation_JaxRpc.setCallContext(WSIFOperation_JaxRpc.java:2769)
         at com.collaxa.cube.ws.wsif.providers.oc4j.jaxrpc.WSIFOperation_JaxRpc.invokeRequestResponseOperation(WSIFOperation_JaxRpc.java:1524)
         at com.collaxa.cube.ws.wsif.providers.oc4j.jaxrpc.WSIFOperation_JaxRpc.executeRequestResponseOperation(WSIFOperation_JaxRpc.java:1210)
         at com.collaxa.cube.ws.WSIFInvocationHandler.invoke(WSIFInvocationHandler.java:478)
         at com.collaxa.cube.ws.WSInvocationManager.invoke2(WSInvocationManager.java:437)
         at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:251)
         at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__invoke(BPELInvokeWMP.java:826)
         at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:402)
         at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perform(BPELActivityWMP.java:199)
         at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:3698)
         at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1655)
         at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:75)
         at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:217)
         at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:314)
         at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:5765)
         at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:1087)
         at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.createAndInvoke(CubeEngineBean.java:133)
         at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.syncCreateAndInvoke(CubeEngineBean.java:162)
         at com.collaxa.cube.engine.ejb.impl.CubeEngineBean_2rw8jy_ELOImpl.syncCreateAndInvoke(CubeEngineBean_2rw8jy_ELOImpl.java:75)
         at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequestAnyType(DeliveryHandler.java:547)
         at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequest(DeliveryHandler.java:464)
         at com.collaxa.cube.engine.delivery.DeliveryHandler.request(DeliveryHandler.java:133)
         at com.collaxa.cube.ejb.impl.DeliveryBean.request(DeliveryBean.java:95)
         at com.collaxa.cube.ejb.impl.DeliveryBean_uhics8_EOImpl.request(DeliveryBean_uhics8_EOImpl.java:279)
         at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:106)
         at jsp_servlet.__ngdoinitiate_ws._jspService(__ngdoinitiate_ws.java:517)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.collaxa.cube.fe.DomainFilter.doFilter(DomainFilter.java:126)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:531)
         at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:459)
         at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:159)
         at jsp_servlet.__displayprocess._jspService(__displayprocess.java:1851)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.collaxa.cube.fe.DomainFilter.doFilter(DomainFilter.java:126)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:531)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:266)
         at com.collaxa.cube.fe.DomainFilter.doFilter(DomainFilter.java:222)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3242)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2010)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1916)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    Exception: cannot set unrecognized property: disable.must.understand on a Call object
    Handled As: com.collaxa.cube.CubeException
    [2009/09/25 11:29:41] There is a system exception while performing the BPEL instance, the reason is "cannot set unrecognized property: disable.must.understand on a Call object". Please check the error log file for more infromation.
    Edited by: Daniel Ferreira Castro on 25/09/2009 12:20

    I think you took my comment out of context. I was referring to deployments on developer PCs to have a standalone version to play with. This is not common as it requires more PC power which not many people have.
    10g and 11g are different products. In 11g you are correct SOA Suite is installed on WLS, as there is no 11g oc4j. So in that respect I would agree that WLS as the app server is mainstream.
    In 10g I would have to disagree. It was a message that Oracle had to say that SOA Suite can be deployed on WLS and this was our stragic app server going forward. It would be a customer decision as to what path they would take. From my experience not many did this because the WLS version was 9.2 not the 10.3 which OSB ran on. There were limited customers to provide references on this architecture. Typically what we saw if customer were BEA customers they went down this path otherwise they went with oc4j. Oracle sold WebLogic Suite which included oc4j so from a licensing perspective they were covered, and technically they could run any Oracle product. For new licenses you needed WebLogic Suite as part of SOA Suite this does not mean that people deployed SOA Suite on WLS in 10g.
    10.1.3.5 certification with WLS was going to solve the version issue as it is going to be on 10.3, but 10.1.3.5 was release after 11g and the WLS certifications still hasn't been released.
    The 10g WLS deployment was never going to be like that in 11g so WLS customers would need the same kind of architectual changes and oc4j customer would have. The differnce being ops people would not need to learn oc4j so there would be less need for training.
    But I would like to clarify my comment was for stand alone deployments on developer PCs, this is not common to have the WLS deployment.
    cheers
    James

  • Exception during ADS deplopyment

    hi
    I am trying to deploy the famous tutorial app OnlineInteractiveForm.
    Althugh we have installed the .pfx file yesterday
    When I deploy the app I get the following exception:
    com.sap.tc.webdynpro.pdfobject.core.PDFObjectRuntimeException: Processing exception during a "UsageRights" operation. Request start time: Thu Jul 12 00:55:01 PDT 2007 com.adobe.ProcessingError: Not allowed by credential error while applying usage rights to PDF: C:\WINDOWS\Temp\adobewa_ADS_14773050\DM9101175274307783889.dir\DM7224521729958434090.tmp Specific error information: $$$/PDF/PDFCredentialDoesNotSpecifiedUsageRights=credential does not allow setting of specified UB rights General error information
    Does anyone know how to solve this?
    Tks
    yuval

    Hi Yuval,
                  Are u sure all the attributes are configured properly??
    1.      Log on to the Visual Administrator. (See How to Start the Visual Administrator.)
           2.      On the Cluster tab, choose Server  ® Services ® Document Services Configuration.
           3.      On the Runtime tab, select Credentials.
           4.      From the Type field, select the type of credential you are configuring (P12 Record, HSM Record or MSCAPI Record).
    The fields that become active and available for editing depend on the credential type that you choose.
           5.      In the Alias field, enter the alias of the credential you installed. Enter the following:
    &#9675;     ReaderRights when you configure a Reader right credential for usage rights.
    &#9675;     DocumentCertification when you configure a credential for certification.
    &#9675;     ServerSignature when you configure a credential for digital signatures.
    Entries for the name of the credential are case-sensitive.
           6.      For a P12 Record, choose Browse to search for the name of the credential and then Select.
           7.      In the sha1 field, enter the sha1 value. This value can be copied from the credential file itself, and is typically a string of numeric and alphabetic characters. (This step is optional if your credential only contains one sha1 value.)
    If you entered ReaderRights in the Alias field, you must not make any entry in the sha1 field.
           8.      For an HSM Record, type the Slot and DLL Path value in the corresponding fields.
           9.      In the Password field, enter the password you received together with the credential you installed.
       10.      Confirm the password, and then click Add.
    The page refreshes and the list of registered credentials at the top of the page includes the credential you just added
    regards
    Sumit

  • Error whit PDF Generation Processing exception during a "UsageRights" opera

    Hi experts,
    I have a problem when I wanna generate a PDF Form in a WebDynpro application. The log error is:
    <br>
    com.sap.tc.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: Interactive Form Operation Failed
      at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:700)
      at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.afterApplicationModification(ClientApplication.java:1041)
      at com.sap.tc.webdynpro.clientserver.phases.RespondPhase.execute(RespondPhase.java:60)
      at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequestPartly(WindowPhaseModel.java:162)
      at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doProcessRequest(WindowPhaseModel.java:110)
      at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processPhaseLoop(WindowPhaseModel.java:101)
      at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processPhaseLoop(WebDynproWindow.java:547)
      at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:66)
      at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.doExecute(ClientApplication.java:1547)
      at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.doProcessing(ClientApplication.java:1361)
      at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.delegateToApplicationDoProcessing(AbstractExecutionContextDispatcher.java:154)
      at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.DispatchHandlerForAppProcessing.doService(DispatchHandlerForAppProcessing.java:35)
      at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.AbstractDispatchHandler.service(AbstractDispatchHandler.java:127)
      at com.sap.engine.services.servlets_jsp.server.deploy.impl.module.IRequestDispatcherImpl.dispatch(IRequestDispatcherImpl.java:95)
      at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.ExecutionContextDispatcher.dispatchToApplicationDoProcessing(ExecutionContextDispatcher.java:114)
      at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.dispatch(AbstractExecutionContextDispatcher.java:80)
      at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.dispatch(ApplicationSession.java:571)
      at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.dispatch(ApplicationSession.java:602)
      at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doApplicationProcessingStandalone(ApplicationSession.java:523)
      at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:270)
      at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:729)
      at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:256)
      at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:258)
      at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.delegateToRequestManager(AbstractExecutionContextDispatcher.java:202)
      at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.DispatchHandlerForRequestManager.doService(DispatchHandlerForRequestManager.java:38)
      at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.AbstractDispatchHandler.service(AbstractDispatchHandler.java:127)
      at com.sap.engine.services.servlets_jsp.server.deploy.impl.module.IRequestDispatcherImpl.dispatch(IRequestDispatcherImpl.java:95)
      at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.ExecutionContextDispatcher.dispatchToRequestManager(ExecutionContextDispatcher.java:140)
      at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.dispatch(AbstractExecutionContextDispatcher.java:92)
      at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.dispatch(AbstractExecutionContextDispatcher.java:104)
      at com.sap.tc.webdynpro.serverimpl.core.AbstractDispatcherServlet.doContent(AbstractDispatcherServlet.java:87)
      at com.sap.tc.webdynpro.serverimpl.core.AbstractDispatcherServlet.doPost(AbstractDispatcherServlet.java:61)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:140)
      at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:37)
      at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:466)
      at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:291)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:396)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:385)
      at com.sap.engine.services.servlets_jsp.filters.DSRWebContainerFilter.process(DSRWebContainerFilter.java:48)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
      at com.sap.engine.services.servlets_jsp.filters.ServletSelector.process(ServletSelector.java:76)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
      at com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:240)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
      at com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:78)
      at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
      at com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60)
      at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
      at com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27)
      at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
      at com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29)
      at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
      at com.sap.engine.services.httpserver.filters.MemoryStatisticFilter.process(MemoryStatisticFilter.java:43)
      at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
      at com.sap.engine.services.httpserver.filters.DSRHttpFilter.process(DSRHttpFilter.java:42)
      at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
      at com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:425)
      at com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.process(Processor.java:250)
      at com.sap.engine.services.httpserver.server.rcm.RequestProcessorThread.run(RequestProcessorThread.java:45)
      at com.sap.engine.core.thread.execution.Executable.run(Executable.java:109)
      at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:314)
    Caused by: com.sap.tc.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: PDFDocument Processor failed to process RenderRequest Due to the following Reason
    Processing exception during a "UsageRights" operation.
    Request start time: Tue Jan 10 11:31:14 COT 2012
    com.adobe.ProcessingException: com.adobe.ProcessingException: Credential login error while applying usage rights to PDF: /usr/sap/CND/J02/j2ee/cluster/server0/temp/adobewa_CND_27241950/DM3888098661083088935.dir/DM5190493105499627278.tmp
    <br>
    Specific error information:
    error while logging into credential ^0
    GeneralError: Operation failed.
    SecurityHandler.login:-1:
    Could not create temporary file
    <br>
    but in other application webdynpro I can generate the PDF without error. So, I read many forums in the SDN but my system its Ok with the ADS Configuration.
    <br>
    Please help me, I don't know how solved this problem and is very urgent.
    <br>
    NetWeaver CE 7.1 Ehp 1
    <br>
    Thank you,
    Jim Gledward

    There can be several reasons for getting this Error.
    1.ADS problem.
    2. Binding problem.
    3. Value node, Cardinality problem(1-n)
    4. Not mapping PDF Source problem
    5.PDFSource - type-Binary
    Please check it once. If you can post the total error it would be better.

Maybe you are looking for

  • Photoshop CS2 won't save files in JPEG format

    I have Windows Vista and am using Photoshop CS2 Version 9. Until today everything was working fine, but there are two problems. 1. Only today I have a limited amount of formats to save a .PSD file in: PSD, CIN, PDF, RAW, PNG, and TIFF. Whereas if I w

  • Help with new editor.....Windows 7 64-Bit Xeon 5520 processor 12 GB Memory.

    Hello, I have built a new system from scratch for our Creative Services Editor with the following: 1- ZALMAN PROFESSIONAL GS-1000-BK Black Computer Case Aluminum- http://www.newegg.com/Product/Product.aspx?Item=N82E16811235014 1- Seagate Barracuda ES

  • External hard drive not recognized by Mavericks?

    I have a Western Digital My Passbook 500GB external hard drive connected to my MacBook Pro via USB.  It worked fine until I upgraded to Mavericks.  Now it is not recognized at all in my Finder. When I go to Disk Utility, it finds it and says "not sup

  • Create new workflow task

    Hi, I have abap experience, but no workflow. We have a web dynpro screen which when completed has to kick off a workflow and mail workitem to relevant person. I assume as this is a custom process, in mining, that there won't be a standard workflow ta

  • Call ODI interface from Business Rule

    Hi All, Is there any way to call ODI interface from business rule? I search the forum and found there is a way to call java code from business rule by CDF. ODI provide a dos batch file to invoke the ODI interface. But, how can I call batch file from