Consider the folowing CAML query:
<Query>
<Where>
<And>
<Eq>
<FieldRef Name="Field1"/>
<Value Type="Text">Field value 1</Value>
</Eq>
<Eq>
<FieldRef Name="Field2"/>
<Value Type="Text">Field value 2</Value>
</Eq>
<IsNull>
<FieldRef Name="Field3"/>
</IsNull>
</And>
</Where>
SharePoint raises a Microsoft.SharePoint.SoapServer.SoapServerException
. What is the problem here?