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
all groups > dotnet web services > recent posts

Re: WCF webservice over SSL and without
Posted by Jonathan Kay at 4/24/2008 8:39:14 PM
Hi Steven and Tiago, Sorry for the late response, I've been away for a bit and this got put on the backburner. Thanks to both of you, I've managed to get https working (almost). I think perhaps I'm still doing something wrong? After adding httpsGetEnabled="true, it works beautifully, how...more >>


RE: Performance Analysis of WCF distributed Application
Posted by Kaushal Mehta at 4/24/2008 3:49:01 PM
Hi, Sorry. By perfmon, I meant the performance analsysis tool provided my the Visual Studio Team Edition. "Kaushal Mehta" wrote: > Hi, > > I am having this WCF application having one server and two clients. > > Is there any way I can perform performance analysis on the entire sys...more >>

Performance Analysis of WCF distributed Application
Posted by Kaushal Mehta at 4/24/2008 3:38:00 PM
Hi, I am having this WCF application having one server and two clients. Is there any way I can perform performance analysis on the entire system including the networking overhead and the serialization overhead ? I tried the perfmon provided in the VS Team Edition, but I am not able to g...more >>

Re: Create cgi web service
Posted by stcheng@online.microsoft.com at 4/24/2008 12:00:00 AM
Hi Michael, Thanks for your reply. Yes, I've also performed some tests on my side and did find the problem you mentioned. I've also consult some .NET framework and IIS engineers and they've told me that the problem is likey due to how the IIS load the CGI exe program. Running a managed d...more >>

Re: Application as both WS client and server
Posted by davidkclark at 4/23/2008 3:31:31 PM
This article on msdn decribes how to host a webservice in a windowsservice: http://msdn2.microsoft.com/en-us/library/aa529311.aspx Hosting in your client program should be similar. Basically you will have to copy the source and config files for your webservice, add usings for the appropriate ...more >>

Application as both WS client and server
Posted by sandersja at 4/23/2008 12:56:44 PM
I am trying to come up to speed on .Net webservices and have gotten stuck on a basic issue - I appreciate any clarification. I can readily create C# applications that can consume webservices as a client. In that same app, how can I offer webservices to other clients? For example, so two apps...more >>

WCF Transactions
Posted by No Name at 4/23/2008 11:46:33 AM
Hello, I have few question for scenario where I have wpf/winform client(s) connecting to windows service (hosting WCF code) which in turn connects to (single) SQL Server. Transactions initiated by client, in this sistem will always be distributed? (Because it is communication between proce...more >>

Re: Create cgi web service
Posted by Michael Tissington at 4/23/2008 11:13:52 AM
I''m really just needing to create a cgi application. I tried the first link and link some of the comments I too get the error HRESULT: 0x80070057 (E_INVALIDARG)) ..... do you have any ideas about this .... "Steven Cheng [MSFT]" <stcheng@online.microsoft.com> wrote in message news:nLpk%23...more >>



Re: Create cgi web service
Posted by Michael Tissington at 4/23/2008 11:09:45 AM
Hi, Thanks for the link ... I would love to do something else other than cgi but the extrenal website is expecting a cgi ... "Steven Cheng [MSFT]" <stcheng@online.microsoft.com> wrote in message news:nLpk%23t1oIHA.9932@TK2MSFTNGHUB02.phx.gbl... > Hi Michael, > > For C# based CGI program...more >>

Re: Create cgi web service
Posted by Michael Tissington at 4/23/2008 11:08:47 AM
I need to create aCGI application because that is how the external site is talking to us and I have no control over them. "Spam Catcher" <spamhoneypot@rogers.com> wrote in message news:Xns9A85CE79BF1A3usenethoneypotrogers@127.0.0.1... > "Michael Tissington" <mtissington@newsgroup.nospam> wro...more >>

wcf (dotnet 3.5) and datatables
Posted by Dani at 4/23/2008 8:23:01 AM
Hi, I'm running a little wcf service, regular operations works fine, but when the returned type is a DataTable like this: [OperationContract] DataTable GetItems(); (The call reaches the server, it fails upon returning) (The DataTable that is returned is genrated by se...more >>

RE: WCF Byte Array Limitation in XBAP
Posted by stcheng@online.microsoft.com at 4/22/2008 9:10:27 AM
Hi lzorich, From your description you're using WCF for remote commucation in a WPF XBAP application. However, you found that when the size of the data sent exceed a certain amount, the client-side can not receive the data without any explicit error, correct? Based on my experience, ther...more >>

webservices and "reuse types in referenced assemblies"
Posted by davidkclark at 4/21/2008 9:35:39 PM
I see that this has been asked before, but there seem to be no (working) resolutions. I want to share the exact types used in webrequests between the client and the server. The proxy is too pale a representation of the actual class used by the server: there are useful functions like ToString ...more >>

Re: typed dataset
Posted by OlivierH at 4/21/2008 1:31:23 PM
Can you read this white paper ? http://www.west-wind.com/presentations/foxpronetwebservices/foxpronetwebservices.asp Olivier Spam Catcher a écrit : > OlivierH <"nospam[contact]"@planitron.com> wrote in news:eo#iS9woIHA.524 > @TK2MSFTNGP05.phx.gbl: > > >> Have you an Idea ? >> ...more >>

WCF Byte Array Limitation in XBAP
Posted by Izorich at 4/21/2008 10:00:01 AM
I observed that WCF client running inside Full Trust mode XBAP application can't read byte array over 16384. If return result is bigger than that size, then client simply get null or Nothing in VB and there are no exceptions. I have tried increasing limits on both client and server. Here is a ...more >>

