Hi Team,

Currently WSDL2Java/AXIS does not handle the output from .NET's tools even for 
Strongly-Typed
Dataset's (see enclosed sample WSDL+XSD).

Problems:
1. WSDL and the XSD need to be hand modified as some of things defined in the schema 
are present
(but not complete) in the WSDL itself but is also imported from the XSD.
2. The XSD does not have correct targetNamespace which causes problems.
3. In the example WSDL(after fixing the problems above), NewDataSet should be able to 
contain any
number of Authors and Titles...But the generated code does not seem to have any 
support for
accessing embedded Authors and Titles.
4. SOAP Response (see output.xml) itself contains the Schema even for Strongly-typed 
DataSet's.
Should we add code to atleast ignore the stuff that we cannot handle?

Thanks,
dims


=====
Davanum Srinivas - http://xml.apache.org/~dims/

__________________________________________________
Do You Yahoo!?
Try FREE Yahoo! Mail - the world's greatest free email!
http://mail.yahoo.com/
<?xml version="1.0" encoding="utf-8"?>
<definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"; xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"; xmlns:s="http://www.w3.org/2001/XMLSchema"; xmlns:s0="http://tempuri.org/"; xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"; xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/"; xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"; targetNamespace="http://tempuri.org/"; xmlns="http://schemas.xmlsoap.org/wsdl/";>
  <import namespace="" location="DataService.xsd" />
  <types>
    <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/";>
      <s:element name="GetTitleAuthors">
        <s:complexType />
      </s:element>
      <s:element name="GetTitleAuthorsResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="GetTitleAuthorsResult">
              <s:complexType>
                <s:sequence>
                  <s:any namespace="" />
                </s:sequence>
              </s:complexType>
            </s:element>
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="PutTitleAuthors">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="ds">
              <s:complexType>
                <s:sequence>
                  <s:any namespace="" />
                </s:sequence>
              </s:complexType>
            </s:element>
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="PutTitleAuthorsResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="PutTitleAuthorsResult" type="s:int" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="NewDataSet" nillable="true">
        <s:complexType>
          <s:sequence>
            <s:any namespace="" />
          </s:sequence>
        </s:complexType>
      </s:element>
    </s:schema>
  </types>
  <message name="GetTitleAuthorsSoapIn">
    <part name="parameters" element="s0:GetTitleAuthors" />
  </message>
  <message name="GetTitleAuthorsSoapOut">
    <part name="parameters" element="s0:GetTitleAuthorsResponse" />
  </message>
  <message name="PutTitleAuthorsSoapIn">
    <part name="parameters" element="s0:PutTitleAuthors" />
  </message>
  <message name="PutTitleAuthorsSoapOut">
    <part name="parameters" element="s0:PutTitleAuthorsResponse" />
  </message>
  <message name="GetTitleAuthorsHttpGetIn" />
  <message name="GetTitleAuthorsHttpGetOut">
    <part name="Body" element="s0:NewDataSet" />
  </message>
  <message name="GetTitleAuthorsHttpPostIn" />
  <message name="GetTitleAuthorsHttpPostOut">
    <part name="Body" element="s0:NewDataSet" />
  </message>
  <portType name="DataServiceSoap">
    <operation name="GetTitleAuthors">
      <input message="s0:GetTitleAuthorsSoapIn" />
      <output message="s0:GetTitleAuthorsSoapOut" />
    </operation>
    <operation name="PutTitleAuthors">
      <input message="s0:PutTitleAuthorsSoapIn" />
      <output message="s0:PutTitleAuthorsSoapOut" />
    </operation>
  </portType>
  <portType name="DataServiceHttpGet">
    <operation name="GetTitleAuthors">
      <input message="s0:GetTitleAuthorsHttpGetIn" />
      <output message="s0:GetTitleAuthorsHttpGetOut" />
    </operation>
  </portType>
  <portType name="DataServiceHttpPost">
    <operation name="GetTitleAuthors">
      <input message="s0:GetTitleAuthorsHttpPostIn" />
      <output message="s0:GetTitleAuthorsHttpPostOut" />
    </operation>
  </portType>
  <binding name="DataServiceSoap" type="s0:DataServiceSoap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http"; style="document" />
    <operation name="GetTitleAuthors">
      <soap:operation soapAction="http://tempuri.org/GetTitleAuthors"; style="document" />
      <input>
        <soap:body use="literal" />
      </input>
      <output>
        <soap:body use="literal" />
      </output>
    </operation>
    <operation name="PutTitleAuthors">
      <soap:operation soapAction="http://tempuri.org/PutTitleAuthors"; style="document" />
      <input>
        <soap:body use="literal" />
      </input>
      <output>
        <soap:body use="literal" />
      </output>
    </operation>
  </binding>
  <binding name="DataServiceHttpGet" type="s0:DataServiceHttpGet">
    <http:binding verb="GET" />
    <operation name="GetTitleAuthors">
      <http:operation location="/GetTitleAuthors" />
      <input>
        <http:urlEncoded />
      </input>
      <output>
        <mime:mimeXml part="Body" />
      </output>
    </operation>
  </binding>
  <binding name="DataServiceHttpPost" type="s0:DataServiceHttpPost">
    <http:binding verb="POST" />
    <operation name="GetTitleAuthors">
      <http:operation location="/GetTitleAuthors" />
      <input>
        <mime:content type="application/x-www-form-urlencoded" />
      </input>
      <output>
        <mime:mimeXml part="Body" />
      </output>
    </operation>
  </binding>
  <service name="DataService">
    <port name="DataServiceSoap" binding="s0:DataServiceSoap">
      <soap:address location="http://localhost/quickstart/dims/DataService.asmx"; />
    </port>
    <port name="DataServiceHttpGet" binding="s0:DataServiceHttpGet">
      <http:address location="http://localhost/quickstart/dims/DataService.asmx"; />
    </port>
    <port name="DataServiceHttpPost" binding="s0:DataServiceHttpPost">
      <http:address location="http://localhost/quickstart/dims/DataService.asmx"; />
    </port>
  </service>
