Hi, I have a webservice in ASP.NET that has one exposed WebMethod that lets the outerworld send us some data and we return a response back after processing that data. We have a restriction though, our clients use a different develpment environment, and they do not use web services as we normally do. They will be using 'HTTP Post' to call the web method exposed by the web service in the following manner: http://mydomain.com/Webservice.asmx/ProcessData?=Parameter = Some Data And the response that they get back is as follows Response As a String Is there anyway that I can return only the response back to the client without the XML tags? My client is being really adamant about getting only the response back and we already have a running webservice that would be really hard to convert to any other format. Regards Mohan
spmohanraj
Posts
-
how to remove XML tag from a web service response -
Access Rights Problem in MySqlHi :) I am having a problem in connecting to the remote mysql. When i giving the correct ip address,port,userid,pwd but it giving an error. Access denied for the user. MySql error 1045. But the server is get pinging from my machine. Please suggest me. Thanking you in Advance Mohanraj.S
-
Mailing in asp.netHi I am having a situation. I want to send a mail, if the receiver dosen't open the mail up to 24 hours i want to get a remainder mail. How can can i do this in ASP.Net. Thanking You in Advance S.Mohanraj
-
Closing a windowyou have to use this script in the parent page var rc=window.showModalDialog('PageName.aspx?','','dialogHeight:350px;dialogWidth:363px;'); if(rc==null){document.PageName.submit(); the "if(rc==null){document.PageName.submit();" is to refresh the parent window after closing the child window In the Child window window.close();
-
Dynamic web service in asp.netI have a situation where in i have to call a webservice from my webapplication without having to create a WebReference in my application. Is this possible ?. For example: I have created a webservice Webservice:HelloWorldWebservice Webmethod: HelloWorld this webmethod returns a string "Hello" can i use this webservice in my application just by using the webservice name and its method. Thanks in Advance Mohanraj.S