Archived Months
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008
all groups > dotnet web services > october 2006 > threads for october 8 - 14, 2006

Filter by week: 1 2 3 4 5

unable to use getWebConfiguration
Posted by Dean Guenther at 10/13/2006 4:40:01 PM
HI folks, I'm using .NET 2 and studio v8. I can't seem to get it to recognize GetWebConfiguration. I say this: using System; using System.DirectoryServices; using System.Configuration; using System.Web.Configuration; using System.Configuration.Provider; using System.Web.Security; using Sy...more >>


Authenticate web service once
Posted by Chris Davoli at 10/13/2006 2:20:02 PM
Does anybody have an article on how to secure a web service so that I only have to log in once and then access all the web services without re-logging in? I know I've used this before using session variables and some kind of client cookie. I'm think I'm going to have to do this on a web farm. ...more >>

How to secure a webservice - could some expert advise?
Posted by thomas at 10/13/2006 12:00:00 AM
Hi everybody, Here is the scenario: webservice and a windows client application. Requirements: 1. Only authenticated and authorized users shall be able to call web methods. 2. User names or passwords shall never be sent over http. Constraints: 3. Webservice cannot use Windows or LDAP a...more >>

Enumeration in WebService
Posted by Sadagopan at 10/12/2006 3:46:01 PM
Hi, I am thinking of returning enumerated data types in my web service response. My enumeration values are driven from a database lookup table. The table get new lookup records and these need to be enumerated to the clients. The problem I face is , any time when these new records are added , t...more >>

Web Service and DLL's in same project
Posted by Chris Davoli at 10/12/2006 1:04:01 PM
I'm using VS2005 and am trying to put the Web Service project and the DLL Class component project into the same solution, but it doesn't let me like the old VS2003 would. I'm wanting to put the Classes project (components) that I call deom the web service into the same project so I can walk th...more >>

Debugging Client and Service
Posted by geckosphere at 10/12/2006 12:35:02 PM
I want to be able to debug through the whole process from a button click on the client through all of the web methods and data access methods. It seems that when I put a break point on the button click event and then try to step through each line the debugger skips over the call to the web ser...more >>

Static Variable Reference in Web Service?
Posted by depalau NO[at]SPAM bemis.com at 10/12/2006 12:34:24 PM
I'm running into some issues on maintaining a static variable across the lifetime of a web service and I was wondering if anyone could help. Background: We have developed a C#/1.1 web service running on IIS 5/6 that interfaces with a 3rd party DLL referenced by using the DLLImport attribute...more >>

Setting up Custom Security for Web Site
Posted by Anbu at 10/12/2006 8:14:05 AM
Hi All, I came across an interesting link http://www.rassoc.com/gregr/weblog/stories/2002/06/26/webServicesSecurityHttpBasicAuthenticationWithoutActiveDirectory.html This link allows us to create customized reply to the clients. This implements IhttpModule. I have two web services defined in...more >>



Calling a web service from within a DLL
Posted by paul1664 NO[at]SPAM hotmail.com at 10/12/2006 3:20:07 AM
Hi, I am trying to call a web service from within a dll, with that dll being loaded and called dynamically. eg. Assembly assembly = Assembly.LoadFile(@"C:\path\myfile.dll"); Type type = assembly.GetType("myfile.Class1"); object instance = Activator.CreateInstance(...more >>

wsdl /sharetypes and xmlinclude
Posted by deja NO[at]SPAM 2bytes.co.uk at 10/12/2006 1:43:41 AM
hi, i have 2 web services each with some of the same types but also each with their own xmlincludes to include types specific to them. I want to share the types that are common so I used wsdl /sharetypes but it hasn't included the xmlinclude objects. So for instance, Service1 and Service2 b...more >>

Wrapping existing application as a web service
Posted by A. Chiou at 10/11/2006 10:14:01 PM
Hi all: Is there a way in VS .Net 2003 to wrap an existing application, say a DOS app., as a web service and publish it? I'd appreciate any response....more >>

Question regarding Remoting performance
Posted by Ryan at 10/11/2006 3:32:02 PM
My apologies if this is not the forum to post questions regarding .NET Remoting, but I figured WebServices would be the most appropriate forum of the bunch. We're currently completely re-arching some software (currently it's essentially a single tier app - a giant meat ball - we're turning ...more >>

Schema in WSDL File
Posted by SteveChamp at 10/11/2006 9:32:02 AM
I have been experimenting with .Net web services for a while and have a few questions about the schema in the automatically generated WSDL file, and whether its content can be manipulated programatically. First of all, I created several very simple test methods in my web service: <WebMetho...more >>

WSE 2.0 in Visual Studio 2005
Posted by Tomas Barina at 10/11/2006 12:00:00 AM
Hello, I have a Visual Studio 2005 project using Web Service, which uses DIME format for communication. When working with WSE 3.0 a get this error: {System.InvalidOperationException: Client found response content type of 'application/dime', but expected 'text/xml'. The request failed with t...more >>

"User Not Authorized" Error
Posted by Travich at 10/10/2006 2:18:15 PM
I have a .NET 1.1 WinForms application that used to only hit SQL Server 2000. We are now contemplating moving to SQL Server 2005. To test this, we set up a SQL Server 2005 box and installed the web services and client application on the same box. When the application tries to call a web serv...more >>

Implementing SSO for Smart Client Application which uses Web Servi
Posted by Rasheed at 10/10/2006 9:45:02 AM
We are building a smart client application (.NET 2.0) which uses Web Services to access the business objects. Services: The Web Services have been secured by brokered authentication using X509 certificate along with message level security. (Right now the web services are consumed only by t...more >>

Keeping information across SoapExtensions
Posted by 6kjfsyg02 NO[at]SPAM sneakemail.com at 10/10/2006 2:32:41 AM
I am trying to keep some cached information across several SoapExtensions: In my project there are client applications (web and console) that ask a web service. The web service is also mine. But both the client and the server could be different as long as they keep to the message format defin...more >>

Question about WS-Profile
Posted by Max2006 at 10/10/2006 12:29:57 AM
Hi, Do I need to be worry about WS-Profiling or it already had been taken care in ASP.NET asmx web services platform? Thank you, Max ...more >>

upload LARGE files via a web-service
Posted by AWHK at 10/10/2006 12:00:00 AM
Hi, I have a customer which want to upload LARGE files via a web-service and stream it into a database while it is uploading. I don't want to go out of my way and develop a large HTTP App. Module which intercepts a SOAP call and manually streams the file content to the database if it is a bett...more >>

How do i change utf-8 charset to iso-8859-1 on webservice response?
Posted by Frédéric LAMBOUR at 10/10/2006 12:00:00 AM
How do i change utf-8 charset to iso-8859-1 on webservice response? Help me please. ...more >>

Post XML to Web Service from RPG
Posted by lanem at 10/9/2006 11:18:02 AM
Does anyone know if it's possible (and how) to post some XML data to a .NET web service from RPG? I am a .net developer (web) and I need some data from our corporate as400. The programmers on that side use RPG. Can they pass me some data to a web service from RPG? Has anyone ever done that...more >>

Web services - unable to view WSDL file
Posted by vilenm NO[at]SPAM gmail.com at 10/9/2006 5:32:45 AM
Hi. My company has an application which exposes some web services. During testing, I am only able to view the WSDL file on certain PCs and not on others. When the following address is loaded into IE, it loads the initial myApp page instead of the WSDL pages showing the available services: http:/...more >>


DevelopmentNow Blog