</definitions>
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="NewDataSet" xmlns:xs="http://www.w3.org/2001/XMLSchema";>
  <xs:element msdata:IsDataSet="true" name="NewDataSet">
    <xs:complexType>
      <xs:choice maxOccurs="unbounded">
        <xs:element name="Authors">
          <xs:complexType>
            <xs:sequence>
              <xs:element minOccurs="0" name="au_id" type="xs:string" />
              <xs:element minOccurs="0" name="au_lname" type="xs:string" />
              <xs:element minOccurs="0" name="au_fname" type="xs:string" />
              <xs:element minOccurs="0" name="phone" type="xs:string" />
              <xs:element minOccurs="0" name="address" type="xs:string" />
              <xs:element minOccurs="0" name="city" type="xs:string" />
              <xs:element minOccurs="0" name="state" type="xs:string" />
              <xs:element minOccurs="0" name="zip" type="xs:string" />
              <xs:element minOccurs="0" name="contract" type="xs:boolean" />
            </xs:sequence>
          </xs:complexType>
        </xs:element>
        <xs:element name="Titles">
          <xs:complexType>
            <xs:sequence>
              <xs:element minOccurs="0" name="title_id" type="xs:string" />
              <xs:element minOccurs="0" name="title" type="xs:string" />
              <xs:element minOccurs="0" name="type" type="xs:string" />
              <xs:element minOccurs="0" name="pub_id" type="xs:string" />
              <xs:element minOccurs="0" name="price" type="xs:decimal" />
              <xs:element minOccurs="0" name="advance" type="xs:decimal" />
              <xs:element minOccurs="0" name="royalty" type="xs:int" />
              <xs:element minOccurs="0" name="ytd_sales" type="xs:int" />
              <xs:element minOccurs="0" name="notes" type="xs:string" />
              <xs:element minOccurs="0" name="pubdate" type="xs:dateTime" />
            </xs:sequence>
          </xs:complexType>
        </xs:element>
      </xs:choice>
    </xs:complexType>
  </xs:element>
