OT: XML and SQL Server 05

2006-08-21 Thread Ken Ferguson
I've got something that's a bit OT here. I was going to write something
to parse all of this XML against these XSD's, but I just don't want to
do it. All I want is to be able to import the data right into SQL
Server. I know that xml works as a datatype in SQL Server 05, but that's
not what I need. What I need is XML Bulk Insert. I've written a VBScript
to run the bulk insert with the xml and the schema. I was so excited
that I was about to watch all that data just fly into the db. But of
course, reality had to show its ugly head. Instead of a bunch of data, I
got only one frustrating error message: Multiple base for derived type
is not supported - that's the message. What do you mean it's not
supported? Multiple types are basic. Does anyone have any experience
with this and if so, would you be willing to give me a few pointers? I
have a almost a gig of xml data I need to import against a schema that
is about 12,340 lines long!
 
Thanks,
 
Ken Ferguson
214.636.6126
www.fergusonhouse.com http://www.fergusonhouse.com/ 
 
 
 



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250453
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


OT : XML to HTML

2006-07-17 Thread Jason Radosevich
Hi,
 I have a XML document that was created in Infopath that we need to
have it exported into HTML.   Anyone have any ideas on which direction
to point me to do this (non CF)

 Any ideas would be great ..


?xml version=1.0 encoding=UTF-8??mso-infoPathSolution
solutionVersion=1.0.0.7 PIVersion=1.0.0.0
href=http://sharepoint/sites/TSC/TSC%20PIF%20Submission%20Form/Forms/template.xsn;
name=urn:schemas-microsoft-com:office:infopath:TSC-PIF-Submission-Form:-myXSD-2006-07-04T14-46-14
productVersion=11.0.6357 ??mso-application
progid=InfoPath.Document?my:myFields
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
xmlns:my=http://schemas.microsoft.com/office/infopath/2003/myXSD/2006-07-04T14:46:14;
xmlns:xd=http://schemas.microsoft.com/office/infopath/2003;
xml:lang=en-us
my:field1/my:field1
my:field2/my:field2
my:field3/my:field3
my:field4/my:field4
my:field5/my:field5
my:field6/my:field6
my:field20minimum 8/my:field20
my:field21Uses Windows passwords/my:field21
my:field22/my:field22
my:field23/my:field23
my:field24/my:field24
my:field25SAN/my:field25
my:field26/my:field26
my:field27/my:field27
-- 
--
Jason Radosevich
http://www.terminalfusion.com

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246795
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: OT : XML to HTML

2006-07-17 Thread Ian Skinner
Here is and xsl file that we use to convert XML into html.

Feel free to ask questions about the details.

?xml version=1.0 encoding=iso-8859-1?!DOCTYPE xsl:stylesheet  [
!ENTITY nbsp   #160;
!ENTITY copy   #169;
!ENTITY reg#174;
!ENTITY trade  #8482;
!ENTITY mdash  #8212;
!ENTITY ldquo  #8220;
!ENTITY rdquo  #8221; 
!ENTITY pound  #163;
!ENTITY yen#165;
!ENTITY euro   #8364;
]
xsl:stylesheet version=1.0 xmlns:xsl=http://www.w3.org/1999/XSL/Transform;
xsl:output method=html encoding=iso-8859-1 /
xsl:template match=/BSNews/release
!-- @id= a place holder used for a find and replace in order to allow the news 
article id to be passed in via url.newsReleaseID for the dynamic display of 
news articles. --
xsl:if test=self::node()[EMAIL PROTECTED]'x0xox0x0']
!-- News Type --
p
xsl:value-of select=category /br /
For Immediate Release
/p

!-- Contact Information --
p
CONTACT: xsl:value-of select=contact/firstName 
/nbsp;xsl:value-of select=contact/lastName /br /
xsl:for-each select=contact/phone
xsl:value-of select=@type / Number: 
xsl:value-of select=. /br /
/xsl:for-each 
xsl:for-each select=contact/email
xsl:value-of select=@type / E-Mail Address: 
xsl:value-of select=. /br /
/xsl:for-each
/p

!-- Title --  
h2 class=articleTitlexsl:value-of select=article/title 
//h2
p class=articleSubTitlexsl:value-of 
select=article/subTitle //p

!-- Image --
xsl:if test=article/image
xsl:element name=img
xsl:attribute 
name=src/images/NewsRoom/xsl:value-of select=article/image 
//xsl:attribute
xsl:attribute name=alignmiddle/xsl:attribute
/xsl:element
/xsl:if

!-- Article --
xsl:copy-of select=article/content /
/xsl:if
/xsl:template
/xsl:stylesheet


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246800
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: OT : XML to HTML

2006-07-17 Thread Jason Radosevich
Thank you..

  The only thing that i know about XML is what it stands for..

 At least now i have a direction to go to  :-)

On 7/17/06, Ian Skinner [EMAIL PROTECTED] wrote:
 Here is and xsl file that we use to convert XML into html.

 Feel free to ask questions about the details.

 ?xml version=1.0 encoding=iso-8859-1?!DOCTYPE xsl:stylesheet  [
!ENTITY nbsp   #160;
!ENTITY copy   #169;
!ENTITY reg#174;
!ENTITY trade  #8482;
!ENTITY mdash  #8212;
!ENTITY ldquo  #8220;
!ENTITY rdquo  #8221;
!ENTITY pound  #163;
!ENTITY yen#165;
!ENTITY euro   #8364;
 ]
 xsl:stylesheet version=1.0 
 xmlns:xsl=http://www.w3.org/1999/XSL/Transform;
 xsl:output method=html encoding=iso-8859-1 /
 xsl:template match=/BSNews/release
 !-- @id= a place holder used for a find and replace in order to allow the 
 news article id to be passed in via url.newsReleaseID for the dynamic display 
 of news articles. --
