Where Is WSDL?


The only way that applications like InfoPath can access a specific SOAP endpoint is to know both the target URL value and the expected message format. Neither SOAP nor XML can fully describe this type of information. It s the job of WSDL to provide the SOAP service description using an XML schema to describe the expected message format and the service invocation requirements. WSDL defines Web Services as a series of network endpoints or virtual ports. The combination of these endpoints and an XML-based message description enables interface reusability. A WSDL document defines a series of XML elements that describe the Web Service interface. Table 4.1 shows the main WSDL document elements and their use.

Table 4.1: SDL document definition elements.

Name

Description

Type

A container for type definitions using an agreed-upon type system

Message

An abstract definition of the data being communicated

Operation

A description of the actions supported by the service

Port Types

The abstract set of operations supported by the services

Port Type

A set of operations supported by one or more endpoints

Bindings

The protocol and data format required for a particular port type

Port

The definition of a single endpoint defined as a combination of bindings and network addresses

Service

A collection of related endpoints

The WSDL specification defines an XML-based format independent of SOAP and HTTP. WSDL is responsible for providing the remote invocation mechanism and message description to access Web Services. Within the .NET Framework, the .asmx handler automatically generates WSDL documents. For example, anytime the query string ?wsdl is appended to an .asmx page, the Framework generates a default WSDL file. Figure 4.14 shows the WSDL for the Interview Feedback service that we created earlier.

Click To expand
Figure 4.14: The WSDL for the Interview Feedback Web Service.

The WSDL document contains a single < soap:binding > element that defines the type of Web Service. The WSDL 1.1 specification defines two SOAP message styles: RPC and document/literal. Within document-based binding, the < soap:Body > element contains one or more child elements called parts . There are no specific SOAP formatting rules regarding what this element can contain, and the content is based on mutual agreement between both the sender and receiver. RPC messages contain a < soap:Body > element with the name of the method or remote procedure being invoked. This element, in turn , contains another element for each parameter of that procedure. Take a look at an example of a WSDL message for each of the two types of possible SOAP messages. Listing 4.4 shows a document/literal SOAP message, while Listing 4.5 shows an RPC SOAP message.

Listing 4.4: A document/literal SOAP message.
Start example
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <!-- the following is an XML document described in the  service'scontract using XML Schema. In this example we know the  document structure but not the actual processing specifics-->     <Example xmlns="http://example.org/soapformat">       <invent>         <Item>           <Number>888-321-4567</Number>           <Quantity>1200</Quantity>         </Item>         <Item>           <Number>321-452-1200</Number>           <Quantity>500</Quantity>         </Item>       </invent>     </Example>   </soap:Body> </soap:Envelope>
End example
 
Listing 4.5: An RPC SOAP message.
Start example
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <!-- InventoryQuantity is the name of the procedure being invoked and  Number and Quantity are parameters of the procedure. The two inventory elements are  namespace qualified but point to a different namespace area. -->     <x:InventoryQuantity xmlns:x="http://example.org/soapformat/Example">       <invent>         <t:Inventory xmlns:t="http://example.org/soapformat">           <t:Number>123-456-7890</t:Number>           <t:Quantity>1200</t:Quantity>         </t:Inventory>         <t:Inventory>           <t:Number>888-999-0120</t:Number>           <t:Quantity>500</t:Quantity>         </t:Inventory>       </invent>     </x: InventoryQuantity >   </soap:Body> </soap:Envelope>
End example
 

The main difference between these two kinds of WSDL types is that within RPC you need to know the type and namespace requirements of the soap:zBody element. This means that the schema and RPC rules are required to validate the message. All Web Services within the .NET Framework are by default document/literal, although there is support for RPC types of services. InfoPath supports only document/literal style of Web Services.

Note  

If you attempt to connect InfoPath with an RPC-based Web Service, you will receive an error.

InfoPath and WSDL

InfoPath accesses Web Services like any other data source used to create a schema. Within InfoPath, once the Web Service is selected, the Web Services Adapter calls the WSDL and based on the returned values creates a set of schemas that can be mapped directly to the data source. An HTTP GET request is used to call the WSDL and return the Web Service structure. This structure is mapped to a set of fields that defines the message format sent based on the data filled into the form.

