Dynamics and Web Services forms?

So what we try to do, is get a dynamic of the form information in a database.  We have several fields wrapped in a subform that is set to repeat on the form itself.  It is related to an element of a web service that allows the form to grow according to the number of rows returned.  We had to do this because, according to the choice of departments, there might be a different number of lines returned each time.  It works very well.  The form expands to show the options, based on the selection.

What we're going to have problems with writing changes to the database.  We have a web service that is bound to the subform contains the fields and also related to the fields themselves, but we are only able to write information to the last node, that is to say if there were six options presented and you have made changes to the six, only the changes to the last one would be listed in the database.  Is there something special that needs to be done on the side of the shape?

Any help is very appreciated.

Yes... .you set up the web service to receive a parameter... then you create a multiline field (make it invisible so that the user cannot see it). Then use this command to fill in the field with the form data:

fieldname.rawValue = xfa.datasets.data.saveXML ("pretty");

Now bind this field to the entry of web service and call it.

Paul

Tags: Adobe LiveCycle

Similar Questions

  • Using a web services forms

    Dear all,

    I used the following tutorial to use a web service forms:
    http://www.Oracle.com/technology/OBE/obe_as_10g/deploy/callws_fromforms/forms_webservice.htm
    Unfortunately I JDev 10 and can not recover how to create the jar (the tutorial uses JDev 9).

    Can someone help me?

    Thank you and best regards,
    Sébastien

    I don't think that there is a difference between JDeveloper 9i and 10g to create a JAR file.

    File-> New-> General-> profiles-> JAR file deployment

    François

  • Forms 10g, OAS, and Web Services... help!

    Hello

    We are in the middle of a project that was originally supposed to be a (simple: D) upgrade of a Forms 6i for application Forms 10 g application.

    During the project we have met various problems with the old forms (shakes fist Headstart code...) and as a secondary effect had to move our OAS to 10.1.2.0 (10gr 2). Which is fine, but we recently researched by replacing the C++ code that uses the old application to connect to SAP with a new system of Web Services, using the SAP adapter and WSDL, BPEL files and everything (steep learning curve).

    By setting to the top, it seems it would be desirable for us to upgrade to 10.1.3.x (or "get a headache," said Oracle Support...) However, I read now (in an article in July last year) that the forms and reports are not supported in 10.1.3.x...

    So, we ask our DBAs to go and install the suite 10.1.3.x SOA? And if so, is that what I have to do something to support our! 0gR 2 forms? Or will they just work? Can we do a 'clean' of 10.1.3.x or we install update the 10.1.2.0 existing system...? Color that confused me.

    Help!

    Thanks in advance
    Dan

    Dan, who is a bit massive (mis) jump! (o).

    You get the power of google Forms 10.1.3
    http://Groundside.com/blog/GrantRonald?title=why_is_forms_not_available_in_10_1_3&more=1&c=1&TB=1&pb=1

    Where I explain

    and if you google on Oracle Forms and go to otn.oracle.com/products/forms - the home of forms - you can read our statement of direction.

    Its all there for people to see; (o)

    Good reading

  • OfficeJet Pro 8710: Officejet Pro 8710 and Web Services

    The Pro Officejet 8710 there web services?  I went through the control on the printer Panel, trying to find the configuration option and it's not there.  The printer has a built in web server, but it is said that the administrator has disabled the feature.  I am the administrator and I am sure that I didn't turn it off.  Any help that could be offered would be appreciated.

    Hello

    To clarify, you should drag your finger up and down the screen, the high wil menu displays with the icon Web Services.

    Please follow page 93 of the below user guide to set Web Services for your printer:

    http://h10032.www1.HP.com/CTG/manual/c05048181

  • OfficeJet 6700 DHCP causing problems with airprint and web services

    I find it kind of interesting that this printer does not properly with DHCP enabled by default and more easy to use configuration.  My new printer seems to require to manually set the ip and dns settings before the features of web services or airprint worked correctly.  It was strange because printing from a PC and iMac worked well, it was that only the web services feature (unable to connect to the server) and the airprint from IOS devices failed (printer shows up but just disappeared rather than printing impression actually).  Someone else has seen this and not do anything to solve this problem?

    The problem with this is effectively resolved through static DNS, generally. The reason it is and not with other functions, is that our print servers that connect you with are able to communicate more easily with some DNS configurations on the other.

    For this reason, HP recommends generally defining the DNS for your printer on the parameters of Google DNS: 8.8.8.8 & 8.8.4.4.

    Does that answer your question?

    Have a great day!

  • Problems with recursive path of the inventory (c# and web services)

    For starters, let me say that my goal was to write a piece of code that would take the ManagedObjectReference (MOR) of HostSystem when given the MOR in the folder root ESXi system.

    However I can't get this to work with recursion at all. I could just manually each way (no recursion), but because I need to work with the web services SDK much, I really want to get this working.

    I usually get exceptions like "traversal spec labeled" or "invalid type. Invalid type is caused by an error in the capitalization of the letters in the TraversalSpec.type property. But why it tells me I have a "labeled traversal spec' when I took care to specify the names in each TraversalSpec.

    Can anyone provide an example on how to set up a PropertyFilterSpec to browse from the folder root to HostSystem using recursive calls via SelectionSpec?

    Below is some of my code relating to the crossing of the inventory. It's a mess right now and not exactly set up for recursive as calls I kept trying different things to make it work.

    Help is greatly appreciated.

                   ObjectSpec objSpec = new ObjectSpec();
                PropertySpec pSpec = new PropertySpec();
                PropertyFilterSpec pFilterSpec = new PropertyFilterSpec();
    
                SelectionSpec sSpec = new SelectionSpec();
                sSpec.name = "travelFolder";
    
                SelectionSpec sSpec2 = new SelectionSpec();
                sSpec.name = "travelDCtoFolder";
    
                TraversalSpec travelDCtoFolder = new TraversalSpec();
                travelDCtoFolder.name = "travelDCtoFolder";
                travelDCtoFolder.skip = false;
                travelDCtoFolder.type = "Datacenter";
                travelDCtoFolder.path = "hostFolder";
                travelDCtoFolder.selectSet = new SelectionSpec[] { new SelectionSpec() };
                travelDCtoFolder.selectSet[0].name = "travelFolder";
    
                TraversalSpec travelCRtoHF = new TraversalSpec();
                travelDCtoFolder.name = "travelCRtoHF";
                travelDCtoFolder.skip = false;
                travelDCtoFolder.type = "ComputeResource";
                travelDCtoFolder.path = "host";
    
                TraversalSpec travelFolder = new TraversalSpec();
                travelFolder.name = "travelFolder";
                travelFolder.type = "Folder";
                travelFolder.path = "childEntity";
                travelFolder.skip = false;
                travelFolder.selectSet = new SelectionSpec[] { };
    
    
    
                objSpec.obj = hostMOR;
                objSpec.skip = false;
                objSpec.selectSet = new SelectionSpec[] { travelFolder, travelDCtoFolder, travelFolder, travelCRtoHF };
    
                pSpec.type = "ManagedEntity";
                pSpec.pathSet = new string[] { "name" };
    
                pFilterSpec.objectSet = new ObjectSpec[] { objSpec };
                pFilterSpec.propSet = new PropertySpec[] { pSpec };
    

    Here is an example in Java in VI it is must show the way:

            TraversalSpec findHosts = new TraversalSpec();
            findHosts.setType("ComputeResource");
            findHosts.setPath("host");
    
            SelectionSpec recurseFolders = new SelectionSpec();
            recurseFolders.setName("FolderParent");
    
            TraversalSpec findClusters = new TraversalSpec();
            findClusters.setType("Datacenter");
            findClusters.setPath("hostFolder");
            findClusters.setSelectSet(new SelectionSpec[] {recurseFolders} );
    
            TraversalSpec findFolders = new TraversalSpec();
            findFolders.setName("FolderParent");
            findFolders.setType("Folder");
            findFolders.setPath("childEntity");
            findFolders.setSkip(Boolean.FALSE);
            findFolders.setSelectSet(new SelectionSpec[] { recurseFolders, findClusters, findHosts });
    
            ObjectSpec searchFromRoot = new ObjectSpec();
            searchFromRoot.setObj(si.getRootFolder().getMOR());
            searchFromRoot.setSelectSet(new SelectionSpec[] { findFolders });
    
            PropertySpec reportHostName = new PropertySpec();
            reportHostName.setType("HostSystem");
            reportHostName.setPathSet(new String[] { "name" });
    
            PropertyFilterSpec pfSpec = new PropertyFilterSpec();
            pfSpec.setObjectSet(new ObjectSpec[] { searchFromRoot });
            pfSpec.setPropSet(new PropertySpec[] { reportHostName });
    
            PropertyCollector pc = si.getPropertyCollector();
            ObjectContent[] ocs = pc.retrieveProperties(new PropertyFilterSpec[] { pfSpec });
    
            if (ocs != null) {
                for (ObjectContent oc : ocs) {
                    ManagedObjectReference dc = oc.getObj();
                    DynamicProperty[] props = oc.getPropSet();
                    if (props != null && props.length == 1) {
                        String name = (String) props[0].getVal();
                        System.out.println("Found " + dc.getType() + " name is '" + name + "'");
                    }
                }
            }
    

    It's a bit old, so I don't know I can explain it all, but here goes.

    First of all, the ObjectSpec specifies the root folder as starting point, with the 'findFolders' TraversalSpec tell what to look for from there.

    Second place, findFolders, which specifies a found file, select the objects in its list of childEntity.

    If the selected child object of a folder is another folder, the SelectionSpec 'recurseFolders' will point to "findFolders" looking for the child.

    If the selected child object of a record is a data center, "findClusters" will choose its object 'hostFolder' and again use "recurseFolders" looking for this folder.

    If the selected child object of a record is a ComputeResource, he will choose the objects in his list of 'host' and look no further.

  • vSphere/vCenter client and web services

    Hello

    Don't vSphere client (or client to vCenter earlier) invoke web services of vSphere internally to perform operations on the ESX Server?

    I'm new to VMware developemnt.

    As I understand it, it's the client vSphere or vCenter is a management console. An actioan/operations such as create VMS or cloning images actually occur on the ESX servers or hosts. Web services are hosted on the ESX servers. When we perform an action via client vSphere/vCenter (e.g. create the VM), internally, it would be invoking appropriate API provided by the web service SDKto do you need.

    My understanding is correct?

    If you connect to vCenter or ESX host (i) themselves by using the Client vSphere, the majority of applications using vSphere API... I say majority because I do not know there are undocumented more that VMware uses behind the scenes, but in general, it is true. If you perform an operation in vCenter and it applies to a host, vCenter will communicate this request to the host.

    If you're new to QALY/SDK: you can spend the time to enter the section "Learning" of the developer forums, there is lots of useful information here: http://communities.vmware.com/community/developer/learn

    Here's a great doc Getting Started with vSphere SDK - Update for SDK 4.1 release that has a lot of information/explanations on how it all works, you should spend time passing on it and then ask questions in the appropriate follow-up, if you need more detailed explanation.

    =========================================================================

    William Lam

    VMware vExpert 2009

    Scripts for VMware ESX/ESXi and resources at: http://engineering.ucsb.edu/~duonglt/vmware/

    repository scripts vGhetto

    VMware Code Central - Scripts/code samples for developers and administrators

    150 VMware developer

    Twitter: @lamw

    If you find this information useful, please give points to "correct" or "useful".

  • BPEL and Web Services

    Hi all

    I am a newbie to BPEL and I have an ambiguous term in BPEL; How does web services interact with BPEL?...

    Help, please
    Thank you

    Click on it (the left screen)-in the centre, there will be a complete information on your composite.

    To test you must press the 'Test' (retirement, stop).
    You will see 2 tabs: request and response.

    On the query tab, you will see all your input fields composite - you can fill them and press "Trest Webservice" (top-right).
    If successful - a response tab will open and you will see a result.

    If something wrong - return to the dashboard and press the ID of Instance - there will be a details step by step of composite launched.

    Good luck.

  • plugin and web service

    Hi all

    I want to make a plugin that call web service hosted on my server is it possible and how can I do?

    I need examples or tutorial links

    Thanks in advance

    What do you need to use Bison? You just need to run the command 'wsdl2h' and 'soapcpp2 '.

    You can see documentation on the internet on how to use the gSoap.like the following

    http://www.cs.FSU.edu/~Engelen/SOAP.html

    Even if, then you have problems integrating gSoap in your workflow, you can send a personal message to me.

    Manan Joshi

    -Effective InDesign solutions-

    MetaDesign Solutions

    http://metadesignsolutions.com/services/InDesign-development.php

  • Repeater, Image and Web services

    Hello

    I have a FLEX 3 application controls web that displays images using the following POWER cable: tiles, Repeater and Image (Image inside Repeater, which lies in the control of the tile). This works fine if I create an ArrayCollection collection during initialization and binds the ArrayCollection collection with my coach. The problem comes when I try to use a Web service call to recover my data. The Web service returns correctly my data, I put in the ArrayCollection collection. The web application and then freezes and never displays my pictures. If instead of filling the ArrayCollection collection, I create dynamically Image controls and add them to the control of the tile, then it works fine. It's only when I try to use the Repeater that whole mess. Any ideas on what is happening here? Here are some of my code:

    "NedKost" wrote in message
    News:ga67dd$EHQ$1@forums. Macromedia.com...
    > Hello,
    >
    > I have a FLEX 3 web application that displays images using the
    > suite
    > FLEX controls: tile, Repeater and Image (Image inside Repeater, which is
    (> inside the control of tile). It works fine if I create an ArrayCollection collection
    > during initialization and bind the ArrayCollection collection with my coach. The
    > problem comes when I try to use a Web service call to recover my data.
    > The
    > WebService returns correctly my data, I put in the
    > Collection ArrayCollection.
    > Web application then freezes and never displays my pictures. If
    > more
    > filling the ArrayCollection collection I dynamically create controls Image
    > and add
    > them for control of the tile, then it works fine. It's only when I try to
    > use the
    > Repeater that whole mess. Any ideas on what is happening here?
    > Here
    > is a part of my code:

    Why not just use the Image as the itemRenderer to your TileList component and use
    ImagePath in the data area?

  • Server proxy and Web Services on HP Officejet Pro 8500 A910g more a

    My ISP does not proxy servers. Can I use Web Services on my HP Officejet Pro A910g of 8500 has more?

    Help, please!

    Thank you

    An update solved this problem.

  • Application and web Services

    I got 3 subjects with the same question, and looks that person really don't know the answer...


    wscListener.result = {function (evt,:Object)}

    trace (evt. Target.Results [0] Online);
    };


    It's component CFQuery results but I get [Object, object] in outpanel... anyone know how to retrieve query in text?


    Well, it's like nobody can help me? nevremind, I found the treatment... results [0]. TITLE

  • Web services does not work for Photosmart 7510

    I just bought a Photosmart 7510 printer and I CAN'T get e-print and web services to work.

    I already checked to make sure that the mapped IP addresses and I put a static IP address.

    There is no new update of the product.

    The utility application, your doctor, or whatever it is called found no errors.

    There is no proxy server so that option is out.

    I went through the troubleshooting step by step page, and nothing has worked.

    It will print all day long from my computer, but whenever I try to implement Web services, it says "unable to connect to Web Services. Confirm access to the internet and try again. »

    any further suggestions?

    Hello

    The servers are being updates not scheduled at this time. The best thing to do is to wait 1 to 2 hours at least and to 24 hours, then try again. If this is not enough, let me know and I'll see what I can do.

  • Enable web services

    I have a new 6510 Photosmart - I was not able to activate web services. I am able to print over wireless - when I try to activate the message next - and web services-

    Login server error - the printer could not connect to the server. Check your Internet connection or enter a proxy address.

    I checked the Internet - it's a link strong - I have a computer at home so I don't have a server proxy - ideas?

    Hello

    Please see the following link for this issue,

    http://h30434.www3.HP.com/T5/eprint-print-apps-Mobile/Server-connection-error-1-there-was-a-problem-connecting-to-the/m-p/1696247#M24064

  • APEX 4.2.3 consume the web service returning a PDF problem

    Using APEX 4.2.3 on a database of Oracle 11 g R2, Firefox 31.7, we ask a service web restful one before the process of page header, to download a PDF Code file used:

    declare

    CLOB l_clob;

    l_blob blob.

    l_sql_delimiter varchar2 (30);

    l_lang_context integer: = DBMS_LOB. DEFAULT_LANG_CTX;

    l_warning integer: = DBMS_LOB. WARN_INCONVERTIBLE_CHAR;

    l_dest_offset integer: = 1;

    l_source_offset integer: = 1;

    l_Json VARCHAR2 (4000);

    Start

    l_clob: = null;

    DBMS_LOB.CREATETEMPORARY (l_blob, true);

    -Generate here the content of your file in l_clob.

    hr_Pkg.Security_Termination_Form(:P4200_PERSON_HR_ID,l_Json);

    hr_Pkg.call_rest_webservice (l_Json, 'TestME.Pdf', l_Clob);

    Logger.log ('CLOB SIZE IN PAGE: ' | sys.) DBMS_LOB. GetLength (l_clob));

    sys. HTP.init;

    sys.owa_util.mime_header (' application/pdf', FALSE, 'UTF-8');

    sys. HTP.p ("Content-length: ' |") sys.DBMS_LOB.GetLength (l_clob));

    sys. HTP.p ('Content-Disposition: attachment; filename = "TestME.Pdf" ');

    sys.owa_util.http_header_close;

    () DBMS_LOB.converttoblob

    dest_lob = > l_blob,

    src_clob = > l_clob,

    amount = > DBMS_LOB. LOBMAXSIZE,

    dest_offset = > l_dest_offset,

    offset = > l_source_offset,

    blob_csid = > DBMS_LOB. DEFAULT_CSID,

    lang_context = > l_lang_context,

    WARNING = > l_warning

    );

    Logger.log ("SIZE of BLOB: ' |") sys. DBMS_LOB. GetLength (l_blob));

    sys.wpg_docload.download_file (l_blob);

    apex_application.stop_apex_engine;

    exception when others then

    sys. HTP. PRN (' error: ' |) SQLERRM);

    apex_application.stop_apex_engine;

    end;

    We run in the question, that the PDF file is empty with the exception of a few fill-able fields that must be completed in advance by the call to the web service.

    When you run the web service directly from the browser, the PDF that is generated is very well and seems to be complete. And the size of the file that is created as the clob from the web service call is exactly the same size it as the pdf file received directly from the web service.

    When we compare the size of the clob to the size of the blob, we see that the blob is slightly larger in size than the clob.

    Any suggestions? (Sample code for posting to the hosted site for Oracle will not work because you can not call the hosted instance web services and web service is hosted BEHIND our firewall).

    Thank you

    Tony Miller
    Software LuvMuffin
    Ruckersville, WILL

    Problem is resolved... As opposed to the use of the APEX apex_web_service.make_rest_request must use the utl_http.begin_request and then treats the query returned through utl_http. READ_RAW and who then saving it in a temporary BLOB.

    Maybe when we update to the APEX 5, I'll see if I can deal with it using standard APEX packages...

    Thank you

    Tony Miller
    Software LuvMuffin
    Salt Lake City, UT

Maybe you are looking for