Problem to integrate Adobe LiveCycle Web Service to BizFlow

  I have problem in integrating BizFlow with Adobe LiveCycle Web Service. We use LiveCycle Output Service module, it has Web Service, EJB, Remoting and REST for external application to call. Then I try to create a Web Service Application in BizFlow to call that LiveCycle Web Service.
   The LiveCycle project is input an XML parameter from Web Service then fill in the LiveCycle form to generate PDF then send it to an email address.
   The problem is BizFlow can only accommodate with RPC Web Service and does not work with other web service, and in default LiveCycle only present Document style Web service to external. We have problem in integration.
  Anyone could give some information on how to integrate BizFlow and LiveCycle service? Like can LiveCycle present RPC protocol Web Service?
The help is highly appreciated
Daniel

I did fine a solution to this, which was to use the distiller Web service for PostScript files.
-Kelly

Similar Messages

  • Cold Fusion8 instaltion- Reg the service "Adobe LiveCycle data services ES"

    What is the purpose of the Cold Fusion8 service "Adobe LiveCycle data services ES"?I am using Sun solaris platform with Iplanet webserver
    I  don't require any Flash services still is it required to install that service?

    Could you tell me what are the basic steps to run the Livecycle on weblogic server? what are the system requirements and prices as per your experience?

  • Connecting Xcelsius via Adobe LiveCycle Data Services

    Hi Gurus,
    Can anyone help with connecting Xcelsius dashboard to live data via Adobe LiveCycle Data Services?? Have anybody experienced this option??
    I would appreciate if anybody had a tutorial avaible.
    Thanks!!!
    Jan

    Hi,
    yes with the limitations of the license (
    FAQ
    ) ... one cpu server , one application , ...
    best regards
    kcell

  • Problem in stubbing out Soap Web Service

    Hi,
    I have a problem stubbing out a SOAP web service in Flash Builder 4.  The problem is that not all the classes are created.  This happens when a base class is referenced by a method in the schema.  The classes that extends the base class do not get created.
    Here is an example: method doSomething returns a class called ResponseBase.  Even though MyResponse, which extends ResponseBase, is in a xsd which is referenced by the WSDL, MyResponse class is not created as value objects.
    Another example is: method doSomething takes a parameter called ParamClass.  ParamClass contains a property of type SomeClassBase.  MyClass which extends SomeClassBase is not created even though it is defined in an xsd.
    Does that sound like a limitation of the Flash Builder 4?  Is there another way to create the proxy classes from a web service?
    Thanks,
    Ming

    Sekar,
    I have the same problem.
    How did you change your web service as Anonymous?
    I have a user id and pwd, i tried by appending end of the service and tried with basic authentication by passing uid and pwd. No luck.
    Can you please help me how to change web service as anonymous?
    Regards,
    Sridhar

  • GenericServiceFactory initialization problem when trying to load Web servic

    Hi,
    I am making a Guided procedure that calls a webservice. I have created a new Destination Template and was able to load the webservice definition successfully, but when I test the callable object I created for that same webservice y get the error:
    GenericServiceFactory initialization problem when trying to load Web service model for WSDL.
    Somehow I think there is something wrong with the user authentication. The Destination template has a user and password but somehow I think the callable object test is not using this information at all.
    Can anyone help ?
    Thanks in advance

    Hi Hans,
    Have you verified if you can call any external web service calls from your J2EE engine?  Go into the SOA Management / Global settings (if you are on CE - if you're on 7.0 it's in manage WS desintations).
    Look at your proxy settings and set them like your web browser that enables external calls.  For example, in the SAP network I set my global proxy settings on my local J2EE engine to be:
    Proxy host:  proxy
    Proxy port: 8080
    Exclude list:  *.sap.corp
    Does that make sense - have you verified if your settings are correct for your company?
    Regards
    Ginger

  • Is Adobe LiveCycle Data Services ES free?

    I download and installed Adobe® LiveCycle® Data
    Services ES withnot key,
    can I use it for business(one cpu
    server)?
    thx

    Hi,
    yes with the limitations of the license (
    FAQ
    ) ... one cpu server , one application , ...
    best regards
    kcell

  • Leading zeros from Adobe form web service data connection

    I created a web service for BAPI_PRODORD_GET_DETAIL and used it as a data connection in an Adobe form. When executing the connection using request parameters of:
    Number = [Production Order #]
    OrderObjects.Operations = 'X'
    no production orders are found.
    I debugged and discovered the BAPI only found production orders when the Number importing parameter contained padded leading zeros. After searching the forums, I suspect (1) I have the wrong field type and / or pattern for the production order number input field or (2) SAP Note 1050826 may apply.
    Does anyone have suggestions on which field types and patterns to use? I have tried each of Text, Numeric, and Decimal. When using Numeric, I set the data format to Float instead of Integer. I tried data patterns such as: num , the data displays with leading zeros but does not pass to the BAPI with them.
    I was also thinking a Formcalc or Javascript may be the solution.
    Livecycle version: 8.1.2
    Component SAP_APPL: 603 (for SAP note relevancy)
    Thank you,
    --- Scott

    Hello,
    maybe it would be the fastest approach here to work with the value as a string and check the length of the "string" and if needed add some leading zeros. You may try some validations, so the value entered by the user is denied if not in the respective format.
    For a smooth start with scripting start here:
    http://www.adobe.com/devnet/livecycle/articles/lc_designer_scripting_basics/lc_designer_scripting_basics.pdf
    http://help.adobe.com/en_US/livecycle/es/FormCalc.pdf
    Regards, Otto

  • Script LiveCycle Web Services long lived

    Hi,
    I have a script to call web services (in fact short-lived livecycle process).
    I want to call a long lived process with script to. So I try to use the asynchronous method with soap.request but I'm lost.
    I wonder if anybody has an example of how to script a call to a long lived process in adobe script because all process use the invoke method.
    Any help would be appreciated.
    Thanks

    In the SOAP.request method, there is the ORequest object with the invoke method.<br /><br />The cMethod is set at the line : var result = mySync.result("invoke"); <br /><br />----------------------------------------<br /><br />I scripted my short-lived web services (with the .invoke() method ) because I cannot drag and drop the result by the data connection wizard.<br /><br />I will test the connexion wizard for the long Lived process call. It's true, I don't need to script.<br /><br />-----------------------------------------------------------<br /><br />I try to rewrite my script for the short lived process call. Because I used this kind of code : <br /><br />function callWS(URL,objet){<br /><br />     var service = SOAP.connect(URL);<br /><br />     if(typeof service != "object")<br /><br />          xfa.host.messageBox("Couldn't get WSDL object");<br /><br />    if(service.invoke == "undefined")<br /><br />        xfa.host.messageBox("Couldn't get webservicex.invoke Call");<br />        <br />     var param;<br /> <br />     param =<br />        {<br />      nom_client:objet,<br />        };<br />         <br /><br />    var e;<br />    var cXMLDoc;<br />    var nb = 0;<br /><br />    try<br />    {   <br />         var result = service.invoke(param);<br />         <br />          if((result == "") | (result == null))  {<br />        <br />               result = "<no results returned>";<br />             return (false); <br />             <br />          }else{               <br />          <br />               for(var nItemCount in result)<br />            {<br />                cXMLDoc = result[nItemCount];<br />            }<br />               myXML = XMLData.parse( cXMLDoc,false);<br />        }<br /><br />      }catch(e) {<br />          <br />          xfa.host.messageBox("exception "+e);      <br />     }<br />}<br /><br />But with this code, I cannot use the authenticator object.<br /><br />With SOAP.request, I can use the authenticator object but I don't know how to get the result of my web service.<br /><br />For example : <br /><br />function callWS(URL){<br /><br />    var cXMLDoc;<br /><br />    try<br />    {  <br />              console.show();<br />              SOAP.wireDump = true;<br />                    <br />               var myAuthentication = {<br />                    Username: "administrator",<br />                    Password: "password"<br />               };<br />                <br />               var response = SOAP.request({<br />                    cURL: URL,<br />                    oRequest: {<br />                         "http://sw0052.phys.pack/soap/services/:invoke":{}<br />                    },<br />                    oAuthenticate: myAuthentication<br />               });<br /><br />      }catch(e) {<br />          <br />          xfa.host.messageBox("exception "+e);      <br />     }<br />}<br /><br />In the javascript Console there is the XML I need But I don't know how to retrieve the value.<br /><br /><?xml version="1.0"?><br /><SOAP-ENV:Envelope xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><br />     <SOAP-ENV:Body><br />          <ns0:invoke SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns0="http://sw0052.phys.pack:8080/soap/services/NumeroDemande/"/><br />     </SOAP-ENV:Body><br /></SOAP-ENV:Envelope><br /><br /><?xml version="1.0" encoding="UTF-8"?><br /><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><br />     <soapenv:Body><br />          <invokeResponse xmlns="http://sw0052.phys.pack:8080/soap/services/NumeroDemande/"><br />               <ns1:resultat xsi:type="ns1:XML" xmlns:ns1="http://adobe.com/idp/services"><br />                    <ns1:document><?xml version="1.0"?><br />                                                  <Formulaire><br />                                                       <NumeroDemande><br />                                                            <Numero type="int">17</Numero><br />                                                       </NumeroDemande></Formulaire><br />                    </ns1:document><br />               </ns1:resultat><br />          </invokeResponse><br />     </soapenv:Body><br /></soapenv:Envelope><br /><br />I tried several methods with response with no results. <br /><br />Thanks

  • Problems to invoke a secure Web service from Oracle BPM Studio 10.3

    Hi all
    I'm trying to consume a web service through HTTPS protoloco Oracle BPM Studio v10.3, but I get the following error: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target.
    Some help!!
    Thanks

    Without going into any technical discussion about the code, my first question is what JDK version was used to create this which was imported into the form? Understand that Forms 10 runs on JDK 1.4.2, so if you used any newer JDK version, likely there will be problems.

  • Problem with CLOB in PLSQL Web Service.

    Hi-
    I have Oracle Package that accepts CLOB as IN parameter and another CLOB as an OUT parameter. I went thru the tutorial in how to publish a database
    PLSQL package as a web service with out any problem. I was able to publish and call successfully my PLSQL web service thru a browser and thru a simple C# application. It's been working fine until I receive an XML file which is bigger than 32766:
    java.sql.SQLException: setString can only process strings of less than 32766 chararacters at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:137)]
    JDeveloper version: JDeveloper 10g (10.1.2.2.0) Build 1929
    Oracle Application Server 10g
    I'm newbie in JDeveloper so any help is greatly appreciated.
    Thanks!

    well Shay,
    i've used JDev's tools to developer and to deploy the web service: the war and ear files are automatically generates you to the end of the process.
    I have included all the files java and the compiled classes, but I do not have files jar.
    But don't works: if i create only one java class with all code inside then it works fine!!
    Daniele

  • Problem while testing a BAPI Web Service

    i face this problem in web service bapi when i am carrying out the test... so can anyone help me???
    HTTP/1.1 500 Internal Server Error
    Set-Cookie: <value is hidden>
    content-type: text/xml; charset=utf-8
    content-length: 803
    sap-srt_id: 20080610/144609/v1.00_final_6.40/DD36B8E7DE44B5F19BA900145E6770F3
    server: SAP Web Application Server (1.0;700)
    <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"><soap-env:Body><soap-env:Fault><faultcode>soap-env:Client</faultcode><faultstring xml:lang="en">Deserialisation failed</faultstring><detail><n0:SimpleTransformationFault xmlns:n0="http://www.sap.com/transformation-templates"><MainName>/1BCDWB/WSS0080610064309718000</MainName><ProgName>/1BCDWB/WSS0080610064309718000</ProgName><Line>128 </Line><Valid>X</Valid><ReferenceFault><DescriptionText>Error accessing the ref. node 'EMPLOYEENUMBER'</DescriptionText><RefName>EMPLOYEENUMBER</RefName></ReferenceFault><Caller><Class>CL_SRG_RFC_PROXY_CONTEXT</Class><Method>IF_SXML_PART~DECODE</Method><Positions>1 </Positions></Caller></n0:SimpleTransformationFault></detail></soap-env:Fault></soap-env:Body></soap-env:Envelope>

    There is SAP Note no. 830340 addressing this issue.
    https://websmp106.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=830340&_NLANG=E
    Pl try to apply that SupportPack and let us know the results after that.
    Also pl reward points as appropriate.

  • Problem while testing a ABAP Web Service

    Hello,
    I'm facing a problem while testing a webservice for the BAPI BUPA_CENTRAL_GET_DETAIL. I have opened the Web Service Home page, and I get no error. I fill in the input values and then when I send the request, I get back an error which says "Authority check failed"
    Urgent help needed..
    Thanx,
    Anupama

    you need s_service and s_object authorization objects in your role.
    its explained in this document
    section 3.1 on page 7
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/92d80512-0a01-0010-32a3-cd3735bd9275
    Regards
    Raja

  • Handshaking problem while invoking a secured web service

    Hi,
    I have developed a web service. I made my WLS 7.0 secured, using SSL. Also
    I made the
    my web service accessible only by https protocol. Also I configured the WLS SSL
    to have one
    way SSL. The problem is I am not able to access this web service using a swing
    client, It throws
    an exception saying some Handshaking exception. This problem occured only when
    I made
    the web service secured (https).
    Has anybody faced this problem ever?.
    For one way SSL do I need to supply any certificate file or PEM file from the
    client to the
    server?.
    Thanks,
    Anish

    Hi Anish,
    No, in this case the client is checking the cert provided by the
    server. Have you tried the flag
    -Dweblogic.webservice.client.ssl.strictcertchecking=false on the client
    side?
    Also take a look at the entry by Michael Jouravlev, on SSL "how to"
    http://newsgroups.bea.com/cgi-bin/dnewsweb?cmd=article&group=weblogic.developer.interest.webservices&item=1910&utag=
    Have you gone through the simpleSSL example:
    http://webservice.bea.com/simpleSSL.zip
    HTHs,
    Bruce
    Anish wrote:
    >
    Hi,
    I have developed a web service. I made my WLS 7.0 secured, using SSL. Also
    I made the
    my web service accessible only by https protocol. Also I configured the WLS SSL
    to have one
    way SSL. The problem is I am not able to access this web service using a swing
    client, It throws
    an exception saying some Handshaking exception. This problem occured only when
    I made
    the web service secured (https).
    Has anybody faced this problem ever?.
    For one way SSL do I need to supply any certificate file or PEM file from the
    client to the
    server?.
    Thanks,
    Anish

  • Jdeveloper 11g R2 problem when publishing PL\SQL Web Service

    Hi Guys,
    I have been banging my head against the wall for the past few days trying to publish pl\sql package as a web service on a weblogic 10.3 but I keep running into the same problem.
    PL\SQL Package Source below
    create type dept_type as object
    (deptno NUMBER,
    dname VARCHAR2(50),
    loc varchar2(13),
    cr_date date)
    create type dept_list_table is table of dept_type
    purge recyclebin;
    create or replace package ws_package as
    procedure test_dept_table (pout out dept_list_table);
    end ws_package;
    show errors;
    create or replace package body ws_package as
    procedure test_dept_table (pout out dept_list_table) is
    all_depts dept_list_table := dept_list_table();
    dRecType dept_type;
    i number := 0;
    begin
    -- iterate through all depts
    for r_list in (select * from dept) loop
    i := i + 1;
    dRecType := dept_type(null, null, null, null);
    dRecType.deptno := r_list.deptno;
    dRecType.dname := r_list.dname;
    dRecType.loc := r_list.loc_id;
    dRecType.cr_date := sysdate;
    pout.extend;
    pout(i) := dRecType;
    end loop;
    end test_dept_table;
    end ws_package;
    show errors;
    I go and create PL\SQL Web Service using default settings in Jdeveloper 11g R2 but when I try and test this page I get the following response:
    Failed to invoke end component servqa.MyWebService1User (POJO), operation=testDeptTable -> Failed to invoke method -> java.sql.SQLException: ORA-06550: line 1, column 13: PLS-00306: wrong number or types of arguments in call to 'TEST_DEPT_TABLE' ORA-06550: line 1, column 7: PL/SQL: Statement ignored
    Anyone have any idea what the problem may be? Your help would be much appreceated!
    Bojan

    Hi Frank,
    I think the problem is in any procedure that has a COMPLEX TYPE as OUT parameter. So even if you strip down the procedure to just do nothing I still get the error as described in my top post. Passing complex parameters as IN parameter work fine its only when I have procedure with complex out when it errors. I also tried function that returns object parameter and that works fine too so not sure why this doesnt?
    create or replace package body ws_package as
    procedure test_dept_table (pout out dept_list_table) is
    begin
    -- iterate through all depts
    for r_list in (select * from dept) loop
    i := i + 1;
    end loop;
    end test_dept_table;
    end ws_package;
    Not sure if I am meant to do anything extra before I generate Web Service using JDeveloper if my procedure has got PL\SQL types as OUT parameters but as far as I know JDeveloper should do all the type conversions for you??
    Thanks
    Bojan

  • Problem in Accessing the Siebel Web Service

    Hi,
    I have a seibel web service which needs to be called from a SAP Webdynpro application. The URL is something like this.
    http://xxx.yyy.com:80/eai_enu/start.swe?SWEExtSource=SecureWebService&SWEExtCmd=Execute
    I am using Adaptive Webservice model and without hardcoding this value i should be able to send the user name and password information to the webservice.
    How i can achieve that. I am getting the error that,
    <b>returned http code 500 (Internal Server Error) with unacceptable content type (text/html;charset=UTF-8).
    <html><head><title>Message:</title></head>
    <body>The server you are trying to access is either busy or experiencing difficulties. Please close the Web browser, open a new browser window, and try logging in again.[12:02:58]</b>
    Siebel team was asked us to send the user/password info through SOAP header.
    <b>Is there any way to set thatbusername/password info in NWDS (Basically set the SOAP Header) and if it is OK only if we can set it in the Webservices security in the Visual Administrator.</b>
    Appreciate your reply.
    Thanks and Regards,
    Sekar

    Sekar,
    I have the same problem.
    How did you change your web service as Anonymous?
    I have a user id and pwd, i tried by appending end of the service and tried with basic authentication by passing uid and pwd. No luck.
    Can you please help me how to change web service as anonymous?
    Regards,
    Sridhar

