| Thread | Last Post | Replies |
|
| Using Sockets.NetworkStream.Read very slow on Win2K3 | 14 Sep 2004 18:06 GMT | 1 |
I am doing the following: While i <> 0 i = NWStream.Read(bytesToRead, n, 1)'bytesToRead is a ByteArray n += 1
|
| An architectural question | 14 Sep 2004 17:46 GMT | 2 |
I have a web service which accepts some data and stores that data in the database. My question is should this web service talk directly to the data access layer (DAL), which populates the database or should there be an extra layer between web service and the DAL? If there should be ...
|
| Re: Basic Authentication ... solution seems a mystery? | 14 Sep 2004 11:47 GMT | 1 |
sorry that i jump on at the end of the thread - but isn't this the same as setting the credentials on the proxy`? like proxy.Credentials = new NetCredentials("user", "pass") ? ---
|
| Re: Web service deployment security | 14 Sep 2004 11:07 GMT | 1 |
aspnet is the default - you don't have to do anything for that. regarding ssl http://msdn.microsoft.com/library/default.asp?url=/library/en-us/secmod/html/sec mod30.asp ---
|
| How to install a websevice? | 14 Sep 2004 01:58 GMT | 1 |
I?ve developed a webservice, but now, how can install it in other computer? thanks
|
| Install Web Service Into Production | 13 Sep 2004 20:10 GMT | 1 |
How do I install my web service into my production web server so that it is not available publicly but will still be available for my local web pages that use it? My references are for localhost but I don't believe this will work once installed. I have never moved a web service ...
|
| Sending / returning objects | 13 Sep 2004 20:09 GMT | 3 |
I'm trying to figure out if it's possible to create an object in a webservice, return it (the object / representation of an object) to a client, make modifications on the client and push the changes back to the webservice?
|
| Web service deployment security | 13 Sep 2004 17:15 GMT | 1 |
the account under which the asp.net worker process is running has to have NTFS rights to the files/directories you are writing under iis5/5.1 this is usually a account called ASPNET under IIS6 you can configure that using app pools (the default is Network Service) IIS ...
|
| Error in xml document at (1,280) | 13 Sep 2004 16:23 GMT | 1 |
I try to call a logon webservice method with 3 parameters that are strings. the return value should be a xml string including all information on a user object. When I execute the web service from visual studio test
|
| Am I missing something or has MS missed the plot? | 13 Sep 2004 12:28 GMT | 1 |
you are right - Windows needs the password in plaintext to impersonate a user (having to call LogonUser, which requires a password). Thinking about it - it is the only way Windows can do it. So if you want to use the Windows infrastructure that's already there you have to ...
|
| Article on WSE 2.0 | 13 Sep 2004 12:08 GMT | 1 |
Building Real World SOAP Messaging Applications using WSE 2.0 (Part 1) by D. Venkatesh Prasad
|
| Basic Authentication ... solution seems a mystery? | 13 Sep 2004 11:30 GMT | 8 |
I'm cross posting from mscom.webservices.general as I have received no answer there: There has been a number of recent posts requesting how to satisfactorily enable BASIC authorization at the HTTP level but as yet no fully useful
|
| problem sending string in xml to webservice | 13 Sep 2004 02:16 GMT | 1 |
I'd like to send invoice information from client program to web service and then transfer it to xml-file there. The best way to do this could be writing all the information in xml-format but to send it as a string. But then how can I create an xml-file out of this string easily? ...
|
| Webservice very slow on first call | 13 Sep 2004 01:18 GMT | 1 |
I have created a webservice, it is used by a webpage. The first time I connect to the page, the connection is very slow, it takes like 6 seconds to validate the user, I am working on my machine debuging. But it is only the first time, every other webservice used during the ...
|
| renaming webservice-class ?? | 12 Sep 2004 14:08 GMT | 6 |
I use my Webservice in IE : http://localhost/CalcWS/CalcService.asmx That works well. Then, in visual Studio.NET : I rename the name of the WebService-class from the default name 'Service1'
|