vote up 0 vote down star

Is it possible to call a web service from an inline code block in ASP.NET without adding a web reference? If so, can you provide instructions?

flag

Why would it be any different from calling the service from codebehind? Did you try it and have a problem? If so, maybe edit your question to say what problem you had. – John Saunders Jun 18 at 17:15
I don't know how to do it without adding a web reference. – Mike C. Jun 18 at 17:18
And why would you not add a web reference? What's the problem? – John Saunders Jun 18 at 17:22
Because I was attempting to make a simple singular .aspx file without having an entire project. – Mike C. Jun 18 at 18:21

3 Answers

vote up 0 vote down check

Add a web reference in a another C# project (e.g. console application). Then switch to "show all files". You'll find a hidden .cs file that contains the actual web service proxy that was created for you. (There's also a commandline tool that does the same thing, but I forgot the name)

You can copy the generated class to your .aspx into a <script runat="server"> block.

Although I don't know what you would actually need that for ;) Don't you have access to the source code of the web app?

Another solution is to create a .NET dll for the web proxy, then load this assembly dynamically using Assembly.Load(). Invoking methods dynamically is not pretty though.

link|flag
-1 for suggesting any manipulation of a generated file, including copying it. – John Saunders Jun 18 at 21:48
His method was a shortcut for running the command line tool, which is what I really did. It was the solution, and it was the only way to do it with the requirements that I had. – Mike C. Jun 21 at 3:11
vote up 1 vote down

In general inline code can do anything code behind code can do, the code behind code is just cleaner and sepearates files.

You need first to include the proper namespaces that were generated for you when you created the WebService Proxy.

The namespace include code is a bit different in the case of inline code, here is an example

<%@ Import Namespace="System.IO" %>

If you wish to read about the differences Coding horror has a great article about it

link|flag
vote up 0 vote down

If you have the Web Service's code file (*.cs) in your App_Code folder, you won't need any reference, using, etc. However, if the Web Service is not local in your project or if you have not the code in a separate .cs file in the App_Code folder, you will need a Web Reference.

That is from my experience, and I have just used one of my Web Service's Web Method as such:

<%= new MyWebService().MyWebMethod(); %>

Hope it helps.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.