| Thread | Last Post | Replies |
|
| ASP.NET WebService Object Lifecycle | 28 Feb 2007 22:19 GMT | 1 |
When serving webservices in ASP.NET is an instance of the webservice decendent class created and destroyed for each .asmx request or are these reused throughout the lifespan of the worker process ? thanks,
|
| global paremeters in a WS?? | 28 Feb 2007 21:54 GMT | 1 |
I have several sets of WS. The application making requests to these services must authenticate to the service by sending a UserName and Password I wanted to set it up so that the parms were based at the WS level at the time the application created an instance of the service. For ...
|
| How to get a WS to create a cookie??? | 28 Feb 2007 15:20 GMT | 7 |
I need to design a WS that will after authenicating the user, create a cookie on the users PC that made the request. All the code I keep finding is how to get a WS to read a cookie, I need it to create one. The below code doesnt add the cookie to my cache. However if I place this ...
|
| Web Services For e-commerce? | 28 Feb 2007 11:35 GMT | 3 |
My boss asked me to look into passing orders back and forth with our vendors and customers using web services. It seems web services are designed to just provide data from a call. It seems e-commerce demands more architecture such as sync and async responses, etc.
|
| Manually Send SOAP Envelope? | 28 Feb 2007 09:45 GMT | 3 |
I would like to manually send/post a SOAP envelope to a remote web service without binding to a WSDL. I would do this with .NET Framework 1.1 by referencing the Microsoft.Web.Services2.SoapEnvelope class within the Microsoft.Web.Services2.dll.
|
| set connection timeout when calling to webservice method | 28 Feb 2007 09:18 GMT | 1 |
when i call to web service method, while there is no internet connection, it takes like 40 secs- 2 minutes before i get answer. can i change the timeout so, incase of no internet connection, the method return in 10 second ? (for example)
|
| Dropping carriage return characters from web service | 28 Feb 2007 00:41 GMT | 6 |
[This is a repost of my 12/26/2006 question per Charisse from MS Customer Service. Waiting on an official MS response but all are welcome to chime in] I have a web service that returns a String as part of the return . The String has embedded CR (x13) and LF (x10) in it. When ...
|
| Http Post Web Service | 27 Feb 2007 05:52 GMT | 2 |
I am not sure really how to explain this but here goes. I am creating some new web services and I want to be able to post data like the following: <Data>
|
| Process Memory Limitation & IIS | 27 Feb 2007 03:35 GMT | 1 |
We have distributed application built upon .NET 2.0. The business components are exposed as Web Services. Some of the Business Components involves in heavy processing and occupies more RAM. It appears there is a memory limitation of 4 GB per process and we are not sure if we have ...
|
| Can a schema be generated from WSDL? | 27 Feb 2007 00:38 GMT | 3 |
I have a WSDL definition but no corresponding schema. Does anyone know if these can be generated from the WSDL?
|
| Returning Dataset or Datatable via Web Service | 26 Feb 2007 17:37 GMT | 15 |
I'm a bit puzzled by the current recommendation not to send Datasets or Datatables between application tiers. http://support.microsoft.com/kb/306134 http://msdn2.microsoft.com/en-us/library/ms996381.aspx
|
| MSDiscoCodegenerator Failure with Java Axis | 26 Feb 2007 09:20 GMT | 6 |
I have a working Java/Axis 1.4 web service running. With Visual Studio 2005, if I try to create a web reference and refresh the Axis service, I get this error: The custom tool 'MSDiscoCodegenerator' failes. Unabel to import
|
| Web Service process ID? | 26 Feb 2007 01:40 GMT | 2 |
I have a web service that run in several instances to do a large process. What I would like to do is to know the process ID of each web service instance and the ability to terminate the work of this web service instance by the process ID from for example an ASPX page.
|
| Using library classes instead of proxy classes | 25 Feb 2007 14:38 GMT | 4 |
I have a .NET class library called NorthwindLib and a class called Customer. I have a web server that exposes a web method GetCustomer() and returns a NorthwindLib.Customer object. I want to consume this web service in another .NET application that
|
| passing receipts to ws consumer | 24 Feb 2007 11:23 GMT | 1 |
I'm fairly new to web services in .net/vs. I'm wondering about a few ws things: - should I create a new ws project for every ws? - how do I best ensure that only selected consumers can use a ws?
|