How to add reference when working without VS.Net and inline code

S

Sagar

Hi,

I am working on enhancing an aspx page. The server-side is written
with inline code. The coding is not in VS.


The task is to make calls a webservice http://company/vnwebservice/vnwebservice.asmx.
The aspx page is not created in vs.net IDE but written through a text
editor.


The question is how do I add a web reference to the
http://company/vnwebservice/vnwebservice.asmx and start calling the
methods in the webservice.


I understand I have to a add a directive. Should I add a Assembly
directive or a Register directive ?


Can someone help with a example ?


<%@ Register TagPrefix="vw" TagName="vnwebservice.asmx"
src="http://
company/vnwebservice/vnwebservice.asmx" %>


<%@ Assembly src="http://company/vnwebservice/vnwebservice.asmx" %>


Thanks,
Anand
 
T

Tanzim Saqib

Hi,

I am working on enhancing an aspx page. The server-side is written
with inline code. The coding is not in VS.

The task is to make calls a webservicehttp://company/vnwebservice/vnwebservice.asmx.
The aspx page is not created in vs.net IDE but written through a text
editor.

The question is how do I add a web reference to thehttp://company/vnwebservice/vnwebservice.asmxand start calling the
methods in the webservice.

I understand I have to a add a directive. Should I add a Assembly
directive or a Register directive ?

Can someone help with a example ?

<%@ Register TagPrefix="vw" TagName="vnwebservice.asmx"
src="http://
company/vnwebservice/vnwebservice.asmx" %>

<%@ Assembly src="http://company/vnwebservice/vnwebservice.asmx" %>

Thanks,
Anand



Hey Anand

Use wsdl tool from from Visual Studio Command prompt:

wsdl /l:CS /n:MyProject /out:C:\source http://path/WebService.asmx

Here you can see by this command you can generate the source code in
C# that can invoke that WebService, MyProject is the namespace
obvisouly you are flexible to change according to your need. By /out
switch you can specify where the generated code would be stored in
your hard disk.

Now you can include this class file into your project and use as
usual. Hope it helps.

Tanzim Saqib
http://www.TanzimSaqib.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,768
Messages
2,569,575
Members
45,053
Latest member
billing-software

Latest Threads

Top