Hi
Thanks Gulli. I haven't got answer. I would explain it more. 
I have done the same way as you told (InputSource with a URL 
(systemId)). For test purposes I am passing same ill formed 
xml from server to the application for both methods. With Get 
it says that it is ill formed. With Post it doesn't give 
anything about ill formed. I think error is when I parse

in case of get 
xmlFile = www.abc.com?abc = "user"

in case of post
xmlFile = www.abc.com

parameter is posted using

URLConnection.setDoInput(true);
DataOutputStream out = new DataOutputStream
(URLConnection.getOutputStream());
out.writeBytes("abc=user");

domParser.parse(new InputSource(xmlFile));

in this case 
how does this parse function works.

in case of get it takes  the url and parameters with "?" as 
parameter

in case of post it takes the url only.

Thanks
vijay


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to