RE: Create cgi web service
Posted by stcheng@online.microsoft.com at 4/21/2008 2:57:38 AM
Hi Michael, For C# based CGI program, you can build a console application which read environment variables and write output to standard output. Here are some articles introcuding this: #Creating a C#/.NET CGI Executable http://www.west-wind.com/WebLog/posts/1143.aspx #Understanding CGI...more >>

Re: Maintaining WS issues
Posted by stcheng@online.microsoft.com at 4/21/2008 2:20:34 AM
Thanks for your reply Schneider, Yes, WCF improve the distributed communcation on windows platform. Actually, it tries best to combine all the features of former distributed communication components such as .net remoting, webservice, MSMQ so as to provide a uniform platform and programming ...more >>

Re: Having trouble successfully deploying WCF service to public web site
Posted by garron@yahoo.com at 4/21/2008 12:54:29 AM
Set the httpGetUrl or the httpsGetUrl (depending on which protocol you are using) to an empty string. <serviceMetadata httpsGetEnabled="true" httpsGetUrl="" /> ...more >>

Re: typed dataset
Posted by Spam Catcher at 4/20/2008 9:52:17 PM
OlivierH <"nospam[contact]"@planitron.com> wrote in news:eo#iS9woIHA.524 @TK2MSFTNGP05.phx.gbl: > Have you an Idea ? Best not to use a typed dataset for a web service. -- spamhoneypot@rogers.com (Do not e-mail)...more >>

Re: C# web method can't see cookies?
Posted by dad107@underflap.com at 4/20/2008 9:09:07 PM
On Apr 19, 8:20 pm, Spam Catcher <spamhoney...@rogers.com> wrote: > dad...@underflap.com wrote in news:2001dd32-a9af-472f-a1c2- > Have you looked at building RESTful Web services instead? Seems like > you're trying to connect to the web service using a lgnague that does > not natively support we...more >>

typed dataset
Posted by OlivierH at 4/20/2008 7:53:05 PM
Hi all, I need to make a typed dataset cause i import a dataset from foxpro I use this code Dim oDbcommand As New SqlDataAdapter(Sql, Conn_SqlServer) oDbcommand.MissingSchemaAction = MissingSchemaAction.AddWithKey oDbcommand.Fill(Me.DataSet, Me.TableName) My Problem is vs 2005 or Frame...more >>

Re: standalone web server
Posted by Spam Catcher at 4/20/2008 12:53:25 AM
"Randy" <temp@temp.com> wrote in news:OE$b5q9nIHA.672@TK2MSFTNGP02.phx.gbl: > Can anyone direct me to the best standalone web server? I'm wanting to > package it with a web app which will need to run on the client machine > which will have IIS turned off. You can use WCF to self-host the s...more >>

Re: C# web method can't see cookies?
Posted by Spam Catcher at 4/20/2008 12:20:17 AM
dad107@underflap.com wrote in news:2001dd32-a9af-472f-a1c2- 345389d87e3a@a23g2000hsc.googlegroups.com: > My web application wants to take advantage of an encrypted > authentication cookie that's provided by another application on the > same server. The cookie is visible on the client side, but...more >>

Re: Create cgi web service
Posted by Spam Catcher at 4/20/2008 12:17:42 AM
"Michael Tissington" <mtissington@newsgroup.nospam> wrote in news:eBHUnQYoIHA.4112@TK2MSFTNGP03.phx.gbl: > Using Visual Studio 2008 can someone point me to an example to create > a cgi web service in C# ? How come you want to create a CGI applicaion? Even if you get it working as a CGI ap...more >>

Create cgi web service
Posted by Michael Tissington at 4/18/2008 11:43:54 AM
Using Visual Studio 2008 can someone point me to an example to create a cgi web service in C# ? Thanks. ...more >>

Re: Maintaining WS issues
Posted by eschneider at 4/18/2008 10:18:58 AM
Hello, Steven Nice to hear back from MSFT. It may be a lot better in VS2008 and/or with WCF. But we have not had a chance to move to VS2008. I have heard from people WCF is much better. The IIS version probably have contributed to some of the problems, but then that part of the problems wit...more >>

Re: system administrator
Posted by franzee2 at 4/18/2008 7:17:01 AM
"John Saunders [MVP]" wrote: > "bambi1" <bambi1@discussions.microsoft.com> wrote in message > news:D42A1A3E-A935-42A4-8EC8-CCD88AC06AEA@microsoft.com... > > Whenever I try to click on the control panel or add or remove programs I > > get > > a message that reads "this action has been ca...more >>

RE: system administrator
Posted by franzee2 at 4/18/2008 7:16:01 AM
"bambi1" wrote: > Whenever I try to click on the control panel or add or remove programs I get > a message that reads "this action has been cancelled because of restrictions > on this computer.Contact system administrator." What do I do to correct this?...more >>

RE: Maintaining WS issues
Posted by stcheng@online.microsoft.com at 4/18/2008 1:59:01 AM
Hi eschneider, Regarding on the issues you mentioned, some of them does exists when dealing with some certain kind of projects in Visual Studio 2005. The global classe issue maybe caused by a project converted from ASP.NET 1.1/VS 2003 project since the global class converted from original ...more >>

Maintaining WS issues
Posted by eschneider at 4/17/2008 2:07:27 PM
Just some common issues with WS: Using custom objects: When objects change, seems you are always fixing some issue. Update references, which sometimes does not work. Deployment: Weird errors which take a while to fix because the error stink: Forget to set ASP.NET 2.0="Parser Er...more >>


DevelopmentNow Blog