xsl:if test=self::node()[EMAIL PROTECTED]'x0xox0x0']
 !-- News Type --
p
xsl:value-of select=category /br /
For Immediate Release
/p

 !-- Contact Information --
p
CONTACT: xsl:value-of select=contact/firstName 
 /nbsp;xsl:value-of select=contact/lastName /br /
xsl:for-each select=contact/phone
xsl:value-of select=@type / Number: 
 xsl:value-of select=. /br /
/xsl:for-each
xsl:for-each select=contact/email
xsl:value-of select=@type / E-Mail 
 Address: xsl:value-of select=. /br /
/xsl:for-each
/p

 !-- Title --
h2 class=articleTitlexsl:value-of select=article/title 
 //h2
p class=articleSubTitlexsl:value-of 
 select=article/subTitle //p

 !-- Image --
xsl:if test=article/image
xsl:element name=img
xsl:attribute 
 name=src/images/NewsRoom/xsl:value-of select=article/image 
 //xsl:attribute
xsl:attribute name=alignmiddle/xsl:attribute
/xsl:element
/xsl:if

 !-- Article --
xsl:copy-of select=article/content /
/xsl:if
 /xsl:template
 /xsl:stylesheet


 --
 Ian Skinner
 Web Programmer
 BloodSource
 www.BloodSource.org
 Sacramento, CA

 -
 | 1 |   |
 -  Binary Soduko
 |   |   |
 -

 C code. C code run. Run code run. Please!
 - Cynthia Dunning

 Confidentiality Notice:  This message including any
 attachments is for the sole use of the intended
 recipient(s) and may contain confidential and privileged
 information. Any unauthorized review, use, disclosure or
 distribution is prohibited. If you are not the
 intended recipient, please contact the sender and
 delete any copies of this message.




 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246824
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


OT: XML / XSLT / XPath

2005-09-17 Thread Michael Tangorre
Anyone have any book recommendations for XML/XSLT/Xpath ?

Thanks!

Mike T.



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218542
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


re: OT: XML / XSLT / XPath

2005-09-17 Thread dave
soory not a book rec' but the new dw has some ass kickin xml/xls tools!

~Dave the disruptor~
Some people just don't appreciate how difficult it is to dispense wisdom and 
abuse at the same time. 


From: Michael Tangorre [EMAIL PROTECTED]
Sent: Saturday, September 17, 2005 4:32 PM
To: CF-Talk cf-talk@houseoffusion.com
Subject: OT: XML / XSLT / XPath 

Anyone have any book recommendations for XML/XSLT/Xpath ?

Thanks!

Mike T.



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218543
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


OT: XML generation with CF

2005-08-24 Thread julian
Greetings all,
I've successfully used the XmlNew(), XmlElemNew()functions to create an XML 
document, add elements, attributes etc based on the results of several queries.
I need to add the !DOCTYPE declaration to define the DTD being used. CFMX 
generated the ?xml version=1.0 encoding=UTF-8 ? line automatically. I 
can't find a way to write the !DOCTYPE declaration before the beginning of 
the definition of the root element using this form of the syntax.
I've also tried using the CFXML tag to no avail.
Any ideas about how to place something between the autogenerated ?xml 
statement and the beginning of the element definitions?
tia,
Julian

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216193
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


OT: XML via OLEDB

2004-11-18 Thread Dustin Snell
Sorry for the OT post. Does anyone know if it there is an OLEDB driver that
allows you to access an XML file as a database and query it? 

-Dustin



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184825
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


OT: XML Spy error when going to Schema view on XML file

