Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>For that you need to learn About webservice. You just create a webservice in asp.net and It call from the Android with URl. suppose the webservice url like : <code>localhost:1452//&lt;ApplicationName&gt;/&lt;yourAsmxFile.asmx&gt;</code> <br> please refer below url to help on it.<br><br></p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/t745kdsh.aspx" rel="nofollow noreferrer">http://msdn.microsoft.com/en-us/library/t745kdsh.aspx</a> ,</li> <li><a href="http://msdn.microsoft.com/en-us/library/ms972326.aspx" rel="nofollow noreferrer">http://msdn.microsoft.com/en-us/library/ms972326.aspx</a> ,</li> <li><a href="http://support.microsoft.com/kb/308359" rel="nofollow noreferrer">http://support.microsoft.com/kb/308359</a> ,</li> <li><a href="https://stackoverflow.com/questions/2513175/simple-webservice-code">simple webservice code?</a> ,</li> <li><a href="http://dotnetguts.blogspot.in/2007/09/all-about-web-service-in-net.html" rel="nofollow noreferrer">http://dotnetguts.blogspot.in/2007/09/all-about-web-service-in-net.html</a></li> </ul> <p>You can added new .Asmx file in your project Or You can seprate webservice project to commuinicate with others like mobile plateform.. After creating new webservice project or added <strong>.asmx</strong> file in current web application. There is a HelloWorld() Webmethod found in that file. also you should added below keys in <strong>web.config</strong> to test webservice in your localhost.</p> <pre><code>&lt;configuration&gt; &lt;system.web&gt; &lt;webServices&gt; &lt;protocols&gt; &lt;add name="HttpGet"/&gt; &lt;add name="HttpPost"/&gt; &lt;/protocols&gt; &lt;/webServices&gt; &lt;/system.web&gt; &lt;/configuration&gt; </code></pre> <p>more information you can refer : <a href="http://support.microsoft.com/kb/819267" rel="nofollow noreferrer">http://support.microsoft.com/kb/819267</a> <br> If you have added new file for example : <code>Test1.asmx</code> then you can run it on web browser. You can test your webmethod. for example: <br> your localhost url: <a href="http://localhost/myWebServiceProject/Test1.asmx" rel="nofollow noreferrer">http://localhost/myWebServiceProject/Test1.asmx</a> when you run this service file then page will shows the all <strong>web methods</strong>. then you can easily get response all the web methods by clicking perticular methods over there..</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload