Class oracle/jpub/runtime/dbws/DbwsProxy does not exists on 10g Rel2

I trying using UTL_DBWS with samle from url http://www.freelists.org/archives/oracle-l/03-2005/msg00670.html in 10g Rel2 but I take error: class oracle/jpub/runtime/dbws/DbwsProxy does not exists .What I do incorrect?
However, using web service in Oracle rdms very hard...May be exists simply example for dummies?

Not really for dummies, but it may be a good way to get started:
Oracle Database Programming Using Java and Web Services, by Kuassi Mensah.
You have also the following resouces on OTN: Database Web Services.
-- Eric

Similar Messages

  • ORA-29540: class oracle/jpub/runtime/dbws/DbwsProxy does not exist

    Hi ,
    We are getting below error while executing webservice from PL/SQL block. Please help what would be wrong in below code. Thanks in advance.
    ORA-29540: class oracle/jpub/runtime/dbws/DbwsProxy does not exist
    ORA-06512: at "SYS.UTL_DBWS", line 318
    ORA-06512: at "FUSION.ADD_NUMBERS", line 21
    29540. 00000 - "class %s does not exist"
    *Cause:    Java method execution failed to find a class with the indicated name.
    *Action:   Correct the name or add the missing Java class.
    PL/SQL Code
    CREATE OR REPLACE FUNCTION add_numbers (username IN VARCHAR, password IN VARCHAR)
    RETURN NUMBER
    AS
    l_service SYS.UTL_DBWS.service;
    l_call SYS.UTL_DBWS.call;
    l_wsdl_url VARCHAR2(32767);
    l_namespace VARCHAR2(32767);
    l_service_qname SYS.UTL_DBWS.qname;
    l_port_qname SYS.UTL_DBWS.qname;
    l_operation_qname SYS.UTL_DBWS.qname;
    l_xmltype_in SYS.XMLTYPE;
    l_xmltype_out SYS.XMLTYPE;
    l_return NUMBER;
    returnVal BOOLEAN;
    boolean_type_qname sys.utl_dbws.QNAME;
    string_type_qname sys.utl_dbws.QNAME;
    BEGIN
    sys.UTL_DBWS.SET_PROPERTY(l_call,'USERNAME','fusion');
    sys.UTL_DBWS.SET_PROPERTY(l_call,'PASSWORD','fusion');
    l_wsdl_url := 'http://adcdab06.us.oracle.com:10217/xmlpserver/services/PublicReportWSSService?wsdl';
    l_namespace := 'http://xmlns.oracle.com/oxp/service/PublicReportService/';
    l_service_qname := SYS.UTL_DBWS.to_qname(l_namespace, 'PublicReportWSSServiceService');
    l_port_qname := SYS.UTL_DBWS.to_qname(l_namespace, 'PublicReportWSSService');
    l_operation_qname := SYS.UTL_DBWS.to_qname(l_namespace, 'validateLogin');
    l_service := SYS.UTL_DBWS.create_service (URIFACTORY.getURI(l_wsdl_url),l_service_qname);
    l_call := SYS.UTL_DBWS.create_call (l_service,l_port_qname,l_operation_qname);
    sys.utl_dbws.set_target_endpoint_address(l_call, 'http://adcdab06.us.oracle.com:10217/xmlpserver/services/PublicReportWSSService');
    boolean_type_qname :=sys.utl_dbws.to_qname ('http://www.w3.org/2001/XMLSchema', 'boolean');
    string_type_qname :=sys.utl_dbws.to_qname ('http://www.w3.org/2001/XMLSchema', 'string');
    sys.utl_dbws.add_parameter(l_call, 'BI_Admin', string_type_qname, 'ParameterMode.IN');
    sys.utl_dbws.add_parameter(l_call, 'Welcome1', string_type_qname, 'ParameterMode.IN');
    -- sys.utl_dbws.add_parameter (l_call,returnVal,boolean_type_qname,'ParameterMode.OUT');
    sys.utl_dbws.set_return_type (l_call, string_type_qname);
    -- utl_dbws.add_parameter(l_call_, 'ubiNum', string_type_qname, 'ParameterMode.IN');
    --sys.utl_dbws.add_parameter(l_call, 'TEST', string_type_qname, 'ParameterMode.IN');
    --l_xmltype_in := SYS.XMLTYPE('<?xml version="1.0" encoding="utf-8"?>
    --<validateLogin xmlns="' || l_namespace || '">
    --<validateLoginInput>' || p_int_1 || '</validateLoginInput>
    --</validateLogin>');
    l_xmltype_out := SYS.UTL_DBWS.invoke(call_Handle => l_call, request => l_xmltype_in);
    SYS.UTL_DBWS.release_call (call_handle => l_call);
    SYS.UTL_DBWS.release_service (service_handle => l_service);
    dbms_output.put_line('WS Executed successfully...');
    -- l_return := l_xmltype_out.extract('//return/text()').getNumberVal();
    RETURN 11;
    END;
    /

    Check if this helps:
    ORA-29540: class oracle/jpub/runtime/dbws/DbwsProxy does not exist

  • Root cause for  class oracle/jpub/runtime/dbws/DbwsProxy does not exist

    Hi,
    I am trying to use UTL_DBWS to call a webservice, adn getting a error " ORA-29540: class oracle/jpub/runtime/dbws/DbwsProxy does not exist "
    its going back and forth between me and operations , I aske them to load the package but still the script fails. Is there any way to confirm whether the package is loaded , like the below script
    as sys:
    select status from all_objects where
    dbms_java.longname(object_name)='oracle/jpub/runtime/dbws/DbwsProxy';
    Please help to find the root cause

    Please check if you have the grants on UTL_DBWS.

  • ORA-29540:class oracle/pub/runtime/dbws/DbwsProxy does not exist

    Hi we are getting below error while calling UTl_DBWS package.
    Database version 11.2.0.2
    package definition
    create or replace function xxpvn_ws_test
    return varchar2
    is
      service_           sys.utl_dbws.SERVICE;
      call_              sys.utl_dbws.CALL;
      service_qname      sys.utl_dbws.QNAME;
      port_qname         sys.utl_dbws.QNAME;
      xoperation_qname   sys.utl_dbws.QNAME;
      xstring_type_qname sys.utl_dbws.QNAME;
      response           sys.xmltype;
      request            sys.xmltype;
    begin
      service_qname := sys.utl_dbws.to_qname(null, 'getJoke');
      service_ := sys.utl_dbws.create_service(service_qname);
      call_ := sys.utl_dbws.create_call(service_);
      sys.utl_dbws.set_target_endpoint_address(call_, 'http://interpressfact.net/webservices/getjoke.asmx');
      sys.utl_dbws.set_property( call_, 'SOAPACTION_USE', 'TRUE');
      sys.utl_dbws.set_property( call_, 'SOAPACTION_URI', 'http://interpressfact.net/webservices/getJoke');
      sys.utl_dbws.set_property( call_, 'OPERATION_STYLE', 'document');
      request := sys.xmltype(
           '<getJoke xmlns="http://interpressfact.net/webservices/">'
        || '<Category>Excuses-10</Category>'
        || '</getJoke>');
      response :=sys. utl_dbws.invoke(call_, request);
      return response.extract('//getJokeResult/child::text()',
        'xmlns="http://interpressfact.net/webservices/"').getstringval();
    end ;error message
    SQL> select xxpvn_ws_test from dual;
    select xxpvn_ws_test from dual
    ERROR at line 1:
    ORA-29540: class oracle/jpub/runtime/dbws/DbwsProxy does not exist
    ORA-06512: at "SYS.UTL_DBWS", line 144
    ORA-06512: at "SYS.XXPVN_WS_TEST", line 14
    Thanks
    Jitendra

    This error related to jave since its not installed in database user schema
    Logout of sqlplus and run:
    loadjava -u / -r -v -f -s -grant public -genmissing dbwsclientws.jar dbwsclientdb102.jar
    Check this
    https://kr.forums.oracle.com/forums/thread.jspa?threadID=2264325

  • Loading class oracle/jpub/runtime/dbws/DbwsProxy into the database

    I am trying to create a Database Web Services call-out in PL/SQL, however, encountered error "ORA-29540: class oracle/jpub/runtime/dbws/DbwsProxy does not exist". I followed some steps to load utl_dbws.jar, utl_dbws_jserver.jar and dbwsclient.jar into the database, but still getting the same error saying DbwsProxy class does not exist. This is very frustrating and I do not know how to fix this. I tried to just load DbwsProxy.class into the database and it executed successfully, however, the database is still complaining that oracle/jpub/runtime/dbws/DbwsProxy does not exist. Does anyone has any idea what's going on? Thanks much. I am cracking my brain out here.

    This is the error message I received when loading:
    The following operations failed
    class java/lang/NumberFormatException: creation (createFailed)
    class java/lang/Number: creation (createFailed)
    class java/lang/Object: creation (createFailed)
    class java/lang/String: creation (createFailed)
    class java/lang/Long: creation (createFailed)
    exiting : Failures occurred during processing
    This is the error message I received in the database after loading dbwsclient.jar:
    ERROR at line 1:
    ORA-29540: class oracle/jpub/runtime/dbws/DbwsProxy does not exist
    ORA-06512: at "SYS.UTL_DBWS", line 135
    ORA-06512: at "SYS.UTL_DBWS", line 132
    ORA-06512: at "MICHELLE.MICH", line 8
    ORA-06512: at line 1
    So that class is still missing. You were suspecting that this class is not loaded successfully into the database? Is it possible for me to just load that particular class into the database?
    Thanks.

  • Oracle/wh/runtime/server/Util does not exist - while creating runtime repos

    While running OWB Runtime Assistant, at about 60% completed, getting an error.
    Here is the last few lines from the log file:
    oracle.wh.util.DebugUtility: [processSPAWN]: wholeLine =..\..\..\jdk\jre\bin\javaw -classpath ../../lib/int/rtpplatform.jar;../../lib/int/rtpcommon.jar;../../../jdbc/lib/ojdbc14.jar;../../../lib/xmlparserv2.jar;../../../sqlj/lib/runtime12.jar;../../../jdk/jre/lib/rt.jar oracle.wh.runtime.platform.service.install.ServiceInstaller %host %port %serviceName %user %password
    Mon Feb 06 11:58:00 CST 2006
    oracle.wh.util.DebugUtility: after executing the output
    Mon Feb 06 11:58:00 CST 2006
    oracle.wh.util.DebugUtility: Runtime Platform Property Load Beginning...
    Mon Feb 06 11:58:00 CST 2006
    oracle.wh.util.DebugUtility: java.sql.SQLException: ORA-29540: class oracle/wh/runtime/server/Util does not exist
    Mon Feb 06 11:58:00 CST 2006
    oracle.wh.util.DebugUtility: [processSPAWN]: A spawned program error. Exception = java.lang.Exception: Error : java.sql.SQLException: ORA-29540: class oracle/wh/runtime/server/Util does not exist
    Mon Feb 06 11:58:00 CST 2006
    oracle.wh.util.DebugUtility: [processSPAWN]: Get the error, stop processing...
    Mon Feb 06 11:59:47 CST 2006
    oracle.wh.util.DebugUtility: Assistant operation is unsuccessful ...
    =========================================
    The database version is 9.2.0.4 on XP
    OWB version is 10.1.0.2 on the same XP host.
    I'd prefer NOT to change (upgrade or degrade) the versions of db and owb, as the same version combination works just fine in production, and I'm trying to create the same environment on my local PC.
    Thanks for your help.
    vr

    I did that and my output is all good:
    All PL/SQL packages and functions are valid
    Platform properties have been loaded correctly
    Platform location has been seeded correctly
    NLS messages have been loaded correctly
    The platform service is available
    PL/SQL procedure successfully completed.

  • ORA-29540: class oracle/xml/sql/query/OracleXMLStaticQuery does not exist

    I am getting below error when trying to generate xml. Browsing on google did not help me. I would appreciate if someone can provide the solution.
    SQL> select dbms_xmlquery.getxml('select * from dual', 2) from dual;
    ERROR:
    ORA-29540: class oracle/xml/sql/query/OracleXMLStaticQuery does not exist
    ORA-06512: at "SYS.DBMS_XMLQUERY", line 19
    ORA-06512: at "SYS.DBMS_XMLQUERY", line 271
    ORA-06512: at line 1

    Then it is probably not the case that you are affected by the issue described in Metalink document 185857.1, but if I were you I would check it anyway, since it might be the problem.

  • Class DbwsProxy does not exist when connecting to WEB SERVICE

    Hi,
    I am trying to connect to the OC4J sample web service using the Oracle supplied method specified in this document.
    http://www.oracle.com/technology/sample_code/tech/java/jsp/callout_users_guide.htm
    We of course use a 10g DB.
    The DBWS Callout Utilities were successfully installed by our systems team.
    When I run the sample script for the PL/SQL Dynamic Invocation Interface (DII)
    I get this error:
    ORA-29540: class oracle/jpub/runtime/dbws/DbwsProxy does not exist
    ORA-06512: at "SYS.UTL_DBWS", line 178
    ORA-06512: at "ABS.CHANNA_TEST_PLSQL_DII", line 14
    ORA-06512: at line 1
    Why is this??
    Any help would be grately appreciated?
    Is there any grans/permissions we have to give?
    Thanks & Regards,
    Channa.

    Be certain to "propagate permissions" for the shared volume. Under Manage Devices, look for hardware, "Server" then the tab on the right, storage, gear icon at bottom.
    This will change the permissions for all files, folders and sub folders.

  • Update was terminated - Class PO - Number 366 - Device ARCH does not exist

    Dear Gurus,
    We are using Automatic PO generation through ME59, we also applied one SAP note to pick the custom document type through ME59 (normally the system pick NB as standard document)
    In  MN05 - if i set as default output type 1 - print ( then the document is generating with the correct document with correct number range)
    But if i set in MN05 - default output as 2 - fax ( then i am getting this Update was terminated - Class PO - Number 366 - Device ARCH does not exist).
    Please advice
    Regards
    RS

    Dear Friend,
    Output determination for fax is not done properly. check the device connnectivity.
    SPRo>>Maintain Message type of PO
    For the particular document type - i have removed the default PO Print out settings - now its working fine. Is this the right way?
    Please advice
    RS

  • ChaRM class java.io.IOException:The file does not exist on the filesystem

    Hi All,
    We are implementing ChaRM with Portal. While deploying we are running into following issue.
      Deployable-Id:/usr/sap/trans/data/GPSK90001B/sktp14_20100806_095633.epa
      Returncode:'12'
      class java.io.IOException:The file (/usr/sap/trans/data/GPSK90001B/sktp14_20100806_095633.epa) does not exist on the filesystem.
    Any suggestion.
    Regards,
    Smita

    We resolved this issue by sharing the trans file across SolMan and Portal system.

  • Install web server 7U5 on Mandriva - runtime user id does not exists error

    Hi,
    I'm trying to install Sun Web Server 7 update 5 on Mandriva 2009 but the installation process stucks on the step where the Runtime User ID must be entered. It says that the root account doesn't exists which obviously it does. It happens both on GUI and console installs and there isn't an error nowhere, I suppose that the routine on the installer that it's used to verify the user fails on Mandriva but without an error or something I can't figure out why it's failing and try to woekaround it.
    Has anyone had a similar issue while installing sun web server ?

    Looking a little at this problem, I can see that both useradd commands are very similar, both distros have almost the same version and the main differences between them is that Red Hat useradd has an extra option for SE Linux which Mandriva doesn't use:
    Red Hat useradd version (CentOS equivalent):
    [root@demo ~]# rpm -qf `which useradd`
    shadow-utils-4.0.17-13.el5
    Red Hat useradd options:
    -b, --base-dir BASE_DIR       base directory for the new user account
    home directory
    -c, --comment COMMENT         set the GECOS field for the new user account
    -d, --home-dir HOME_DIR       home directory for the new user account
    -D, --defaults                print or save modified default useradd
    configuration
    -e, --expiredate EXPIRE_DATE  set account expiration date to EXPIRE_DATE
    -f, --inactive INACTIVE       set password inactive after expiration
    to INACTIVE
    -g, --gid GROUP               force use GROUP for the new user account
    -G, --groups GROUPS           list of supplementary groups for the new
    user account
    -h, --help                    display this help message and exit
    -k, --skel SKEL_DIR           specify an alternative skel directory
    -K, --key KEY=VALUE           overrides /etc/login.defs defaults
    -m, --create-home             create home directory for the new user
    account
    -l,                       do not add user to lastlog database file
    -M, do not create user's home directory(overrides /etc/login.defs)
    -r, create system account
    -o, --non-unique              allow create user with duplicate
    (non-unique) UID
    -p, --password PASSWORD       use encrypted password for the new user
    account
    -s, --shell SHELL             the login shell for the new user account
    -u, --uid UID                 force use the UID for the new user account
    *-Z, --selinux-user SEUSER     use a specific SEUSER for the SELinux user mapping*
    Mandriva useradd version:
    [root@localhost juancho]# rpm -qf `which useradd`
    shadow-utils-4.0.12-19mdv2009.1
    Mandriva useradd options:
    -b, --base-dir BASE_DIR       base directory for the new user account
    home directory
    -c, --comment COMMENT         set the GECOS field for the new user account
    -d, --home-dir HOME_DIR       home directory for the new user account
    -D, --defaults                print or save modified default useradd
    configuration
    -e, --expiredate EXPIRE_DATE  set account expiration date to EXPIRE_DATE
    -f, --inactive INACTIVE       set password inactive after expiration
    to INACTIVE
    -g, --gid GROUP               force use GROUP for the new user account
    -G, --groups GROUPS           list of supplementary groups for the new
    user account
    -h, --help                    display this help message and exit
    -k, --skel SKEL_DIR           specify an alternative skel directory
    -K, --key KEY=VALUE           overrides /etc/login.defs defaults
    -m, --create-home             create home directory for the new user
    account
    -M, do not create home directory for the new user
    -n,                   do NOT create a group with the same name
    as the user
    -o, --non-unique              allow create user with duplicate
    (non-unique) UID
    -p, --password PASSWORD       use encrypted password for the new user
    account
    -r create a system account
    -s, --shell SHELL             the login shell for the new user account
    -u, --uid UID                 force use the UID for the new user account
    If the problem lies in one of the extra options that Red Hat includes because it has a newer version of shadowutils package I could try to help upgrade it to a newest version as I'm somewhat involved in the Mandriva development community, but seeing that most of the options between the two versions are almost the same I think the problem lies somewhere else. Also taking into account that the installation as a non root user also fails with the same error, that would make me think that the problem isn't when trying to create a new user but when trying to check it's existence on the system.

  • Runtime Error  SubScreen Does not exist

    I am getting the following error when I click sourcing option in SRM 7 server. When I checked the program SAPLBBP_SOCO_UI_ITS screen 1000 there was no ITS screen existing and I got the error. HTML view not found.
    I have even maintained ~generateDynpro 1 in SICF  under sa/ bc/gui/sap/its/bbpsoco01 service but I am still getting the same issue. Is there anything else which I can check to correct the issue?
    Error when processing your request
    What has happened?
    The URL http://********/sap/bc/gui/sap/its/bbpsoco01 was not called due to an error.
    Note
    The following error text was processed in the system SRD : Error ITS_SUBSCREEN_NOT_FOUND occured. P1=TAB_STRIP P2=bbpsoco01
    The error occurred on the application server and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    SYSTEM-EXIT of program SAPLBBP_SOCO_UI_ITS
    What can I do?
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system SRD in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server . In some situations, you may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system administrator.

    I was using the wrong option i believe.
    in WebDynpro UI Under Purchasing->Transaction Processing->Create Purchase Order
    I am getting the following error.
    Portal runtime error.
    An exception occurred while processing your request. Send the exception ID to your portal administrator.
    Exception ID: 11:23_01/02/11_0133_23395551
    Refer to the log file for details about this exception.

  • Runtime error in enhancement spot-' mereq_topline does  not exists.'

    Hi all,
    I have implemented an implicit enhancement spot in ME53n.
    When i applied break point in enhancement spot and control goes to ebhancement spot in debugging mode, i got purchse requisition number in mereq_topline.
    When i tried to use this structure value in code i get runtime error-
    ' mereq_topline does  not exists.'
    Can you please guide how to resolve  this runtime error.
    thanks.
    Edited by: Sanjay_lnt on Sep 20, 2010 8:52 AM

    Sanjay,
    try to delete the enhancement and recreate it
    Thanks
    Bala Duvvuri

  • Native SQL "Table does not exist in database"

    Hi Developers,
    I'm doing a database connection to an Oracle db and trying to read data using native SQL - I keep getting the runtime error "table does not exist in database" on the statement Fetch Next Cursor. The following is the code snippet (I've commented out the Exec SQL and Fetch Next to make sure I have a connection and I do). HR is a schema in the database and T_Donation is a table in HR.
    Data: w1(3),
             c1 type cursor.
    start-of-selection.
      if con_name is initial.
        write: 'No connection specified'.                       "#EC NOTEXT
        return.
      endif.
    try to open the connection and catch the errors (if any)
      try.
          con_ref = cl_sql_connection=>get_connection( con_name ).
        catch cx_sql_exception into sqlerr_ref.
        error occured
          write:
            'Could not open connection', con_name, '.'.         "#EC NOTEXT
          if sqlerr_ref->unknown_connection = 'X'.
            write:
              / con_name, 'is not defined in DBCON'.            "#EC NOTEXT
          elseif sqlerr_ref->db_error = 'X'.
            write:
              / 'sql error', sqlerr_ref->sql_code, 'occured:',
              / sqlerr_ref->sql_message.                        "#EC NOTEXT
          else.
            perform get_trace_file using dev_file.
            write:
              / 'DBI error', sqlerr_ref->internal_error, 'occured.',
              / 'See trace file for further info:',
                icon_read_file as icon hotspot, dev_file.       "#EC NOTEXT
          endif.
          return.
      endtry.
    connection successfully opened
      write:
        / 'Connection', con_name, 'successfully opened.'.       "#EC NOTEXT
    *- Get the data from MS-SQL Server
      EXEC SQL.
        open C1 for
        SELECT HR.T_DONATION.DN_DONATIONYEAR
        FROM HR.T_DONATION
      ENDEXEC.
      do.
        EXEC SQL.
          FETCH NEXT C1 into :w1
        ENDEXEC.
        if sy-subrc = 0.
          perform loop_output.
        else.
          exit.
        endif.
      enddo.
      EXEC SQL.
        CLOSE C1
      ENDEXEC.
    close connection again
      con_ref->close( ).
      write:
        / 'Connection', con_name, 'closed'.                     "#EC NOTEXT
    end-of-selection.
    *& Form LOOP_OUTPUT
    Output
    form loop_output .
      write: /5 w1.
    endform. " LOOP_OUTPUT
    Thanks for your help.
    Jim
    Message was edited by:
            James Barnes

    Well my advice is to check the question in the sql tutorial, it will be quicker then getting an answere.

  • Table does not exist - DbLink

    Hello, I have 2 instances, into production environment, instance A and instance B. Into instance A I have a dblink to instance B...
    The problem appear when I want to see the indexes of a table of instance B from instance A, to do this I press F4 into TOAD over:
    owner.table@dblink
    and when I click into tab "Indexes", Oracle said me: "The table does not exist", I review the grants, and this is ok, and the table exist in instance B.
    One explanation, I have the same environment into testing, and there work perfectly, I have the same dblinks, the same users and the same grants.
    Any suggestion to help me.

    You may want to contact the folks that make TOAD.
    My guess is that TOAD is querying the local USER_/ ALL_/ DBA_INDEXES table rather than the USER_/ ALL/ DBA_INDEXES table at the remote server. You could run a client-side SQL trace to see what SQL is being generated to see if the problem is that TOAD is generating the incorrect SQL or whether there is some problem with the database. But I'm not sure how productive that would be since it's not like you could fix the SQL TOAD is submitting. If there is an option in TOAD that changes the behavior here, it's certainly possible that someone here will know it. But TOAD support is probably more likely.
    Justin

