| Thread | Last Post | Replies |
|
| Using Impersonation | 11 Sep 2004 13:26 GMT | 2 |
Is it ok to use impersonation in the web.config file for a web service? Let me tell you why I ask. My web service to ultimately connection to a sql server database. The recommended way to connect to SqlServer is to use a trusted connection (nt authentication etc), but inorder for ...
|
| Can webservice client use basic auth | 11 Sep 2004 13:18 GMT | 1 |
using c# in a windows application. I need to connec to to a HTTPS URL that is set up as "non anonymous" and requires a user/pass. How do i tell the web proxy the user/pass to use.
|
| discovery | 11 Sep 2004 12:58 GMT | 1 |
I'd like to discover all WebServices that exist on a particualr server : reading the doc's a little did I encounter the following client tool : disco.exe http://www.myserver.com/math/math.disco but, before being able to use this tool do you need to know
|
| Web Services client and Basic Auth | 11 Sep 2004 12:45 GMT | 3 |
using c# in a windows application. I am developing a webservice to run on our extranet SSL server. The company policy is that this server log everybody in. I am going to use the WSE security, but what is stoping me now is the first
|
| Why generate minOccurs='0' while the parameter is not optional? | 11 Sep 2004 11:24 GMT | 1 |
I am writing my first web service, here is the signiture of my webmethod in C#: [WebMethod] public string Request(
|
| Win2K: error creating ASP.NET Web Application | 11 Sep 2004 11:23 GMT | 3 |
I have Visual .Net installed under Windows 2000 Professional. When I try to create a new ASP.NET Web Project, the following error message pops up: "Visual Studio .NET has detected that the specified Web server is not running ASP.NET version 1.1. You will be unable to run ASP.NET ...
|
| Replacing IIS with ASP.NET web matrix server to create Web pjt VS | 11 Sep 2004 11:13 GMT | 1 |
I am wondering if anybody knows about a work around (if any?) creating an ASP.NET web project from VS .net under XP Home Edition? I know there is no IIS under XP home, but is there any way to replace IIS with another web service ( like the one in web matrix) to be able to develop
|
| LDAP Directory Entry Intermittent Error | 11 Sep 2004 00:51 GMT | 1 |
I have some code vb.net winforms, that works fine most of the time but stops working occasionally such as right now. The code is this Dim objDE As New DirectoryEntry("LDAP://" & DomainName) Dim objDS As DirectorySearcher = New DirectorySearcher(objDE)
|
| Max Parameter Length | 10 Sep 2004 13:50 GMT | 2 |
I am trying to upload roughly 20-30k of binary data up to my webservice. At first, I just took my byte array and encoded it as a base64 string and passed it into my webservice. However, sometimes the data gets truncated (I'm not sure what the exact length where truncation occurs ...
|
| ConfigurationSettings Error | 10 Sep 2004 12:57 GMT | 1 |
In my WebService I have a method called Download() that creates a dataset. To get my connection string which is located in my web.config file I call the following imports System.Web.HttpServerUtility
|
| .NET 1.1 SP1 Datagrid throws exceptions where it didn't before! | 10 Sep 2004 12:15 GMT | 1 |
After installing SP1, we have huge problems with a self-grown class which inherits from Windows.Forms.Datagrid. It throws exceptions every now and then, such as this: System.NullReferenceException: Object reference not set to an instance
|
| duplicated soap response | 10 Sep 2004 08:51 GMT | 6 |
My client wanted the "any" wildcard in the WSDL replaced with the data schema, just like in the SOAP. To acomplish that I created a class (called Play) of the data fields. Then in the web method I used XmlElement as such: [return: XmlElement(typeof(Play[]))]
|
| VB.NET Client for a ASP.NET WebService | 10 Sep 2004 07:41 GMT | 1 |
Can a VB.NET Client access a Web service? If so by what mean? Only by SOAP messages? Do I have to parse the SOAP messages myself to get the results? Any tutorials or pointers on creating a VB.NET client for ASP.NET Web Service in a proper way is greatly appreciated.
|
| How to change SOAP message before it's validation | 10 Sep 2004 02:39 GMT | 1 |
Hi, All, I have a very simple webmethod: [WebMethod] public string HelloWorld(int i)
|
| howto create certificate like Client Private.pfx, Server Private.pfx, Server Public.cer | 09 Sep 2004 22:51 GMT | 3 |
Hello. im trying out the samples in WSe 2.0, but i havent managed to create and use custom certificates. the CS sample SecureConversation is working fine with the Sample Test Certificates (Client Private.pfx, Server Private.pfx, Server Public.cer).
|