Monday, October 09, 2006

Web Services are supposed to be interoperable, right? Well I'd like to think so at least. I've been continually frustrated about how .NET serializes DataSets. While it's gotten slightly better in 2.0, it's far from being interoperable. Since DataSets are the easiest way to retrieve data from a database, manipulate it etc., .NET has given us strong typed DataSets. With 2.0 they are even better with the addition of TableAdapters that allow you to easily write code to query the database right from the TableAdapter. This works great when hooking up to web page or WinForm controls, but not so great when using them for web services.

Here is what I mean... below is a snip-it of the WSDL of a simple Persons class that I wrote and used as a return type of my web service:

<s:complexType name="Persons">
<s:sequence>
  <s:element minOccurs="0" maxOccurs="1" name="Persons" type="tns:ArrayOfPerson" />
</s:sequence>
</s:complexType>
<s:complexType name="ArrayOfPerson">
<s:sequence>
  <s:element minOccurs="0" maxOccurs="unbounded" name="Person" nillable="true" type="tns:Person" />
</s:sequence>
</s:complexType>
<s:complexType name="Person">
<s:sequence>
  <s:element minOccurs="0" maxOccurs="1" name="FirstName" type="s:string" />
  <s:element minOccurs="0" maxOccurs="1" name="LastName" type="s:string" />
</s:sequence>
</s:complexType>
<s:complexType name="Persons">     

The WSDL schema for the Persons class above is really how it should look for the web service to be used by 'any' language or platform.Now, if I re-create this class as a typed DataSet in .NET, here is how it comes out:

<xs:schema xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:mstns="http://tempuri.org/Data.xsd" xmlns="http://tempuri.org/Data.xsd" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://tempuri.org/Data.xsd" id="Persons2" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element msdata:IsDataSet="true" msdata:UseCurrentLocale="true" name="Persons2">
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:element name="Person">
          <xs:complexType>
            <xs:sequence>
              <xs:element minOccurs="0" name="Firstname" type="xs:string" />
              <xs:element minOccurs="0" name="LastName" type="xs:string" />
            </xs:sequence>
          </xs:complexType>
        </xs:element>
      </xs:choice>
    </xs:complexType>
  </xs:element>
</xs:schema>

Not too bad, but as you can see, there is some Microsoft specific tags in it (msdata). What is worse is that if you look at the 'help' page generated by ASP.NET, you see this:

<GetPerson2Response xmlns="http://tempuri.org/">
  <GetPerson2Result>dataset</GetPerson2Result>
</GetPerson2Response>

The return type is 'dataset'? Yuck. Now, lets say I create a DataSet from a stored procedure which will automatically create a TableAdapter. For some reason, there is a lot more unwanted tags:

<xs:schema xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:mstns="http://tempuri.org/Pricing.xsd" xmlns:msprop="urn:schemas-microsoft-com:xml-msprop" xmlns="http://tempuri.org/Pricing.xsd" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://tempuri.org/Pricing.xsd" id="Pricing" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element msdata:IsDataSet="true" msdata:UseCurrentLocale="true" name="Pricing">
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:element name="sprptPricingWorldwide">
          <xs:complexType>
            <xs:sequence>
              <xs:element msprop:Generator_UserColumnName="Catalog Number" msprop:Generator_ColumnVarNameInTable="columnCatalog_Number" msprop:Generator_ColumnPropNameInRow="Catalog_Number" msprop:Generator_ColumnPropNameInTable="Catalog_NumberColumn" name="Catalog_x0020_Number">
                <xs:simpleType>
                  <xs:restriction base="xs:string">
                    <xs:maxLength value="15" />
                  </xs:restriction>
                </xs:simpleType>
              </xs:element>
              <xs:element minOccurs="0" name="ProductName">
                <xs:simpleType>
                  <xs:restriction base="xs:string">
                    <xs:maxLength value="160" />
                  </xs:restriction>
                </xs:simpleType>
              </xs:element>
              <xs:element msprop:Generator_UserColumnName="Dist 1" msprop:Generator_ColumnVarNameInTable="columnDist_1" msprop:Generator_ColumnPropNameInRow="Dist_1" msprop:Generator_ColumnPropNameInTable="Dist_1Column" minOccurs="0" name="Dist_x0020_1" type="xs:decimal" />
              <xs:element msprop:Generator_UserColumnName="Dist 2" msprop:Generator_ColumnVarNameInTable="columnDist_2" msprop:Generator_ColumnPropNameInRow="Dist_2" msprop:Generator_ColumnPropNameInTable="Dist_2Column" minOccurs="0" name="Dist_x0020_2" type="xs:decimal" />
              <xs:element msprop:Generator_UserColumnName="Dist 3" msprop:Generator_ColumnVarNameInTable="columnDist_3" msprop:Generator_ColumnPropNameInRow="Dist_3" msprop:Generator_ColumnPropNameInTable="Dist_3Column" minOccurs="0" name="Dist_x0020_3" type="xs:decimal" />
              <xs:element msprop:Generator_UserColumnName="Dist 4" msprop:Generator_ColumnVarNameInTable="columnDist_4" msprop:Generator_ColumnPropNameInRow="Dist_4" msprop:Generator_ColumnPropNameInTable="Dist_4Column" minOccurs="0" name="Dist_x0020_4" type="xs:decimal" />
              <xs:element msprop:Generator_UserColumnName="Dist Japan" msprop:Generator_ColumnVarNameInTable="columnDist_Japan" msprop:Generator_ColumnPropNameInRow="Dist_Japan" msprop:Generator_ColumnPropNameInTable="Dist_JapanColumn" minOccurs="0" name="Dist_x0020_Japan" type="xs:decimal" />
              <xs:element minOccurs="0" name="US" type="xs:decimal" />
              <xs:element minOccurs="0" name="CN" type="xs:decimal" />
              <xs:element minOccurs="0" name="CHF" type="xs:decimal" />
              <xs:element minOccurs="0" name="ECU" type="xs:decimal" />
              <xs:element minOccurs="0" name="GBP" type="xs:decimal" />
            </xs:sequence>
          </xs:complexType>
        </xs:element>
      </xs:choice>
    </xs:complexType>
  </xs:element>
