Using ANT to create config.xml template

Does anyone have an example on how to use ant to create a config.xml template?

try this:
<target
     description="Creates the config.xml file from the config-template.xml file"
     name="parseConfigXML">
     <copy
          file="config-template.xml"
          tofile="config.xml"
          overwrite="true"
     />
     <replace
     file="config.xml"
     value="defaultvalue"
     replacefilterfile="local.configtemplate.properties">
     </replace>
     <antcall target="parseSetDomainEnv" />
</target>

Similar Messages

  • Using CDATA when creating an xml message

    I'm currently trying to create an XML message in one of my tags I'm trying to put the following string "&#13;&#10;". However when I create the xml document I receive the following string &#13;&#10;. I think the conversion is happening when I call
    setStringNodeData
    Here is my code
    strCaseNotes = "&#13;&#10;" + "This is a test message";
    CreatedElement = setStringNodeData(doc,"strCaseNotes",CaseInfo, strCaseNotes);
    doc = getXMLDoc();
    doc.write (baos);
    String strXMLDoc = baos.toString ();          
    log.log("strXMLDoc: " + strXMLDoc, "SSDRulesEngine.txt");
    This is the ouput &#13;&#10;
    I assume the conversion is happening in setStringNodeData. Anyway to stop the conversion of & to amp. Any help is greatly appreciated, thanks

    Don't get mixed up between the string you see in your program and what you see in your XML file. If you want a CR-LF pair in your XML output you need to do this:strCaseNotes = "\r\n" + "This is a test message";In other words, within your program just use strings as you would normally. Don't try to second-guess the XML parser. You may find the XML software outputs that string in a text node as "&#13;&#10;This is a test message" or you may see something slightly different. Again, don't try to affect the output. If your XML software outputs it then any XML parser can read it. But if you mess with it after it's output, then you will probably break the XML in such a way that another XML parser will reject it.

  • Can I use morethen one faces-config.xml

    HI,
    now I am learning jsf, I have a doubt that ,can I use more than on faces-config.xml in one application ? and can we cahange name of faces-config.xml to faces-config-first.xml, and faces-config-second.xml? if it is possible , what should i do?
    Thank&Regards
    satya..

    Why would you want multiple config files? Is it for organization only...
    How would your app. know the when to use a different config file?
    Thanks,
    --Todd                                                                                                                                                                                                                                                                                                                       

  • When To Use redirect/ In faces-config.xml

    In what situations should I use <redirect/> in faces-config. I understand what that using it causes it to generate a HTTP redirect instead of redirection through the view handler.
    I have ran into situations where if I don't use redirect, evein in a request scoped bean data isn't completely cleared out of a form. IE I have a list of users with a list of their addresses. If I look at an address on user 1 I see the right details, if I then move to user2 and look at one of his addresses it reflects the information from user1. As soon as I add <redirect/> the problem disappears.

    You normally use it to fire a brand new request.
    If I look at an address on user 1 I see the right details, if I then move to user2 and look at one of his addresses it reflects the information from user1. As soon as I add <redirect/> the problem disappears.This rather sounds like faulty code logic. Debug it.

  • Error while trying to use Ant and creating Jdbc Datasource

    I was following the documentation to auto-create my datasource in my weblogic server. I get an error while it is trying to link the datasource to the server. Does anybody have any ideas,it is almost like the query to get the server isn't working.
    Here is my ant task:
    <target name="setupJdbcDatasource">
         <wlconfig url="t3://localhost:7001" username="weblogic" password="weblogic">
         <query domain="MyDomain" type="Server" name="AdminServer" property="adminserver"/>
         <create type="JDBCConnectionPool" name="TestDatasource" property="DatasourceTest">
              <set attribute="CapacityIncrement" value="1"/>
              <set attribute="DriverName" value="weblogic.jdbcx.oracle.OracleDataSource"/>
              <set attribute="InitialCapacity" value="1"/>
              <set attribute="MaxCapacity" value="10"/>
              <set attribute="Password" value="cmuser"/>
              <set attribute="Properties" value="user=cmuser SID=ORCH serverName=10.13.5.144 portNumber=1521"/>
              <set attribute="RefreshMinutes" value="0"/>
              <set attribute="ShrinkPeriodMinutes" value="15"/>
              <set attribute="ShrinkingEnabled" value="true"/>
              <set attribute="TestConnectionsOnRelease" value="false"/>
              <set attribute="TestConnectionsOnReserve" value="false"/>
              <set attribute="URL" value="jdbc:bea:oracle://10.13.5.144:1521"/>
              <set attribute="Targets" value="${adminserver}"/>
         </create>
         </wlconfig>
    </target>
    My Domain is MyDomain, and server is AdminServer. The error I get is:
    [wlconfig] weblogic.management.DistributedManagementException : Distributed Management [1 exceptions]
    BUILD FAILED
    X:\ibutt_PCView\src\CM\build.xml:285: Error invoking MBean
    command: javax.management.MBeanException
    And in my server log:
    jdbcDataSourceBean=[MBeanServerInvocationHandler]com.bea:Name=CP-ConfigManagemen
    tTest,Type=weblogic.j2ee.descriptor.wl.JDBCDataSourceBean,Parent=[MyDomain]/JDBC
    SystemResources[CP-ConfigManagementTest],Path=JDBCResource
    <May 21, 2006 3:50:57 PM EDT> <Warning> <JDBC> <BEA-001129> <Received exception
    while creating connection for pool "ConfigManagementTest": [BEA][Oracle JDBC Dri
    ver]Missing connection information: no serverName specified.>
    <May 21, 2006 3:50:58 PM EDT> <Error> <Deployer> <BEA-149265> <Failure occured i
    n the execution of deployment request with ID '1148241051441' for task 'weblogic
    .deploy.configChangeTask.2'. Error is: 'weblogic.application.ModuleException: '
    weblogic.application.ModuleException:

    Hi. This seems like an XML parsing problem.
    Could you please try changing the driver
    properties from:
    <set attribute="Properties" value="user=cmuser SID=ORCH serverName=10.13.5.144 portNumber=1521"/>
    to:
    <set attribute="Properties" value="user=cmuser SID=ORCH"/>
    The server and port are already in the URL
    thanks,
    Joe

  • How to use java to create an XML document from an SQL database?

    Hi,
    I'm a complete novice at XML and have only recently started programming in Java.
    I'm currently trying to develop a package in Java 1.1.8 which requires a set of very specifically formatted XML documents. These documents would need to be updated regularly by people with no knowledge of Java and I would like to make it as simple as possible.
    Since the data will already be in an SQL database, I thought it might be possible to generate the XML documents from the data using a small Java application, but I'm not too sure how to go about this or if this is even possible! Any help or pointers in the right direction would be very much appreciated.
    Louise

    Do you have the option of upgrading to a newer version of the JDK?
    JAXB does what you are wanting very easily. Also there are tools if you don't want to write your own. JAXB is available as early release on Sun's site as is the newest JDK. Otherwise, you have to design a factory and interface that will do this for you (which is what JAXB basically is in a very simplified view).

  • Problem using ant to create a jar...

    Hi,
    I am trying to create a JAR, and amongst other things include in that a directory called docs. I would like both the directory and its contents included, not just the contents.
    I can get this to work, but when using a property it doesn't!
    Within my jar task
                   <fileset dir=".">
                        <include name="doc/**"/>
                   </fileset>will work just fine. However,
                   <fileset dir=".">
                        <include name="${doc}/**"/>
                   </fileset>will not do anything, with doc defined as:
    <property name="doc" location="doc" />Does anyone have any ideas? Many thanks.

    Yes, that's pretty standard code (except you don't need the .newInstance() just loading the class does it).
    I haven't experimented much with Class-Path in jars, but I still think a ClassLoader problem is the most likely cause. Try something like this:
    try {
         Class driverClass = Thread.currentThread().getContextClassLoader().loadClass("com.mysql.jdbc.Driver");
         Driver driver = (Driver)driverClass.newInstance();
         java.util.Properties conProps = new java.util.Properties();
          conProps.setProperty("user", "root");
          conProps.setProperty("password", "");
         dbConnection = driver.connect("jdbc:mysql://127.0.0.1/bdd/", conProps);
    catch(ClassNotFoundException) {
    ....(Of course I might be way off track, and we might have missed something simpler).

  • How to use requestScope in faces-config.xml file?

    a managed-bean need get value from request as its property
    so i configure the manged-bean as below:(use requestScope object)
    <managed-bean>
    <description>this is for item test bean.</description>
    <managed-bean-name> item </managed-bean-name>
    <managed-bean-class> test.Item </managed-bean-class>
    <managed-bean-scope> request </managed-bean-scope>
    <managed-property>
    <property-name>id</property-name>
    <value-ref>requestScope.id</value-ref>
    </managed-property>
    </managed-bean>
    but it didnot work.
    after i restart tomcat with above configure file, it report
    HTTP Status 404 error.
    and seemed that the context donot start...
    if i change the line
    <value-ref>requestScope.id</value-ref>
    to:
    <value>7</value>
    then everything will be OK...but this isnot fit my require.
    any body can help me?
    I use JSF 1.0 beta.

    Rather than starting a new thread, I thought I'd just add on to this one, since it already lays the grounds for my question. I'm using the
    I noticed that my setId() method is being called once during the ApplyRequestValuesPhase, and then again in the UpdateModelValuesPhase. The first time, it sets the ID to null, despite the fact that I'm posting an id to the page. When it comes around the second time, it sets the id properly, and the data is loaded from the database and everything works great. If I'm not posting anything to the page, it is only hit once and the value is null.
    Normally I wouldn't fuss over such small things like this, but there's a bit of a probelm. I have a few buttons which are rendered based on this id. If the id is zero (i.e. null or empty string is passed into the setId() method), I want the add button to appear, else I want the update/delete/cancel buttons to appear. If any of these buttons are false after the ApplyRequestValuesPhase, the button's action will not be executed. In other words, when I'm editing an entry and I press the update button the life cycle goes a little like this...
    Object constructed
    ApplyRequestValuesPhase calls setId(null),add button to be rendered, update/delete/cancel to not be rendered
    // the call to save() is not queued up! (save() is the method associated with the action of my update button)
    UpdateModelValuesPhase calls setId("34"), data loaded from database, add button is not to be rendered, update/delete/cancel are to be rendered
    Since save() is never called, it renders the data loaded from the database, and the update/delete/cancel buttons are shown. So, from the user's perspective... nothing happened other than a page refresh. A.k.a. the update button is broken!
    I can, of course, choose to not update the boolean flags which determine if the buttons are rendered or not when setId() is called with a null. Since the default is to render everything (which was a decision specifically to avoid the buttons not being rendered in the early stages of the JSF life cycle, and the action not being executed). That works when I post an id to the page because it's called a second time and the correct buttons are rendered. The problem is when no parameters are given... it isn't called a second time, so it renders all buttons when I only want it to render the add button.
    So how can I get the values to post during the ApplyRequestValuesPhase? I thought that would be how it would work, but apparently not. Anyone know why it explicitly sets the id to null the first time aroud?
    Here's all you should need...
        <managed-bean>
            <managed-bean-name>dropdownEntry</managed-bean-name>
            <managed-bean-class>org.dc949.bugTrack.DropdownEntry</managed-bean-class>
            <managed-bean-scope>request</managed-bean-scope>
            <managed-property>
                <property-name>id</property-name>
                <value>#{param.id}</value>
            </managed-property>
        </managed-bean>
        public void setId(String id) {
            try {
                this.id = Long.parseLong(id);
                load();  // loads data from DB
            } catch(Exception e) {
                if(id != null && !id.equals(""))
                    log.warn("Unable to convert id from String to long ("+id+")", e);
            if(id != null) {  // this was my solution while I was frusterated that my save method wasn't being called
                if(this.getIdAsLong() == 0) {
                    this.showAdd = true;
                    this.showUpdate = false;
                    this.showDelete = false;
                } else {
                    this.showAdd = false;
                    this.showUpdate = true;
                    this.showDelete = true;
                        <t:div>
                            <h:commandButton id="add" value="Add dropdown entry"
                                             rendered="#{dropdownEntry.showAddButton}"
                                             action="#{dropdownEntry.save}" />
                            <h:commandButton id="update" value="Update dropdown entry"
                                             rendered="#{dropdownEntry.showUpdateButton}"
                                             action="#{dropdownEntry.save}" />
                            <h:commandButton id="delete" value="Delete dropdown entry"
                                             rendered="#{dropdownEntry.showDeleteButton}"
                                             action="#{dropdownEntry.deleteDropdownEntry}" />
                            <h:commandButton id="cancel" value="Cancel"
                                             rendered="#{dropdownEntry.showUpdateButton}"
                                             action="#{dropdownEntry.reset}" immediate="true" />
                        </t:div>I could, and probably will get rid of the showDeleteButton flag and isShowDeleteButton() method and make it like the cancel button since these update/delete/cancel will always be shown/hidden together.
    Edit: Now I feel like a fool. A little clean and build, and it's working perfectly. If any one of the above people read this, I thank you for your help from years past. <img class="emoticon" src="images/emoticons/happy.gif" border="0" alt="" />
    Edited by: AdamNichols on Apr 18, 2008 9:57 PM

  • Need build.xml to create Ear file using Ant in jdeveloper 11g??

    Hi all,
    I think Jdeveloper use ANT to create Ear file and how to get build.xml from Jdeveloper.
    1) I have created ADF Fusion web Application having separte Model and View Controller.
    2) Now when I select View Controller project and then i create New ant-> Build.xml i get the required build.xml which can be used to create war file for my View Controller project.
    3) Similarly when I select Model project and then i create New ant-> Build.xml i get the required build.xml which can be used to create Jarfile for my Model project.
    4) If I select my application and then i click deploy... I'm able to create my ear file having both war file for View Controller and Jar File for Model.
    5) But I dont know how to get built.xml file which will create ear file having both View Controller and Model in it.
    Thanks a lot....

    However note the generated Ant script includes unnecessary targets. See the following blog post: http://one-size-doesnt-fit-all.blogspot.com/2010/11/using-ojdeploy-and-ant-for-creating-adf.html
    CM.

  • Where is the template for config.xml

    when i modify settings using weblogic console, is config.xml changed
    according to a template?
    is the template available?

    Hi,
    Template files can be found under $ORACLE_HOME/appsutil/template (database) and $COMMON_TOP/clone/context/apps (application) directories.
    Note: 603104.1 - Troubleshooting RapidClone issues with Oracle Applications R12
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=603104.1
    Regards,
    Hussein

  • Can Dynamic xml templates be used in interactive form callable objects?

    Hi,
    We are trying to implement Offline adobe forms using guided procedures (Impersonalized forms).
    We have no problem while creating the callable object using the normal xdp template. But whenever we try to use Acrobat 7/8 dynamic xml template, the following error occurs and the template is not picked.
    "Could not retrieve template fields: Wrong document format or adapter mismatch from adapter"
    Cant we use dynamic xml templates for adobe forms in GP? If we can, how to resolve this? Please let me know.
    Version:
    Netweaver SAP 2004s Sp15
    Adove Live Cycle desginer 7.0

    Closed

  • Use JAXP for creating XML document

    Hi,
    I have used JAXP to create a XML docuemnt. But when I use Jaxp to parse it, it returns parsing error ''null''.
    I open the XML document in XMLspy and save again, then it can be parsed.
    Any suggestion for that? Thanks a lot.

    Are there any differences between the version created with jaxp and the one with xmlspy? are you using the validating parser? if you aren't you might be having trouble with white space. just a guess.

  • SAX: How to create new XML file using SAX parser

    Hi,
    Please anybody help me to create a XML file using the Packages in the 5.0 pack of java. I have successfully created it reading the tag names and values from database using DOM but can i do this using SAX.
    I am successful to read XML using SAX, now i want to create new XML file for some tags and its values using SAX.
    How can i do this ?
    Sachin Kulkarni

    SAX is a parser, not a generator.Well,
    you can use it to create an XML file too. And it will take care of proper encoding, thus being much superior to a normal textwriter:
    See the following code snippet (out is a OutputStream):
    PrintWriter pw = new PrintWriter(out);
          StreamResult streamResult = new StreamResult(pw);
          SAXTransformerFactory tf = (SAXTransformerFactory) TransformerFactory.newInstance();
          //      SAX2.0 ContentHandler.
          TransformerHandler hd = tf.newTransformerHandler();
          Transformer serializer = hd.getTransformer();
          serializer.setOutputProperty(OutputKeys.ENCODING, "UTF-8");//
          serializer.setOutputProperty(OutputKeys.DOCTYPE_SYSTEM,"pdfBookmarks.xsd");
          serializer.setOutputProperty(OutputKeys.DOCTYPE_SYSTEM,"http://schema.inplus.de/pdf/1.0");
          serializer.setOutputProperty(OutputKeys.METHOD,"xml");
          serializer.setOutputProperty(OutputKeys.INDENT, "yes");
          hd.setResult(streamResult);
          hd.startDocument();
          //Get a processing instruction
          hd.processingInstruction("xml-stylesheet","type=\"text/xsl\" href=\"mystyle.xsl\"");
          AttributesImpl atts = new AttributesImpl();
          atts.addAttribute("", "", "someattribute", "CDATA", "test");
          atts.addAttribute("", "", "moreattributes", "CDATA", "test2");
           hd.startElement("", "", "MyTag", atts);
    String curTitle = "Something inside a tag";
              hd.characters(curTitle.toCharArray(), 0, curTitle.length());
        hd.endElement("", "", "MyTag");
          hd.endDocument();
    You are responsible for proper nesting. SAX takes care of encoding.
    Hth
    ;-) stw

  • Background color change for  XML Template

    Hi All,
    We have created a xml template for creation of news using xml form builder. When we are creating a news by using this template the background color of the news always shows SAP default color (light blue) for both Renderlist and Show forms. Our requirement is to change the background color.
    Any help can be appreciated  and points will be rewarded immediately.
    Thanks,
    Satya

    Hi Satyadev,
    You have 3 options:
    Within the forms builder you can get a white background by setting the form to either "border" or "no border".  This is done by clicking anywhere on the form (where there is no other element) and modifying the "style" property
    You can modify the portal theme so that the background colour is your choice.  However this will affect all forms in the portal, not just this one.
    Or you can manually modify the form XSL stylesheet.  This involves typing the html code to apply your chosen colour.  However, this modification is lost if you re-generate the XML forms project, so this should be a last resort.
    Hope this helps,
    Chris

  • Config.xml question

    <? Xml version = "1.0" encoding = "UTF-8"?>
    <! - Config.xml reference: https://build.phonegap.com/docs/config-xml ->
    <Widget xmlns = "http://www.w3.org/ns/widgets"
            xmlns: gap = "http://phonegap.com/ns/1.0"
            id = "com.mydomain.www"
            version = "1.0.0">
        <name> Hello World </ name>
        <description>
            description
        </ Description>
        <author href="http://phonegap.com" email="[email protected]">
            PhoneGap Team
        </ Author>
        <!
            Enable individual API permissions by defining each here.
            The 'device' permission is required for the 'deviceready' event.
        ->
        <feature name="http://api.phonegap.com/1.0/device" />
        <!
            If you do not want any permissions to be added to your app, add the
            following tag to your config.xml; you will still have the INTERNET
            permission on your app, which PhoneGap requires.
        ->
        <preference name="permissions" value="none"/>
        <! - Customize your app and platform with the preference element. ->
        <preference name="phonegap-version" value="2.5.0" /> <! - all: current version of PhoneGap ->
        <preference name="orientation" value="default" /> <! - all: default means both landscape and portrait are enabled ->
        <preference name="target-device" value="universal" /> <! - all: possible values handset, tablet, or universal ->
        <preference name="fullscreen" value="true" /> <! - all: hides the status bar at the top of the screen ->
        <preference name="webviewbounce" value="true" /> <! - ios: control whether the screen 'bounces' when scrolled beyond the top ->
        <preference name="prerendered-icon" value="true" /> <! - ios: if icon is prerendered, iOS will not apply it's gloss to the app's icon on the user's home screen ->
        <preference name="stay-in-webview" value="false" /> <! - ios: external links should open in the default browser, 'true' would use the webview the app lives in ->
        <preference name="ios-statusbarstyle" value="black-opaque" /> <! - ios: black-translucent will appear black because the PhoneGap webview doesn't go beneath the status bar ->
        <preference name="detect-data-types" value="true" /> <! - ios: controls whether data types (such as phone no. and dates) are automatically turned into links by the system ->
        <preference name="exit-on-suspend" value="false" /> <! - ios: if set to true, app will terminate when home button is pressed ->
        <preference name="show-splash-screen-spinner" value="true" /> <! - ios: if set to false, the spinner won't appear on the splash screen during app loading ->
        <preference name="auto-hide-splash-screen" value="true" /> <! - ios: if set to false, the splash screen must be hidden using a JavaScript API ->
        <preference name="disable-cursor" value="false" /> <! - blackberry: prevents a mouse-icon/cursor from being displayed on the app ->
        <preference name="android-minSdkVersion" value="7" /> <! - android: MIN SDK version supported on the target device. MAX version is blank by default. ->
        <preference name="android-installLocation" value="auto" /> <! - android: app install location. 'Auto' will choose. 'InternalOnly' is device memory. 'PreferExternal' is SDCard. ->
        <! - Plugins can also be added here. ->
        <!
            <gap:plugin name="Example" />
            A list of available plugins are available at https://build.phonegap.com/docs/plugins
        ->
        <! - Define app icon for each platform. ->
        <icon src="icon.png" />
        <icon src="res/icon/android/icon-36-ldpi.png" gap:platform="android" gap:density="ldpi" />
        <icon src="res/icon/android/icon-48-mdpi.png" gap:platform="android" gap:density="mdpi" />
        <icon src="res/icon/android/icon-72-hdpi.png" gap:platform="android" gap:density="hdpi" />
        <icon src="res/icon/android/icon-96-xhdpi.png" gap:platform="android" gap:density="xhdpi" />
        <icon src="res/icon/blackberry/icon-80.png" gap:platform="blackberry" />
        <icon src="res/icon/blackberry/icon-80.png" gap:platform="blackberry" gap:state="hover"/>
        <icon src="res/icon/ios/icon57.png" gap:platform="ios" width="57" height="57" />
        <icon src="res/icon/ios/icon72.png" gap:platform="ios" width="72" height="72" />
        <icon src="res/icon/ios/icon-57-2x.png" gap:platform="ios" width="114" height="114" />
        <icon src="res/icon/ios/icon72-2x.png" gap:platform="ios" width="144" height="144" />
        <icon src="res/icon/webos/icon-64.png" gap:platform="webos" />
        <icon src="res/icon/windows-phone/icon-48.png" gap:platform="winphone" />
        <icon src="res/icon/windows-phone/icon-173.png" gap:platform="winphone" gap:role="background" />
        <! - Define app splash screen for each platform. ->
        <gap:splash src="res/screen/android/screen-ldpi-portrait.png" gap:platform="android" gap:density="ldpi" />
        <gap:splash src="res/screen/android/screen-mdpi-portrait.png" gap:platform="android" gap:density="mdpi" />
        <gap:splash src="res/screen/android/screen-hdpi-portrait.png" gap:platform="android" gap:density="hdpi" />
        <gap:splash src="res/screen/android/screen-xhdpi-portrait.png" gap:platform="android" gap:density="xhdpi" />
        <gap:splash src="res/screen/blackberry/screen-225.png" gap:platform="blackberry" />
        <gap:splash src="res/screen/ios/screen-iphone-portrait.png" gap:platform="ios" width="320" height="480" />
        <gap:splash src="res/screen/ios/screen-iphone-portrait-2x.png" gap:platform="ios" width="640" height="960" />
        <gap:splash src="res/screen/ios/screen-ipad-portrait.png" gap:platform="ios" width="768" height="1024" />
        <gap:splash src="res/screen/ios/screen-ipad-landscape.png" gap:platform="ios" width="1024" height="768" />
    <gap:splash src="res/screen/ios/Default-568h@2x~iphone.png" gap:platform="ios" width="1136" height="640" />
        <gap:splash src="res/screen/windows-phone/screen-portrait.jpg" gap:platform="winphone" />
        <!
            Define access to external domains.
            <access /> - a blank access tag denies access to all external resources.
            <access origin="*" /> - a wildcard access tag allows access to all external resource.
            Otherwise, you can specify specific domains:
        ->
    <! - <access Origin="http://127.0.0.1*"/> -> <! - Allow local pages ->
        <!
            <access origin="http://phonegap.com" /> - allow any secure requests to http://phonegap.com/
            <access origin="http://phonegap.com" subdomains="true" /> - same as above, but including subdomains, such as http://build.phonegap.com/
            <access origin="http://phonegap.com" browserOnly="true" /> - only allows http://phonegap.com to be opened by the child browser.
        ->
    </ Widget>
    Create config.xml as above, and index.html in the same folder.
    and compressed zip file.
    and upload build.phonegap.com
    PhoneGAP message appears on the site builder.
    "Your application's details are bound to the config.xml file in your application package. To edit these details, change that file and push it back up to us."
    How do I fix?

    The path actually looks correct for catalog.
    It's like $ORACLE_INSTANCE/bifoundation/OracleBIPresentationServicesComponent/$COMPONENT_NAME/catalog/SampleAppLite.
    I only had one catalog on the dev server, and one on the production server.
    The path has always  been like above.
    It's just pointing to the wrong machine, as far as I can tell.

Maybe you are looking for

  • Fast user Switching breaks iTunes Library on Drobo FS

    Hello, Everyone. I realize this is a bit of a corner case but what the heck, maybe you can help. Our home iMac has two main accounts, husband and wife. Connected to it is a Drobo FS. iTunes media is on the Drobo FS. The iMac Husband account is used t

  • How to remove Adobe Acrobat 9 Pro Extended?

    Uninstallation using the Add/Remove list only seems to remove it from that list. The application is still present in the Programs list afterwards. Is there a removal tool?

  • Messed up hinge on MacBook pro what to do?

    Yesterday my MacBook pro just started acting up the lid wouldn't fully close or hold itself up unless it was vertical. There was no damage I know of. Is this covered by AppleCare otherwise one should I do. The computer has been having a few other pro

  • ME57 - Not mandatory Purchase Organization - Action: Process Assignments

    Hello: In the Me57 transaction when I click the "Process Assginment" botton, SAP shows a screen where the following field have to be completed as mandatory: - Document Type - Document Date - Purchase Organization - Purchasing Group I will like the Pu

  • I have a problem with setup page of router netfaster.wlan

    hi, the setup page of netfaster.wlan router is no longer displayed properly.it doesn't have the left side options which are needed to set the router.