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

Tags: Oracle Development

Similar Questions

  • 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

  • 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

  • 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.

  • 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.

  • 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.

  • 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!

  • 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".

  • 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

  • The call to the web service help

    Hello

    I use a web service to handle validation. I created the web service and it ran OK, but the report still does not found data. I wanted to see what was in the returned collection, I have therefore created a new region with the following SQL:

    SELECT CLOB001
    OF wwv_flow_collections c
    WHERE c.collection_name = 'P37_VALIDATECCSZ_RESULTS. '

    This has given in: "Marion 0 true true Wayne 14505 1.0 AddressResponse: Marion, NY 14505/Val = true/Rel = 1.0/INCP = true/Geo = 0 NY true."

    The default report is a failure because the response is not XML I think.

    I ran the web service in java and it returns:

    < soapenv:Envelope = "http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenv >
    < soapenv:Body >
    < ns:validateCCSZResponse xmlns:ns = "http://validation.util.oss.paetec.com" >
    < ns:return xmlns:ax28 = "http://sag.oss.paetec.com/xsd" xmlns:ax22 = "http://rmi.java/xsd" xmlns:ax23 = "http://io.java/xsd" xmlns:ax21 = "http://client.validation.util.oss.paetec.com/xsd" type = "com.paetec.oss.util.validation.client.AddressResponseArray" >
    < ax21:responses type = "com.paetec.oss.util.validation.client.AddressResponse" >
    < ax21:city > Marion < / ax21:city >
    < ax21:code > 0 < / ax21:code >
    < ax21:country / >
    Wayne < ax21:county > < / ax21:county >
    < ax21: incomplete > true < / ax21: incomplete >
    < ax21: incorporated > true < / ax21: incorporated >
    < ax21:locClli / >
    < ax21:postalCode > 14505 < / ax21:postalCode >
    < ax21:postalCodeExtension / >
    < ax21:reliability > 1.0 < / ax21:reliability >
    < ax21:shortDescription > AddressResponse: Marion, NY 14505/Val = true/Rel = 1.0/INCP = true/Geo = 0 < / ax21:shortDescription >
    < ax21: state > NY < / ax21: state >
    < ax21:streetName / >
    < ax21:streetNumber / >
    < ax21: unit xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance" xsi: Nil = "true" > < / ax21: unit >
    < ax21: validated > true < / ax21: validated >
    < / ax21:responses >
    < / ns:return >
    < / ns:validateCCSZResponse >
    < / soapenv:Body >
    < / soapenv:Envelope >

    So, anyone know why the call of APEX web service does not return the XML? I get the values from the XML, but I have no way to analyze to get what I need...
    Thank you
    -Johnnie

    Johnnie:

    I slightly changed the basics of Xpath and also changed namespace. Try the following.

    SELECT extractValue( value(T), '//city', 'xmlns="http://client.validation.util.oss.paetec.com/xsd"' ) city
    ,extractValue( value(T), '//county', 'xmlns="http://client.validation.util.oss.paetec.com/xsd"' ) county
    ,extractValue( value(T), '//incomplete', 'xmlns="http://client.validation.util.oss.paetec.com/xsd"' ) incomplete
    ,extractValue( value(T), '//postalCode', 'xmlns="http://client.validation.util.oss.paetec.com/xsd"' ) postalCode
    ,extractValue( value(T), '//reliability', 'xmlns="http://client.validation.util.oss.paetec.com/xsd"' ) reliability
    ,extractValue( value(T), '//state', 'xmlns="http://client.validation.util.oss.paetec.com/xsd"' ) state
    ,extractValue( value(T), '//streetName', 'xmlns="http://client.validation.util.oss.paetec.com/xsd"' ) streetName
    ,extractValue( value(T), '//streetNumber', 'xmlns="http://client.validation.util.oss.paetec.com/xsd"' ) streetNumber
    ,extractValue( value(T), '//validated', 'xmlns="http://client.validation.util.oss.paetec.com/xsd"' ) validated
    FROM TABLE(xmlsequence(extract(XMLTYPE.createxml('
    
    
    
    
    Marion
    0
    
    Wayne
    true
    true
    
    14505
    
    1.0
    AddressResponse: /Marion, NY 14505/Val = true/Rel = 1.0/Incp = true/Geo = 0
    NY
    
    
    
    true
    
    
    
    
    '),'//responses','xmlns="http://client.validation.util.oss.paetec.com/xsd"'))) T
    

    Kind regards

    Jason

  • 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?

  • Form of parameter in OAS and Web, output paper report

    Hello

    In the Report Builder 10g, I have this form of parameter. It begins before a paperreport is generated (with the accessories, LOV and etc..)
    If I put my rdf in the OracleAS I can call the pit of the browser report, but there is no parameter window. How can I change the settings after
    call report?

    Another question:
    How can I tell the OAS it must generate a pdf of my rdf?

    Thank you
    Paul

    PS: If you are referring to the documentation please give the pagenumber ore sth.

    Published by: pbecker on October 8, 2008 02:00
    do rdf on pdf...

    Hello

    If you wish to view the PDF in your browser, use the settings:

    DESTYPE = CACHE and DESFORMAT = PDF in the URL:

    Example:
    http://myserver.mycompany.com/reports/rwservlet?Server=myrepserver&report=MyReport&destype=cache&desformat=PDF&userid=Scott/Tiger@mydb

    If you use a different value for DESTYPE, (DESTYPE = FILE for example), the message:

    "Oracle reports job properly run.

    will be returned and the output stored in the file name specified by DESNAME.

    You can get the PDF file using the showjobs page:

    http://myserver.mycompany.com/reports/rwservlet/showjobs?Server=myrepserver

    Concerning

  • Forms 11 g and web.show_document

    I am trying to open a .pdf file on the client side of forms 11 g of the trigger WHEN KEY PRESSED on a button by using web.show_document.

    Web.show_document ("file://servername/d$ / download/AUTOPROC132800.pdf", "_SELF");


    When I try this, I get a new tab that opens, but it's a blank page.

    Is there some additional game upward I have to do in order to get web.show_document to extract the document?



    Version of forms:

    Forms [64 Bit] Version 11.1.2.2.0 (Production)

    Oracle Toolkit Version 11.1.2.2.0 (Production)

    PL/SQL Version 11.1.0.7.0 (Production)

    Oracle V11.1.2.2.0 - Production procedure generator

    PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)

    Query Oracle 11.1.2.2.0 - Production Designer

    Oracle virtual graphics system Version 11.1.2.2.0 (Production)

    The GUI tools Oracle Utilities Version 11.1.2.2.0 (Production)

    Oracle Multimedia Version 11.1.2.2.0 (Production)

    Oracle tools integration Version 11.1.2.2.0 (Production)

    Common tools Oracle zone Version 11.1.2.2.0

    Oracle CORE Production 11.1.0.7.0

    Thank you

    Katherine

    WEB. SHOW_DOCUMENT is built for the display of the URLs in a browser. To view a local file on the file system, I'd go with CLIENT_HOST of WEBUTIL, something like

    CLIENT_HOST ('cmd /c start "");

  • 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

  • read Web service and display it in a gridview

    Hi, I am using widgets with plugin .net. I have a wan to make a grid and fill it with the Web service data. A few examples? How can I do?

    Thank you, Oscar

    Here are some of the threads I found by doing a search on the forums for "web service":

    http://supportforums.BlackBerry.com/T5/Web-development/Web-service-parameter/m-p/421999

    http://supportforums.BlackBerry.com/T5/Web-development/using-Web-services-in-widgets/Ta-p/503194

    http://supportforums.BlackBerry.com/T5/Web-development/NET-Web-service-help-in-BlackBerry-widget/m-p...

    http://supportforums.BlackBerry.com/T5/Web-development/SOAP-Web-services-with-BlackBerry-widgets/m-p...

Maybe you are looking for

  • Pavilion: Pavilion x 360 problems of keyboard and screen

    I'm the unhappy owner of a x 360 Pavilion, prod. lol M9G20EA #UUW. Big questions: About half of the time the screen is upside down when I opened the PC. Sometimes closing and by reopening bypasses the screen. Sometimes a reboot is required.The hardwa

  • Connect a NPN sensor to a DIO

    Using a USB-6221 (or any STD DAQ of DIO) and want to connect a NPN sensor to activate a vi.  It comes to replace switches mechanical existing finger for ergonomic reasons.  The new sensor is an optical switch, without contact. Only vaguely familiar w

  • Cannot open the link in a peer-to-peer network

    I created a peer-to-peer network between two equipped PDA to Windows Mobile 5.0. It is shown that two of them were connected, and their IP addresses are assigned automatically. But when I used the function of TCP/IP Open, it returns an error 10060 "c

  • Win 7 drivers for dell optiplex 320 64 bit

    LOOKING FOR A UPDATE DRIVER DELL OPTIPLEX 320. WINDOWS 7 64-BIT DRIVERS.

  • EPM 11.1.2.4 compatibility

    Hi allNeed to know what version of EMP 11.1.2.4 is compatible with Oracle BI publisher (BI publisher) and not OBIEESuppose that I go ahead and install OBIEE 11 g also say 11.1.1.7 on an area that already has installed EMP, will that cause a conflict