BirdwellMusicServices


Click here for a complete list of operations.

Search

Returns an array of SearchResultItem objects which contain results from the search. To search everything, simply set the searchTypeValue argument to a blank string; otherwise you will need to get the legal values by calling the GetSearchTypes method - you will need to pass in the value of one those items. The SearchResultItem's Url property, if not explicit (e.g., http://someserver.com/somelink.aspx, will otherwise be relative to http://www.birdwellmusic.com. This search is limited to BirdwellMusic.com only. You must have a membership ticket to call this method. Become a BirdwellMusic.com member and view your profile to obtain your ticket.

Test

The test form is only available for requests from the local machine.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /BirdwellMusicServices.asmx HTTP/1.1
Host: www.pitch-themovie.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.birdwellmusic.com/Search"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <Search xmlns="http://www.birdwellmusic.com/">
      <memberTicket>string</memberTicket>
      <criteria>string</criteria>
      <resultsMustContainAllWords>boolean</resultsMustContainAllWords>
      <searchTypeValue>string</searchTypeValue>
    </Search>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <SearchResponse xmlns="http://www.birdwellmusic.com/">
      <SearchResult>
        <SearchResultItem>
          <Label>string</Label>
          <Url>string</Url>
          <Target>string</Target>
          <Description>string</Description>
          <Content>string</Content>
          <Size>string</Size>
          <Type>string</Type>
        </SearchResultItem>
        <SearchResultItem>
          <Label>string</Label>
          <Url>string</Url>
          <Target>string</Target>
          <Description>string</Description>
          <Content>string</Content>
          <Size>string</Size>
          <Type>string</Type>
        </SearchResultItem>
      </SearchResult>
    </SearchResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /BirdwellMusicServices.asmx HTTP/1.1
Host: www.pitch-themovie.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <Search xmlns="http://www.birdwellmusic.com/">
      <memberTicket>string</memberTicket>
      <criteria>string</criteria>
      <resultsMustContainAllWords>boolean</resultsMustContainAllWords>
      <searchTypeValue>string</searchTypeValue>
    </Search>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <SearchResponse xmlns="http://www.birdwellmusic.com/">
      <SearchResult>
        <SearchResultItem>
          <Label>string</Label>
          <Url>string</Url>
          <Target>string</Target>
          <Description>string</Description>
          <Content>string</Content>
          <Size>string</Size>
          <Type>string</Type>
        </SearchResultItem>
        <SearchResultItem>
          <Label>string</Label>
          <Url>string</Url>
          <Target>string</Target>
          <Description>string</Description>
          <Content>string</Content>
          <Size>string</Size>
          <Type>string</Type>
        </SearchResultItem>
      </SearchResult>
    </SearchResponse>
  </soap12:Body>
</soap12:Envelope>