• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How XML transfers between servers?

 
Ranch Hand
Posts: 41
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If I want to automatically transfer the data from database in
server A (weblogic server 5.1) to the database
in server B (cold fusion4), how can I make use of
XML? can anyone give me the detailed procedure even the coding?
it is my grateful if anyone can help me. anyway, thanks to your
concern and help

------------------
 
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
One option you have is to use WDDX which is an XML format for transferring objects in between servers that may be on different platforms. Go to www.openwddx.org to download the toolkit as well as information on using it.
What you would do is run the query on your Weblogic machine and save the results as a WDDX record set. You could then pass this to ColdFusion (have CF make a CFHTTP request or use CFOBJECT) which could then parse the result set and place it into the desired database.
------------------
Jeremy Crosbie
Co-Author of Professional Java XML
reply
    Bookmark Topic Watch Topic
  • New Topic