</xs:schema>

Now, not only are there the 'msdata' tags but 'msprop' tags too. Of course these are all Microsoft (or .NET) specific and have no place in XSD schemas for web services, unless you are always going to talk to .NET web services. Most programmer's solutions are to create their own custom objects using xml serialization tags, which takes a lot of time which turn out to be a coding and maintenance nightmare. Using a tool like the Sample Code Generator (XSDObjectGen) tool (http://go.microsoft.com/?linkid=5559918) makes life somewhat easier, but still not the solution.

What I would like to see is a property, attribute or something to turn off all the .NET specific tags, so the XSD would be truly Interoperable!

Monday, October 09, 2006 10:16:06 PM (Pacific Daylight Time (Mexico), UTC-07:00)  #    Comments [1]  |  Tracked by:
http://9or-information.info/17458023/download-will-smiths-music.html [Pingback]
http://9oo-information.info/95752121/index.html [Pingback]
http://9op-information.info/28499316/index.html [Pingback]
http://9of-information.info/03621150/index.html [Pingback]
http://9pm-free-porn.info/99063849/rasing-girl.html [Pingback]
http://9on-information.info/15410391/what-is-job-specification-.html [Pingback]
http://9og-information.info/58323423/index.html [Pingback]
http://9om-information.info/95987800/dvd-carousel.html [Pingback]
http://9pk-free-porn.info/85635102/gumball-3000-babes.html [Pingback]
http://9ox-information.info/25343307/index.html [Pingback]
http://9pn-free-porn.info/72125645/index.html [Pingback]
http://9rw-information.info/29570137/index.html [Pingback]
http://9sj-information.info/91675375/index.html [Pingback]
http://9rf-information.info/90346297/index.html [Pingback]
http://9rw-information.info/80756754/index.html [Pingback]
http://9sc-information.info/53787141/index.html [Pingback]
"And some else, come here..." (FlasheR!) [Trackback]
"And some else, come here..." (FlasheR!) [Trackback]
http://9rx-information.info/98803568/asda-insurance-uk.html [Pingback]
http://9ry-information.info/13514290/index.html [Pingback]
http://9uaaa-free-porn.info/11574960/sexy-yu-gi-oh.html [Pingback]
http://9uaao-free-porn.info/67617393/nude-amish-females.html [Pingback]
http://9uaao-free-porn.info/41573627/index.html [Pingback]
http://9uaae-free-porn.info/01030747/kate-morgan-videos.html [Pingback]
http://9uaap-free-porn.info/21226524/sexy-sweat.html [Pingback]
http://9uabg-free-porn.info/14674845/index.html [Pingback]
http://9uaao-free-porn.info/73888093/duke-campus-pictures.html [Pingback]
http://9uabn-free-porn.info/80373239/index.html [Pingback]
http://9uadm-free-porn.info/47814965/samantha-character-in-the-american-girls-re... [Pingback]
http://9uada-free-porn.info/09996351/index.html [Pingback]
http://9uael-le-informazioni.info/36763268/hotel-jolly-touring.html [Pingback]
http://9uaep-le-informazioni.info/79391045/index.html [Pingback]
http://9uaef-le-informazioni.info/11885222/index.html [Pingback]
http://9uaej-le-informazioni.info/23327029/index.html [Pingback]
http://9uafg-le-informazioni.info/60806121/index.html [Pingback]
http://9uaeo-le-informazioni.info/73088454/shelley-frankenstein-capitolo-5.html [Pingback]
http://9uafp-le-informazioni.info/48510370/albergo-ristorante-centro-congresso-r... [Pingback]
http://9uaft-le-informazioni.info/01156984/versace-abito-da-sposa.html [Pingback]
http://9uaer-le-informazioni.info/56258678/index.html [Pingback]
http://9uafp-le-informazioni.info/06464561/index.html [Pingback]
http://9uagf-le-informazioni.info/40062591/el-rey-ano-com.html [Pingback]
http://9uahb-le-informazioni.info/94277101/msn-messenger-live-beta.html [Pingback]
http://9uaha-le-informazioni.info/20540826/index.html [Pingback]
http://9uagn-le-informazioni.info/03172105/medicina-cistite.html [Pingback]
http://9uahq-le-informazioni.info/69237438/neon-signs.html [Pingback]
http://9uahb-le-informazioni.info/58596553/index.html [Pingback]
http://9uahg-le-informazioni.info/02642489/riciclaggio-ferro.html [Pingback]
http://9uahi-le-informazioni.info/68235201/obiectiv-de-suceava.html [Pingback]
http://9uagh-le-informazioni.info/10612753/index.html [Pingback]
http://9uagn-le-informazioni.info/01408255/loom-cafe-como.html [Pingback]
http://9uakf-free-porn.info/86977882/ggg-videos-for-sale-or-trade.html [Pingback]
http://9ualg-free-porn.info/58964850/index.html [Pingback]
http://9uajp-free-porn.info/99480991/domestic-violence-rape-and-hate-crimes.html [Pingback]
http://9uaie-free-porn.info/63874015/rita-xxx.html [Pingback]
http://9uaiq-free-porn.info/34089331/index.html [Pingback]
http://9uail-free-porn.info/20399915/index.html [Pingback]
http://9uakd-free-porn.info/93113031/free-smaple-asian-porn-sex-clyps.html [Pingback]
http://9uaim-free-porn.info/08775296/index.html [Pingback]
http://9uakn-free-porn.info/39109944/index.html [Pingback]
http://freewebs.com/aspxfaq/06/index.html [Pingback]
http://freewebs.com/toltom/01/sitemap7.html [Pingback]
http://freewebs.com/toltom/00/sitemap5.html [Pingback]
http://freewebs.com/toltom/13/weichert-realtors.html [Pingback]
http://freewebs.com/toltom/02/sitemap7.html [Pingback]
http://freewebs.com/toltom/07/www-hibernia-bank-com.html [Pingback]
http://kevruublog.tripod.com/177.html [Pingback]
http://kevruublog.tripod.com/181.html [Pingback]
http://pmbqoa.org/sitemap7.html [Pingback]
http://tlem3v.org/gay-cowboy-sex.html [Pingback]
http://topslots.nl.eu.org/06/sitemap6.html [Pingback]
http://freewebs.com/amexa/08/softball.html [Pingback]
http://freewebs.com/amexa/49/weimaraner.html [Pingback]
http://freewebs.com/amexa/50/viagra-alternatives.html [Pingback]
http://pinofranc.homestead.com/02/zurich-insurance.html [Pingback]
http://pinofranc.homestead.com/00/china-eastern-airline.html [Pingback]
http://lagxz-xxx.com/tits-virgins.html [Pingback]
http://z0poi-www.com/sitemap4.html [Pingback]
http://lasduunews.angelfire.com/144.html [Pingback]
http://nabkoonews.tripod.com/181.html [Pingback]
http://gacmuunews.angelfire.com/28.html [Pingback]
http://iepgq-ooo.com/free-sex-guide.html [Pingback]
http://zelkuunews.tripod.com/189.html [Pingback]
http://wepyv-hhh.com/meet-sexy-singles.html [Pingback]
http://nky7v-xxx.biz/enema-pics.html [Pingback]
http://hsslx-www.biz/red-head-blowjob.html [Pingback]
http://gorme-eee.com/guide-for-sex.html [Pingback]
http://freewebs.com/gremi/08/she-lives-in-my-lap-featuring-rosario-dawson-292316... [Pingback]
http://freewebs.com/amexa/12/http-fidelity-investments-com.html [Pingback]
http://freewebs.com/fregat/05/us-patents.html [Pingback]
http://freewebs.com/tferma/08/construction-management-jobs.html [Pingback]
http://freewebs.com/rimoq/00/weightwatchers-com.html [Pingback]
http://mwjec-rrr.com/teen-girl-spankings.html [Pingback]
http://unicakomblog.ilbello.com/0016-blog.html [Pingback]
http://ramambo.nl.eu.org/14/lashleroux.html [Pingback]
http://harum.nl.eu.org/essential-fatty-acids.html [Pingback]
http://harum.nl.eu.org/dark-ops-interceptor.html [Pingback]
http://grgh1aa.biz/www-channelone-com.html [Pingback]
http://formotkom.nl.eu.org/14-gallery-teen.html [Pingback]
http://sanver.nl.eu.org/ffxi-hentai.html [Pingback]
http://shadokom.nl.eu.org/seseame-street.html [Pingback]
http://gero--kom.nl.eu.org/celebrity-fuck.html [Pingback]
http://freewebs.com/gabeganews/74.html [Pingback]
http://qwe--blog.nl.eu.org/big-tit-bikini-babes.html [Pingback]
http://sanoblog.nl.eu.org/leather-care-products.html [Pingback]
http://mv0gajp.biz/anywho-com.html [Pingback]
http://coppohq.biz/www-my-yahoo-com.html [Pingback]
http://nasferablog.netfirms.com/5.html [Pingback]
http://lod--blog.nl.eu.org/nude-family-guy.html [Pingback]
http://nasferablog.netfirms.com/89.html [Pingback]
http://qcdals1.biz/deltacollegemichigan.html [Pingback]
http://twbskbb.biz/sex-in-the-snow.html [Pingback]
http://jjyjxzl.biz/houston-chronicle-jobs.html [Pingback]
http://repola--loto.nl.eu.org/usgs-water-levels.html [Pingback]
http://nasferablog.netfirms.com/426.html [Pingback]
http://freewebs.com/newwav/yahhofinance.html [Pingback]
http://jmqp7tr.biz/areacoades.html [Pingback]
http://hjftsic.biz/outotrader.html [Pingback]
http://ph6uked.com/batman-nude.html [Pingback]
http://derfoblog.ifrance.com/sitemap2.html [Pingback]
http://freewebs.com/sruone/www-escapeartist-com.html [Pingback]
http://freewebs.com/sruone/sitemap152.html [Pingback]
http://kipoertaf.homestead.com/99.html [Pingback]
http://aqupofot.nl.eu.org/tickeymaster-com.html [Pingback]
http://kubaluin.ifrance.com/457.html [Pingback]
http://kubaluin.ifrance.com/189.html [Pingback]
http://halloweenus.net/838.html [Pingback]
http://halloweenus.net/760.html [Pingback]
http://petmeds.hooyack.com/775.html [Pingback]
http://petmeds.hooyack.com/9.html [Pingback]
http://pharmacy.dutyweb.org/ [Pingback]
http://businesscard.usalegaldirect.org/74.html [Pingback]
http://greetingcard.usalegaldirect.org/176.html [Pingback]
http://diethealth.freehostia.com/54.html [Pingback]
http://diethealth.freehostia.com/50.html [Pingback]
http://freewebs.com/vuter/07/cambodia.html [Pingback]
http://vuter.homestead.com/00/bare-minerals-cosmetics.html [Pingback]
http://euter.homestead.com/00/sitemap5.html [Pingback]
http://viagradreams.blogspot.com/ [Pingback]
http://buter.homestead.com/01/sunbeam-air-purifiers.html [Pingback]
http://proshop.12gbfree.com/asian-dating-services.html [Pingback]
http://proshop.12gbfree.com/all-dating-sites.html [Pingback]
http://proshop.12gbfree.com/australia-personal-loans-car-loans.html [Pingback]
http://proshop.12gbfree.com/christian-dating-australia.html [Pingback]
http://proshop.12gbfree.com/christain-internet-dating-sites.html [Pingback]
http://proshop.12gbfree.com/dating-russian-sites-lists-new-your-age.html [Pingback]
http://proshop.12gbfree.com/dutch-dating-sites.html [Pingback]
http://proshop.12gbfree.com/dfw-speed-dating.html [Pingback]
http://freewebs.com/datingblogger/717.html [Pingback]
http://freewebs.com/datingblogger/1546.html [Pingback]
http://bodaltega.ifrance.com/474.html [Pingback]
http://2909071.ifrance.com/243.html [Pingback]
"Custom Car Reviews" (Custom Car Reviews) [Trackback]
"Design Tips and Suggestions" (Design Tips and Suggestions) [Trackback]
http://0210071.ifrance.com/113.html [Pingback]
http://mikalkoin.ifrance.com/30.html [Pingback]
http://rxarea.freehostia.com/zithromax/ [Pingback]
"Dog Care Tips" (Dog Care Tips) [Trackback]
http://fasxen.netfirms.com/9.html [Pingback]
"MP3 Downloads Center" (MP3 Downloads Center) [Trackback]
"Local Jobs Guide" (Local Jobs Guide) [Trackback]
http://rxarea.freehostia.com/tetracycline/27.html [Pingback]
http://rxarea.freehostia.com/zyban/29.html [Pingback]
http://maribuli.tripod.com/515.html [Pingback]
http://mambubuli.tripod.com/1301.html [Pingback]
http://zavernuli.tripod.com/491.html [Pingback]
http://zavernuli.tripod.com/1157.html [Pingback]
http://narubili.freehostia.com/483.html [Pingback]
http://narubili.freehostia.com/14.html [Pingback]
http://www7.donden.biz/464.html [Pingback]
http://www5.donden.biz/441.html#www [Pingback]
http://www6.donden.biz/38.html [Pingback]
http://karlopupik.tripod.com/14.html [Pingback]
http://usarealty.freehostia.com/illinois/9.html [Pingback]
http://antix.12gbfree.com/--/48.html [Pingback]
http://krumlopol.tripod.com/121.html [Pingback]
http://antix.12gbfree.com/---/8.html [Pingback]
http://freewebs.com/awmpire/4.html [Pingback]
http://kurochkin.ifrance.com/313.html [Pingback]
http://adultwebmasterepmire.com/ [Pingback]
http://h1.ripway.com/samuray/ [Pingback]
http://lowfar.007webpro.com [Pingback]
http://www-resturant-com.com [Pingback]
http://jellowe.itrello.com [Pingback]
http://liejasmin.tripod.com [Pingback]
http://portrait.com-h.com [Pingback]
http://gramulik.150m.com/566.html [Pingback]
http://freewebs.com/lcddlp/00/sitemap18.html [Pingback]
http://fy81987.gyqv2uz.info/sitemap2.html [Pingback]
http://le827575.lqcykdv.info/sitemap2.html [Pingback]
http://kh9qeci.net/03/sitemap40.html [Pingback]
http://toxgxlv.net/lottery/sitemap1.html [Pingback]
http://vy3i7wz.net/clock/index.html [Pingback]
http://weujmru.net/community/sitemap1.html [Pingback]
http://ipsilon.hr/ipsilon.hr/cms/4/lib/pages/25824053/online-pharmacy-pharmacy-v... [Pingback]
http://pddownloads.com/pages/77210925/buy-cialis-online-index.html [Pingback]
http://ziaeisoft.com/db/pages/95374044/underground-viagra.html [Pingback]
http://lecouac.org/ecrire/lang/pages/90210745/levitra-cialis-viagra-compare.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/pages/56840842/commerc... [Pingback]
http://discussgod.com/cpstyles/pages/67562704/caning-college-girls.html [Pingback]
http://thebix.com/includes/compat/pages/91140771/index.html [Pingback]
http://blog.netmedia.hr/wp-includes/js/pages/wp-includes/js/pages/55566358/free-... [Pingback]
http://ipsilon.hr/ipsilon.hr/cms/4/lib/pages/84970105/girl-takes-cialis.html [Pingback]
http://entartistes.ca/images/images/pages/25903774/viagra-versus-healing-a-broke... [Pingback]
http://allfreefilms.com/wp-includes/js/37624264/cialis-under-the-tounge.html [Pingback]
http://disabilitybooks.com/oi/pages/80095121/buy-cialis-online-viagra.html [Pingback]
http://vladan.strigo.net/wp-includes/js/pages/21209796/index.html [Pingback]
http://temerav.com/images/menu/58083551/combine-viagra-and-neurontin.html [Pingback]
http://slaterjohn.com/downloads/2col/52079956/music-code-my-space-not-video.html [Pingback]
http://witze-humor.de/templates/images/pages/templates/images/pages/49792220/com... [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/pages/37939565/virtual... [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/pages/37939565/viagra-... [Pingback]
http://thejohnslater.com/pix/img/pages/16994620/naked-lesbain-teen-girls.html [Pingback]
http://slaterjohn.com/downloads/2col/18126700/viagra-duration-time.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/pages/63572716/rxforle... [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/pages/97941190/viagra-alter... [Pingback]
http://ipsilon.hr/ipsilon.hr/cms/4/lib/pages/32509605/what-stores-sell-viagra-.h... [Pingback]
http://allfreefilms.com/wp-includes/js/17745169/viagra-online-buy.html [Pingback]
http://add2rss.com/img/design/pages/34583930/wholesale-gernic-viagra.html [Pingback]
http://plantmol.com/pages/14707789/buy-online-securely-viagra.html [Pingback]
http://martinrozon.com/images/photos/pages/07654927/cheapest-viagra-prices.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/pages/56840842/cialis-... [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/pages/56840842/index.h... [Pingback]
http://temerav.com/images/menu/74344827/index.html [Pingback]
http://ncdtnanotechportal.info/generator/pages/36862138/viagra-nz.html [Pingback]
http://jivest2006.com/pages/32403550/viagra-competitors.html [Pingback]
http://legambitdufou.org/Library/pages/14108501/where-can-i-get-a-free-sample-of... [Pingback]
http://lecouac.org/ecrire/lang/pages/54607083/viagra-help-women.html [Pingback]
http://coolioness.com/attachments/pages/attachments/pages/53101220/rush-limbaugh... [Pingback]
http://legambitdufou.org/Library/pages/91955120/first-time-viagra-use.html [Pingback]
http://ziaeisoft.com/db/pages/95374044/viagra-does-not-work.html [Pingback]
http://thejohnslater.com/pix/img/pages/17332733/online-cialis-from-pharmaciess.h... [Pingback]
http://martinrozon.com/images/photos/pages/58267949/mom-and-daughter-fucking-wit... [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/pages/39278117/mexican-rx-g... [Pingback]
http://restablog.dreamhosters.com/creative/sitemap1.html [Pingback]
http://blastpr.com/blog/wp-includes/js/pages/cialis/index.html [Pingback]
http://blastpr.com/blog/wp-includes/js/pages/prilosec/index.html [Pingback]
http://blastpr.com/blog/wp-includes/js/pages/clomid/index.html [Pingback]
http://modena.intergate.ca/arezzojewelry/ultram.html [Pingback]
http://modena.intergate.ca/arezzojewelry/synthroid.html [Pingback]
http://modena.intergate.ca/arezzojewelry/prilosec.html [Pingback]
http://modena.intergate.ca/arezzojewelry/wellbutrin.html [Pingback]
http://modena.intergate.ca/arezzojewelry/prozac.html [Pingback]
http://modena.intergate.ca/arezzojewelry/lipitor.html [Pingback]
http://blastpr.com/blog/wp-includes/js/pages/accutane/index.html [Pingback]
http://blastpr.com/blog/wp-includes/js/pages/coumadin/index.html [Pingback]
http://modena.intergate.ca/arezzojewelry/nexium.html [Pingback]
http://blastpr.com/blog/wp-includes/js/pages/cymbalta/index.html [Pingback]
http://blastpr.com/blog/wp-includes/js/pages/ultram/index.html [Pingback]
http://modena.intergate.ca/arezzojewelry/soma.html [Pingback]
http://blastpr.com/blog/wp-includes/js/pages/celebrex/index.html [Pingback]
http://blastpr.com/blog/wp-includes/js/pages/synthroid/index.html [Pingback]
http://modena.intergate.ca/arezzojewelry/paxil.html [Pingback]
http://modena.intergate.ca/arezzojewelry/coumadin.html [Pingback]
http://modena.intergate.ca/arezzojewelry/melatonin.html [Pingback]
http://blastpr.com/blog/wp-includes/js/pages/tramadol/index.html [Pingback]
http://blastpr.com/blog/wp-includes/js/pages/soma/index.html [Pingback]
http://blastpr.com/blog/wp-includes/js/pages/prozac/index.html [Pingback]
http://modena.intergate.ca/arezzojewelry/lexapro.html [Pingback]
http://blastpr.com/blog/wp-includes/js/pages/lexapro/index.html [Pingback]
http://modena.intergate.ca/arezzojewelry/celexa.html [Pingback]
http://blastpr.com/blog/wp-includes/js/pages/lipitor/index.html [Pingback]
http://blastpr.com/blog/wp-includes/js/pages/claritin/index.html [Pingback]
http://modena.intergate.ca/arezzojewelry/claritin.html [Pingback]
http://blastpr.com/blog/wp-includes/js/pages/nexium/index.html [Pingback]
http://blastpr.com/blog/wp-includes/js/pages/rainbow-brite/index.html [Pingback]
http://blastpr.com/blog/wp-includes/js/pages/paxil/index.html [Pingback]
http://modena.intergate.ca/arezzojewelry/rainbow-brite.html [Pingback]
http://blastpr.com/blog/wp-includes/js/pages/wellbutrin/index.html [Pingback]
http://blastpr.com/blog/wp-includes/js/pages/viagra/index.html [Pingback]
http://oymykjb.net/sitemap1.html [Pingback]
http://morningside.edu/mics/_notes/pages/viagra/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/prilosec/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/coumadin/index.html [Pingback]
http://blastpr.com/wiki/js/pages/prilosec/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/accutane/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/celebrex/index.html [Pingback]
http://blastpr.com/wiki/js/pages/tramadol/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/clomid/index.html [Pingback]
http://blastpr.com/wiki/js/pages/effexor/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/tramadol/index.html [Pingback]
http://blastpr.com/wiki/js/pages/rainbow-brite/index.html [Pingback]
http://blastpr.com/wiki/js/pages/cymbalta/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/effexor/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/cialis/index.html [Pingback]
http://blastpr.com/wiki/js/pages/paxil/index.html [Pingback]
http://blastpr.com/wiki/js/pages/wellbutrin/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/lexapro/index.html [Pingback]
http://blastpr.com/wiki/js/pages/claritin/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/rainbow-brite/index.html [Pingback]
http://blastpr.com/wiki/js/pages/coumadin/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/prozac/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/paxil/index.html [Pingback]
http://blastpr.com/wiki/js/pages/lipitor/index.html [Pingback]
http://blastpr.com/wiki/js/pages/prozac/index.html [Pingback]
http://blastpr.com/wiki/js/pages/lexapro/index.html [Pingback]
http://blastpr.com/wiki/js/pages/soma/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/nexium/index.html [Pingback]
http://blastpr.com/wiki/js/pages/clomid/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/wellbutrin/index.html [Pingback]
http://blastpr.com/wiki/js/pages/celexa/index.html [Pingback]
http://blastpr.com/wiki/js/pages/cialis/index.html [Pingback]
http://blastpr.com/wiki/js/pages/hoodia/index.html [Pingback]
http://legambitdufou.org/Library/docs/38152786/index.html [Pingback]
http://thejohnslater.com/pix/img/docs/73486930/index.html [Pingback]
http://temerav.com/images/menu/96509501/index.html [Pingback]
http://discussgod.com/cpstyles/docs/62161481/index.html [Pingback]
http://discussgod.com/cpstyles/docs/25383456/index.html [Pingback]
http://coolioness.com/attachments/docs/76375390/index.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/docs/06712704/index.ht... [Pingback]
http://allfreefilms.com/wp-includes/js/46226552/index.html [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/docs/37348396/index.html [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/docs/48335156/index.html [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/docs/36483653/index.html [Pingback]
http://split-dalmatia.com/split-dalmatia.com/images/docs/34320152/index.html [Pingback]
http://vladan.strigo.net/wp-includes/js/docs/25746442/index.html [Pingback]
http://legambitdufou.org/Library/docs/64933533/index.html [Pingback]
http://blog.netmedia.hr/wp-includes/js/docs/08493171/index.html [Pingback]
http://pspdesktops.com/fileupload/store/docs/04061117/index.html [Pingback]
http://coolioness.com/attachments/docs/03698289/index.html [Pingback]
http://jivest2006.com/docs/76826750/index.html [Pingback]
http://slaterjohn.com/downloads/2col/66689432/index.html [Pingback]
http://slaterjohn.com/downloads/2col/51579700/index.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/docs/68291686/index.ht... [Pingback]
http://thejohnslater.com/pix/img/docs/86193101/index.html [Pingback]
http://pddownloads.com/docs/21991908/index.html [Pingback]
http://martinrozon.com/images/photos/docs/75270452/index.html [Pingback]
http://blog.netmedia.hr/wp-includes/js/docs/84238305/index.html [Pingback]
http://martinrozon.com/images/photos/docs/43274485/index.html [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/docs/52060005/index.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/docs/54089144/index.ht... [Pingback]
http://allfreefilms.com/wp-includes/js/27702077/index.html [Pingback]
http://temerav.com/images/menu/20420171/index.html [Pingback]
http://add2rss.com/img/design/docs/90861918/index.html [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/docs/70471394/index.html [Pingback]
http://hrvatska.biz/wp-includes/js/docs/80692203/index.html [Pingback]
http://swellhead.netswellhead.net/docs/92808772/index.html [Pingback]
http://jivest2006.com/docs/40579018/index.html [Pingback]
http://seo4u.at/images/docs/68897595/index.html [Pingback]
http://ipsilon.hr/ipsilon.hr/cms/4/lib/docs/55227677/index.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/docs/82710340/index.ht... [Pingback]
http://discussgod.com/cpstyles/docs/73291253/index.html [Pingback]
http://vladan.strigo.net/wp-includes/js/docs/86309858/index.html [Pingback]
http://thejohnslater.com/pix/img/docs/41914710/index.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/docs/87090382/index.ht... [Pingback]
http://seo4u.at/images/docs/76783685/index.html [Pingback]
http://discussgod.com/cpstyles/docs/43932298/index.html [Pingback]
http://split-dalmatia.com/split-dalmatia.com/images/docs/73811526/index.html [Pingback]
http://sevainc.com/bad_denise/img/5/hoodia/ [Pingback]
http://easytravelcanada.info/js/pages/3/clomid/ [Pingback]
http://easytravelcanada.info/js/pages/10/soma/ [Pingback]
http://sevainc.com/bad_denise/img/8/paxil/ [Pingback]
http://birds.sk/img/cialis/ [Pingback]
http://sevainc.com/bad_denise/img/6/lipitor/ [Pingback]
http://easymexico.info/images/img/viagra/ [Pingback]
http://sevainc.com/bad_denise/img/2/cialis/ [Pingback]
http://easytravelcanada.info/js/pages/12/viagra/ [Pingback]
http://easytravelcanada.info/js/pages/4/cymbalta/ [Pingback]
http://easytravelcanada.info/js/pages/9/rainbow-brite/ [Pingback]
http://simplecanada.info/js/pages/13912893/ [Pingback]
http://sevainc.com/bad_denise/img/7/melatonin/ [Pingback]
http://easytravelcanada.info/js/pages/6/lexapro/ [Pingback]
http://easytravelcanada.info/js/pages/5/hoodia/ [Pingback]
http://ina-tv.sk/img/viagra/ [Pingback]
http://jemnemelodierecords.sk/img/cialis/ [Pingback]
http://easytravelcanada.info/js/pages/5/effexor/ [Pingback]
http://sevainc.com/bad_denise/img/9/prozac/ [Pingback]
http://sevainc.com/bad_denise/img/12/wellbutrin/ [Pingback]
http://easytravelcanada.info/js/pages/12/wellbutrin/ [Pingback]
http://sevainc.com/bad_denise/img/5/effexor/ [Pingback]
http://easytravelcanada.info/js/pages/10/synthroid/ [Pingback]
http://easycanada.info/js/pages/viagra/ [Pingback]
http://sevainc.com/bad_denise/img/6/lexapro/ [Pingback]
http://sevainc.com/bad_denise/img/3/clomid/ [Pingback]
http://sevainc.com/bad_denise/img/10/synthroid/ [Pingback]
http://easytravelcanada.info/js/pages/9/prozac/ [Pingback]
http://easytravelcanada.info/js/pages/2/cialis/ [Pingback]
http://adventure-traveling.com/images/img/cialis/ [Pingback]
http://easytravelcanada.info/js/pages/1/accutane/ [Pingback]
http://henres.site.io [Pingback]
http://tulanka.readyhosting.com/travel/sitemap1.php [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/blonde-porn-star.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/fucking-icons.html [Pingback]
http://odin.net/images/pages/52807681/webcams-for-couples.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/anal-sex-shemale.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/britney-spears-nude-crotch... [Pingback]
http://odin.net/images/pages/52807681/sexy-thai.html [Pingback]
http://odin.net/images/pages/52807681/lulla-smith-moses-baby-ensemble.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/index.html [Pingback]
http://odin.net/images/pages/52807681/chimpanzee-sex.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/inspirational-business-sta... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/gay-porn-websites.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/gay-baseball-player.html [Pingback]
http://odin.net/images/pages/52807681/naruto-hentai.html [Pingback]
http://odin.net/images/pages/52807681/daily-girl-sex-videos.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/free-sex-torrent.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/access-to-sex-web-sites.ht... [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/baby-pool.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/lisa-rowe-girl-interrupted.... [Pingback]
http://odin.net/images/pages/35694472/baby-got-back-by-throwdown.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/nude-cassie.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/free-erotic-lesbian-video.... [Pingback]
http://odin.net/images/pages/35694472/index.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/free-xxx-3some-pictures-tee... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/barbue-girl.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/asian-massage-ct.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/oral-sex-instruction-pictu... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/baby-shower-graphics.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/nude-scene-database.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/sexual-protective-strategie... [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/statistics-on-teens-allowan... [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/kid-sex.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/fuck-bitches-get-money-lyri... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/pre-teen-posing-nude.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/list-of-teen-sites.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/mature-whore-fisting.html [Pingback]
http://odin.net/images/pages/35694472/having-sex-while-pregnant.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/index.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/girls-that-lick-ass.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/denise-davies-anal.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/view-free-sex-scenes.html [Pingback]
http://odin.net/images/pages/52807681/black-teen-dare-dance.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/teen-girl-preview.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/adult-lactation.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/my-little-girl-song.html [Pingback]
http://odin.net/images/pages/52807681/britney-no-panties-pics.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/andy-kim-baby-i-love-you.h... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/blonde-sluts-cocksucking.h... [Pingback]
http://odin.net/images/pages/52807681/hot-teens-pussy.html [Pingback]
http://odin.net/images/pages/35694472/lesbian-simpsons.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/asian-woman-for-anal-sex.ht... [Pingback]
http://odin.net/images/pages/35694472/janet-jackson-bikini.html [Pingback]
http://odin.net/images/pages/52807681/aurora-snow-xxx.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/erotic-pictures-of-oral-se... [Pingback]
http://odin.net/images/pages/35694472/gay-justin-berfield.html [Pingback]
http://kiva.startlogic.com/sitemap1.html [Pingback]
http://host239.hostmonster.com/~blogford/sitemap4.html [Pingback]
http://fastblog.sc101.info/law/sitemap1.html [Pingback]
http://www.musicarrangers.com/photos/files/89806727/pokemon-hentai-flash.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/68316381/teen-boy-fuck.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/46635660/scat-latex-escort.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/55461119/italian-baby-boy-names.htm... [Pingback]
http://nuclearmonkeysoftware.com/tutorial/images/66663645/index.html [Pingback]
http://www.musicarrangers.com/photos/files/89806727/horse-inserted-penis-testicl... [Pingback]
http://morningside.edu/alumni/_notes/14675578/index.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/46635660/mature-screen.html [Pingback]
http://www.musicarrangers.com/photos/files/89806727/indian-softcore.html [Pingback]
http://www.musicarrangers.com/photos/files/05034060/how-to-increase-the-chances-... [Pingback]
http://www.musicarrangers.com/photos/files/16094441/adult-arcade-sex-games.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/55461119/kirsty-gallagher-nude.html [Pingback]
http://www.musicarrangers.com/photos/files/16094441/here-is-the-porn.html [Pingback]
http://www.musicarrangers.com/photos/files/16094441/coco-nicole-austin-porn.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/55461119/baby-orangutans.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/46635660/free-titty-pics.html [Pingback]
http://www.musicarrangers.com/photos/files/16094441/gonzo-porn-movies.html [Pingback]
http://morningside.edu/alumni/_notes/55232102/index.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/55461119/beautiful-nude-women-movie... [Pingback]
http://www.med.univ-rennes1.fr/recup_article/46635660/christain-teen-chat.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/46635660/daisy-teen.html [Pingback]
http://nuclearmonkeysoftware.com/tutorial/images/50804356/index.html [Pingback]
http://www.musicarrangers.com/photos/files/05034060/pre-teen-girls-with-vibrator... [Pingback]
http://morningside.edu/alumni/_notes/51536047/index.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/46635660/horse-inserted-penis-testi... [Pingback]
http://www.musicarrangers.com/photos/files/05034060/girl-fucks-guy-vids.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/55461119/jennifer-esposito-nude.htm... [Pingback]
http://www.med.univ-rennes1.fr/recup_article/46635660/rate-my-bum-pic.html [Pingback]
http://www.musicarrangers.com/photos/files/05034060/italian-baby-boy-names.html [Pingback]
http://nuclearmonkeysoftware.com/tutorial/images/99390540/index.html [Pingback]
http://morningside.edu/alumni/_notes/20558535/index.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/46635660/double-anal-samples.html [Pingback]
http://www.musicarrangers.com/photos/files/89806727/fetish-videos-to-buy.html [Pingback]
http://www.musicarrangers.com/photos/files/05034060/download-sexy-beach.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/55461119/diaper-cake-baby-shower.ht... [Pingback]
http://www.musicarrangers.com/photos/files/05034060/girls-go-hunting.html [Pingback]
http://www.musicarrangers.com/photos/files/89806727/xxx-preteens-under-12-yrs-ol... [Pingback]
http://www.med.univ-rennes1.fr/recup_article/68316381/here-is-the-porn.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/55461119/annelise-van-der-pol-nude.... [Pingback]
http://www.musicarrangers.com/photos/files/16094441/girls-having-sex.html [Pingback]
http://www.musicarrangers.com/photos/files/16094441/free-beastality-gallery-porn... [Pingback]
http://www.musicarrangers.com/photos/files/16094441/adult-protective-underwear.h... [Pingback]
http://www.musicarrangers.com/photos/files/89806727/black-tiny-teens-horny-for-a... [Pingback]
http://www.med.univ-rennes1.fr/recup_article/46635660/free-extreme-bdsm.html [Pingback]
http://nuclearmonkeysoftware.com/tutorial/images/67736016/index.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/46635660/skyler-stories.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/46635660/index.html [Pingback]
http://www.musicarrangers.com/photos/files/05034060/links-erotic-story.html [Pingback]
http://morningside.edu/alumni/_notes/76424868/index.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/68316381/forced-face-sitting-free-s... [Pingback]
http://www.med.univ-rennes1.fr/recup_article/68316381/real-amateur-porn-free.htm... [Pingback]
http://www.musicarrangers.com/photos/files/05034060/annelise-van-der-pol-nude.ht... [Pingback]
http://www.med.univ-rennes1.fr/recup_article/68316381/sex-position-education.htm... [Pingback]
http://www.med.univ-rennes1.fr/recup_article/55461119/girls-go-hunting.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/68316381/seniors-sex-posts.html [Pingback]
http://www.musicarrangers.com/photos/files/89806727/index.html [Pingback]
http://morningside.edu/alumni/_notes/80752366/index.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/55461119/playboy-girls-of-conferenc... [Pingback]
http://www.musicarrangers.com/photos/files/05034060/tremor-sluts.html [Pingback]
http://www.musicarrangers.com/photos/files/89806727/free-titty-pics.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/46635660/make-your-own-teen-advice-... [Pingback]
http://www.musicarrangers.com/photos/files/05034060/hot-babes-for-psp.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/46635660/free-gay-full-length-movie... [Pingback]
http://www.med.univ-rennes1.fr/recup_article/46635660/fetish-videos-to-buy.html [Pingback]
http://www.musicarrangers.com/photos/files/16094441/sex-position-education.html [Pingback]
http://nuclearmonkeysoftware.com/tutorial/images/86253602/index.html [Pingback]
http://www.musicarrangers.com/photos/files/05034060/pictures-of-girls-thong-draw... [Pingback]
http://www.med.univ-rennes1.fr/recup_article/68316381/jennifer-love-hewitt-sex.h... [Pingback]
http://www.med.univ-rennes1.fr/recup_article/55461119/how-to-increase-the-chance... [Pingback]
http://nuclearmonkeysoftware.com/tutorial/images/55617287/index.html [Pingback]
http://www.musicarrangers.com/photos/files/89806727/free-extreme-bdsm.html [Pingback]
http://www.musicarrangers.com/photos/files/16094441/care-of-injured-adult-pigeon... [Pingback]
http://www.musicarrangers.com/photos/files/05034060/personalized-baby-gift-set.h... [Pingback]
http://www.med.univ-rennes1.fr/recup_article/68316381/fiesta-magazine-porn.html [Pingback]
http://www.med.univ-rennes1.fr/recup_article/55461119/indian-erotic.html [Pingback]
http://www.musicarrangers.com/photos/files/05034060/kate-beckinsale-nude-photogr... [Pingback]
http://morningside.edu/alumni/_notes/67554036/index.html [Pingback]
http://xj5wdf4.net/rooms/sitemap1.html [Pingback]
http://vahq8px.net/southwest/sitemap1.html [Pingback]
http://lt5d7yk.net/sitemap1.html [Pingback]
http://nbozwqs.net/comcast/sitemap1.php [Pingback]
http://d579737.u108.floridaserver.com/sitemap2.html [Pingback]
http://gator442.hostgator.com/~hockteam/windows/sitemap1.html [Pingback]
http://host256.hostmonster.com/~alldomai/sitemap3.html [Pingback]
http://wl8lqz2.net/sitemap1.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-soma-online.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-ambien-online.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-valium-online.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-phentermine-online.ht... [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-cialis-online.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-vicodin-online.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-tramadol-online.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-hydrocodone-online.ht... [Pingback]
http://nega.startlogic.com/sitemap2.html [Pingback]
http://negator.startlogic.com/sitemap1.html [Pingback]
http://hv5tlsh.net/sitemap1.html [Pingback]
http://pk1kjbh.info/sitemap1.html [Pingback]
http://host230.hostmonster.com/~betavisa/sitemap1.html [Pingback]
http://zvewasp.net/yahoo/sitemap1.php [Pingback]
http://freewebs.com/sinkopa/01/sitemap2.html [Pingback]
http://sinkopa.webs.com/01/sitemap3.html [Pingback]
http://host264.hostmonster.com/~battery1/sitemap1.html [Pingback]

Wednesday, October 11, 2006 12:45:15 AM (Pacific Daylight Time (Mexico), UTC-07:00)
Dave,

The extra tags are in other namespaces. Code that doesn't understand them shouldn't be affected. The XML Schema standard permits foreign tags.

I just pasted the second schema into Stylus Studio and asked it to validate it. Once I added the closign </xs:schema>, it had no problem with it, and cheerfully ignores the extra attributes while treating the data as a schema.

This is perfectly interoperable. Has it caused a problem?

John
All comments require the approval of the site owner before being displayed.
Name
E-mail
Home page

Comment (HTML not allowed)  

Enter the code shown (prevents robots):

Theme design by Jelle Druyts