[XQuery] How to transform from JSON Message to XML Message with XQuery

Hi guys,
I'm in a job of converting a restful webservice to soap. Tool for convertation uses XQuery.
Now i need to convert a message like thi link http://jsontoxml.utilities-online.info
JSON
"anagrafica": {
"testata": {
"nomemercato": {
"-id": "007",
"#text": "Mercato di test"
"data": "Giovedi 18 dicembre 2003 16.05.29"
"record": [
"codice_cliente": "5",
"rag_soc": "Miami American Cafe",
"codice_fiscale": "IT07654930130",
"indirizzo": {
"-tipo": "casa",
"#text": "Viale Carlo Espinasse 5, Como"
"num_prodotti": "13"
"codice_cliente": "302",
"rag_soc": "Filiberto Gilardi",
"codice_fiscale": "IT87654770157",
"indirizzo": {
"-tipo": "ufficio",
"#text": "Via Biancospini 20, Messina"
"num_prodotti": "8"
"codice_cliente": "1302",
"rag_soc": "Eidon",
"codice_fiscale": "IT887511231",
"indirizzo": {
"-tipo": "ufficio",
"#text": "Via Bassini 17/2, Milano"
"num_prodotti": "18"
"codice_cliente": "202",
"rag_soc": "SkillNet",
"codice_fiscale": "IT887642131",
"indirizzo": {
"-tipo": "ufficio",
"#text": "Via Chiasserini 11A, Milano"
"num_prodotti": "24"
"codice_cliente": "12",
"rag_soc": "Eidon",
"codice_fiscale": "IT04835710965",
"indirizzo": {
"-tipo": "casa",
"#text": "Via Cignoli 17/2, Roma"
"num_prodotti": "1112"
"codice_cliente": "5",
"rag_soc": "Miami American Cafe",
"codice_fiscale": "IT07654930130",
"indirizzo": {
"-tipo": "casa",
"#text": "Viale Carlo Espinasse 5, Como"
"num_prodotti": "13"
"codice_cliente": "302",
"rag_soc": "Filiberto Gilardi",
"codice_fiscale": "IT87654770157",
"indirizzo": {
"-tipo": "ufficio",
"#text": "Via Biancospini 20, Messina"
"num_prodotti": "8"
"codice_cliente": "1302",
"rag_soc": "Eidon",
"codice_fiscale": "IT887511231",
"indirizzo": {
"-tipo": "ufficio",
"#text": "Via Bassini 17/2, Milano"
"num_prodotti": "18"
"codice_cliente": "202",
"rag_soc": "SkillNet",
"codice_fiscale": "IT887642131",
"indirizzo": {
"-tipo": "ufficio",
"#text": "Via Chiasserini 11A, Milano"
"num_prodotti": "24"
"codice_cliente": "202",
"rag_soc": "SkillNet",
"codice_fiscale": "IT887642131",
"indirizzo": {
"-tipo": "ufficio",
"#text": "Via Chiasserini 11A, Milano"
"num_prodotti": "24"
"codice_cliente": "12",
"rag_soc": "Eidon",
"codice_fiscale": "IT04835710965",
"indirizzo": {
"-tipo": "casa",
"#text": "Via Cignoli 17/2, Roma"
"num_prodotti": "1112"
XML
<?xml version="1.0" encoding="UTF-8"?>
<!--Anagrafica del clienti del mercato-->
<anagrafica>
     <testata>
          <nomemercato id="007">Mercato di test</nomemercato>
          <data>Giovedi 18 dicembre 2003 16.05.29</data>
     </testata>
     <record>
          <codice_cliente>5</codice_cliente>
          <rag_soc>Miami American Cafe</rag_soc>
          <codice_fiscale>IT07654930130</codice_fiscale>
          <indirizzo tipo="casa">Viale Carlo Espinasse 5, Como</indirizzo>
          <num_prodotti>13</num_prodotti>
     </record>
     <record>
          <codice_cliente>302</codice_cliente>
          <rag_soc>Filiberto Gilardi</rag_soc>
          <codice_fiscale>IT87654770157</codice_fiscale>
          <indirizzo tipo="ufficio">Via Biancospini 20, Messina</indirizzo>
          <num_prodotti>8</num_prodotti>
     </record>
     <record>
          <codice_cliente>1302</codice_cliente>
          <rag_soc>Eidon</rag_soc>
          <codice_fiscale>IT887511231</codice_fiscale>
          <indirizzo tipo="ufficio">Via Bassini 17/2, Milano</indirizzo>
          <num_prodotti>18</num_prodotti>
     </record>
     <record>
          <codice_cliente>202</codice_cliente>
          <rag_soc>SkillNet</rag_soc>
          <codice_fiscale>IT887642131</codice_fiscale>
          <indirizzo tipo="ufficio">Via Chiasserini 11A, Milano</indirizzo>
          <num_prodotti>24</num_prodotti>
     </record>
     <record>
          <codice_cliente>12</codice_cliente>
          <rag_soc>Eidon</rag_soc>
          <codice_fiscale>IT04835710965</codice_fiscale>
          <indirizzo tipo="casa">Via Cignoli 17/2, Roma</indirizzo>
          <num_prodotti>1112</num_prodotti>
     </record>
     <record>
          <codice_cliente>5</codice_cliente>
          <rag_soc>Miami American Cafe</rag_soc>
          <codice_fiscale>IT07654930130</codice_fiscale>
          <indirizzo tipo="casa">Viale Carlo Espinasse 5, Como</indirizzo>
          <num_prodotti>13</num_prodotti>
     </record>
     <record>
          <codice_cliente>302</codice_cliente>
          <rag_soc>Filiberto Gilardi</rag_soc>
          <codice_fiscale>IT87654770157</codice_fiscale>
          <indirizzo tipo="ufficio">Via Biancospini 20, Messina</indirizzo>
          <num_prodotti>8</num_prodotti>
     </record>
     <record>
          <codice_cliente>1302</codice_cliente>
          <rag_soc>Eidon</rag_soc>
          <codice_fiscale>IT887511231</codice_fiscale>
          <indirizzo tipo="ufficio">Via Bassini 17/2, Milano</indirizzo>
          <num_prodotti>18</num_prodotti>
     </record>
     <record>
          <codice_cliente>202</codice_cliente>
          <rag_soc>SkillNet</rag_soc>
          <codice_fiscale>IT887642131</codice_fiscale>
          <indirizzo tipo="ufficio">Via Chiasserini 11A, Milano</indirizzo>
          <num_prodotti>24</num_prodotti>
     </record>
     <record>
          <codice_cliente>202</codice_cliente>
          <rag_soc>SkillNet</rag_soc>
          <codice_fiscale>IT887642131</codice_fiscale>
          <indirizzo tipo="ufficio">Via Chiasserini 11A, Milano</indirizzo>
          <num_prodotti>24</num_prodotti>
     </record>
     <record>
          <codice_cliente>12</codice_cliente>
          <rag_soc>Eidon</rag_soc>
          <codice_fiscale>IT04835710965</codice_fiscale>
          <indirizzo tipo="casa">Via Cignoli 17/2, Roma</indirizzo>
          <num_prodotti>1112</num_prodotti>
</record>
</anagrafica>
I guest this a general case so there must be an example for this somewhere on the internet but i haven't found it yet. So i put on forum and hope someone already knows this.
Thank for u help.
Regards,
Tien86.
Edited by: tien86 on 01:00 02-12-2011
Edited by: tien86 on 00:43 03-12-2011

You didn't mention trying these two steps:
If the issue occurs with a specific contact or contacts, delete and recreate the contact in the Contacts app. Create a new message to the newly created contact and try again.
Back up and restore your device as new.
... which are listed as steps 4 and 5 near the middle of this article:
iOS: Troubleshooting Messages

Similar Messages

  • 1) How to Boot from SAN for T4-1 Server with Solaris 11.1 OS on the disk? 2) How to SMI Label/Format a disk while OS Installation in Solaris 11.1?

    FYI....boot from SAN is required for physical server (T4-1) (not OVM).
    1) How to Boot from SAN for T4-1 Server with Solaris 11.1 OS on the disk?
    The SAN disks allocated are visible in ok prompt. below is the output.
    (0) ok show—disks
    a) /pci@400/pci@2/pci@0/pci@f/pci@0/usb@0, 2/hub@2/hub@3/storage@2/disk
    b) /pci@400/pci@2/pci@0/pci€a/SUNW, ezalxs@0, l/fp@0, 0/disk
    e) /pci@400/pci@2/pci@0/pci@a/SUNW, ealxs@0/fp@0, 0/disk
    d) /pci@400/pci@2/pci@0/pci@8/SUNW, emlxs@0, l/fp@0, 0/disk
    e) /pci@400/pci@2/pci@0/pci@8/SUNW,enlxs@0/fp@0,0/disk
    f) /pci@400/pci@2/pci@0/pci@4/scsi@0/disk
    g) /pci@400/pci@1/pci@0/pci@4/scsi@0/disk
    h) /iscsi—hba/disk
    q) NO SELECTION
    valid choice: a. . .h, q to quit c
    /pci@400/pci@2/pci@0/pci@a/SUNW, ealxs@0/fp@0, 0/disk has been selected.
    Type “Y ( Control—Y ) to insert it in the command line.
    e.g. ok nvalias mydev “Y
    for creating devalias mydev for /pci@400/pci@2/pci@0/pci@a/SUNW,emlxs@0/fp@0,0/disk
    (0) ok set—sfs—boot
    set—sfs—boot ?
    We tried selecting a disk and applying sfs-boot at ok prompt.
    Can you please help me providing detailed pre-requesites/steps/procedure to implement this and to start boot from SAN.
    2) How to SMI Label/Format a disk while OS Installation in Solaris 11.1?
    As we know that ZFS is the default filesystem in Solaris 11.
    We have seen in the Oracle documentation that for rpool below are recommended:
    - A disk that is intended for a ZFS root pool must be created with an SMI label, not an EFI label.
    - Create root pools with slices by using the s* identifier.
    - ZFS applies an EFI label when you create a storage pool with whole disks.
    - In general, you should create a disk slice with the bulk of disk space in slice 0.
    I have seen the solution that using format -e, we change the labelling but all the data will be lost, whats the way to apply a SMI Label/Format on a rpool disks while OS Installation itself.
    Please provide me the steps to SMI Label a disk while installaing Solaris 11.1 OS.

    Oracle recommends below things on rpool: (thats reason wanted to apply SMI Label)
    I have seen in the Oracle documentation that for rpool below are recommended:
    - A disk that is intended for a ZFS root pool must be created with an SMI label, not an EFI label.
    - Create root pools with slices by using the s* identifier.
    - ZFS applies an EFI label when you create a storage pool with whole disks.
    - In general, you should create a disk slice with the bulk of disk space in slice 0.

  • How to covert  from .srf  form to xml form

    hi.....  plz anybody help me  to find this soloution... i am  not familiar with this enviorment
    how to covert  from .srf  form to xml form,
    it's very needed
    plz help me.................

    Hi Raj,
    You can do that way, but at times what happens is, if u try changing the extension while saving it saves as "<b>Form.xml.srf</b>" wherein, still its recognized as a srf file.  So, you save it as an srf first, and then, change (rename) the extension from .srf to .xml
    Satish.

  • Can someone tell me step by step how to record from audio tape to mac book with the help of xitel import deluxe

    Can someone tell me step by step how to record from audio tape to mac book with the help of xitel inport deluxe system.  Somebody had mentioned that we do not have to download the software - so I did not, but the computer does not recognize the connection.  How can I know it is connected - can someone please tell me step by step as teaching a layman.  Thanks.

    It seems this question is best posed to the makers of "xitel".
    I looked up A product and it is out for Windows but does not mention Mac OS X:
    http://www.xitel.com/USA/prod_inportpro.htm

  • How to view "From" header field in OUTgoing messages in Mail? Frustrating.

    In Mail v.4.3 (in OSX 10.6.4), I need to view the "From" field in my outgoing messages as I am composing them. However, there seems to be no setting in Mail which allow this.
    I find this very frustrating because in Eudora (which I used to use), the "From" field in outgoing messages is visible by default. But in Mail, not only is it not visible by default, there seems to be no way to make it visible.
    In the "Customize..." button to the left of the Subject field in outgoing messages, one has the option to add as default outgoing message fields "cc," "bcc," "Reply-To," and "Subject," but none of those are what I want. It allows one to also view the address of the mail server, but that also is not what I'm looking for. What I want is to see my outgoing +email address+. And nowhere is there an option in the Preferences to turn this on. (At least as far as I could tell.)
    In fact, the only way to see the identity in the outgoing "From" field is to go to Preferences, then click on Accounts, and look there; or send oneself a test email. Both of which are a hassle and should be unnecessary.
    In case you're curious as to why I want to see my outgoing "From" header field:
    I have several different "personas" online, each of which uses a different email address: My work address (with a work-related domain); my family/personal address (with a different email address than my work address); an online avatar I use in various gaming sites (also with its own address, since I don't want to use my personal name/address in the gaming community); and so on. However, I have all incoming emails to all accounts auto-forwarded to the same central email account. Most of the time I'm just replying to business emails, so my outgoing "Full Name" and "Email Address" (in Preferences>Accounts) are generally set to my business name and address; but on occasion when I want to reply to a non-business email and not have the recipient see my business email address, I go in to Preferences>Accounts and change "Full Name" and "Email Address" (i.e. what is displayed to the user) to something different. And when I'm done with that, I change it back to my business address.
    However, sometimes I forget if I've changed it back or not, or forget what I've changed it to. In Eudora, All one needed to one was create a new outgoing email and it would display the "From" field so I could instantly see my outgoing identity. But in Mail, there is no "From" field in outgoing emails, so I'm constantly nervous and wondering which outgoing identity I may have changed to and accidentally forgotten to change back from.
    (Yes, yes, I know that if a recipient wanted to be snoopy, they could look at the "full headers" of any incoming email and see the name of my email server, which may different from my displayed email address; but we're not talking about spy-stuff here, I'm just trying to not confuse people and keep business separate from personal.)
    So: is there any way for me to see the outgoing "From" field in the emails I send? Or am I condemned to constantly (and mostly unnecessarily) checking "Preferences>Accounts" to see what I have enetered there?

    Thanks for replying.
    What is the "compose window" to which you are both referring? I could find no reference to such a thing in the Mail menus or Help.
    Do you mean the "Composing" pane in the Preferences? I don't see what either one of you is referring to there, but I did notice there something that could function as an awkward workaround: If I click on the "Automatically CC myself" box in Preferences>Composing, then when I start a new email, my email address is displayed in the "CC" field -- and luckily, Mail allows me to then delete my email address out of the CC field, so I don't have to spam myself with duplicate copies of all my emails. This way, I can at least briefly see what email address I'm using, before I delete it from the CC field. Pretty awkward and unnecessarily laborious, however -- still not a perfect solution.
    Or, by "composing window," are you referring to an outgoing email? As I said in my original comment, I do see what Ernie called "a small box with lines and an arrow at the bottom left of the header box." This is what I had to say about it:
    +"In the "Customize..." button to the left of the Subject field in outgoing messages, one has the option to add as default outgoing message fields "cc," "bcc," "Reply-To," and "Subject," but none of those are what I want. It allows one to also view the address of the mail server, but that also is not what I'm looking for. What I want is to see my outgoing email address. And nowhere is there an option in the Preferences to turn this on. (At least as far as I could tell.)"+
    In other words, when Ernie says, "click the box beside From," I can't do that -- because there is no such option. That's the whole problem in the first place. If there was a "From" field beside which I could click a box to make it appear, I would have done so! But there is no "From" field in the "Customize" section of the "small box with lines and an arrow at the bottom left of the header box."
    I find it completely mystifying that both of you seem to be able to see a "From" field available to be added to the header of outgoing emails, yet no such option is available to me in Mail. What possibly could be causing this? 10.6.4 is freshly installed on my machine, and Mail seems brand new and uncorrupted. And I'm using Mail 4.3, the latest version.
    Are you saying that everyone else can see an option to have a "From" field in their outgoing messages, but I uniquely don't? Very very very strange.

  • How to use oracle TRIM functionality in XML messages

    When i am selecting data from XML message as per below query, it is returing values correctly.
    SELECT extractValue(x.column_value, '/DETAILS/EMPID') as emp_id,
    extractValue(x.column_value, '/DETAILS/NAME') as emp_name,
    extractValue(x.column_value, '/DETAILS/SALARY') as emp_sal
    FROM TABLE(
    XMLSequence(
    Extract( xmltype('<DETAILS><EMPID>2482</EMPID><NAME>SMITH</NAME><SALARY>4854</SALARY><LOC>CHENNAI</LOC></DETAILS>'),'/DETAILS'))) x;
    But when i am selecting data by using below query some additional spaces also coming with column values
    SELECT extractValue(x.column_value, '/DETAILS/EMPID') as emp_id,
    extractValue(x.column_value, '/DETAILS/NAME') as emp_name,
    extractValue(x.column_value, '/DETAILS/SALARY') as emp_sal
    FROM TABLE(
    XMLSequence(
    Extract( xmltype('<DETAILS>
                   <EMPID>
                             2482
                             </EMPID>
                             <NAME>
                             SMITH
                             </NAME>
                             <SALARY>
                             4854
                             </SALARY>
                             <LOC>
                             CHENNAI
                             </LOC>
                             </DETAILS>'),'/DETAILS'))) x;
    Please suggest how to remove additional spaces by using second query.
    Thanks
    Vikrant Jain.

    It appears that the ability to use XPath functions in the PATH expression doesn't work prior to 11g :
    Connecté à :
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> var xmldoc varchar2(4000)
    SQL> begin :xmldoc := '<DETAILS>
      2  <EMPID>
      3  2482
      4  </EMPID>
      5  <NAME>
      6  SMITH
      7  </NAME>
      8  <SALARY>
      9  4854
    10  </SALARY>
    11  <LOC>
    12  CHENNAI
    13  </LOC>
    14  </DETAILS>';
    15  end;
    16  /
    Procédure PL/SQL terminée avec succès.
    SQL> SELECT emp_id, emp_name, emp_sal
      2    FROM XMLTable('/DETAILS'
      3                  PASSING XMLTYPE(:xmldoc)
      4                  COLUMNS
      5                  emp_id     NUMBER        PATH 'normalize-space(EMPID)',
      6                  emp_name   VARCHAR2(20)  PATH 'NAME',
      7                  emp_sal    VARCHAR2(20)  PATH 'SALARY');
    SELECT emp_id, emp_name, emp_sal
    ERREUR à la ligne 1 :
    ORA-31011: Echec d'analyse XML
    ORA-19202: Une erreur s'est produite lors du traitement la fonction XML (
    LPX-00601: Invalid token in: '/*/normalize-space(EMPID)')Using it in XQuery will work though :
    SQL> SELECT *
      2  FROM XMLTable(
      3   'for $i in /DETAILS
      4    return element r
      5    {
      6     for $j in $i/*
      7     return element {local-name($j)} {normalize-space($j)}
      8    }'
      9   PASSING XMLTYPE(:xmldoc)
    10   COLUMNS
    11     emp_id     NUMBER        PATH 'EMPID',
    12     emp_name   VARCHAR2(20)  PATH 'NAME',
    13     emp_sal    NUMBER        PATH 'SALARY'
    14  );
        EMP_ID EMP_NAME                EMP_SAL
          2482 SMITH                      4854

  • How to access a JSON structure key that starts with a number

    I've got an odd issue here.  I'm accessing someone else's JSON structure so I am not able to change it.  The JSON structure keys are named with both characters and numbers like this:
    0
    198456
    product_id
    198456
    1
    Rashaan Houston feat Tony Loreto
    artist
    Rashaan Houston feat Tony Loreto
    So, in other words, there's a key named "0" and a key named "product_id", both of which contain the same key.  Why they did that, I don't know, but they did.
    In one of the instances, the data stored under the text-named key isn't the same as the numerical-named key.  I tried to output the data in the numerical key like this (it's an array of structures):
    #strStompyJSON.data[1].0#
    but I get the following error:
    Invalid CFML construct found on line 41 at column 31.
    ColdFusion was looking at the following text:
    .0
    When I do the following, it works fine:
    #strStompyJSON.data[1].product_id#
    So it looks as though CF doesn't like accessing a variable that starts with a number.  I am able to loop through the structure using a collection loop, and it outputs all of the keys (including the numerical ones) and their values using the following code:
    <cfloop collection="#strStompyJSON.data[1]#" item="key">
    #key#: #strStompyJSON.data[1][key]#<br />
    </cfloop>
    However, that doesn't allow me a way to access specific keys named with a number.  Is there a way that I can specifically access a key that is named with a number?
    thanks!
    Mike

    No problem--glad it worked out.
    As a follow-up to this, I'd encourage you to keep the bracket notation in mind during future development.  It is EXTREMELY useful in a lot of situations.
    For example, if you're building a structure on the fly with dynamic keys, bracket notation is extremely helpful:
         <cfset authors = structnew()>
         <cfloop list="authorlist" index="name">
              <cfset authors[name] = getbooklist(name)>
         </cfloop>
    Also, bracket notation is really nice when creating json from ColdFusion structures.  Consider this:
         <cfset author = structnew()>
         <cfset author.name = "Neil Gaiman">
         <cfset author.genre = "Fantasy">
         <cfset author.awesome = true>
         <cfset authorjson = serializejson(author)>
    By default, the serialized json produced will have all UPPER CASE keys.  Not a big deal in most cases, but if you're returning the json to something (like a JS library) that is expecting keys in a certain case, it can be a problem.  Fortunately, bracket notation allows you to specify exactly what case you want the structure's keys to be in:
         <cfset author = structnew()>
         <cfset author['name'] = "Neil Gaiman">
         <cfset author['Genre'] = "Fantasy">
         <cfset author['AWESOME'] = true>
         <cfset authorjson = serializejson(author)>

  • How far away from base station can I get with Wi-Fi?

    I want to know how far away from my base station I can get with my iPod touch's Wi-Fi. I can't test it out since it is still shipping, but I would like to know, since I will be travelling a lot with it. I know you can connect it to hotels, restaurants, etc. that have Wi-Fi, but say there's none of them around (since I live in central Nebraska). How far do you really think I can go?

    I hope you only 'travel' around your house. That's about as far as you can go before losing your wifi connection. Alright, might work in the backyard. Seriously, check the range of your router. Mine covers 200 feet, more than enough for my apartment. Certainly not enough to travel and remain connected.

  • How to copy from one Version to Another version with single click

    Hi Everone,
    Users wants to copy from one version to another version with single click only. I.e Actuals to Planning etc.,
    They don't want use standard COPY Data manager package to do this activity as this involves many steps.
    Please let me know Is there any way to COPY with single click. Thanks in advance!!
    Regards,
    Viswanath

    Hi Viswanath,
    Use /CPMB/DEFAULT_FORMULAS
    Then edit automatically created advanced script:
    PROMPT(SELECTINPUT,,,,"%CATEGORY_DIM%,%CURRENCY_DIM%,%TIME_DIM%")
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,SUSER,%USER%)
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,SAPPSET,%APPSET%)
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,SAPP,%APP%)
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,SELECTION,%SELECTION%)
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,LOGICFILENAME,DEFAULT.LGF)
    Remove bold lines and change the script name in line with your script name:
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,SUSER,%USER%)
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,SAPPSET,%APPSET%)
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,SAPP,%APP%)
    TASK(/CPMB/DEFAULT_FORMULAS_LOGIC,LOGICFILENAME,YOURLOGICNAME.LGF)
    Vadim

  • How to switch from legacy to native Android app with minimal interruption

    It's gotten to the point where I'm recommending that my client switch their DPS app for Android from legacy to native. Can anyone offer any insight into the process of changing that over for an existing app? Most of the Adobe support documents are written for starting a new app in native format. I need to give the client an idea of how the transition will affect existing subscribers on the Android platform (i.e. will they need to download a new app, or will it work as an update) and what we can do to retain readers if they do need to download an entirely new app.
    Complicating the situation is that the client likely will want to keep the legacy app as long as we can to continue offering it on Amazon, because Kindle devices account for 60 percent of our non-iOS downloads.
    Thank you!

    To replace the existing legacy viewer, simply use the same Bundle ID used in the legacy app when you build the native Android viewer, and then submit the app as a new version in the Google Play Developer Portal. To locate the Bundle ID for the legacy viewer, open the desktop version of DPS App Builder and look at the list of apps. It might include a .air prefix, depending on when the app was built. If it does, use the .air prefix when you specify the Bundle ID for the native viewer, even though it's not an AIR app. The Bundle ID just needs to be the same. If you want two separate apps--which I don't recommend--use a different Bundle ID and submit it in the Developer Portal as a new app.
    The Amazon app is a different app that's unrelated to the Google Play app. You can continue to leave the app in the Amazon Appstore.

  • How to export from ituns contact list to file, with no iphone exist (water demage)

    hi
    my iphone have water damage so i cant use him.
    i need to take my conntact list from ituns to file any format ( xls , txt , csv ...... )
    help i dont wont to belive apple didnot think about this

    I don't know if there are tools to do this, but the next time you plug an iOS device with your iTunes, you will be able to restore all your Contacts to this iOS device (Ipod Touch/iPad or iPhone)

  • How get data from business object to xml file

    Hi all,
    My new problem is ,,
    In my application, I have check list of selected business partners. In that , I want to save the checked oBusinessPartners complete information to an XML file(created dynamically),
    How to do?
    Thanks in advance
    shashi kiran

    Shashi Kiran,
    Can you explain me detail where
    you want to save check business partners in xml ?
    Jeyakanthan

  • How to print from iPad to printer set up with airport extreme

    I was able to connect my printer to the USB port on my airport extreme and I was able to print fom my iMac the printer is online and I am sharing the printer on the network. However from my iPad when I click share then choose printer it searches for the printer but does not see it so I am not able to print from my iPad first generation any help I can use all the support please

    This tweak of OS X 10.6.x might help you: https://discussions.apple.com/thread/2658720?threadID=2658720&tstart=0
    I've been using it with AirPrint since OS X 10.6.5 to connect with a WiFi-connected Canon Pixma MP560 and a USB-connected HP LaserJet 1320. (Haven't tried it with OS X 10.7 Lion, and no plans to upgrade.)
    Also, check the App Store for apps from your printer manufacturer.
    Apps such as Printopia and others are highly recommended and allow printing to a variety of devices, but I have not tried it.

  • How to map from one URL to another URL with webcache

    Hi Im trying to map http://www.myserver.com to http://www.myoriginserver.com/app/Servlet1
    I have tried
    Origin server = http://www.myoriginserver.com/app/Servlet1
    But as soon I put anything after .com the webcache server will not start up again.
    so Origin server = http://www.myoriginserver.com works.
    I have also tried to set it up as a proxy but same error.
    Is there any other way of doing this?
    I am using
    Oracle Application Server Web Cache 10g (10.1.2)
    Build 10.1.2.2.0 060920

    http://oamidam.wordpress.com/category/oracle-web-cache/

  • How can I set connection to external XML file with Dreamweaver to buiild AIR app?

    Hello,
    I try to do simple AIR app in dreamweaver. It's not problem
    to use static data. But I'd like to use dynamic data from external
    XML file. I try to use Spry and evrything works fine in web browser
    but i have problem with loading external XML data into my app in
    AIR. Can I simply transform my spry based html app into AIR?
    What should I add to do this?
    Pawel

    Daniel Lichtenwald wrote:
    What are the requirements and steps for arranging to receive this large file using File Transfer Protocol (FTP)?
    Usually, we don't speak of "receive" when using FTP, since the file is transferred from server to client, so it's more of a case of "download".
    At your end, it's simple. You use an FTP client; under SL, that includes Finder and Safari, so you don't even need to get any additional software.
    At the other end, it's more complicated; the 'sender' must set up an FTP server on his machine.
    Alternatively, you can set up your own Mac as an FTP server, and have the 'sender' connect to you with an FTP client and upload the file; but, if your Mac lives behind a router, then you have more work to do with the router settings.
    That's why it's much easier to use the file sharing services mentioned above -- if they are available in both sender's and receiver's locations. (Keep in mind that some countries block access to all those mentioned -- except perhaps <www.transfer.ro>, of which I know absolutely nothing.)

Maybe you are looking for