2004-11-03 Thread Damien McKenna
I'm attempting to go into Schema view in XML Spy Home 2005 on the 
enclosed XML file when it gives the error Unable to show schema.  
Schema has to begin with a schema-element!.  Anyone have any ideas what 
I'm missing in my files?  Thanks.
-- 
*Damien McKenna* - Web Developer - [EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
Why are you wearing that stupid man suit? - Frank

TLCircle.xml:

?xml version=1.0 encoding=UTF-8?
TLCircle xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xsi:noNamespaceSchemaLocation=TLCircle.xsd
Member MemberID=1234 ShowPicture=yes
NameJoe Blogs/Name
LocationTexas/Location
Biography/
/Member
/TLCircle

TLCircle.xsd:

?xml version=1.0 encoding=UTF-8 standalone=no?
!--W3C Schema generated by XMLSpy v2005 U (http://www.xmlspy.com)--
!--Please add namespace attributes, a targetNamespace attribute and 
import elements according to your requirements--
xs:schema xmlns:xs=http://www.w3.org/2001/XMLSchema; 
elementFormDefault=qualified
xs:element name=TLCircle
xs:complexType
xs:sequence
xs:element ref=Member maxOccurs=unbounded/
/xs:sequence
/xs:complexType
/xs:element
xs:element name=Member
xs:complexType
xs:sequence
xs:element ref=Name/
xs:element ref=Location/
xs:element ref=Biography minOccurs=0 
maxOccurs=unbounded/
/xs:sequence
xs:attribute name=MemberID type=xs:integer use=required/
xs:attribute name=ShowPicture use=required
xs:simpleType
xs:restriction base=xs:NMTOKEN
xs:enumeration value=yes/
xs:enumeration value=no/
/xs:restriction
/xs:simpleType
/xs:attribute
/xs:complexType
/xs:element
xs:element name=Name type=xs:string/
xs:element name=Location type=xs:string/
xs:element name=Biography type=xs:string/
/xs:schema


~|
Get the mailserver that powers this list at 
http://www.houseoffusion.com/banners/view.cfm?bannerid=17

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:183291
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


OT: XML Scheme for Region/Location (tds)

2003-01-31 Thread powell
You might try doing a GOOGLE search on +GEDCOM +XML and checking out the documents 
that come up.  GEDCOM is a genealogy software standard for interchanging data between 
applications.  There was a big effort a few years ago to come up with an XML spec for 
it, which included among other things the representation for a source document's exact 
location.

Good Luck,
-reed
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




OT: XML Scheme for Region/Location (tds)

2003-01-28 Thread Troy Simpson
Does anyone know if there is any published information about
representing geographical location information in XML.  I want to
specify a location starting at a root level and drill down to the
smallest location unit.  For example, the following would be a full
location descriptor of where an artifact might be located.

Solar System, Earth, North America, United States, North Carolina, Wake
County, Raleigh, North Carolina State University, DH Hill Library, Room
216, Cubical A.

I would want the XML data to represent the Region's Name (Earth) and
Region's Type (Planet) among other things.

I would presume that this would normally be represented in a Tree like
structure.  I'm sure this has been addressed by the XML Gurus and maybe
a document does exist that describes a standard (DTD, Schema) that I can
reuse.

Does anyone know of anything or where I might be able to go to look?

I've searched the internet and only come up with GIS which is more
complicated that what I need.

Thanks for your help,
Troy
--
-
Troy Simpson
  Applications Analyst/Programmer, OCPDBA, MCSE, SCSA
North Carolina State University Libraries
Campus Box 7111 | Raleigh | North Carolina
ph.919.515.3855 | fax.919.513.3330
E-mail: [EMAIL PROTECTED]


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




OT: XML

2002-10-18 Thread Ray Bujarski
Sorry this is so far off topic, but...
I am working with an application that generates XML.  We are using xml to
integrate a CF application with some perl wrappers we are developing.
We reached a point where we are wondering if we made the right decision.
XML is SO verbose! With such limited functionallity, (i.e. no else
statements when using if).
Does anyone know of a better way to work with XML documents, with more built
in functions.
We are pulling our hair out and getting carple tunnel from all of the extra
typing involved ;-)
Thanks for any input on this.
Ray

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: OT: XML

2002-10-18 Thread jon hall
Coldfusion and Perl have if/else functionality...use it, that's what
the application server's role in life is. XML is only a data format,
XSL which you eluded to doesn't have an else statement, true, but XSL
isn't really a procedural language anyway.

Some questions that come to my mind...
What parser are you using?
What kind of data?
Why did you choose XML as your data format?

-- 
 jon
 mailto:jonhall;ozline.net

Friday, October 18, 2002, 5:15:41 PM, you wrote:
RB Sorry this is so far off topic, but...
RB I am working with an application that generates XML.  We are using xml to
RB integrate a CF application with some perl wrappers we are developing.
RB We reached a point where we are wondering if we made the right decision.
RB XML is SO verbose! With such limited functionallity, (i.e. no else
RB statements when using if).
RB Does anyone know of a better way to work with XML documents, with more built
RB in functions.
RB We are pulling our hair out and getting carple tunnel from all of the extra
RB typing involved ;-)
RB Thanks for any input on this.
RB Ray

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



OT: XML Weather....

2002-05-24 Thread James Maltby

Do any of you fine people know of a free XML European wide weather feed?

TIA

J
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT XML

2002-03-13 Thread Tyler Clendenin

I have an XML file.  one of the elements has data in it.  It is for e-mail.

her is an example:
totyler [EMAIL PROTECTED]/to

current dtd:
!ELEMENT to (#PCDATA)

the parser has a problem with this since the  and  signs are not tag
signifiers.  can anyone tell me how i can change my dtd so that it doesn't
worry about it

unfortunatly i cannot change how the xml files are written since it is a 3rd
party software.



__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: XML and IE

2002-01-24 Thread savan . thongvanh

Does anyone have a resource for loading and scripting XML documents within
IE?  I know msxml is built into IE5+ and there is a IE DOM object for it
but can't find any resources on it.

Thanks-Savan
__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Quasi OT: XML Parsing solutions

2001-10-26 Thread Carlisle, Eric

I'm getting to the point where I'm starting to depend more and more on
content providers and XML.  I wanted to get opinions on server side XML
parsing solutions.  How is the MS one?  Are there better ones?

Many thanks :)
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Quasi OT: XML Parsing solutions

2001-10-26 Thread Joseph DeVore

You might find this useful in your quest:
http://www.siteobjects.com/examples/soxml/index.cfm


Joseph DeVore
VeloxWeb Technologies



-Original Message-
From: Carlisle, Eric [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 26, 2001 12:14 PM
To: CF-Talk
Subject: Quasi OT: XML Parsing solutions


I'm getting to the point where I'm starting to depend more and more on
content providers and XML.  I wanted to get opinions on server side XML
parsing solutions.  How is the MS one?  Are there better ones?

Many thanks :)

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Quasi OT: XML Parsing solutions

2001-10-26 Thread Gary Kraeger

www.cfdev.com has one

Gary
- Original Message -
From: Carlisle, Eric [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, October 26, 2001 3:13 PM
Subject: Quasi OT: XML Parsing solutions


 I'm getting to the point where I'm starting to depend more and more on
 content providers and XML.  I wanted to get opinions on server side XML
 parsing solutions.  How is the MS one?  Are there better ones?

 Many thanks :)
 
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Quasi OT: XML Parsing solutions

2001-10-26 Thread Pete Freitag

I wrote CFX_XMLParser a Java CFX tag, that parses faster than the MS XML
parser invoked through CFOBJECT.  You can get it for free at
http://www.cfdev.com/xml

++
Pete Freitag ([EMAIL PROTECTED])
CFDEV.COM
ColdFusion Developer Resources
http://www.cfdev.com/


