How to moidfy ant file to compile page flow files only

Hello,
Our existing application is compiled with standard ANT task and running on weblogic server. Now I try to change the jsp part using page flow and weblogic workshop.
I think I still need to create an application and a project that contains the page flow files. How can I modify the the ANT file and compile the page flow files only, then these files can be packed with other files into a WAR file?
Thank you for the help in advance.
Zhong

Hi,
You can go through this weblog Handling Of Non-HTML Documents by Brian. It would be useful to you.
/people/mark.finnern/blog/2003/09/23/bsp-programming-handling-of-non-html-documents
Regards,
Ravikiran.C

Similar Messages

  • How to remove ANT Validation while Compiling SCA or BPEL in 11.1.1.4

    SOA/SCA/BPEL Gurus,
    As you know, sometimes we have to use the runtime WSDL URL directly in the BPEL process when invoking an external web service (say OSB). But then the service needs to be always available when deploying thru' ANT script as it validates and compiles. It has been a big problem whenever I deploy the BPEL if the invoking service (OSB) is down. On the other hand, the OSB deploys fine using ANT when the SCA is down.
    I am expecting the BPEL should throw an error only at the runtime but not at design or deployment time like OSB.
    Now my question is,
    Though we all know we can resolve this by importing the WSDL/XSD to the project, I would like to know if there is a way to Disable/Remove the Validation part in the ANT Script so that it can create the jar/sar file and deploy to the server.
    FYI -
    The error is thrown out from ant-sca-compile.xml and the target is <target name="scac" description="Compile and validate a composite">
    Please help !!!
    Thanks
    Bala
    Edited by: 805364 on Mar 11, 2012 9:01 PM

    Bala,
    On the other hand, the OSB deploys fine using ANT when the SCA is down. OSB always needs a local copy of WSDL/XSD. It never references any WSDL/XSD over network at design,deployment or runtime.
    I am expecting the BPEL should throw an error only at the runtime but not at design or deployment time like OSB. For building and validating the process components at deployment time, XSD/WSDL's must be available otherwise server may end up deploying incorrect/invalid configurations. So I don't think SOA is doing anything unexpected. In case you don't want to import artifacts into project then you have two other options -
    1. Use MDS for sharing artifacts
    2. Use UDDI (Universal Description Discovery and Integration). Oracle recommends Oracle Service Registry 11g (OSR). The advantage is that you can use OSR and SOA Suite in a Shared WebLogic Domain.
    Regards,
    Anuj

  • OS X Mavericks - How to backup system files only

    Okay ... ;
    is there a way for e.g. Time Machine to back up system files / resources only .
    ... I mean I have a fully working core system software, that I want to backup, but ...
    ... I have also downloaded lots of other files / third party software,
    which I'd like to exclude from the backup .
    Is Time Machine capable of doing this ...
    or is there some other software, that could to this ....
    Regards,
    zergei W ;

    System Preferences/Time Machine/Options - add what you don't want to backup there and it will be excluded from the backup.

  • How can I open the EP login page in the same pop-up window?

    is it possible for me to using / only one window(Browser) pop-up to EP Page(Login or iView...).
    In the firs general html page I create a EP login page link action[eg. "window.open('url', 'target_name')"],
    but always launching new pop-up window(Browser).
    How can I open the EP login page in the only one window(pop-up)?
    Could anybody help me by giving suggestion and codding?
    Thanks,
    jin.

    Hi,
    if you want to redirect the root of portal system (http://portal/) to the login page, edit the
    file and change the body tag as follow:
    \usr\sap\J2E\JC00\j2ee\cluster\server0\apps\sap.com\com.sap.engine.docs.examples\servlet_jsp\_default\root\index.html
    <body onload="location.replace('irj/portal' + document.location.search)"></body>

  • How to submit a form with checkboxes in a page flow?

    I'm having some trouble with a form that contains several checkboxes, and
    how to submit this form within a page flow...
    I have a JSP page containing a form with N checkboxes. The value and
    checked/unchecked status of each checkbox is generated from parsing an XML
    document. Here is the (simplified) code:
    <%@ taglib uri="http://java.sun.com/jstl/xml" prefix="x" %>
    <netui:form action="doUpdate">
    <x:forEach select="...">
    <input type="checkbox" name="id"
    <x:if ...>checked</x:if> value="<x:out ... />">
    </x:forEach>
    <netui:anchor formSubmit="true" action="doUpdate">Submit</netui:anchor>
    <netui:anchor action="doCancel">Cancel</netui:anchor>
    </netui:form>
    When this form is submitted, the checkbox values are lost -- the following
    code (in the action) produces an empty array:
    String[] prefs = this.getRequest().getParameterValues("id");
    I looked at the <netui:checkbox> tag, but it does not appear to give me a
    way to set the state and value (unless I've missed something).
    Can I submit a form without using a form bean? If I do use a form bean, can
    I set the state and value from my JSP?
    Any suggestions on how to do this (or insights into what I'm doing wrong)
    are welcome...
    -- Craig

    I am new to this, but I think this may solve your problem:
    I am not sure if this is what you are looking for, but you can create a LinkedHashMap
    with the req key/value pairs in the page-calling action in the pageflow and then
    pass that via a getRequest().setAttribute("myCheckboxes",myCheckboxHashMap);
    You can then access it in code using the optionsDataSource portion of the netui:checkBoxGroup
    - ie
    <netui:checkBoxGroup dataSource="{actionForm.thisCheckbox}" optionsDataSource="{request.myCheckboxes}">
    Hope this helps!
    m
    "Craig Coffin" <craig+1268fbec@nfld-dot-com> wrote:
    I'm having some trouble with a form that contains several checkboxes,
    and
    how to submit this form within a page flow...
    I have a JSP page containing a form with N checkboxes. The value and
    checked/unchecked status of each checkbox is generated from parsing an
    XML
    document. Here is the (simplified) code:
    <%@ taglib uri="http://java.sun.com/jstl/xml" prefix="x" %>
    <netui:form action="doUpdate">
    <x:forEach select="...">
    <input type="checkbox" name="id"
    <x:if ...>checked</x:if> value="<x:out ... />">
    </x:forEach>
    <netui:anchor formSubmit="true" action="doUpdate">Submit</netui:anchor>
    <netui:anchor action="doCancel">Cancel</netui:anchor>
    </netui:form>
    When this form is submitted, the checkbox values are lost -- the following
    code (in the action) produces an empty array:
    String[] prefs = this.getRequest().getParameterValues("id");
    I looked at the <netui:checkbox> tag, but it does not appear to give
    me a
    way to set the state and value (unless I've missed something).
    Can I submit a form without using a form bean? If I do use a form bean,
    can
    I set the state and value from my JSP?
    Any suggestions on how to do this (or insights into what I'm doing wrong)
    are welcome...
    -- Craig

  • How can I make an ant file that launches an AS project app in a debug flash player that traces to the flex console?

    How can I make an ant file that launches an AS project app in a debug flash player that traces to the flex console?
    Basically I like the control over the compiling process that I get by using Ant - but I really want traces to come up immediately without having to switch contexts.
    I have an ant file that successfully launches a swf in the flashplayer - but I don't know how to make the flex console start displaying the trace output. I assume that I will have to point it to the appropriate trace output file - but I am not sure how to have ant even address the console.  Is this possible?
    Here is the the target node from my ANT file:
        <target name="launch">
            <exec executable="${FLASHPLAYER_EXE}" errorproperty="trace.output">
                <arg line="'${DEPLOY_DIR}\test.swf'" />
            </exec>
        </target>
    Thanks for any thoughts, or alternatives!

    For the record, I ended up using Logwatcher - it worked perfectly.
    http://graysky.sourceforge.net/

  • How do I maintain spreads after moving pages from one file to another?

    I'm consolidating several book chapters into one Indesign file, by way of clicking on the thumbnails on the Pages panel and selecting 'Move Pages...' from the contextual menu.
    The problem I'm having is that I can't maintain the page flow between chapters on the destination file, resulting in a broken spread between chapters when exporting to PDF. Here's a screenshot to better illustrate the problem, here seen in between pages 18-19:
    I've tried turning on and off the following options on both the source and destination documents but nothing changes:
    - Allow Selected Spread To Shuffle
    - Allow Document Pages To Shuffle
    I've also removed all the sections from the destination document (as you can see on the screenshot, page 19 does not have the little black arrow which denotes a new section), with no luck either.
    I also tried dragging the thumbnails manually but to no avail; I just can't figure out how to keep the page spreads between chapters together.
    Can anyone help me with this?
    Thanks in advance 
    Mariano

    Thank you so much for your reply Peter
    I have no idea what those brackets meant, I've followed your recommendation and my problem is fixed now.
    Kind regards
    Mariano

  • How to display PDF file in OAF page

    Hi All,
    I have an requirement to display a PDF file in OAF page. The PDF file will be stored in custom location in unixbox and when the user clicks on the hyperlink from OAF page, the PDF file should be promted to open or save the file in the local system.
    The pdf file will be stored in $XBOL_TOP and I am not sure on how to link the file directory path from OAF page.
    Please share some information on how to achieve this logic.
    Regards,
    Ram

    Hi,
    Did you find a way to do this.
    Please advise.
    Thanks
    Krishna
    Edited by: user452458 on May 11, 2010 6:53 PM

  • HT4796 I have made a file using the Pages app.I mailed it to a friend.When she tried opening the same file on her pc at home , It did not open.Please help me as to how to open the file in the Microsoft word format on her pc.

    I have made a file using the Pages app.I mailed it to a friend.When she tried opening the same file on her pc at home , It did not open.Please help me as to how to open the file in the Microsoft word format on her pc.

    Send it as a PDF.

  • How do I upload files onto Pages on my iPad?

    How do I upload files onto pages on my iPad?

    You can email them to yourself and then open them in Pages by using the "open in" option in the mail app when you are viewing the attachment, you can use DropBox, or you can use iOS file sharing.
    Connect the iPad to your computer and launch iTunes. Click on your iPad's name on the left side of iTunes under  "Devices" in order to select it. Click on the Apps Tab in the iTunes window on the right. Find the Pages App in the list of File Sharing apps under the main list of apps and click on it. Then drag the files from your desktop that you want to move into the document sharing window on the right - next to the the Pages app. You can also use the Add button and navigate to the documents that way to select them. Sync your iPad if you choose to do so and then eject it when the sync completes.
    Launch the Pages app and then click on the + in the upper left corner to add a document. Select - Copy from iTunes and a window will pop up with a list of all of the documents that you dragged into the window on the computer when the iPad was connected to iTunes. Select the document from there.
    This article explains if for you as well.
    http://support.apple.com/kb/HT4088

  • How to upload a file into a db blob column from adf page

    How to upload a file into a db blob column from adf page
    Which option to use ?

    The forum search would be my first try...
    Then google...
    This has been asked at least once a week and got correct answers...
    Timo

  • How to add js files to sharepoint page using sharepoint designer

    how to add js files to sharepoint page using sharepoint designer

    Upload the files to your site collection into the site assets library or into the style library, depending on perference.
    Then you can include the JS files either in the master page, page tempalte or using web parts.

  • Using pages how to insert pdf files on ipad?

    using pages how to insert pdf files on ipad?    
    Anybody have any idea, have pdf files in ibook do not see where to insert pdf's.
    Also trying to get word files onto ipad using drop box, do these word files need to be saved in another format?
    Also for pages.
    thnx

    No - the Word files do not need to be saved in any other format if you have Pages on your iPad. There are other apps that provide better compatibility than Pages but it will work for you. You have to have DropBox on your PC and the free DropBox app on the iPad to use DropBox to transfer files.
    To send the file using DropBox -  make sure DropBox is running on your computer. Then place the file in one of the folders that you have set in your DropBox folder on your PC. Launch DropBox on your iPad and find the folder that you placed the file into and tap on that folder. Find the document and tap on it. It will open in the window on the right. Tap the arrow icon in the upper right corner and select Open in Pages.
    If you have pdf files in iBooks that you want to put into Pages you have to email them to yourself and use the Open In feature when you open the email. You cannot send a file from iBooks other than to email it - at least I am not aware of any other way.

  • How to display flash file in adf pages

    how to display flash file in adf pages need help

    Thanks all,
    It is resolved.
    the code i am using to display a flash is below.
    <f:verbatim>
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
    codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version
    =10,0,0,0" width="300" height="300" id="11gR1_aniH_grey" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="allowFullScreen" value="false" />
    <param name="wmode" value="transparent" />
    <param name="movie" value="mx2004demo.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#4d5c64" />     
    <embed src="../Images/mx2004demo.swf" quality="high" width="300" height="300" name="mx2004demo.swf" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false"
    type="application/x-shockwave-flash" wmode="transparent"
    pluginspage="http://www.adobe.com/go/getflashplayer" />
         </object>
    </f:verbatim>

  • Ant ; how to move nonjava files to the output folder whn i comile java file

    Hi when i compile my java file using javac ant task, i want to move non java file to the same output folder where the dot class file are stored. example if a package has 2 java file and a .properties file, when i javac task compile that package .properties file should move where the .class files are moving. can anyone help me please

    An ant target can carry out multiple tasks. You need to put the <javac> and <copy> tasks in the same target in your ant file.

Maybe you are looking for

  • How to remove prefix from AD group names in ldap auth. provider?

    Hi all, I'm using weblogic 10.3.5 and LDAP authentication provider for accessing microsoft AD. Group names in AD are created and look like this: PREFIX_basic_user, PREFIX_advanced_user... but enterprise roles in ADF application are created like this:

  • Changing logical database DDF select order, and restricting the selection

    HI all, I am using logical database DDF for a report.  I would like to do two things: 1) Change the sort order of records so that when my GET statements are processing, they are bringing the data back in sorted by a field of my choice (such as KNA1-R

  • Java socket streams messing up

    iv wrote a games server and it uses java socket streams to send the messages back and forth between the game clients and the game server it self this all works great but when running and over about 5min its send over 1000 packets BUT it will crash iv

  • STD Process code for PR

    Hi...Is there an SAp std process code that uses the FM - IDOC_INPUT_PREQCR PR creation regards, Arvind R

  • Source tables for Query views and book marks

    Hi Gurus, We are planning to recreate Query views based on a perticular query from ODS to cube. 1. Is there a table that can provide me all the query views created on the portal, Created by(User Name), description based on the query name. Basically i