NSMutableString *soapMsg = [[NSMutableString alloc] init];
[soapMsg appendString:[NSString stringWithFormat:@"<INSERT xmlns=\"http://viium.com/\">\n"]];
[soapMsg appendString:@"<firstname>"];
//[soapMsg appendString:actionHTMLString];
[soapMsg appendString:@"RAHUL"];
[soapMsg appendString:@"</firstname>"];
[soapMsg appendString:@"<lastname>"];
[soapMsg appendString:@"sharma"];
[soapMsg appendString:@"</lastname>"];
[soapMsg appendString:[NSString stringWithFormat:@"</INSERT>"]];
[soapMsg appendString:@"</soap:Body>"];
[soapMsg appendString:@"</soap:Envelope>"];
我有这个Xml消息如何在webservice c#??
中接收firstname和lastname