-Original Message-
From: Carlisle, Eric [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 26, 2001 3:14 PM
To: CF-Talk
Subject: Quasi OT: XML Parsing solutions


I'm getting to the point where I'm starting to depend more and more on
content providers and XML.  I wanted to get opinions on server side XML
parsing solutions.  How is the MS one?  Are there better ones?

Many thanks :)

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT: XML Questions

2001-08-30 Thread tom dyson

Hi there

 So, anyways, I'm creating a DTD for an XML document and have a few
 questions...
 
 I have a vendor that has an address.  The address consists of various elements
 such as street, city, etc.  Now then, the address element itself has no
 attributes or data directly in it.  Is it worth having an address element?
 
 e.g.
 
 address
 street123 any street/street
 citycalgary/city
 /address

While not necessary, the address element is probably a good idea: it helps
to define the child elements and might make it easier for you to get at
various bits of your document later on (using XPath functions in DOM or XSLT
manipulation). It also makes your document more human-readable, which is
often a good thing. Finally, 'branchy' documents generally allow for better
parser performance than flat ones - it's quicker for an XML processor to
find 'vendor/address/city' than to scan all the nodes for 'city' elements.

 Also, when creating the XML document, if there is no street, should I do
 street/street or just omit the attribute altogether?  Do parsers get angry
 when there are elements that are empty?

Parsers generally cope with empty elements pretty well. My opinion is that
it's better to have an empty element than to omit it altogether (unless
keeping your document compact is a crucial consideration), since it's
usually easier to edit the contents of an element than to check whether or
not it exists and then create a new one with the relevant data. And again,
it makes the structure of the document more obvious to human readers.

We've set up a CF / XML mailing list where this question wouldn't be quite
so OT! If you're interested, you can join up at

http://torchbox.com/xml/

Best wishes

Tom

-+
tom dyson
t: +44 (0)1608 811870
m: +44 (0)7958 752657
[EMAIL PROTECTED]
http://torchbox.com



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: XML Questions

2001-08-29 Thread Kwang Suh

So, anyways, I'm creating a DTD for an XML document and have a few questions...

I have a vendor that has an address.  The address consists of various elements such as 
street, city, etc.  Now then, the address element itself has no attributes or data 
directly in it.  Is it worth having an address element?

e.g.

address
street123 any street/street
citycalgary/city
/address

Also, when creating the XML document, if there is no street, should I do 
street/street or just omit the attribute altogether?  Do parsers get angry when 
there are elements that are empty?


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: XML and Java training?

2001-05-10 Thread Braver, Ben

My boss and I are being asked by hq to get training in XML and Java.