Maybe you are looking for

  • Magic Trackpad...Jerky Zoom in Safari 5.0.1

    I was hoping that the two finger zoom would work well in Safari 5. Unfortunately it zooms in a jerky step fashion.....Unlike Photoshop CS4 where it is silky smooth. So why can't Apple implement a smooth two finger zoom in two of it's otherwise really

  • Unable to Communicate with Printer message, but still prints

    I installed a new ENVY 4500 printer on my Windows XP system. and it there are two problems: 1.  when I try to print, it tkes some time, then a message window appears with "unable to communicate with printer", but it still prints.  I have uninstalled

  • Mountain lion issue with download

    I bought my macbook in late 2008 and i currently run the 10.6.8 and would like to upgrade to lion but it says i can't.  Why?

  • I'can't synchronize iCal and my w810i...

    Hi all ! I saw that a lot of person have a problem with iSync/w810i/osX.4.6... But for me (osx.4.8), I can use isync for contact and task. It's really great. But for calendars... After a synchronization, I don't see events in my phone. The calendar i

  • Red files won't import into CS5

    Hi all, I shot some footage yesterday on a Red Epic. The files are .rd3. Premiere Pro CS5 is suppossed to have native support for Red files, but they won't import - I get a "file import failure" message. The error says "unsupported format or damaged