| Thread | Last Post | Replies |
|
| Polling Webservice from Windows Service | 11 May 2005 16:59 GMT | 1 |
Apologies if this not quite the right forum, but I am looking for ideas/method of polling a webservice with different parameter values at different times, the schedule for polling the webservice is coming from a database.
|
| Forms authentication & Cache | 11 May 2005 16:20 GMT | 1 |
Is it possible (somehow) to share the same cache (System.Web.HttpContext.Current.Cache) between a Web-application (.aspx) running Forms authentication and a Web-Service (.asmx) ?? It seems like you'd have to split them into two different Web-Sites as soom
|
| Disabling the soap formatter! | 11 May 2005 12:28 GMT | 1 |
Is there anyway to disable the soap formatter for a specific web service? Consider the following web method: string Method1(int param1) {
|
| Web Method Order not changing | 11 May 2005 12:27 GMT | 1 |
I have created a Web Services with five web methods. When I browse it through the url : http://localhost/webservices/test/test.asmx it shows all five websrevices in different order.
|
| HTTP Status-Code=503 (Service Unavailable) | 11 May 2005 07:26 GMT | 2 |
I'm doing a stress test and my test graudually increases the connections to the webservice. Everything works well until my connection hits around 350 connections. The new connections gets the error HTTP
|
| cannot run diffgram in webservice | 11 May 2005 06:42 GMT | 1 |
Could u please tell me why the following codes cannot run in webservice while these codes can be run in a window form? Thanks. The following is the error messge from IE:"HTTP 500 - Internal server error " after I invoked.And I went through step by step debugging, the same error
|
| Timer not beeing called. | 10 May 2005 21:54 GMT | 3 |
I have a timer in my webservice. But the timer as follow: private void InitializeComponent() { this.timer1 = new System.Timers.Timer();
|
| Question about using pre-signed certificates | 10 May 2005 21:24 GMT | 5 |
I am hoping someone can help with a strange problem - I am not very savvy with certificates, so bear with my ignorance in that area. I have an ASP.NET (1.1) application that calls a web service (non .net) over SSL. The owner of the web service asked for a certificate request
|
| Directory of a webservice | 10 May 2005 20:52 GMT | 1 |
I need save a configuration file of a webservice, and I´d like save it in the same directory that webservie. How can know the webservice´s directory? thanks
|
| DataAdapter and multiple result sets | 10 May 2005 19:06 GMT | 2 |
I have a SQL Server stored procedure that returns multiple recordsets (three of them), in the same way that sp_helpdb does (try entering EXEC SP_HELPDB 'MASTER' in Query Analyzer for an example). I want to populate my DataSet with all three recordsets, as System.Data.DataTables. ...
|
| Lookup Tables in Webservice | 10 May 2005 18:17 GMT | 2 |
I have 4 - 5 lookup tables in a SQL Server database. What's the best (or recommended) way to read all these values into memory for my Web Service one time, so I don't have to keep opening connections to the server and pulling the same records across the network?
|
| webservice account | 10 May 2005 16:51 GMT | 1 |
I want to know on wich account webservice runs. For example: webservice has to create a file in some shared folder and the path is given by UNC. What permissions should I give to that folder? What users or groups should have write permission to that folder? What are the min ...
|
| pwermission issues with web service | 10 May 2005 16:44 GMT | 7 |
I have an application(called crystal app) that loads crystal reports, gets the refreshed data and exports the file to a pdf format (for every report a thread is spawned). The source report files are read from a fileserver(UNC path) and stored to a target UNC path. I am trying to ...
|
| Web Service and unmanaged DLL using ADO | 10 May 2005 16:11 GMT | 2 |
I'm writting a web service (C#) that using an unmanaged DLL written in C++. This DLL uses ADO to access to a MySQL database. If I use this DLL into a WinForm, it works. If I use it into my web service, this one seems to freeze... the page loads itself in a loop.
|
| Simple webservice returning a dataset. | 10 May 2005 09:44 GMT | 2 |
I have a simple webservice that have a webmethod that returns a dataset. How can i use the returned dataset. So far i get an exception. Thanks
|