Similar Threads:
1.REST WebService Resources
I have been asked to create a new web service using the REST architectural
style, but I haven't been able to find any examples or really good resources
to help me understand how to go about writing the source code. Does anyone
know of any good REST resources that use either VB.Net or C# for examples?
Does REST require any special software libraries? With SOAP, I can simply
use Visual Studio to create a new function with the WebMethod attribute to
create a web service. Is the process similar with REST? Thanks.
2.Using external Webservice from my ASP.NET app and proxy srv
3.Prob using a custom type in asp.net webservice
I have the following sample asp.net webservice:
...
namespace x
{
[WebService(Namespace="mynamespace")]
public class WS : System.Web.Services.WebService
{
...
public class Class1
{
public string s;
}
public class Class2
{
public string s;
}
public class Class3
{
public string s;
public Class1 c1;
public Class2 c2;
}
public string Test(Class3 c3)
{
}
}
}
When I use XmlSerializer to deserialize the webreference proxy for Class3,
it includes namespace attributes for Class3.s, Class3.c1, and Class3.c2. If
I set the namespace attribute of the webservice to "" and update the
webreference, the webreference proxy no longer works. How can I tell the
webservice to ignore the namespace attribute for all public types in Class3?
4.ASP.NET Application Calling Webservice Using Integrated Authentication
Ok,
This one may be a bit of a mess.
I have a set of WebServices which use Integreated Authentication. I
can access the WSDL files without any issue.
I have a ASPNET web application that is running under a specified
Process account. The process account is an active directory domain
account which has been configured according to the MS Guide MS998297.
When I try to call the Webservice from the ASPNET application I am
greated with a "The request failed with HTTP status 401: Unauthorized.
" error message. Can anyone offer any pointers or reccomendations?
5.Calling Webservice from ASP using httpGet now breaks calls from .Net code
Hi, I have got a web service (in .net 1.1) that I call using SSL.
It works fine.
I then get a requirement to access the service using ASP, so I write
code doing an HttpGet to access it. This works fine, however only
after I stick the following in the web.config file (as httpget is not
included by default for asp.net 1.1). Note the ASP code was accessing
the service using HTTP not HTTPS, so I'm not sure if they accessed it
using https if it would fail.
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
This then breaks access for my existing site. What have I done
wrong?
I thought perhaps it was because I need to state the SOAP protocol so
I stuck in
<add name="HttpSoap"/> into the protocol section, but to no
avail.
I bet its something silly, but as I'm not very familiar with web
services I am stuck! Any suggestions?
cheers
6. using a VC++ DLL function in a C# ASP.NET webservice
7. Issue using an unmanaged dll in a ASP.Net 2.0 Webservice
8. Problem in deploying my WebService developed using Asp.net WebServ