Maybe you are looking for

  • F110 APP run Error

    Hi Experts, When I try to run F110. Below Error shown. I pasted  Error Job log below: Job started Step 001 started (program SAPF110S, variant &0000000002020, user ID SAPUSER) Log for proposal run for payment on 12.07.2014, identification WIP4 Informa

  • Namespace tag change in receiver file adapter

    Hi Group, My requirement: Need to change the Namespace tag at the receiver side. My XML will be something like below: <?xml version="1.0" encoding="UTF-8"?> <ns0:ASNList xmlns:ns0="http://www.apriso.com/SXI.GLS">    <EventData>       <SenderName>Test

  • Export Import single table...

    Gurus... I am working on this single table which needs to be exported from prod and import into test. As I understand I need to follow below steps: 1. Test - export table abc dump as backup 2. Prod - Export single table abc 3. Test - Drop table abc c

  • Roadmap for Blackberry / Java Developers new to Mac

    Hi, I am totally new to the mac environment, and hope one day to start developing iPhone apps. I currently develop Blackberry Apps. What I would like to see is a Clear Roadmap for developers who may have never seen a "Mac" before. So far from my reas

  • UDF - Get Value Node

    Hi ExpertALL, I need support, check the source and target structures. Source structure below: Target structure: As you can see the structure "item" it´s unbound, means repeat many times, inside <item> there is a tag <TYPE> that´s cointains two values