The Amazon Product Advertising API (formerly Amazon Associates Web Service or Amazon AWS) has implemented a new rule which is by August 15th 2009 all web service requests to them must be signed. They have provided sample code on their site showing how to do this in C# using both REST and SOAP. The implementation that I’m using is SOAP. Y...
I created a web service reference in VS 2008. Should I be seeing some sort of generated .cs somewhere?
Also I created a custom class and am trying to create an instance of this Proxy class but it doesn't know what that object is yet when I try.
...
We're switching from a legacy app written in ColdFusion to an ASP.Net Web Forms application. One requirement is to move over the legacy web service. The address can change, but the format of the input and responses have to be the same. I'm relatively new to web services, but I know that there are both SOAP and JSON output formats for a ....
Can we create webservice in visual studio 2005 .
...
I have a Mate project with a WebService tag instance in the EventMap (which I'm using within various event handlers). I'd quite like to be able to set the wsdl property of the WebService via flashvars, but I'm not entirely sure where or how I could do that.
I know I can access flashvars via the Application.application.parameters collect...
So I was looking at the sample examples people have created for Duplex Communications namely when hosted by IIS and connected to via Silverlight. There are plenty of examples of this out there (this MSDN article is great), but all use the same paradigm:
User A connects to server A, it puts him in an in-memory list to receive future upd...
I'm creating a custom class to abstract out some of the repeated SOAP header work. I want to reference a Web Service Reference I just created in my custom class so I can create an instance of it. How do I reference it?
Notice I said I am trying to reference a Web Service "reference" (right click in VS and I added a "Web Service Refere...
Hi all,
I've written a simple web service that converts a word doc to a pdf. As part of the Convert method, it takes in a custom settings object that contains info about the doc path, etc. and a DataTable of, er, data.
I am now creating a "helper" class to consume the web service in order to remove the hassle for other developers and, ...
I have a mvc controller class that uses a WCF service(WSHttpBinding), sometimes multiple calls within one http request, and want to know how expensive it is to create a client for that service. Is it ok to create an instance of the client for every call or should I create a member variable in the class?
public class RingbacksController...
Hi All,
I'm getting an error when attempting to call SharePoint's webservices on one of our platforms. To start, we have Development (DEV), Testing (QA) and Production (PROD) SharePoint servers. The QA and PROD servers are pretty much identical. We have an ASP.NET web service that sits out as a seperate application on each of them. Our...
I have an InfoPath form with custom submit code to update a Sharepoint list by calling the Sharepoint Lists web service. The code runs without any exceptions, and I was able to set breakpoints to make sure that the variables contain the correct values before being sent to the web service. The values never get added to the Sharepoint li...
I am using .Net to make a web-service call to a livecycle long lived service. I cannot figure out how to get the resulting output from this service, as all I get back from my invoke_async call is a jobId.
I know I can use the JobManagerService to ping the job to see when it has completed, but I don't know how to get the output from the...
I have a webservice defined here:
/app/AutocompleteManager.asmx
[WebMethod]
public string AutocompleteComposers()
{
return "hey, what's up";
}
I want to call it using the GET method with extra parameters.
If I just go /app/AutocompleteManager.asmx?q=something, it won't work because I don't have the action specified.
If I go /app...
I've seen someone use a Sys.StringBuilder in asp.net ajax, is it possible to use generics as well? I essentially have a List of comment objects (That contains a datetime, a string (Title), and another string (content)) and am trying to work out the best way to handle the data when it is returned to the javascript from a web service. Am I...
Hi all --- have been given a URL to a WSDL, a piece of it is here..not sure if this is a pertinent piece or not. I know how to add the web reference and import the namespace in Visual Studio 2005.
Questions...how do I pass my values to it? How do I encode for binary-64? I have the methodname (GETP)...not sure how to invoke it as a func...
Hi folks,
I'm getting an exception being thrown when I try and list my Axis-powered web services, when I try and access the WSDL for any service and when I try and use the service in question:
Servlet.service() for servlet AxisServlet threw exception
java.lang.NoClassDefFoundError: com.example.MyAwesomeServiceSoapBindingImpl
...
I have had this problem for the last day. I have created a SOAP Extension following the MSDN articles and a load of blog posts but I just can't get it to work. Ok Some code:
public class EncryptionExtension : SoapExtension
{
Stream _stream;
public override object GetInitializer(Type serviceType)
{
return typeof(Encr...
I am using a console application to call web service methods and I am stepping through the code using the debugger in vs2008.
Sometimes I need to stop and think about things, and compare values. Not talking hours, just a few minutes, at this point the web service times out, how can I avoid this, so that the web service does not time ou...
I have the same ASP.NET WebService deployed 3 times under 3 different URI's configured to look at 3 different databases environments.
I have a Class Library that uses the WebService using a Web Reference.
Every time I want to compile the Class Library to a different environment I have to change the Web Reference by hand to the appropri...
I have a few websites for work that live outside of the corporate LAN -- and, therefore, out of direct-communication range of Active Directory (A/D) -- but for which I would like to be able to authenticate users against the corporate A/D servers as well as a secondary repository of users/roles***. The pseudo code for this activity is thi...