I was sending xml parameter to rest service like below
<Envelope xmlns="http://w3gana/2003/05/soap-envelope">
<Header>
<To xmlns="http://www.w3.svc</To>
</Header>
<Body>
<tns:RetRES>
<tns:EmpDef>
<studyChar>
<I2:code code="QA Last" />
<I2:value value="BDA & MAST" />
</studyChar>
</I2:planStd>
</tns:EmpDef>
</tns:RetRES>
</Body>
</Envelope>
It was throwing error like "there is an unclosed literal string line 1", but it was accepting alphabets.
I have tried following strings instead of & but still i'm getting the same error.
& & & & &
Please help to resolve this