</xs:schema>
<?xml version="1.0" encoding="utf-8"?>
<NewDataSet xmlns="http://tempuri.org/";>
  <xs:schema id="NewDataSet" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema"; xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
    <xs:element name="NewDataSet" msdata:IsDataSet="true">
      <xs:complexType>
        <xs:choice maxOccurs="unbounded">
          <xs:element name="Authors">
            <xs:complexType>
              <xs:sequence>
                <xs:element name="au_id" type="xs:string" minOccurs="0" />
                <xs:element name="au_lname" type="xs:string" minOccurs="0" />
                <xs:element name="au_fname" type="xs:string" minOccurs="0" />
                <xs:element name="phone" type="xs:string" minOccurs="0" />
                <xs:element name="address" type="xs:string" minOccurs="0" />
                <xs:element name="city" type="xs:string" minOccurs="0" />
                <xs:element name="state" type="xs:string" minOccurs="0" />
                <xs:element name="zip" type="xs:string" minOccurs="0" />
                <xs:element name="contract" type="xs:boolean" minOccurs="0" />
              </xs:sequence>
            </xs:complexType>
          </xs:element>
          <xs:element name="Titles">
            <xs:complexType>
              <xs:sequence>
                <xs:element name="title_id" type="xs:string" minOccurs="0" />
                <xs:element name="title" type="xs:string" minOccurs="0" />
                <xs:element name="type" type="xs:string" minOccurs="0" />
                <xs:element name="pub_id" type="xs:string" minOccurs="0" />
                <xs:element name="price" type="xs:decimal" minOccurs="0" />
                <xs:element name="advance" type="xs:decimal" minOccurs="0" />
                <xs:element name="royalty" type="xs:int" minOccurs="0" />
                <xs:element name="ytd_sales" type="xs:int" minOccurs="0" />
                <xs:element name="notes" type="xs:string" minOccurs="0" />
                <xs:element name="pubdate" type="xs:dateTime" minOccurs="0" />
              </xs:sequence>
            </xs:complexType>
          </xs:element>
        </xs:choice>
      </xs:complexType>
    </xs:element>
  </xs:schema>
  <diffgr:diffgram xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:diffgr="urn:schemas-microsoft-com:xml-diffgram-v1">
    <NewDataSet xmlns="">
      <Authors diffgr:id="Authors1" msdata:rowOrder="0">
        <au_id>172-32-1176</au_id>
        <au_lname>White</au_lname>
        <au_fname>Johnson</au_fname>
        <phone>408 496-7223</phone>
        <address>10932 Bigge Rd.</address>
        <city>Menlo Park</city>
        <state>CA</state>
        <zip>94025</zip>
        <contract>true</contract>
      </Authors>
      <Authors diffgr:id="Authors2" msdata:rowOrder="1">
        <au_id>213-46-8915</au_id>
        <au_lname>Green</au_lname>
        <au_fname>Marjorie</au_fname>
        <phone>415 986-7020</phone>
        <address>309 63rd St. #411</address>
        <city>Oakland</city>
        <state>CA</state>
        <zip>94618</zip>
        <contract>true</contract>
      </Authors>
      <Authors diffgr:id="Authors3" msdata:rowOrder="2">
        <au_id>238-95-7766</au_id>
        <au_lname>Carson</au_lname>
        <au_fname>Cheryl</au_fname>
        <phone>415 548-7723</phone>
        <address>589 Darwin Ln.</address>
        <city>Berkeley</city>
        <state>CA</state>
        <zip>94705</zip>
        <contract>true</contract>
      </Authors>
      <Authors diffgr:id="Authors4" msdata:rowOrder="3">
        <au_id>267-41-2394</au_id>
        <au_lname>O'Leary</au_lname>
        <au_fname>Michael</au_fname>
        <phone>408 286-2428</phone>
        <address>22 Cleveland Av. #14</address>
        <city>San Jose</city>
        <state>CA</state>
        <zip>95128</zip>
        <contract>true</contract>
      </Authors>
      <Authors diffgr:id="Authors5" msdata:rowOrder="4">
        <au_id>274-80-9391</au_id>
        <au_lname>Straight</au_lname>
        <au_fname>Dean</au_fname>
        <phone>415 834-2919</phone>
        <address>5420 College Av.</address>
        <city>Oakland</city>
        <state>CA</state>
        <zip>94609</zip>
        <contract>true</contract>
      </Authors>
      <Authors diffgr:id="Authors6" msdata:rowOrder="5">
        <au_id>341-22-1782</au_id>
        <au_lname>Smith</au_lname>
        <au_fname>Meander</au_fname>
        <phone>913 843-0462</phone>
        <address>10 Mississippi Dr.</address>
        <city>Lawrence</city>
        <state>KS</state>
        <zip>66044</zip>
        <contract>false</contract>
      </Authors>
      <Authors diffgr:id="Authors7" msdata:rowOrder="6">
        <au_id>409-56-7008</au_id>
        <au_lname>Bennet</au_lname>
        <au_fname>Abraham</au_fname>
        <phone>415 658-9932</phone>
        <address>6223 Bateman St.</address>
        <city>Berkeley</city>
        <state>CA</state>
        <zip>94705</zip>
        <contract>true</contract>
      </Authors>
      <Authors diffgr:id="Authors8" msdata:rowOrder="7">
        <au_id>427-17-2319</au_id>
        <au_lname>Dull</au_lname>
        <au_fname>Ann</au_fname>
        <phone>415 836-7128</phone>
        <address>3410 Blonde St.</address>
        <city>Palo Alto</city>
        <state>CA</state>
        <zip>94301</zip>
        <contract>true</contract>
      </Authors>
      <Authors diffgr:id="Authors9" msdata:rowOrder="8">
        <au_id>472-27-2349</au_id>
        <au_lname>Gringlesby</au_lname>
        <au_fname>Burt</au_fname>
        <phone>707 938-6445</phone>
        <address>PO Box 792</address>
        <city>Covelo</city>
        <state>CA</state>
        <zip>95428</zip>
        <contract>true</contract>
      </Authors>
      <Authors diffgr:id="Authors10" msdata:rowOrder="9">
        <au_id>486-29-1786</au_id>
        <au_lname>Locksley</au_lname>
        <au_fname>Charlene</au_fname>
        <phone>415 585-4620</phone>
        <address>18 Broadway Av.</address>
        <city>San Francisco</city>
        <state>CA</state>
        <zip>94130</zip>
        <contract>true</contract>
      </Authors>
      <Authors diffgr:id="Authors11" msdata:rowOrder="10">
        <au_id>527-72-3246</au_id>
        <au_lname>Greene</au_lname>
        <au_fname>Morningstar</au_fname>
        <phone>615 297-2723</phone>
        <address>22 Graybar House Rd.</address>
        <city>Nashville</city>
        <state>TN</state>
        <zip>37215</zip>
        <contract>false</contract>
      </Authors>
      <Authors diffgr:id="Authors12" msdata:rowOrder="11">
        <au_id>648-92-1872</au_id>
        <au_lname>Blotchet-Halls</au_lname>
        <au_fname>Reginald</au_fname>
        <phone>503 745-6402</phone>
        <address>55 Hillsdale Bl.</address>
        <city>Corvallis</city>
        <state>OR</state>
        <zip>97330</zip>
        <contract>true</contract>
      </Authors>
      <Authors diffgr:id="Authors13" msdata:rowOrder="12">
        <au_id>672-71-3249</au_id>
        <au_lname>Yokomoto</au_lname>
        <au_fname>Akiko</au_fname>
        <phone>415 935-4228</phone>
        <address>3 Silver Ct.</address>
        <city>Walnut Creek</city>
        <state>CA</state>
        <zip>94595</zip>
        <contract>true</contract>
      </Authors>
      <Authors diffgr:id="Authors14" msdata:rowOrder="13">
        <au_id>712-45-1867</au_id>
        <au_lname>del Castillo</au_lname>
        <au_fname>Innes</au_fname>
        <phone>615 996-8275</phone>
        <address>2286 Cram Pl. #86</address>
        <city>Ann Arbor</city>
        <state>MI</state>
        <zip>48105</zip>
        <contract>true</contract>
      </Authors>
      <Authors diffgr:id="Authors15" msdata:rowOrder="14">
        <au_id>722-51-5454</au_id>
        <au_lname>DeFrance</au_lname>
        <au_fname>Michel</au_fname>
        <phone>219 547-9982</phone>
        <address>3 Balding Pl.</address>
        <city>Gary</city>
        <state>IN</state>
        <zip>46403</zip>
        <contract>true</contract>
      </Authors>
      <Authors diffgr:id="Authors16" msdata:rowOrder="15">
        <au_id>724-08-9931</au_id>
        <au_lname>Stringer</au_lname>
        <au_fname>Dirk</au_fname>
        <phone>415 843-2991</phone>
        <address>5420 Telegraph Av.</address>
        <city>Oakland</city>
        <state>CA</state>
        <zip>94609</zip>
        <contract>false</contract>
      </Authors>
      <Authors diffgr:id="Authors17" msdata:rowOrder="16">
        <au_id>724-80-9391</au_id>
        <au_lname>MacFeather</au_lname>
        <au_fname>Stearns</au_fname>
        <phone>415 354-7128</phone>
        <address>44 Upland Hts.</address>
        <city>Oakland</city>
        <state>CA</state>
        <zip>94612</zip>
        <contract>true</contract>
      </Authors>
      <Authors diffgr:id="Authors18" msdata:rowOrder="17">
        <au_id>756-30-7391</au_id>
        <au_lname>Karsen</au_lname>
        <au_fname>Livia</au_fname>
        <phone>415 534-9219</phone>
        <address>5720 McAuley St.</address>
        <city>Oakland</city>
        <state>CA</state>
        <zip>94609</zip>
        <contract>true</contract>
      </Authors>
      <Authors diffgr:id="Authors19" msdata:rowOrder="18">
        <au_id>807-91-6654</au_id>
        <au_lname>Panteley</au_lname>
        <au_fname>Sylvia</au_fname>
        <phone>301 946-8853</phone>
        <address>1956 Arlington Pl.</address>
        <city>Rockville</city>
        <state>MD</state>
        <zip>20853</zip>
        <contract>true</contract>
      </Authors>
      <Authors diffgr:id="Authors20" msdata:rowOrder="19">
        <au_id>846-92-7186</au_id>
        <au_lname>Hunter</au_lname>
        <au_fname>Sheryl</au_fname>
        <phone>415 836-7128</phone>
        <address>3410 Blonde St.</address>
        <city>Palo Alto</city>
        <state>CA</state>
        <zip>94301</zip>
        <contract>true</contract>
      </Authors>
      <Authors diffgr:id="Authors21" msdata:rowOrder="20">
        <au_id>893-72-1158</au_id>
        <au_lname>McBadden</au_lname>
        <au_fname>Heather</au_fname>
        <phone>707 448-4982</phone>
        <address>301 Putnam</address>
        <city>Vacaville</city>
        <state>CA</state>
        <zip>95688</zip>
        <contract>false</contract>
      </Authors>
      <Authors diffgr:id="Authors22" msdata:rowOrder="21">
        <au_id>899-46-2035</au_id>
        <au_lname>Ringer</au_lname>
        <au_fname>Anne</au_fname>
        <phone>801 826-0752</phone>
        <address>67 Seventh Av.</address>
        <city>Salt Lake City</city>
        <state>UT</state>
        <zip>84152</zip>
        <contract>true</contract>
      </Authors>
      <Authors diffgr:id="Authors23" msdata:rowOrder="22">
        <au_id>998-72-3567</au_id>
        <au_lname>Ringer</au_lname>
        <au_fname>Albert</au_fname>
        <phone>801 826-0752</phone>
        <address>67 Seventh Av.</address>
        <city>Salt Lake City</city>
        <state>UT</state>
        <zip>84152</zip>
        <contract>true</contract>
      </Authors>
      <Titles diffgr:id="Titles1" msdata:rowOrder="0">
        <title_id>BU1032</title_id>
        <title>The Busy Executive's Database Guide</title>
        <type>business    </type>
        <pub_id>1389</pub_id>
        <price>19.99</price>
        <advance>5000</advance>
        <royalty>10</royalty>
        <ytd_sales>4095</ytd_sales>
        <notes>An overview of available database systems with emphasis on common business applications. Illustrated.</notes>
        <pubdate>1991-06-12T00:00:00.0000000-04:00</pubdate>
      </Titles>
      <Titles diffgr:id="Titles2" msdata:rowOrder="1">
        <title_id>BU1111</title_id>
        <title>Cooking with Computers: Surreptitious Balance Sheets</title>
        <type>business    </type>
        <pub_id>1389</pub_id>
        <price>11.95</price>
        <advance>5000</advance>
        <royalty>10</royalty>
        <ytd_sales>3876</ytd_sales>
        <notes>Helpful hints on how to use your electronic resources to the best advantage.</notes>
        <pubdate>1991-06-09T00:00:00.0000000-04:00</pubdate>
      </Titles>
      <Titles diffgr:id="Titles3" msdata:rowOrder="2">
        <title_id>BU2075</title_id>
        <title>You Can Combat Computer Stress!</title>
        <type>business    </type>
        <pub_id>0736</pub_id>
        <price>2.99</price>
        <advance>10125</advance>
        <royalty>24</royalty>
        <ytd_sales>18722</ytd_sales>
        <notes>The latest medical and psychological techniques for living with the electronic office. Easy-to-understand explanations.</notes>
        <pubdate>1991-06-30T00:00:00.0000000-04:00</pubdate>
      </Titles>
      <Titles diffgr:id="Titles4" msdata:rowOrder="3">
        <title_id>BU7832</title_id>
        <title>Straight Talk About Computers</title>
        <type>business    </type>
        <pub_id>1389</pub_id>
        <price>19.99</price>
        <advance>5000</advance>
        <royalty>10</royalty>
        <ytd_sales>4095</ytd_sales>
        <notes>Annotated analysis of what computers can do for you: a no-hype guide for the critical user.</notes>
        <pubdate>1991-06-22T00:00:00.0000000-04:00</pubdate>
      </Titles>
      <Titles diffgr:id="Titles5" msdata:rowOrder="4">
        <title_id>MC2222</title_id>
        <title>Silicon Valley Gastronomic Treats</title>
        <type>mod_cook    </type>
        <pub_id>0877</pub_id>
        <price>19.99</price>
        <advance>0</advance>
        <royalty>12</royalty>
        <ytd_sales>2032</ytd_sales>
        <notes>Favorite recipes for quick, easy, and elegant meals.</notes>
        <pubdate>1991-06-09T00:00:00.0000000-04:00</pubdate>
      </Titles>
      <Titles diffgr:id="Titles6" msdata:rowOrder="5">
        <title_id>MC3021</title_id>
        <title>The Gourmet Microwave</title>
        <type>mod_cook    </type>
        <pub_id>0877</pub_id>
        <price>2.99</price>
        <advance>15000</advance>
        <royalty>24</royalty>
        <ytd_sales>22246</ytd_sales>
        <notes>Traditional French gourmet recipes adapted for modern microwave cooking.</notes>
        <pubdate>1991-06-18T00:00:00.0000000-04:00</pubdate>
      </Titles>
      <Titles diffgr:id="Titles7" msdata:rowOrder="6">
        <title_id>MC3026</title_id>
        <title>The Psychology of Computer Cooking</title>
        <type>UNDECIDED   </type>
        <pub_id>0877</pub_id>
        <pubdate>2002-03-11T09:15:32.1600000-05:00</pubdate>
      </Titles>
      <Titles diffgr:id="Titles8" msdata:rowOrder="7">
        <title_id>PC1035</title_id>
        <title>But Is It User Friendly?</title>
        <type>popular_comp</type>
        <pub_id>1389</pub_id>
        <price>22.95</price>
        <advance>7000</advance>
        <royalty>16</royalty>
        <ytd_sales>8780</ytd_sales>
        <notes>A survey of software for the naive user, focusing on the 'friendliness' of each.</notes>
        <pubdate>1991-06-30T00:00:00.0000000-04:00</pubdate>
      </Titles>
      <Titles diffgr:id="Titles9" msdata:rowOrder="8">
        <title_id>PC8888</title_id>
        <title>Secrets of Silicon Valley</title>
        <type>popular_comp</type>
        <pub_id>1389</pub_id>
        <price>20</price>
        <advance>8000</advance>
        <royalty>10</royalty>
        <ytd_sales>4095</ytd_sales>
        <notes>Muckraking reporting on the world's largest computer hardware and software manufacturers.</notes>
        <pubdate>1994-06-12T00:00:00.0000000-04:00</pubdate>
      </Titles>
      <Titles diffgr:id="Titles10" msdata:rowOrder="9">
        <title_id>PC9999</title_id>
        <title>Net Etiquette</title>
        <type>popular_comp</type>
        <pub_id>1389</pub_id>
        <notes>A must-read for computer conferencing.</notes>
        <pubdate>2002-03-11T09:15:32.1600000-05:00</pubdate>
      </Titles>
      <Titles diffgr:id="Titles11" msdata:rowOrder="10">
        <title_id>PS1372</title_id>
        <title>Computer Phobic AND Non-Phobic Individuals: Behavior Variations</title>
        <type>psychology  </type>
        <pub_id>0877</pub_id>
        <price>21.59</price>
        <advance>7000</advance>
        <royalty>10</royalty>
        <ytd_sales>375</ytd_sales>
        <notes>A must for the specialist, this book examines the difference between those who hate and fear computers and those who don't.</notes>
        <pubdate>1991-10-21T00:00:00.0000000-04:00</pubdate>
      </Titles>
      <Titles diffgr:id="Titles12" msdata:rowOrder="11">
        <title_id>PS2091</title_id>
        <title>Is Anger the Enemy?</title>
        <type>psychology  </type>
        <pub_id>0736</pub_id>
        <price>10.95</price>
        <advance>2275</advance>
        <royalty>12</royalty>
        <ytd_sales>2045</ytd_sales>
        <notes>Carefully researched study of the effects of strong emotions on the body. Metabolic charts included.</notes>
        <pubdate>1991-06-15T00:00:00.0000000-04:00</pubdate>
      </Titles>
      <Titles diffgr:id="Titles13" msdata:rowOrder="12">
        <title_id>PS2106</title_id>
        <title>Life Without Fear</title>
        <type>psychology  </type>
        <pub_id>0736</pub_id>
        <price>7</price>
        <advance>6000</advance>
        <royalty>10</royalty>
        <ytd_sales>111</ytd_sales>
        <notes>New exercise, meditation, and nutritional techniques that can reduce the shock of daily interactions. Popular audience. Sample menus included, exercise video available separately.</notes>
        <pubdate>1991-10-05T00:00:00.0000000-04:00</pubdate>
      </Titles>
      <Titles diffgr:id="Titles14" msdata:rowOrder="13">
        <title_id>PS3333</title_id>
        <title>Prolonged Data Deprivation: Four Case Studies</title>
        <type>psychology  </type>
        <pub_id>0736</pub_id>
        <price>19.99</price>
        <advance>2000</advance>
        <royalty>10</royalty>
        <ytd_sales>4072</ytd_sales>
        <notes>What happens when the data runs dry?  Searching evaluations of information-shortage effects.</notes>
        <pubdate>1991-06-12T00:00:00.0000000-04:00</pubdate>
      </Titles>
      <Titles diffgr:id="Titles15" msdata:rowOrder="14">
        <title_id>PS7777</title_id>
        <title>Emotional Security: A New Algorithm</title>
        <type>psychology  </type>
        <pub_id>0736</pub_id>
        <price>7.99</price>
        <advance>4000</advance>
        <royalty>10</royalty>
        <ytd_sales>3336</ytd_sales>
        <notes>Protecting yourself and your loved ones from undue emotional stress in the modern world. Use of computer and nutritional aids emphasized.</notes>
        <pubdate>1991-06-12T00:00:00.0000000-04:00</pubdate>
      </Titles>
      <Titles diffgr:id="Titles16" msdata:rowOrder="15">
        <title_id>TC3218</title_id>
        <title>Onions, Leeks, and Garlic: Cooking Secrets of the Mediterranean</title>
        <type>trad_cook   </type>
        <pub_id>0877</pub_id>
        <price>20.95</price>
        <advance>7000</advance>
        <royalty>10</royalty>
        <ytd_sales>375</ytd_sales>
        <notes>Profusely illustrated in color, this makes a wonderful gift book for a cuisine-oriented friend.</notes>
        <pubdate>1991-10-21T00:00:00.0000000-04:00</pubdate>
      </Titles>
      <Titles diffgr:id="Titles17" msdata:rowOrder="16">
        <title_id>TC4203</title_id>
        <title>Fifty Years in Buckingham Palace Kitchens</title>
        <type>trad_cook   </type>
        <pub_id>0877</pub_id>
        <price>11.95</price>
        <advance>4000</advance>
        <royalty>14</royalty>
        <ytd_sales>15096</ytd_sales>
        <notes>More anecdotes from the Queen's favorite cook describing life among English royalty. Recipes, techniques, tender vignettes.</notes>
        <pubdate>1991-06-12T00:00:00.0000000-04:00</pubdate>
      </Titles>
      <Titles diffgr:id="Titles18" msdata:rowOrder="17">
        <title_id>TC7777</title_id>
        <title>Sushi, Anyone?</title>
        <type>trad_cook   </type>
        <pub_id>0877</pub_id>
        <price>14.99</price>
        <advance>8000</advance>
        <royalty>10</royalty>
        <ytd_sales>4095</ytd_sales>
        <notes>Detailed instructions on how to make authentic Japanese sushi in your spare time.</notes>
        <pubdate>1991-06-12T00:00:00.0000000-04:00</pubdate>
      </Titles>
    </NewDataSet>
  </diffgr:diffgram>
</NewDataSet>

Reply via email to