Where s the SOAP?

SOAP is a lightweight protocol intended for exchanging XML. The SOAP framework consists of an Envelope, Header, Body, and Fault that are part of the http://schemas.xmlsoap.org/soap/envelope namespace. This namespace provides the XML-based object protocols for the exchange of information within the .NET Framework. The Envelope defines a framework for describing what is contained in the message and how it should be processed ; it is also a set of encoding rules for creating instances of application-defined types, and a method for representing remote procedure calls and receiving the response. The Header area defines the beginning of a specific set of Body segments that are contained within the Envelope. The Fault section provides a Body-level area to store and report errors.

All encoding with SOAP is in XML. For example, once an InfoPath form is created, any information entered into the form and then saved to the Web Service data source is submitted as part of a SOAP message that generates the network trace shown in Listing 4.6.

Listing 4.6: The network trace generated by an InfoPath solution communicating with the Web Service.
Start example
POST /InterviewFeedback/Feedback.asmx HTTP/1.1
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a Content-Type: text/xml; charset="UTF-8"
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a User-Agent: SOAP Toolkit 3.0
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a Host: localhost
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a Content-Length: 2265
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a Connection: Keep-Alive
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a Pragma: no-cache
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:ApplicantName>Joe Brown</s0:ApplicantName>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:InterviewDate>8/12/03</s0:InterviewDate>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:InterviewType>First</s0:InterviewType>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:ExperienceO>true</s0:ExperienceO>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:ExperienceG>false</s0:ExperienceG>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:ExperienceI>false</s0:ExperienceI>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:ExperienceU>false</s0:ExperienceU>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:ExperienceN>false</s0:ExperienceN>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:ExperienceComment>Has the experience</s0:ExperienceComment>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:JobKnowledgeO>false</s0:JobKnowledgeO>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:JobKnowledgeG>false</s0:JobKnowledgeG>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:JobKnowledgeI>true</s0:JobKnowledgeI>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:JobKnowledgeU>false</s0:JobKnowledgeU>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:JobKnowledgeN>false</s0:JobKnowledgeN>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:EducationO>false</s0:EducationO>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:EducationG>true</s0:EducationG>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:EducationI>false</s0:EducationI>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:EducationU>false</s0:EducationU>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:EducationN>false</s0:EducationN>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:EducationComment>Proper educational components</s0:EducationComment>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:MotivationO>false</s0:MotivationO>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:MotivationG>true</s0:MotivationG>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:MotivationI>false</s0:MotivationI>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:MotivationU>false</s0:MotivationU>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:MotivationN>false</s0:MotivationN>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a </s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a Server: Microsoft-IIS/5.1
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a Date: Sat, 05 Jul 2003 18:42:05 GMT
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a X-Powered-By: ASP.NET
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a HTTP/1.1 200 OK
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a Server: Microsoft-IIS/5.1
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a Date: Sat, 05 Jul 2003 18:42:07 GMT
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a X-Powered-By: ASP.NET
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a X-AspNet-Version: 1.1.4322
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a Cache-Control: private, max-age=0
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a Content-Type: text/xml; charset=utf-8
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a Content-Length: 324
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
d
 POST /InterviewFeedback/Feedback.asmx HTTP/1.1\0d\0a SOAPAction: "http://tempuri.org/InterviewFeedback/Service1/SendFeedback"\0d\0a Content-Type: text/xml; charset="UTF-8"\0d\0a User-Agent: SOAP Toolkit 3.0\0d\0a Host: localhost\0d\0a Content-Length: 2265\0d\0a Connection: Keep-Alive\0d\0a Pragma: no-cache\0d\0a \0d\0a <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP- ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP- ENV:Body><s0:SendFeedback xmlns:s0="http://tempuri.org/InterviewFeedback/Service1">\0d\0a \09\09\09<s0:EvaluatorName>Thom Robbins</s0:EvaluatorName>\0d\0a \09\09\09<s0:ApplicantName>Joe Brown</s0:ApplicantName>\0d\0a \09\09\09<s0:PositionAppliedFor>Manager</s0:PositionAppliedFor>\0d\0a \09\09\09<s0:InterviewDate>8/12/03</s0:InterviewDate>\0d\0a \09\09\09<s0:InterviewType>First</s0:InterviewType>\0d\0a \09\09\09<s0:ExperienceO>true</s0:ExperienceO>\0d\0a \09\09\09<s0:ExperienceG>false</s0:ExperienceG>\0d\0a \09\09\09<s0:ExperienceI>false</s0:ExperienceI>\0d\0a \09\09\09<s0:ExperienceU>false</s0:ExperienceU>\0d\0a \09\09\09<s0:ExperienceN>false</s0:ExperienceN>\0d\0a \09\09\09<s0:ExperienceComment>Has the experience</s0:ExperienceComment>\0d\0a \09\09\09<s0:JobKnowledgeO>false</s0:JobKnowledgeO>\0d\0a \09\09\09<s0:JobKnowledgeG>false</s0:JobKnowledgeG>\0d\0a \09\09\09<s0:JobKnowledgeI>true</s0:JobKnowledgeI>\0d\0a \09\09\09<s0:JobKnowledgeU>false</s0:JobKnowledgeU>\0d\0a \09\09\09<s0:JobKnowledgeN>false</s0:JobKnowledgeN>\0d\0a \09\09\09<s0:JobKnowledgeComment>Possesses the job knowledge</s0:JobKnowledgeComment>\0d\0a \09\09\09<s0:EducationO>false</s0:EducationO>\0d\0a \09\09\09<s0:EducationG>true</s0:EducationG>\0d\0a \09\09\09<s0:EducationI>false</s0:EducationI>\0d\0a \09\09\09<s0:EducationU>false</s0:EducationU>\0d\0a \09\09\09<s0:EducationN>false</s0:EducationN>\0d\0a \09\09\09<s0:EducationComment>Proper educational  components  </s0:EducationComment>\0d\0a \09\09\09<s0:CommunicationSkillsO>false</s0:CommunicationSkillsO>\0d\0a \09\09\09<s0:CommunicationSkillsG>false</s0:CommunicationSkillsG>\0d\0a \09\09\09<s0:CommunicationSkillsI>true</s0:CommunicationSkillsI>\0d\0a \09\09\09<s0:CommunicationSkillsU>false</s0:CommunicationSkillsU>\0d\0a \09\09\09<s0:CommunicationSkillsN>false</s0:CommunicationSkillsN>\0d\0a \09\09\09<s0:CommunicationSkillsComment>Communicates Well</s0:CommunicationSkillsComment>\0d\0a \09\09\09<s0:MotivationO>false</s0:MotivationO>\0d\0a \09\09\09<s0:MotivationG>true</s0:MotivationG>\0d\0a \09\09\09<s0:MotivationI>false</s0:MotivationI>\0d\0a \09\09\09<s0:MotivationU>false</s0:MotivationU>\0d\0a \09\09\09<s0:MotivationN>false</s0:MotivationN>\0d\0a \09\09\09<s0:MotivationComment>Motivation seems to be high</s0:MotivationComment>\0d\0a \09\09</s0:SendFeedback></SOAP-ENV:Body></SOAP-ENV:Envelope> HTTP/1.1 100 Continue\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:05 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a \0d\0a HTTP/1.1 200 OK\0d\0a Server: Microsoft-IIS/5.1\0d\0a Date: Sat, 05 Jul 2003 18:42:07 GMT\0d\0a X-Powered-By: ASP.NET\0d\0a X-AspNet-Version: 1.1.4322\0d\0a Cache-Control: private, max-age=0\0d\0a Content-Type: text/xml; charset=utf-8\0d\0a Content-Length: 324\0d\0a \0d\0a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope> 
a <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SendFeedbackRe sponse xmlns="http://tempuri.org/InterviewFeedback/Service1" /></soap:Body></soap:Envelope>
End example
 

During the submission process, InfoPath automatically generates a SOAP message based on the WSDL received during the creation of the data source. The data source then creates and submits the SOAP message.




Programming Microsoft Infopath. A Developers Guide
Programming Microsoft Infopath: A Developers Guide
ISBN: 1584504536
EAN: 2147483647
Year: 2006
Pages: 111
Authors: Thom Robbins

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net