Bdc not working with workflow - background task

Hallo,
I have an issue with a bdc FM i created not working with workflow.
If I test the FM, it works ok.
If i Test the method calling the FM it works ok.
if i test the task calling the method it works ok.
If I run the workflow it doesn't work, and i get the following messages:
S DC 1 Unable to initialise ABAP Control Framework ...
S DC 1 Unable to initialise ABAP Control Framework ...
S DC 6 Control Framework: Fatal error - GUI cannot be reached
A SY 2 Exception condition "CNTL_ERROR" raised.
What is the meaning of this??
Bdc is calling Me54n to set to click on reject button during Purchase Requisition Release,
putting the PR processing state in status '08'
I checked all the binding which are fine. No container parameter are passed a part from the business object.
here is the FM coding:
FUNCTION ZME_N_WF_REJ_PR.
""Local interface:
*" IMPORTING
*" VALUE(CTU) LIKE APQI-PUTACTIVE DEFAULT 'X'
*" VALUE(MODE) LIKE APQI-PUTACTIVE DEFAULT 'N'
*" VALUE(UPDATE) LIKE APQI-PUTACTIVE DEFAULT 'L'
*" VALUE(GROUP) LIKE APQI-GROUPID OPTIONAL
*" VALUE(USER) LIKE APQI-USERID OPTIONAL
*" VALUE(KEEP) LIKE APQI-QERASE OPTIONAL
*" VALUE(HOLDDATE) LIKE APQI-STARTDATE OPTIONAL
*" VALUE(NODATA) LIKE APQI-PUTACTIVE DEFAULT '/'
*" VALUE(BANFN_003) LIKE BDCDATA-FVAL
*" EXPORTING
*" VALUE(SUBRC) LIKE SYST-SUBRC
*" TABLES
*" MESSTAB STRUCTURE BDCMSGCOLL OPTIONAL
subrc = 0.
perform bdc_nodata using NODATA.
perform open_group using GROUP USER KEEP HOLDDATE CTU.
perform bdc_dynpro using 'SAPLMEGUI' '0014'.
perform bdc_field using 'BDC_OKCODE'
'=MECHOB'.
*perform bdc_field using 'DYN_6000-LIST'
LIST_001.
perform bdc_field using 'BDC_CURSOR'
'MEREQ3328-AFNAM'.
*perform bdc_field using 'MEREQ3328-EKGRP'
EKGRP_002.
perform bdc_dynpro using 'SAPLMEGUI' '0002'.
perform bdc_field using 'BDC_OKCODE'
'=MEOK'.
perform bdc_field using 'BDC_CURSOR'
'MEPO_SELECT-BANFN'.
perform bdc_field using 'MEPO_SELECT-BANFN'
BANFN_003.
perform bdc_dynpro using 'SAPLMEGUI' '0014'.
perform bdc_field using 'BDC_OKCODE'
'=MEREJECT'.
perform bdc_field using 'BDC_CURSOR'
'DYN_6000-LIST'.
perform bdc_dynpro using 'SAPLMEGUI' '0014'.
perform bdc_field using 'BDC_OKCODE'
'=MESAVE'.
perform bdc_field using 'BDC_CURSOR'
'DYN_6000-LIST'.
perform bdc_transaction tables messtab
using 'ME54N'
CTU
MODE
UPDATE.
if sy-subrc 0.
subrc = sy-subrc.
exit.
endif.
perform close_group using CTU.
ENDFUNCTION.
INCLUDE BDCRECXY .
I tries the same approach on ML81N to block a service entry sheet.(pressing the lock icon),
I get exactly the same issue.
Anybody knows how to resolve?
Or how to do the same without using a bdc call?
regards,
marco

