How do you localize AppManifest.xml ???

How do you localize the AppManifest.xml is it with x:Uid ???
In my instance I want to localize the File Type Association so windows explorer display the File Type using localized string resources, is it possible ?

Hi ClementM,
Sorry for a late response, I'm not able to reply you days ago.
Just test to change my system to Chinese region, I found the name of the app also the description has been changed.
I think you would be interested with following documentation:
Loading strings from the Windows Store app manifest. You could write your Appmanifest like below if you have the language resource:
<DisplayName>ms-resource:String1</DisplayName>
Besides, see this to know how to add string resource:
Quickstart: Using string resources
--James
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • How do you differentiate IDOC XML format and ordinary XML format

    how do you differentiate IDOC XML format and ordinary XML format since they are used by IDOC adapter and RFC adapter???

    Hi,
    Cremas Structure starts with Header and followed by Segments...
    Normally it begins like this
    <CREMAS03><IDOC BEGIN="1">
    The second node is Idoc in the header..
    Thanks
    Anju

  • How do you change an xml field inside of a database?

    Please: can you tell me how do you update an xml file?
    I mean how do you edit an xml field?
    Paola
    @{---->>----->---------                                                                                                                                                                                                                                                                       

    It should work for Oracle 9.2 and 10.2
    Thank you Dany.
    Regards.
    Paola
    @{--->----->>----------                                                                                                                                                                                                               

  • How do you delete an  XML template?

    Does anyone know how to remove a custom XML template? I'm using 11.5.10 Rollup 2. I created an RTF template for AP Checks. But I've discovered that using a PDF template will be better suited to our needs. I can not change the template type to PDF. I deactivated the template, and tried to create a new template using a different template name , and code. I also created a new data definition using the new code. But when I try to save the new template I receive an error: "A template file already exists for this language/territory combination. Please use the update file option." I dont see an 'update file' option on this screen. I went back and tried to update the template by deleting the sample file, but it says "Delete button disabled". Does this mean, that I can only assign one template for the English/United States combination?! This is not a seeded template. How do I go about removing this template, so that I can set up a new one using the desired format. I've searched the net, but can't find any answers... Thanks in advance for any help. Thanks!

    Hello Dan.
    I never figured out how to delete a template.
    However, now that I think about it, you may be able
    to get around it. But you may have to jump through a few hoops first :)
    Using System Administrator..
    Try making a copy of the Concurrent Program.
    (Go to Concurrent >> Program >> Define)
    Query the existing program, then click the 'Copy To' button.
    Change the Short Name slightly.
    Be sure to check the "include parameters" and "include incompatible programs" boxes.
    You will also need to make a copy of the actual rdf file and rename it slightly.
    (In a subdirectory of $APPL_TOP i.e. /?/oracle/visappl)
    Then you would register your new report executable (Concurrent >> Program >> Executable).
    Once the new report executable has been registered, you can go back to your
    new Concurrent Program, and change the executable name to the one you just registered.
    Also, be sure to assign your new report to the same responsibility report group as the original
    (Concurrent >> Security >> Responsibility >> Request).
    Now, essentially you have cloned the original report, and you should be able to create a new RTF template for it. If you need more detailed steps, I may have some documentation for customizing reports somewhere.
    Good Luck!
    Mark K

  • How do you get an xml file from the PO Output for Communication report?

    Can anyone tell me how you've created an xml output fil for this program? When I run it, the View XML button doesn't light up, and the output file is empty.
    I can see the XML when I click the View Log button, but can't figure out how to save it so that the XMLP Desktop tool can load it properly.
    If you can tell me how to create this file, I'd be very appreciative.

    Hi,
    I can't see the xml in my log file. Maybe you have a different logging level. One issue I have had before is that the xml declaration had a strange character encoding. It should say something like: <?xml version="1.0" ?>. If it mentions anything about encoding you can remove it.
    One of our developers wrote a custom process to write the xml to a table when the document was generated as we couldn't find any other way of doing it.
    You can use the sample xml available from the data definition but this is missing fields.
    Probably not much help...
    Paul

  • How do you store parsed XML data in an array

    Hi, i am trying to complete a small program which implements the SAX parser to parse an XML file. My problem is that i am writing a custom class to store the parsed data into an array, and then make the array available to the main program via a simple method which returns the array. I know this must be very simple to do, but i seem to have developed a mental block with this part of the program. I can parse the data and print all the elements to the screen, but i just cant figure out how to store all the data elements into the array. I will post the class which is supposed to do this, and ask anyone out there if they know what i'm doing wrong, and also, if there is a more effeicient way of achieving this ( i expect there definitely is!! but i have never used the SAX parser before and am getting confused by the API docs on it!!) Any help very much appreciated.
    Here is my attempt at coding the class to handle the parsed XML data
    class Sink extends org.xml.sax.helpers.DefaultHandler
         implements org.xml.sax.ContentHandler{
    Customer[] customers = new Customer[20];
         int count = 1;
         int x = 0;
         int tagCount = 0;
         String name;
    String custID;
         String username;
         String address;
         String phoneNum;
    public void startElement(String uri, String localName, String rawName, final org.xml.sax.Attributes attributes)throws org.xml.sax.SAXException{
    //count the number of <name> tags in the XML file
         if(rawName.equals("name")){
              tagCount++;
    public void characters(char[] ch, int start, int len){
    //get the current string
         String text = new String(ch, start, len);
         String text1 = text.trim();
    //there are 5 elements for each customer found in the XML file so when the count reaches 6
    // i reset this to 1
         if(count == 6){
         count = count - 5;
         if(text1.length()>0 && count == 1){
              name = text1;
              System.out.println(name);
              }else{
         if(text1.length()>0 && count == 2){
              custID = text1;
              System.out.println(custID);
                   }else{
                   if(text1.length()>0 && count == 3){
                   username = text1;
                   System.out.println(username);
                   }else{
                        if(text1.length()>0 && count == 4){
                        address = text1;
                        System.out.println(address);
                        }else{
                        if(text1.length()>0 && count == 5){
                             phoneNum = text1;
                             System.out.println(phoneNum);
                             //add data to the customer array
                             customers[x] = new Customer(name, custID, username, address, phoneNum);
    // increment the array index counter
                        x = x+1;
                        }//end of if
                        }//end else
                        }//end else
                   }//end else
              }//end else
    }//end of characters method
    public void endDocument(){
         System.out.println("There are " + tagCount +
         " <name> elements.");
    }//end of class Sink
    Before the end of this class i also need to make the array available to the calling program!!
    Any help would be much appreciated
    Thanks
    Iain

    Ok, yer going about this all the wrong way. You shouldn't have to maintain a count of all the elements. Basically you are locking yourself into the XML tags not only all being there but are assuming they are all in the same order. What you should do is in your characters() method, put all of the characters into a string buffer. Then, in endElement() (which you dont use btw, you should) you grab the information that is in the string buffer and store it into your Customer object depending on what the tagName is.
    Also, you should probably use a List to store all the Customer objects and not an single array, it's more dynamic and you arent locked into a set number of Customers.
    I wont do it all for you, but I'll give you a good outline to use.
    public class CustomerHandler extends DefaultHandler {
        private java.util.List customerList;  // List of Customer objects
        private java.util.StringBuffer buf;   // StringBuffer to store the string of characters between the start and end tags
        private Customer customer;  // Customer object that is initialized with each entry.
        public CustomerHandler() {
            customerList = new java.util.ArrayList();   // Initialize the List
            buf = new java.util.StringBuffer();   // Initialize the string buffer
        //  Make your customer list available to other classes
        public java.util.List getCustomerList() {
            return customerList;
        public void startElement(String nsURI, String sName, String tagName, Attributes attributes) throws SAXException {
            // Clear the String Buffer
            //  If the tagName is "Customer" then create a new Customer object
        public void characters(char[] ch, int start, int length) {
            //  append the characters into the string buffer
        public void endElement(String nsURI, String sName, String tagName) throws SAXException {
            // If the tagName is "Customer" add your customer object to the List
            // Place the data from the String Buffer into a String
            //  Depending on the tagName, call the appropriate set method on your customer object
    }

  • How do you apply the xml property page to OAF

    Hi Guys:
    I have modify the xml file: "FND_ATTACH_UPLOAD_PAGE.xml" under the "/roots/fnd/11.5.0/mds/framework/attachments/webui/FND_ATTACH_UPLOAD_PAGE.xml" folder. The maximum length in the original file for the Attachment Text area is 4000 but I have changed it to 2000 in the latest file. How do I apply the changed. Also, is this the best way to modify it, or are there any other ways to change it?

    What kind of bean is being used for the field you are talking about? Did you try to personalize that bean to meet your requirement? Don't have access to an instance right now, hence cann't check that xml.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How do you load external XML into a dataProvider?

    I have been looking through the docs and have found a couple
    of entries discussing how to load external XML. Unfortunately, that
    is where the example stops and there is no example of doing
    anything useful with that data.
    I have managed thus far to get my XML file loaded into
    actionscript/flex:
    function getExternalXML():void {
    request = new URLRequest('source.xml');
    loader = new URLLoader();
    loader.load(request);
    loader.addEventListener("complete", loadXML);
    function loadXML(e:Event):void {
    combo.dataProvider = loader.data;
    obviously, the above doesn't work at all. I don't know how to
    convert the loader.data into a format that the
    ComboBox.dataProvider understands. I can't believe I have to write
    a function to parse this XML. Surely there must be a way to simply
    convert the XML to an array or something???

    That link uses the flex beta 3 docs. You may want to use the
    current livedocs.
    Here
    is a direct link to the section I was talking about.
    Scroll down about halfway to the part that says "However,
    using a raw data object..."
    If you want the PDFs (easier to read IMO) you can get them
    here.
    Here
    is a direct link to the Developer's Guide:

  • Using XML for Live Data- How do you get the XML file to pull data from another xls file?

    Post Author: joseph_atkinson
    CA Forum: Xcelsius and Live Office
    I was wondering you can help me.
    I am currently receiving an *.xls reports on a daily basis (same report, same format, different data). I have put this report into Crystal Xcelcius Designer 4.5 Professional version and created the dashboard I want.
    I am aware of the xml mapping functionality where I can map from the *.swf straight to a database. However, is it possible to map to an xls file that will change on a daily basis? (obviously I can you the refresh button in Designer, but I need to automate this process).
    Your help really would be appreciated.
    Joe

    In Firefox, I'm seeing a bad icon for your zip files. I can
    download it,
    but it looks like something might be amiss with your zip
    files
    themselves.
    Al Sparber - PVII
    http://www.projectseven.com
    Popup Menus | Image Galleries | CSS Tutorials & Templates
    Newsgroup: news://forums.projectseven.com/pviiwebdev/
    CSS Newsgroup: news://forums.projectseven.com/css/
    DW Newsgroup: news://forums.projectseven.com/dreamweaver/
    "Conjurer" <[email protected]> wrote in message
    news:e8upg1$kee$[email protected]..
    > Conjurer wrote:
    >> Boy - I thought this was as simple as creating an
    <a> tag link to the
    >> file like you do with Word docs and Excel xls files.
    So I wrote my
    >> link as follows:
    >>
    >> <li><a
    href="OMGMASalSvy/Survey.zip">2006 Adminsistrators
    >> Survey.zip</a></li>
    >>
    >> But when I click on it I get a big nothing!
    >>
    >> I put the files out there on the host and the
    Word/Excel links all
    >> work great.
    >>
    >> Is there some secret magic to this one?
    >>
    >> My page links are at:
    http://www.omgma.com/surveyforms.htm#Documents
    >>
    >> Thanks for any help.
    >
    >
    > I guess it is working in IE but not in Firefox.... hmmm

  • How do you display next XML record ??

    Please help... I would like to use an XLS document to display
    XML data, but I only want one record displayed at a time. I want to
    use a button to refresh the page with the next (or previous)
    record. This is for displaying photos and accompaning text. Can I
    have a tag that refers to the next record? or do I need to write a
    script? Or is there another approach that would achieve this
    result?
    Here is a sample of my XML file:
    <bphotos>
    <photo photoid="1">
    <title>B College </title>
    <jpgfile>images/5602.jpg</jpgfile>
    <description>B Convent as it was, minus the Business
    College!</description>
    <next></next>
    </photo>
    <photo photoid="2">
    <title>The Junior School</title>
    <jpgfile>images/5603.jpg</jpgfile>
    <description>ggg</description>
    <next></next>
    </photo>
    </bphotos>
    Thanks

    Please help... I would like to use an XLS document to display
    XML data, but I only want one record displayed at a time. I want to
    use a button to refresh the page with the next (or previous)
    record. This is for displaying photos and accompaning text. Can I
    have a tag that refers to the next record? or do I need to write a
    script? Or is there another approach that would achieve this
    result?
    Here is a sample of my XML file:
    <bphotos>
    <photo photoid="1">
    <title>B College </title>
    <jpgfile>images/5602.jpg</jpgfile>
    <description>B Convent as it was, minus the Business
    College!</description>
    <next></next>
    </photo>
    <photo photoid="2">
    <title>The Junior School</title>
    <jpgfile>images/5603.jpg</jpgfile>
    <description>ggg</description>
    <next></next>
    </photo>
    </bphotos>
    Thanks

  • How do you modify the web.xml to lock down the pages from a user role

    how do you modify the web.xml to lock down the pages from a user role

    I'll make a stab at your question:
    The following is an example of where a URL is protected within a web.xml deployment descriptor. In this example, the URL /protectedA within the application is protected:
    <!-- security constraints -->
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>protectedA</web-resource-name>
    <url-pattern>/protectedA</url-pattern>
    </web-resource-collection>
    <!-- authorization -->
    <auth-constraint>
    <role-name>sr_developer</role-name>
    </auth-constraint>
    </security-constraint>
    Sun's explaination here:
    http://java.sun.com/j2ee/1.4/docs/tutorial/doc/Security4.html

  • How do you validate XML file against a Schema?

    Are there free applications that does that?

    Thanks, but how do you validata the Schema itself, which is an XML file.
    I know the schema DTD is online, but still I need some utility to do it
    Thanks

  • How do you include the actual CLOB value as ASCII when writing XML?

    When using the XDK for PL/SQL ( creating XML from query ) and the table that you query has a CLOB column the value in the resulting XML document is
    written as:
    <column>(CLOB)</column>
    how do you get the api to write the actual CLOB data?

    That article is talking about choosing HOW to STORE an XML document.
    I want to know how to write the contents of a CLOB column along with the other columns in a table in a single XML document.
    I know how to store an XML doc as a clob I know how to store an XML doc object relationally.
    I I have a table with 5 varchar2 columns 5 number columns and 1 clob column and I create an xml document as a clob from a select * on that table. I then write that clob to the file system. What is the clob columns data going to look like?
    its gonna be <column>(CLOB)</column> THATS NOT WHAT I WANT. I want the actual data that was in that CLOB column.
    Thank you for all responses.

  • How do you pass XML as a URL param?

    How do you pass XML as a URL param?
    Thanks!

    I don't know why I wasn't thinking about this when I made my
    last post. If they're pasting some XML into a form, that's one
    thing. But if they need to send XML to your site from their own,
    you can setup a Coldfusion Component (CFC) as a Web Service to
    accept XML through a WSDL call.
    Check out the
    Coldfusion
    Developers Center for
    articles
    on creating web services

  • How do you export APEX report results to XML template

    Hello all,
    I would like to export the results of a report to an XML template(CSV removes leading zeroes which doesn't work for us) Where do you store the template and how do you export the report results to it?
    Thanks

    Hello, since you say it's just a question of formating why you want to use xml instead of csv maybe you wanna have a look at this thread:
    CSV Download Changing Text to Number
    There they are discussing the aspects of leadings 0.
    Regards, Tine.

Maybe you are looking for