Can anybody in this multi-disciplinary group of wizards recommend a training
source?
(We're in the San Francisco Bay Area.)

Thanks!

Ben Braver
Information Technology
Ultramar Inc.
Golden Eagle Refinery
150 Solano Way
Martinez, CA  94553-1487
(925) 370-3673 voice
(925) 370-3393 fax
(510) 716-2557 pager
[EMAIL PROTECTED]


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: [OT: XML and Java training?]

2001-05-10 Thread Alex

U of Hawaii for a few weeks.

Braver, Ben [EMAIL PROTECTED] wrote:
My boss and I are being asked by hq to get training in XML and Java.

Can anybody in this multi-disciplinary group of wizards recommend a training
source?
(We're in the San Francisco Bay Area.)

Thanks!

Ben Braver
Information Technology
Ultramar Inc.
Golden Eagle Refinery
150 Solano Way
Martinez, CA  94553-1487
(925) 370-3673 voice
(925) 370-3393 fax
(510) 716-2557 pager
[EMAIL PROTECTED]
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: [OT: XML and Java training?]

2001-05-10 Thread Billy Cravens

Productivity Point is pretty good: www.propoint.com

--
Billy Cravens
HR Web Development, Sabre
[EMAIL PROTECTED]



Alex wrote:

 U of Hawaii for a few weeks.

 Braver, Ben [EMAIL PROTECTED] wrote:
 My boss and I are being asked by hq to get training in XML and Java.

 Can anybody in this multi-disciplinary group of wizards recommend a training
 source?
 (We're in the San Francisco Bay Area.)

 Thanks!

 Ben Braver
 Information Technology
 Ultramar Inc.
 Golden Eagle Refinery
 150 Solano Way
 Martinez, CA  94553-1487
 (925) 370-3673 voice
 (925) 370-3393 fax
 (510) 716-2557 pager
 [EMAIL PROTECTED]

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: XML-DTD-Text to DTD-graphics converter ?

2001-04-10 Thread cf-talk

Hi, does s.o. know of a tool
to convert XML-DTD-Text to DTD-graphics ?

Smart-Draw from smartdraw.com isn't able to do this.
I will look if Visio can do this. But there might be other tools out.
Thanks for any help.

Uwe


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: xml ms lib menu tree?

2001-02-27 Thread moonerent

Hello,

Is the source code for the menu tree found at
http://msdn.microsoft.com/library/default.asp available?

I have a very large xml doc I need to load in small sections, based on what
part of the tree the user clicks on. The aforementioned menu tree does that.

TIA,

Rick
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



ot xml

2000-09-18 Thread Gavin Myers

Does anyone have any good book references for xml? 
Using a scale of 0 - 10
0 meaing incredibelly beginner
10 meaning super advanced


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: ot xml

2000-09-18 Thread Paige Chandler

There is a XML for Dummies. I have it but have only started.

Regards,

Paige
- Original Message -
From: "Gavin Myers" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, September 18, 2000 11:48 AM
Subject: ot xml


 Does anyone have any good book references for xml?
 Using a scale of 0 - 10
 0 meaing incredibelly beginner
 10 meaning super advanced


 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: ot xml

2000-09-18 Thread Stewart McGowan

Building Web Sites with XML by Michael Floyd is ok, and There's a SAMS Teach
yourself XML book which is ok to start with, the Sams book ISBN is
0672319500, the other one is at home, you should be able to find it on
amazon though.


Regards
 

Stew
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: ot xml

2000-09-18 Thread Ryan

At 10:48 9/18/00 -0500, you wrote:
Does anyone have any good book references for xml? 
Using a scale of 0 - 10
0 meaing incredibelly beginner
10 meaning super advanced

I've heard this one is good. I just bought it but havn't looked
through it yet. I find the amazon user reviews very helpful to
see if a book is any good. Most of the other XML ones have bad reviews.
XML: A Primer, by Simon St. Laurent, ISBN 076453310X
http://www.amazon.com/exec/obidos/ASIN/076453310X/qid=968709640/sr=1-2/103-8594345-4976629

By its title, I'd say its a 0-3.

RPS

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: ot xml

2000-09-18 Thread Sean Driscoll

This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

--_=_NextPart_001_01C02190.75BDBBC0
Content-Type: text/plain;
charset="iso-8859-1"

If you are using XML for the web and plan to use the Microsoft COM object or
Internet Explorer to view/XML or XSL stylesheets,
http://msdn.microsoft.com/xml/default.asp is surprisingly well organized and
useful.

Sean

-Original Message-
From: Gavin Myers [mailto:[EMAIL PROTECTED]]
Sent: Monday, September 18, 2000 11:49 AM
To: '[EMAIL PROTECTED]'
Subject: ot xml


Does anyone have any good book references for xml? 
Using a scale of 0 - 10
0 meaing incredibelly beginner
10 meaning super advanced



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--_=_NextPart_001_01C02190.75BDBBC0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"
HTML
HEAD
META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
charset=3Diso-8859-1"
META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
5.5.2650.12"
TITLERE: ot xml/TITLE
/HEAD
BODY

PFONT SIZE=3D2If you are using XML for the web and plan to use the =
Microsoft COM object or Internet Explorer to view/XML or XSL =
stylesheets, A HREF=3D"http://msdn.microsoft.com/xml/default.asp" =
TARGET=3D"_blank"http://msdn.microsoft.com/xml/default.asp/A is =
surprisingly well organized and useful./FONT/P

PFONT SIZE=3D2Sean/FONT
/P

PFONT SIZE=3D2-Original Message-/FONT
BRFONT SIZE=3D2From: Gavin Myers [A =
HREF=3D"mailto:[EMAIL PROTECTED]"mailto:Gavin.Myers@lightrod=
soft.COM/A]/FONT
BRFONT SIZE=3D2Sent: Monday, September 18, 2000 11:49 AM/FONT
BRFONT SIZE=3D2To: '[EMAIL PROTECTED]'/FONT
BRFONT SIZE=3D2Subject: ot xml/FONT
/P
BR

PFONT SIZE=3D2Does anyone have any good book references for xml? =
/FONT
BRFONT SIZE=3D2Using a scale of 0 - 10/FONT
BRFONT SIZE=3D20 meaing incredibelly beginner/FONT
BRFONT SIZE=3D210 meaning super advanced/FONT
/P
BR

PFONT =
SIZE=3D2---=
---/FONT
BRFONT SIZE=3D2Archives: A =
HREF=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/" =
TARGET=3D"_blank"http://www.mail-archive.com/cf-talk@houseoffusion.com/=
/A/FONT
BRFONT SIZE=3D2To Unsubscribe visit A =
HREF=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlistsbody=3Dli=
sts/cf_talk" =
TARGET=3D"_blank"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists=
body=3Dlists/cf_talk/A or send a message to =
[EMAIL PROTECTED] with 'unsubscribe' in the =
body./FONT/P

/BODY
/HTML
--_=_NextPart_001_01C02190.75BDBBC0--
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: ot xml

2000-09-18 Thread Christopher S Martin

The XML Biible is a great book.  It has just about everything from begginer,
to XML God.
I like it.

Chris Martin
[EMAIL PROTECTED]
www.fsenablers.com
www.fslink.com
- Original Message -
From: "Gavin Myers" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, September 18, 2000 11:48
Subject: ot xml


 Does anyone have any good book references for xml?
 Using a scale of 0 - 10
 0 meaing incredibelly beginner
 10 meaning super advanced


 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: OT-XML-SOAP...

2000-05-15 Thread Cary Gordon

me too, me too

Where can I pick one up?

Cary

At 09:08 AM 5/12/00 -0700, you wrote:
I have done this with CF, I picked up a custom tag which used the MS-DOM to
parse an xml file and xsl file and output html for any browser to view it
worked great, but I believe it only worked fine with the CF server 4.5

Shawn Regan


Cary Gordon
The Cherry Hill Company

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT-XML-SOAP...

2000-05-15 Thread Sean Renet

Shawn, can you give me the details on how to get this stuff?
- Original Message -
From: "Cary Gordon" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, May 15, 2000 8:49 AM
Subject: RE: OT-XML-SOAP...


 me too, me too

 Where can I pick one up?

 Cary

 At 09:08 AM 5/12/00 -0700, you wrote:
 I have done this with CF, I picked up a custom tag which used the MS-DOM
to
 parse an xml file and xsl file and output html for any browser to view it
 worked great, but I believe it only worked fine with the CF server 4.5
 
 Shawn Regan


 Cary Gordon
 The Cherry Hill Company

 --

 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: OT-XML-SOAP...

2000-05-12 Thread Shawn Regan

This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

--_=_NextPart_001_01BFBC2C.4508ADB0
Content-Type: text/plain;
charset="iso-8859-1"

I have done this with CF, I picked up a custom tag which used the MS-DOM to
parse an xml file and xsl file and output html for any browser to view it
worked great, but I believe it only worked fine with the CF server 4.5

Shawn Regan 

-Original Message-
From: Sean Renet [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 11, 2000 10:47 AM
To: [EMAIL PROTECTED]
Subject: Re: OT-XML-SOAP...


Chris,
Other than the lame doc example, do you have or know of an example where CF
reads a XML doc and parses it into CF? Like if you used CFFILE to "read" the
doc into CF Variables?  Allaire's example in the knowledge base is buggy and
they have spent two weeks trying to find an answer to this same question.
- Original Message -
From: "Yvette Ingram" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, May 11, 2000 8:30 AM
Subject: Re: OT-XML-SOAP


 Chris:

 Thanks.  I'll check that.

 Yvette Ingram
 ColdFusion Programmer
 HWG-TA, ColdFusion 4
 Email: [EMAIL PROTECTED] or
 [EMAIL PROTECTED]
 ICQ:  21200397


 - Original Message -
 From: Chris Evans [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Thursday, May 11, 2000 8:53 AM
 Subject: RE: OT-XML-SOAP


  I believe this is similar to WDDX. The Web Distributed Data Exchange, or
  WDDX, is a free, open XML-based technology that allows Web applications
  created with any platform to easily exchange data with one another over
 the
  Web.  It is supported natively in CF.
 
  You can find out more info at http://www.wddx.org.
 
  Chris Evans
  [EMAIL PROTECTED]
  http://www.fuseware.com
 
  -Original Message-
  From: Yvette Ingram [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, May 10, 2000 9:39 PM
  To: [EMAIL PROTECTED]
  Subject: OT-XML-SOAP
 
 
  Does anyone know anything about XML-SOAP?  It's related to Microsoft.
 This
  is just something I picked up.  Does ColdFusion have something similar
or
  plan something similar?
 
  SOAP - Simple Access Object Protocol
 
  Remote objects can give a program almost unlimited power over the
 Internet,
  but most firewalls block non-HTTP requests. SOAP, an XML-based protocol,
  gets around this limitation to provide intraprocess communication across
  machines.
 
 
  Yvette Ingram
  ColdFusion Programmer
  HWG-TA, ColdFusion 4
  Email: [EMAIL PROTECTED] or
  [EMAIL PROTECTED]
  ICQ:  21200397
 
 
 

 --
 --
  --
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit
  http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
or
  send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
  the body.
 
 

 --
 
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.

 --

 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--_=_NextPart_001_01BFBC2C.4508ADB0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"
HTML
HEAD
META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
charset=3Diso-8859-1"
META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
5.5.2650.12"
TITLERE: OT-XML-SOAP.../TITLE
/HEAD
BODY

PFONT SIZE=3D2I have done this with CF, I picked up a custom tag =
which used the MS-DOM to parse an xml file and xsl file and output html =
for any browser to view it worked great, but I believe it only worked =
fine with the CF server 4.5/FONT/P

PFONT SIZE=3D2Shawn Regan /FONT
/P

PFONT SIZE=3D2-Original Message-/FONT
BRFONT SIZE=3D2From: Sean Renet [A =
HREF=3D"mailto:[EMAIL PROTECTED]"mailto:sean@broadcastdynamics=
.com/A]/FONT
BRFONT SIZE=3D2Sent: Thursday, May 11, 2000 10:47 AM/FONT
BRFONT SIZE=3D2To: [EMAIL PROTECTED]/FONT
BRFONT SIZE=3D2Subject: Re: OT-XML-SOAP.../FONT
/P
BR

PFONT SIZE=3D2Chris,/FONT
BRFONT SIZE=3D2Other than the lame doc example, do you have or know =
of an example where CF/FONT
BRFONT

Re: OT-XML-SOAP...

2000-05-12 Thread Sean Renet

I am running 4.5.  can you email me the custom tag and an example? that
would be greatly appreciated

thanks
Sean Renet
- Original Message -
From: "Shawn Regan" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, May 12, 2000 9:08 AM
Subject: RE: OT-XML-SOAP...


 This message is in MIME format. Since your mail reader does not understand
 this format, some or all of this message may not be legible.

 --_=_NextPart_001_01BFBC2C.4508ADB0
 Content-Type: text/plain;
 charset="iso-8859-1"

 I have done this with CF, I picked up a custom tag which used the MS-DOM
to
 parse an xml file and xsl file and output html for any browser to view it
 worked great, but I believe it only worked fine with the CF server 4.5

 Shawn Regan

 -Original Message-
 From: Sean Renet [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, May 11, 2000 10:47 AM
 To: [EMAIL PROTECTED]
 Subject: Re: OT-XML-SOAP...


 Chris,
 Other than the lame doc example, do you have or know of an example where
CF
 reads a XML doc and parses it into CF? Like if you used CFFILE to "read"
the
 doc into CF Variables?  Allaire's example in the knowledge base is buggy
and
 they have spent two weeks trying to find an answer to this same question.
 - Original Message -
 From: "Yvette Ingram" [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Thursday, May 11, 2000 8:30 AM
 Subject: Re: OT-XML-SOAP


  Chris:
 
  Thanks.  I'll check that.
 
  Yvette Ingram
  ColdFusion Programmer
  HWG-TA, ColdFusion 4
  Email: [EMAIL PROTECTED] or
  [EMAIL PROTECTED]
  ICQ:  21200397
 
 
  - Original Message -
  From: Chris Evans [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Thursday, May 11, 2000 8:53 AM
  Subject: RE: OT-XML-SOAP
 
 
   I believe this is similar to WDDX. The Web Distributed Data Exchange,
or
   WDDX, is a free, open XML-based technology that allows Web
applications
   created with any platform to easily exchange data with one another
over
  the
   Web.  It is supported natively in CF.
  
   You can find out more info at http://www.wddx.org.
  
   Chris Evans
   [EMAIL PROTECTED]
   http://www.fuseware.com
  
   -Original Message-
   From: Yvette Ingram [mailto:[EMAIL PROTECTED]]
   Sent: Wednesday, May 10, 2000 9:39 PM
   To: [EMAIL PROTECTED]
   Subject: OT-XML-SOAP
  
  
   Does anyone know anything about XML-SOAP?  It's related to Microsoft.
  This
   is just something I picked up.  Does ColdFusion have something similar
 or
   plan something similar?
  
   SOAP - Simple Access Object Protocol
  
   Remote objects can give a program almost unlimited power over the
  Internet,
   but most firewalls block non-HTTP requests. SOAP, an XML-based
protocol,
   gets around this limitation to provide intraprocess communication
across
   machines.
  
  
   Yvette Ingram
   ColdFusion Programmer
   HWG-TA, ColdFusion 4
   Email: [EMAIL PROTECTED] or
   [EMAIL PROTECTED]
   ICQ:  21200397
  
  
  
 

 --
  --
   --
   Archives: http://www.eGroups.com/list/cf-talk
   To Unsubscribe visit
  
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
 or
   send a message to [EMAIL PROTECTED] with 'unsubscribe'
 in
   the body.
  
  
 

 --
  
   Archives: http://www.eGroups.com/list/cf-talk
   To Unsubscribe visit
  http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
or
  send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
  the body.
 

 --
 
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
 

 --
--
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.

 --_=_NextPart_001_01BFBC2C.4508ADB0
 Content-Type: text/html;
 charset="iso-8859-1"
 Content-Transfer-Encoding: quoted-printable

 !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"
 HTML
 HEAD
 META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
 charset=3Diso-8859-1"
 META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
 5.5.2650.12"
 TITLERE: OT-XML-SOAP.../TITLE
 /HEAD
 BODY

 PFONT SIZE=3D2I have done this with CF, I picked up a custom tag =
 which used the MS-DOM to parse an xml file and xsl file and output html =
 for any browser to view it worked great, but I believe it only worked =
 fine with the CF server 4.5/FONT/P

 PFONT SIZE=3D2Shawn Regan /FONT
 /P

 PFONT SIZE=3D2-Original Message-/FONT
 

RE: OT-XML-SOAP

2000-05-11 Thread Chris Evans

I believe this is similar to WDDX. The Web Distributed Data Exchange, or
WDDX, is a free, open XML-based technology that allows Web applications
created with any platform to easily exchange data with one another over the
Web.  It is supported natively in CF.

You can find out more info at http://www.wddx.org.

Chris Evans
[EMAIL PROTECTED]
http://www.fuseware.com

-Original Message-
From: Yvette Ingram [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 10, 2000 9:39 PM
To: [EMAIL PROTECTED]
Subject: OT-XML-SOAP


Does anyone know anything about XML-SOAP?  It's related to Microsoft.  This
is just something I picked up.  Does ColdFusion have something similar or
plan something similar?

SOAP - Simple Access Object Protocol

Remote objects can give a program almost unlimited power over the Internet,
but most firewalls block non-HTTP requests. SOAP, an XML-based protocol,
gets around this limitation to provide intraprocess communication across
machines.


Yvette Ingram
ColdFusion Programmer
HWG-TA, ColdFusion 4
Email: [EMAIL PROTECTED] or
[EMAIL PROTECTED]
ICQ:  21200397




--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT-XML-SOAP

2000-05-11 Thread Yvette Ingram

Thanks.  My husband attended a VBA usergroup meeting recently and he said
there's talk about this becoming some kind of standard and it's before the
w3c.

I'll check out the link.

Yvette Ingram
ColdFusion Programmer
HWG-TA, ColdFusion 4
Email: [EMAIL PROTECTED] or
[EMAIL PROTECTED]
ICQ:  21200397


- Original Message -
From: Leong Yew [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, May 11, 2000 12:51 AM
Subject: RE: OT-XML-SOAP


 Look at the Jan 2000 issue of the Microsoft Internet Developer magazine.
 It's got a cover article on SOAP. You can find the article at
 http://www.microsoft.com/mind/ . The magazine's name has now changed and
so
 has the URL to the archives. You'll be redirected if you use the above
link.

 Leong

 -Original Message-
 From: Yvette Ingram [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, May 11, 2000 11:09 AM
 To: [EMAIL PROTECTED]
 Subject: OT-XML-SOAP


 Does anyone know anything about XML-SOAP?  It's related to Microsoft.
This
 is just something I picked up.  Does ColdFusion have something similar or
 plan something similar?

 SOAP - Simple Access Object Protocol

 Remote objects can give a program almost unlimited power over the
Internet,
 but most firewalls block non-HTTP requests. SOAP, an XML-based protocol,
 gets around this limitation to provide intraprocess communication across
 machines.


 Yvette Ingram
 ColdFusion Programmer
 HWG-TA, ColdFusion 4
 Email: [EMAIL PROTECTED] or
 [EMAIL PROTECTED]
 ICQ:  21200397



 --
--
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.

 --

 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT-XML-SOAP

2000-05-11 Thread Yvette Ingram

Chris:

Thanks.  I'll check that.

Yvette Ingram
ColdFusion Programmer
HWG-TA, ColdFusion 4
Email: [EMAIL PROTECTED] or
[EMAIL PROTECTED]
ICQ:  21200397


- Original Message -
From: Chris Evans [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, May 11, 2000 8:53 AM
Subject: RE: OT-XML-SOAP


 I believe this is similar to WDDX. The Web Distributed Data Exchange, or
 WDDX, is a free, open XML-based technology that allows Web applications
 created with any platform to easily exchange data with one another over
the
 Web.  It is supported natively in CF.

 You can find out more info at http://www.wddx.org.

 Chris Evans
 [EMAIL PROTECTED]
 http://www.fuseware.com

 -Original Message-
 From: Yvette Ingram [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, May 10, 2000 9:39 PM
 To: [EMAIL PROTECTED]
 Subject: OT-XML-SOAP


 Does anyone know anything about XML-SOAP?  It's related to Microsoft.
This
 is just something I picked up.  Does ColdFusion have something similar or
 plan something similar?

 SOAP - Simple Access Object Protocol

 Remote objects can give a program almost unlimited power over the
Internet,
 but most firewalls block non-HTTP requests. SOAP, an XML-based protocol,
 gets around this limitation to provide intraprocess communication across
 machines.


 Yvette Ingram
 ColdFusion Programmer
 HWG-TA, ColdFusion 4
 Email: [EMAIL PROTECTED] or
 [EMAIL PROTECTED]
 ICQ:  21200397



 --
--
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.


 --

 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT-XML-SOAP...

2000-05-11 Thread Sean Renet

Chris,
Other than the lame doc example, do you have or know of an example where CF
reads a XML doc and parses it into CF? Like if you used CFFILE to "read" the
doc into CF Variables?  Allaire's example in the knowledge base is buggy and
they have spent two weeks trying to find an answer to this same question.
- Original Message -
From: "Yvette Ingram" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, May 11, 2000 8:30 AM
Subject: Re: OT-XML-SOAP


 Chris:

 Thanks.  I'll check that.

 Yvette Ingram
 ColdFusion Programmer
 HWG-TA, ColdFusion 4
 Email: [EMAIL PROTECTED] or
 [EMAIL PROTECTED]
 ICQ:  21200397


 - Original Message -
 From: Chris Evans [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Thursday, May 11, 2000 8:53 AM
 Subject: RE: OT-XML-SOAP


  I believe this is similar to WDDX. The Web Distributed Data Exchange, or
  WDDX, is a free, open XML-based technology that allows Web applications
  created with any platform to easily exchange data with one another over
 the
  Web.  It is supported natively in CF.
 
  You can find out more info at http://www.wddx.org.
 
  Chris Evans
  [EMAIL PROTECTED]
  http://www.fuseware.com
 
  -Original Message-
  From: Yvette Ingram [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, May 10, 2000 9:39 PM
  To: [EMAIL PROTECTED]
  Subject: OT-XML-SOAP
 
 
  Does anyone know anything about XML-SOAP?  It's related to Microsoft.
 This
  is just something I picked up.  Does ColdFusion have something similar
or
  plan something similar?
 
  SOAP - Simple Access Object Protocol
 
  Remote objects can give a program almost unlimited power over the
 Internet,
  but most firewalls block non-HTTP requests. SOAP, an XML-based protocol,
  gets around this limitation to provide intraprocess communication across
  machines.
 
 
  Yvette Ingram
  ColdFusion Programmer
  HWG-TA, ColdFusion 4
  Email: [EMAIL PROTECTED] or
  [EMAIL PROTECTED]
  ICQ:  21200397
 
 
 

 --
 --
  --
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit
  http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
or
  send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
  the body.
 
 

 --
 
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.

 --

 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



OT-XML-SOAP

2000-05-10 Thread Yvette Ingram

Does anyone know anything about XML-SOAP?  It's related to Microsoft.  This
is just something I picked up.  Does ColdFusion have something similar or
plan something similar?

SOAP - Simple Access Object Protocol

Remote objects can give a program almost unlimited power over the Internet,
but most firewalls block non-HTTP requests. SOAP, an XML-based protocol,
gets around this limitation to provide intraprocess communication across
machines.


Yvette Ingram
ColdFusion Programmer
HWG-TA, ColdFusion 4
Email: [EMAIL PROTECTED] or
[EMAIL PROTECTED]
ICQ:  21200397



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT-XML-SOAP

2000-05-10 Thread Yvette Ingram

That should be SOAP - Simple Object Access Protocol.

It's late, I'm tired.


Yvette Ingram
ColdFusion Programmer
HWG-TA, ColdFusion 4
Email: [EMAIL PROTECTED] or
[EMAIL PROTECTED]
ICQ:  21200397


- Original Message -
From: Yvette Ingram [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 10, 2000 9:39 PM
Subject: OT-XML-SOAP


 Does anyone know anything about XML-SOAP?  It's related to Microsoft.
This
 is just something I picked up.  Does ColdFusion have something similar or
 plan something similar?

 SOAP - Simple Access Object Protocol

 Remote objects can give a program almost unlimited power over the
Internet,
 but most firewalls block non-HTTP requests. SOAP, an XML-based protocol,
 gets around this limitation to provide intraprocess communication across
 machines.


 Yvette Ingram
 ColdFusion Programmer
 HWG-TA, ColdFusion 4
 Email: [EMAIL PROTECTED] or
 [EMAIL PROTECTED]
 ICQ:  21200397




--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: OT-XML-SOAP

2000-05-10 Thread Leong Yew

Look at the Jan 2000 issue of the Microsoft Internet Developer magazine.
It's got a cover article on SOAP. You can find the article at
http://www.microsoft.com/mind/ . The magazine's name has now changed and so
has the URL to the archives. You'll be redirected if you use the above link.

Leong

-Original Message-
From: Yvette Ingram [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 11, 2000 11:09 AM
To: [EMAIL PROTECTED]
Subject: OT-XML-SOAP


Does anyone know anything about XML-SOAP?  It's related to Microsoft.  This
is just something I picked up.  Does ColdFusion have something similar or
plan something similar?

SOAP - Simple Access Object Protocol

Remote objects can give a program almost unlimited power over the Internet,
but most firewalls block non-HTTP requests. SOAP, an XML-based protocol,
gets around this limitation to provide intraprocess communication across
machines.


Yvette Ingram
ColdFusion Programmer
HWG-TA, ColdFusion 4
Email: [EMAIL PROTECTED] or
[EMAIL PROTECTED]
ICQ:  21200397




--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.