Hallo,
I have an issue with a bdc FM i created not working with workflow.
If I test the FM, it works ok.
If i Test the method calling the FM it works ok.
if i test the task calling the method it works ok.
If I run the workflow it doesn't work, and i get the following messages:
S DC 1 Unable to initialise ABAP Control Framework ...
S DC 1 Unable to initialise ABAP Control Framework ...
S DC 6 Control Framework: Fatal error - GUI cannot be reached
A SY 2 Exception condition "CNTL_ERROR" raised.
What is the meaning of this??
Bdc is calling Me54n to set to click on reject button during Purchase Requisition Release,
putting the PR processing state in status '08'
I checked all the binding which are fine. No container parameter are passed a part from the business object.
here is the FM coding:
FUNCTION ZME_N_WF_REJ_PR.
""Local interface:
*" IMPORTING
*" VALUE(CTU) LIKE APQI-PUTACTIVE DEFAULT 'X'
*" VALUE(MODE) LIKE APQI-PUTACTIVE DEFAULT 'N'
*" VALUE(UPDATE) LIKE APQI-PUTACTIVE DEFAULT 'L'
*" VALUE(GROUP) LIKE APQI-GROUPID OPTIONAL
*" VALUE(USER) LIKE APQI-USERID OPTIONAL
*" VALUE(KEEP) LIKE APQI-QERASE OPTIONAL
*" VALUE(HOLDDATE) LIKE APQI-STARTDATE OPTIONAL
*" VALUE(NODATA) LIKE APQI-PUTACTIVE DEFAULT '/'
*" VALUE(BANFN_003) LIKE BDCDATA-FVAL
*" EXPORTING
*" VALUE(SUBRC) LIKE SYST-SUBRC
*" TABLES
*" MESSTAB STRUCTURE BDCMSGCOLL OPTIONAL
subrc = 0.
perform bdc_nodata using NODATA.
perform open_group using GROUP USER KEEP HOLDDATE CTU.
perform bdc_dynpro using 'SAPLMEGUI' '0014'.
perform bdc_field using 'BDC_OKCODE'
'=MECHOB'.
*perform bdc_field using 'DYN_6000-LIST'
LIST_001.
perform bdc_field using 'BDC_CURSOR'
'MEREQ3328-AFNAM'.
*perform bdc_field using 'MEREQ3328-EKGRP'
EKGRP_002.
perform bdc_dynpro using 'SAPLMEGUI' '0002'.
perform bdc_field using 'BDC_OKCODE'
'=MEOK'.
perform bdc_field using 'BDC_CURSOR'
'MEPO_SELECT-BANFN'.
perform bdc_field using 'MEPO_SELECT-BANFN'
BANFN_003.
perform bdc_dynpro using 'SAPLMEGUI' '0014'.
perform bdc_field using 'BDC_OKCODE'
'=MEREJECT'.
perform bdc_field using 'BDC_CURSOR'
'DYN_6000-LIST'.
perform bdc_dynpro using 'SAPLMEGUI' '0014'.
perform bdc_field using 'BDC_OKCODE'
'=MESAVE'.
perform bdc_field using 'BDC_CURSOR'
'DYN_6000-LIST'.
perform bdc_transaction tables messtab
using 'ME54N'
CTU
MODE
UPDATE.
if sy-subrc 0.
subrc = sy-subrc.
exit.
endif.
perform close_group using CTU.
ENDFUNCTION.
INCLUDE BDCRECXY .
I tries the same approach on ML81N to block a service entry sheet.(pressing the lock icon),
I get exactly the same issue.
Anybody knows how to resolve?
Or how to do the same without using a bdc call?
regards,
marco

Similar Messages

  • Bdc not working with workflow

    Hallo,
    I have an issue with a bdc FM i created not working with workflow.
    If I test the FM, it works ok.
    If i Test the method calling the FM it works ok.
    if i test the task calling the method it works ok.
    If I run the workflow it doesn't work, and i get the following messages:
    S     DC     1     Unable to initialise ABAP Control Framework ...             
    S     DC     1     Unable to initialise ABAP Control Framework ...          
    S     DC     6     Control Framework: Fatal error - GUI cannot be reached     
    A     SY     2     Exception condition "CNTL_ERROR" raised.
    What is the meaning of this??     
    Bdc is calling Me54n to set to click on reject button during Purchase Requisition Release,
    putting the PR processing state in status '08'
    I checked all the binding which are fine. No container parameter are passed a part from the business object.
    here is the FM coding:
    FUNCTION ZME_N_WF_REJ_PR.
    ""Local interface:
    *"  IMPORTING
    *"     VALUE(CTU) LIKE  APQI-PUTACTIVE DEFAULT 'X'
    *"     VALUE(MODE) LIKE  APQI-PUTACTIVE DEFAULT 'N'
    *"     VALUE(UPDATE) LIKE  APQI-PUTACTIVE DEFAULT 'L'
    *"     VALUE(GROUP) LIKE  APQI-GROUPID OPTIONAL
    *"     VALUE(USER) LIKE  APQI-USERID OPTIONAL
    *"     VALUE(KEEP) LIKE  APQI-QERASE OPTIONAL
    *"     VALUE(HOLDDATE) LIKE  APQI-STARTDATE OPTIONAL
    *"     VALUE(NODATA) LIKE  APQI-PUTACTIVE DEFAULT '/'
    *"     VALUE(BANFN_003) LIKE  BDCDATA-FVAL
    *"  EXPORTING
    *"     VALUE(SUBRC) LIKE  SYST-SUBRC
    *"  TABLES
    *"      MESSTAB STRUCTURE  BDCMSGCOLL OPTIONAL
    subrc = 0.
    perform bdc_nodata      using NODATA.
    perform open_group      using GROUP USER KEEP HOLDDATE CTU.
    perform bdc_dynpro      using 'SAPLMEGUI' '0014'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=MECHOB'.
    *perform bdc_field       using 'DYN_6000-LIST'
                                 LIST_001.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MEREQ3328-AFNAM'.
    *perform bdc_field       using 'MEREQ3328-EKGRP'
                                 EKGRP_002.
    perform bdc_dynpro      using 'SAPLMEGUI' '0002'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=MEOK'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MEPO_SELECT-BANFN'.
    perform bdc_field       using 'MEPO_SELECT-BANFN'
                                  BANFN_003.
    perform bdc_dynpro      using 'SAPLMEGUI' '0014'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=MEREJECT'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'DYN_6000-LIST'.
    perform bdc_dynpro      using 'SAPLMEGUI' '0014'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=MESAVE'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'DYN_6000-LIST'.
    perform bdc_transaction tables messtab
    using                         'ME54N'
                                  CTU
                                  MODE
                                  UPDATE.
    if sy-subrc <> 0.
      subrc = sy-subrc.
      exit.
    endif.
    perform close_group using     CTU.
    ENDFUNCTION.
    INCLUDE BDCRECXY .
    I tries the same approach on ML81N to block a service entry sheet.(pressing the lock icon),
    I get exactly the same issue.
    Anybody knows how to resolve?
    Or how to do the same without using a bdc call?
    regards,
    marco

    Hi
    this is the Method callind the FM
    object is BUS2105 w delegation ZBUS2105.
    BEGIN_METHOD ZRELEASEREJECTED CHANGING CONTAINER.
    Data: CTU TYPE APQI-PUTACTIVE,      
          MODE TYPE APQI-PUTACTIVE,     
          UPDATE TYPE APQI-PUTACTIVE,
         NODATA TYPE APQI-PUTACTIVE.  
    CTU = 'X'.               
    MODE = 'N'.                
    UPDATE = 'L'.              
    NODATA = '/'.              
    iobjectkey = object-key.
       CALL FUNCTION 'ZME_N_WF_REJ_PR'             
         EXPORTING                                 
           BANFN_003 = iobjectkey                  
           NODATA = NODATA                                            
           UPDATE = UPDATE                         
           MODE = MODE                             
           CTU = CTU                               
         IMPORTING                                 
           SUBRC = SUBRC                           
         TABLES                                    
           MESSTAB = MESSAGE                       
         EXCEPTIONS                                
           OTHERS = 01.                            
       CASE SY-SUBRC.                              
         WHEN 0.            " OK                   
         WHEN OTHERS.       " to be implemented    
       ENDCASE.                                    
    SWC_SET_ELEMENT CONTAINER 'Subrc' SUBRC.                   
    SWC_SET_TABLE CONTAINER 'MESSAGE' MESSAGE.                                                                               
    END_METHOD.

  • In Photoshop CS6 Hue Saturation does not work with forground/background Jitter set at 100 percent no change in color is observed. Help

    In Photoshop CS6 Hue Saturation does not work with forground/background Jitter set at 100 percent no change in color is observed. I have Added a screen Shot of the Brush settings and a demonstration of what the brush produces.
    I also notice That when I make a pattern of a single color, when I fill a selection with the pattern I get a rainbow of different colors.
    I am running a 64 bit version of Photoshop from the CS6 Masters Collection
    I am on a PC with a Intel i7 1366 4 physical cores and 8 threads, 24 Gig of DDR memory, A Crucial 512 Gig SSD and a NVIDIA GTX 570 with 2 Gig of memory.
    The document size is 2100 by 1500 Pixels at 300 PPI   only two layers

    In Photoshop CS6 Hue Saturation does not work with forground/background Jitter set at 100 percent no change in color is observed. I have Added a screen Shot of the Brush settings and a demonstration of what the brush produces.
    I also notice That when I make a pattern of a single color, when I fill a selection with the pattern I get a rainbow of different colors.
    I am running a 64 bit version of Photoshop from the CS6 Masters Collection
    I am on a PC with a Intel i7 1366 4 physical cores and 8 threads, 24 Gig of DDR memory, A Crucial 512 Gig SSD and a NVIDIA GTX 570 with 2 Gig of memory.
    The document size is 2100 by 1500 Pixels at 300 PPI   only two layers

  • CUO1 - BDC not working in the background.

    Hello Experts,
    We are trying to create dependencies using CU01, when we recorded through LSMW we have got an error saying *for type c' lenght can be from 1 to 65535, ( * caution message arised in the field mapping step)*
    we went on with a work around with a BDC, while recording we didn't find any errors,also when processing the recording the system doesn't throw any status message.
    After creating a ABAP program with the recording, we are seeing the status message when we run them in the "A" all screen mode when we press enter it is able to create the dependency however the BDC is not able to run in the background throwing with the same status message ($ it is not a screen field).
    thanks
    Venkat

    When running in the mode 'A', the navigation should only be through the ok_code pop up and not by pressing enter. If you had to navigate to the next screen only by hitting the enter manually, there is a problem with the recording. Try to re-run the recording else manually add the code for the enter function with reference to a correct recording.
    Vikranth

  • Error: Result of agent resolution does not agree with agents of task

    Hi,
    I'm getting the error "Result of Agent Resolution does not agree with agent of Task".  I'm passing the agents in Expression which I'm getting from Method in my previous step and passing to workflow container and it is getting passed to Expression. The userid is present in that container. And the Task is assigned as General Task but still I dont know what might be the problem. The ID is with 'US' prefix. Even if I give the userid directly in the Task, it shows the same error.
    Regards,
    JMB

    Hi
    Incase you are using different clients for development and testing, make sure in testing client, task is assigned as general task.
    You may check the way the userid is passed. Please note that the US is object type and Object ID(user id) is different. Both of them should not be part of one string. So while you test, just pass the user id without a prefix US. Hope it will work for u.
    Regards
    Waz

  • Result of agent resolution does not agree with agents of task

    Hello Experts,
       I am trying to configure a workflow for Employee Travel expense, the Business object am using is BUS2089 for event CREATED.
      And am configuring workflow task WS20000040 (Approve trip). and in the work flow builder I am assigning User as an Agent and fixing it to a user say "USER1" for Task 404 (Check trip facts) and for Task 416 (Approve trip facts) again am assigning User as an Agent and fixing it to user say "USER2"
    Now when the Trip is saved using PR05, this work flow is triggerred - which is what i want and it sends work item to USER1,  now when USER1 says Trip facts are consistent the work item should go to USER2 but here it is failing and the log says "Agent determination for step 0000000416 failed" and details say "Result of agent resolution does not agree with agents of task" which is  SWF_RUN 544
    Can you guys help me by telling where am going wrong.  Am i missing some configuration somewhere.
    I have changed the Task properties - Attributes i have changed the task as a General Task,(i did it by navigating through Control Tab of the task)
    appreciate your response.. Thanks
    Usman

    Thanks Novjot
        I made the task as a general task and i see a gree light adjacent to it, but still it doesn't work.
    the way i made it as a general task is as follows:
    1. in the navigation area - select task 416
    2. In the right hand side, on Control Tab in Task properties, click on the Red button and maintain Agent assignment
    3. In Agent Assignment change attributes to General Task - instead of General Forwarding allowed.
    save and activate, and generate runtime version
    Is this correct or any other way?
    Thanks
    Usman

  • Agent resolution does not agree with agents of task

    Hi Guys,
    I extended B.O-IDOCAPPL to ZIDOCAPPL to catch the inbound error for the IDOC.
    The workflow gets triggered correctly when we get the inbound error.
    In the workflow i created a custom display method....this is a dialog method. Now when the workflow comes to this point it gives the message in the technical log
    <i>" Result of agent resolution does not agree with agents of task"    </i>  
    <b>Now instead of calling this method if i just put a user decision it shows up fine in the users inbox.</b>
    I have tried SWU_OBUF , Refresh from SWUS , Refresh from Inbox
    Nothing seems to work, anyidea as to what's happening here ?
    Message was edited by:
            Abhishek Dhoundiyal

    I have tried :
    1.) hardcoding user ID
    2.) using a role
    3.) using WF initiator...
    This is set up as a general task......
    One interesting observation that i had... (If the below is irrelevant please ignore)
    If i run the task via SWUS it executes but still does not evaluate the agents.. and then if i execute the workitem in SWIA it lets me execute...
    Now if i trigger the workflow it executes but still does not evaluate the agents but it does not allow me to execute the workitem in SWIA , the technical log says workitem not found.

  • PDF Portfolio does not work with iOS Reader 11.3.2 on iOS 7.1.2

    Well this is upsetting. I created a PDF form with several pages of the same form (it's a travel log).
    My hoping to use Adobe Reader to complete the form and save back as a week at a time won't work.
    I created the form using Acrobat Pro 9 from CS5.
    Does anyone know if a PDF form in a Portfolio should work with Adobe Reader on the iPad2/
    Also, what can I use that works with forms as a portfolio?
    Ken

    Ken,
    please could you describe your workflow. It might help to find some solution. Also it would be great if you can share a sample of your document. Please email it to [email protected] with the reference to this discussion "PDF Portfolio does not work with iOS Reader 11.3.2 on iOS 7.1.2"
    thank you.

  • Hp t510 right alt key mapping not working with ctrl + s

    Using the HP t510 to launch a xendesktop session via storefront. We have a mission critical application that uses the ctrl + alt + s hotkey to secure itself. The left alt key with ctrl + s is working as it should but the right alt key does not. When testing in the win7 on screen keyboard the right alt and ctrl stay lit up. When hitting the S key after depressing both the  right alt + ctrl (right or left ctrl doesn't matter) the alt keys disappear from the on screen keyboard as if they were no longer pushed. They hotkey combination never makes it to the application and it does not secure itself.
    I've tested this same workflow on an ASUS thin client, desktop, and laptop hardware with no issues. It does in fact seem to be some hotkey mapping the HP device has baked into it using the right alt key.
    Has anyone seen any issues that even closely mimic this? I've seen some for ctrl + alt + del but their fixes don't work for this specific issue.

    Hello xXenStatex,
    Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I understand that the alt key mapping is not working with ctrl + s on your Thin Client, and I would be happy to guide you towards a resolution!
    I am sorry, but to get your issue more exposure, I would suggest posting it in the commercial forums, since this is a commercial product. You can do this at:
    http://h30499.www3.hp.com/t5/Workstations-Thin-Clients/bd-p/bsc-635
    I hope this helps!
    Regards
    MechPilot
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks” for helping!

  • Siri not working with configuration profile

    I am a Systems Administrator and we are using the Apple Configuration Utility to put profiles on our phones. We have our Wireless network, pass code and Exchange setup in the profile and ALLOW Siri and Siri while locked as well as all applications, TV, Downloads, Facetime etc. per our HR policy.
    The iPhone 5's will not work with Siri when locked or unlocked even though it is allowed in the profile. The iPhone 4s phones do not have this problem. The only way we have been able to get Siri working on the iPhone 5's is to remove the profile entirely.
    Has anyone else seen this issue? If so, were you able to resolve.
    The OS on all of our iPhones is 6.1.3 which to my knowledge is the latest and greatest. Any advice or thoughts are welcome.
    Thanks

    So today I read on another post to close all the apps running in the background by double tapping the home button and deleting them.  I did this and now Siri is working so it appears that one of the apps was intefering with Siri.  Before that I tried disabling Siri and restarting and enabling again, changing the language to another English one, restarting the Network, every other tip I read except resetting all settings.  This one closing all open apps working in the background was what did the trick. 
    I wish that there would be one central place where we could go and get the tips rather than to have to search through multiple postings.  Something Apple could do to be proactive about helping us out.  All in all I do love my iPhone 4s but that experience with Siri was unexpected.  I should have read more before buying the iPhone 4s so at least I would have been prepared. 

  • I bought Numbers because my Excel files would not work with Mavericks. How can I import a non-functioning Excel file into numbers? (As of now, the file NAME transfers but data is not.) but

    I bought Numbers because my Excel files would not work with Mavericks. How can I import a non-functioning Excel file into numbers? (As of now, the file NAME transfers but data does not.)

    HI Dave,
    I'm surprised you get no message when you attempt opening the Excel document in Numbers.
    I'm assuming Numbers 3.1, since you are running Mavericks.
    Does the Numbers file that opens show any content?
    Does it contain a table?
    How large?
    Does it contain more than one tab (indicating more than one sheet)?
    Do those other tabs contain a table?
    Have you checked those tables for data content?
    There have been cases in the past of imported documents opening with white text on a white background, giving the appearance of containing nothing. Check for this by selecting a block of cells, then applying a Fill colour or a Text colour using the Format button (paintbrush).
    I'd also suggest attempting to open the Excel files using LibreOffice, which can be downloaded from the linked website.
    Regards,
    Barry

  • VM Manager's Launch Console not working with OpenJDK and IcedTea

    Fedora 15
    java-1.6.0-openjdk-1.6.0.0-59.1.10.3.fc15.x86_64
    icedtea-web-1.0.4-1.fc15.x86_64
    ICEDTEA-WEB NOTES
    Invalid XML
    An error like
    netx: Unexpected net.sourceforge.jnlp.ParseException: Invalid XML document syntax. at net.sourceforge.jnlp.Parser.getRootNode(Parser.java:1203)
    indicates that the JNLP file is not valid XML. The error happens because netx uses an XML parser to parse the JNLP file. Other JNLP client implementations may use more lenient parsers and may or may not work with the given JNLP file. Errors caused by malformed JNLP files can often lead to subtle bugs, so it is probably best to fix the JNLP file itself. A tool like xmlproc_parse might be able to pinpoint the error.
    XMLPROC_PARSE OUTPUT
    $ xmlproc_parse ovm_rasproxy-ws.jnlp
    xmlproc version 0.70
    Parsing 'ovm_rasproxy-ws.jnlp'
    E:ovm_rasproxy-ws.jnlp:3:89: Undeclared entity 'machineName'
    E:ovm_rasproxy-ws.jnlp:3:89: ';' expected
    Parse complete, 2 error(s) and 0 warning(s)
    JAVAWS OUTPUT
    $ javaws ovm_rasproxy-ws.jnlp
    netx: Unexpected net.sourceforge.jnlp.ParseException: Invalid XML document syntax. at net.sourceforge.jnlp.Parser.getRootNode(Parser.java:1243)
    JAVAWS -VERBOSE OUTPUT
    $ javaws -verbose ovm_rasproxy-ws.jnlp
    No User level deployment.properties found.
    Starting security dialog thread
    JNLP file location: ovm_rasproxy-ws.jnlp
    Status: CONNECTED DOWNLOADED STARTED +(CONNECTED DOWNLOADED STARTED) @ ./ovm_rasproxy-ws.jnlp
    <?xml version="1.0" encoding="UTF-8"?>
    line: 2 <jnlp spec="1.0+" codebase="http://192.168.4.21:7001/ovm/rasproxy/"
    line: 3 href="ovm_rasproxy-ws.jnlp?vmachineId=0004fb0000060000046ffdb8a331ce21&machineName=mytestmachine">
    line: 4 <information>
    line: 5 <title>Oracle VM Remote Access Service</title>
    line: 6 <vendor>Oracle</vendor>
    line: 7 <homepage>http://support.oracle.com/</homepage>
    line: 8 </information>
    line: 9 <resources>
    line: 10
    line: 11 <j2se version="1.5+"
    line: 12 href="http://java.sun.com/products/autodl/j2se" />
    line: 13 <jar href="ovm_rasproxy-signed.jar" main="true" />
    line: 14 <jar href="OvmCoreApi.jar" />
    line: 15 <jar href="MgmtUtil.jar" />
    line: 16 <jar href="Odof.jar" />
    line: 17 <jar href="commons-logging-1.1.1.jar" />
    line: 18 </resources>
    line: 19
    line: 20
    line: 21 <application-desc main-class="com.oracle.ovm.ras.proxy.RasProxyApplet">
    line: 22 <argument>-server</argument>
    line: 23 <argument>192.168.4.21</argument>
    line: 24 <argument>-service</argument>
    line: 25 <argument>003600010004fb0000060000046ffdb8a331ce21</argument>
    line: 26
    line: 27 </application-desc>
    line: 28 <security>
    line: 29      <all-permissions/>
    line: 30 </security>
    line: 31 <update check="background"/>
    line: 32 </jnlp>               net.sourceforge.jnlp.ParseException: Invalid XML document syntax.
         at net.sourceforge.jnlp.Parser.getRootNode(Parser.java:1243)
         at net.sourceforge.jnlp.JNLPFile.<init>(JNLPFile.java:177)
         at net.sourceforge.jnlp.JNLPFile.<init>(JNLPFile.java:162)
         at net.sourceforge.jnlp.JNLPFile.<init>(JNLPFile.java:148)
         at net.sourceforge.jnlp.runtime.Boot.getFile(Boot.java:267)
         at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:196)
         at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:56)
         at java.security.AccessController.doPrivileged(Native Method)
         at net.sourceforge.jnlp.runtime.Boot.main(Boot.java:173)
    Caused by: net.sourceforge.nanoxml.XMLParseException: XML Parse Exception during parsing of a jnlp element at line 32: Unexpected end of data reached
         at net.sourceforge.nanoxml.XMLElement.unexpectedEndOfData(XMLElement.java:1094)
         at net.sourceforge.nanoxml.XMLElement.readChar(XMLElement.java:877)
         at net.sourceforge.nanoxml.XMLElement.resolveEntity(XMLElement.java:1013)
         at net.sourceforge.nanoxml.XMLElement.scanString(XMLElement.java:658)
         at net.sourceforge.nanoxml.XMLElement.scanElement(XMLElement.java:915)
         at net.sourceforge.nanoxml.XMLElement.parseFromReader(XMLElement.java:512)
         at net.sourceforge.nanoxml.XMLElement.parseFromReader(XMLElement.java:464)
         at net.sourceforge.jnlp.Parser.getRootNode(Parser.java:1239)
         ... 8 more
    Caused by:
    net.sourceforge.nanoxml.XMLParseException: XML Parse Exception during parsing of a jnlp element at line 32: Unexpected end of data reached
         at net.sourceforge.nanoxml.XMLElement.unexpectedEndOfData(XMLElement.java:1094)
         at net.sourceforge.nanoxml.XMLElement.readChar(XMLElement.java:877)
         at net.sourceforge.nanoxml.XMLElement.resolveEntity(XMLElement.java:1013)
         at net.sourceforge.nanoxml.XMLElement.scanString(XMLElement.java:658)
         at net.sourceforge.nanoxml.XMLElement.scanElement(XMLElement.java:915)
         at net.sourceforge.nanoxml.XMLElement.parseFromReader(XMLElement.java:512)
         at net.sourceforge.nanoxml.XMLElement.parseFromReader(XMLElement.java:464)
         at net.sourceforge.jnlp.Parser.getRootNode(Parser.java:1239)
         at net.sourceforge.jnlp.JNLPFile.<init>(JNLPFile.java:177)
         at net.sourceforge.jnlp.JNLPFile.<init>(JNLPFile.java:162)
         at net.sourceforge.jnlp.JNLPFile.<init>(JNLPFile.java:148)
         at net.sourceforge.jnlp.runtime.Boot.getFile(Boot.java:267)
         at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:196)
         at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:56)
         at java.security.AccessController.doPrivileged(Native Method)
         at net.sourceforge.jnlp.runtime.Boot.main(Boot.java:173)
    netx: Unexpected net.sourceforge.jnlp.ParseException: Invalid XML document syntax. at net.sourceforge.jnlp.Parser.getRootNode(Parser.java:1243)

    Both realvnc 4.1.3 and tigervnc 1.1.0.1 work on the Linux side.
    I was able to get the console to work by wiping the contents of the directory I created at the beginning of this exercise and then copying in a fresh OVM 3.0.2 created ovm_rasproxy-ws.jnlp file.
    [gordon@ufo Downloads]$ rm /home/gordon/.icedtea/cache/http/192.168.4.16/ovm/rasproxy/*
    [gordon@ufo Downloads]$ javaws ovm_rasproxy-ws.jnlp
    java.io.EOFException
         at java.io.DataInputStream.readUnsignedShort(DataInputStream.java:340)
         at java.io.DataInputStream.readUTF(DataInputStream.java:589)
         at java.io.DataInputStream.readUTF(DataInputStream.java:564)
         at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:744)
         at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:55)
         at java.security.KeyStore.load(KeyStore.java:1201)
         at net.sourceforge.jnlp.security.KeyStores.createKeyStoreFromFile(KeyStores.java:358)
         at net.sourceforge.jnlp.security.KeyStores.getKeyStore(KeyStores.java:124)
         at net.sourceforge.jnlp.security.KeyStores.getKeyStore(KeyStores.java:103)
         at net.sourceforge.jnlp.security.KeyStores.getCertKeyStores(KeyStores.java:157)
         at net.sourceforge.jnlp.security.VariableX509TrustManager.<init>(VariableX509TrustManager.java:91)
         at net.sourceforge.jnlp.security.VariableX509TrustManager.getInstance(VariableX509TrustManager.java:395)
         at net.sourceforge.jnlp.runtime.JNLPRuntime.initialize(JNLPRuntime.java:210)
         at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:182)
         at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:56)
         at java.security.AccessController.doPrivileged(Native Method)
         at net.sourceforge.jnlp.runtime.Boot.main(Boot.java:173)
    netx: Unexpected java.io.IOException: /home/gordon/.icedtea/cache/http/192.168.4.16/ovm/rasproxy/ovm_rasproxy-ws.jnlp (No such file or directory) at net.sourceforge.jnlp.JNLPFile.openURL(JNLPFile.java:255)
    [gordon@ufo Downloads]$ cp ovm_rasproxy-ws.jnlp /home/gordon/.icedtea/cache/http/192.168.4.16/ovm/rasproxy/
    [gordon@ufo Downloads]$ javaws ovm_rasproxy-ws.jnlp
    java.io.EOFException
         at java.io.DataInputStream.readUnsignedShort(DataInputStream.java:340)
         at java.io.DataInputStream.readUTF(DataInputStream.java:589)
         at java.io.DataInputStream.readUTF(DataInputStream.java:564)
         at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:744)
         at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:55)
         at java.security.KeyStore.load(KeyStore.java:1201)
         at net.sourceforge.jnlp.security.KeyStores.createKeyStoreFromFile(KeyStores.java:358)
         at net.sourceforge.jnlp.security.KeyStores.getKeyStore(KeyStores.java:124)
         at net.sourceforge.jnlp.security.KeyStores.getKeyStore(KeyStores.java:103)
         at net.sourceforge.jnlp.security.KeyStores.getCertKeyStores(KeyStores.java:157)
         at net.sourceforge.jnlp.security.VariableX509TrustManager.<init>(VariableX509TrustManager.java:91)
         at net.sourceforge.jnlp.security.VariableX509TrustManager.getInstance(VariableX509TrustManager.java:395)
         at net.sourceforge.jnlp.runtime.JNLPRuntime.initialize(JNLPRuntime.java:210)
         at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:182)
         at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:56)
         at java.security.AccessController.doPrivileged(Native Method)
         at net.sourceforge.jnlp.runtime.Boot.main(Boot.java:173)
    java.io.EOFException
         at java.io.DataInputStream.readUnsignedShort(DataInputStream.java:340)
         at java.io.DataInputStream.readUTF(DataInputStream.java:589)
         at java.io.DataInputStream.readUTF(DataInputStream.java:564)
         at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:744)
         at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:55)
         at java.security.KeyStore.load(KeyStore.java:1201)
         at net.sourceforge.jnlp.security.KeyStores.createKeyStoreFromFile(KeyStores.java:358)
         at net.sourceforge.jnlp.security.KeyStores.getKeyStore(KeyStores.java:124)
         at net.sourceforge.jnlp.security.KeyStores.getKeyStore(KeyStores.java:103)
         at net.sourceforge.jnlp.security.KeyStores.getCertKeyStores(KeyStores.java:157)
         at net.sourceforge.jnlp.tools.JarSigner.checkTrustedCerts(JarSigner.java:414)
         at net.sourceforge.jnlp.tools.JarSigner.verifyJars(JarSigner.java:269)
         at net.sourceforge.jnlp.runtime.JNLPClassLoader.verifyJars(JNLPClassLoader.java:946)
         at net.sourceforge.jnlp.runtime.JNLPClassLoader.initializeResources(JNLPClassLoader.java:422)
         at net.sourceforge.jnlp.runtime.JNLPClassLoader.<init>(JNLPClassLoader.java:169)
         at net.sourceforge.jnlp.runtime.JNLPClassLoader.getInstance(JNLPClassLoader.java:283)
         at net.sourceforge.jnlp.Launcher.createApplication(Launcher.java:650)
         at net.sourceforge.jnlp.Launcher.launchApplication(Launcher.java:436)
         at net.sourceforge.jnlp.Launcher$TgThread.run(Launcher.java:830)
    Oct 4, 2011 4:13:41 PM com.oracle.ovm.ras.proxy.RasProxyApplet main
    INFO: Server : 192.168.4.16
    Oct 4, 2011 4:13:41 PM com.oracle.ovm.ras.proxy.RasProxyApplet main
    INFO: service id : 003600010004fb0000060000281734f86e6aab47
    Oct 4, 2011 4:13:42 PM com.oracle.ovm.ras.proxy.external.VncViewerLauncherFactory getVncViewerLauncher
    INFO: Os is : linux
    Oct 4, 2011 4:13:53 PM com.oracle.ovm.ras.proxy.ProxyThread setupSSL
    INFO: DONE SSL Handshaking
    The console starts and all is well with the world.
    This is obviously not how one would want to start a console by downloading the .jnlp file and running it on the command line so I am now going to remove the /home/gordon/.icedtea/cache/http/* and see what happens.
    First, let me say that nothing happened. It did not work. I did confirm that it creates the directory structure again /home/gordon/.icedtea/cache/http/192.168.4.16/ovm/rasproxy/ but there is only one file in the directory.
    [gordon@ufo rasproxy]$ cat ovm_rasproxy-ws.jnlp.info
    #automatically generated - do not edit
    #Tue Oct 04 16:43:29 EDT 2011
    last-modified=0
    last-updated=1317761009801
    content-length=883
    If I save that ovm_rasproxy-ws.jnlp file instead of opening it and copy it to the /home/gordon/.icedtea/cache/http/192.168.4.16/ovm/rasproxy/ directory the console will now start successfully with one minor drawback - it will only launch that one VM based on the .jnlp file that I downloaded.
    Help?

  • Elements 10 canvas not working with tiff images; works fine with jpegs. What to do?

    Elements 10 canvas not working with tiff images; works fine with jpegs. What to do? It does not allow me to add a colored canvas, only a blank canvas.

    Perhaps some of the tiffs are already layers.
    In other words, since jpegs don't support layers, they all ways open with one locked background layer, but the tiff format does
    support layers so the tiffs don't have to have a locked background layer and can already be a regular layer that supports transparency.
    For the tiffs you could add a new color fill layer below and use the color you want the enlarged canvas to be.
    On pse 10 look at the bottom of the layers panel for the new adjustment of fill layer icon

  • Why the iPad internal speakers not working with some applications and key sound?

    My iPad1 ' internal speakers not fully functioning. It is working with music and video, YouTube , but not working with applications such as games.
    Also with key pad sound .
    Please help me in this regard.

    If you lose sounds for keyboard clicks, games or other apps, email notifications and other notifications, system sounds may have been muted.
    System sounds can be muted and controlled two different ways. The screen lock rotation can be controlled in the same manner as well.
    Settings>General>Use Side Switch to: Mute System sounds. If this option is selected, the switch on the side of the iPad above the volume rocker will mute system sounds.
    If you choose Lock Screen Rotation, then the switch locks the screen. If the screen is locked, you will see a lock icon in the upper right corner next to the battery indicator gauge.
    If you have the side switch set to lock screen rotation then the system sound control is in the task bar. Double tap the home button and in the task bar at the bottom, swipe all the way to the right. The speaker icon is all the way to the left. Tap on it and system sounds will return.
    If you have the side switch set to mute system sounds, then the screen lock rotation can be accessed via the task bar in the same manner as described above.
    This support article from Apple explains how the side switch works.
    http://support.apple.com/kb/HT4085

  • [rxvt-unicode]pseudo-transparency not working with Awesome WM (solved)

    Hi all,
    first of all, let me tell you that I googled about this problem, I read the Archwiki, the rxvt FAQ and several threads in multiple forums but nothing that I found actually worked.
    I'm using Awesome WM and OpenBox and my rxvt is the standard rxvt-unicode from the repos.
    Since an update, rxvt is not transparent anymore (I was using pseudo-transparency). Actually, transparency works with OpenBox but it does not work with Awesome WM. I find it very weird.
    I tried increasing the shading value in .Xdefaults as suggested in an other thread in this form but it did not help at all. I thought the problem was that I needed libafterimage so I installed it but then, how to use it?
    Does someone have any idea about this? I'd be very thankfull!
    Last edited by Sherwood51 (2011-01-18 17:04:37)

    And how exactly did you get it to work with feh ? I keep failing to get pseudo-transparency.
    My theme.lua has this:
    awsetbg -f -u feh path/to/wallpaper
    and I also tried this:
    feh --bg-scale path/to/wallpaper
    and in Xdefaults:
    URxvt*background 0
    URxvt*depth 24 ( doesn't work with 32 either )
    URxvt*inheritPixmap true
    URxvt*transparent true
    EDIT:
    I got cairo working ( finally ), so I have true transparency, so don't mind my post.
    Last edited by Varg (2011-01-19 21:08:33)

Maybe you are looking for