Archived Months
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
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 > asp.net webservices > june 2005

Filter by week: 1 2 3 4 5

WebService not obeying web.config error reporting settings
Posted by Ben Fidge at 6/30/2005 5:24:03 AM
Hi I'm trying to setup a web service to run under a web-site on Windows 2003 Server . If I type the URL to the web-service in the address bar of a browser running on the server itself, I get the default page listing the webmethods available and can invoke them no problems. However, if I ...more >>


Can I turn off the display of IE toolbar?
Posted by trint at 6/30/2005 5:07:18 AM
I want my c# webforms to be all that is in the ie window and not show the toolbars and menus. Is that possible? Thanks, Trint ...more >>

performance difference in Webservice -'Normal' way
Posted by DraguVaso at 6/28/2005 12:00:00 AM
Hi, I'm new to WebServices, and I'm doing some tests (with a small VB.NET-application) to know the performance-difference between a WebService and the 'normal'-way of getting data (just connecting directly with a SqlDataAdapter to the SQL Server). The WebMethod simply gives a DataSet back, an...more >>

WeblogProxy namespace
Posted by nsyforce NO[at]SPAM aol.com at 6/27/2005 8:49:48 AM
I am looking at the following article in regards to WSE2.0. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwse/html/wssecdrill.asp The very first example uses a WeblogProxy class. When I try to use this, the class is nowhere to be found. I've been searching for the prop...more >>

How can I return a binary file (image) from a web service
Posted by klj_mcsd NO[at]SPAM hotmail.com at 6/24/2005 10:49:33 AM
A url to an image file will be passed to my web service. What function can I use that will get the image and return the image in binary form? Thanks ...more >>

Benefits of WSE 2.0
Posted by YC at 6/23/2005 5:10:04 AM
Hi, Can someone tell me what's do good in the WSE 2.0? We have a distributed web application which uses web services. SSL is implemented between the WEB application and the WS facade. Does WSE 2.0 help me in a significante way? Thanks YC...more >>

Webservices and "pass through" security
Posted by Tom at 6/22/2005 9:31:38 PM
Hi, I am currently on a project where one site needs to send the user credentials to another site, through web services. Scenario: * "User 1" will authenticate to "Site A" using NTLM ("Site A" provides front-end presentation of data) * "Site A" will request confidential information abo...more >>

Web Service Versioning
Posted by Brett at 6/22/2005 8:02:18 PM
I have a .NET web service and I want to be able to version it, and continue developing on a separate version altogether. The client that accesses it is a windows service that when deployed will eventually contact the new service, so something like a copy project would work (although it hasn...more >>



Can a webservice call another webservice?
Posted by Chris Ludlow at 6/22/2005 11:41:37 AM
Hi all, I want one WebService I have, say on a server in Los Angeles, to call methods I have in a 2nd WebService on another server, say in New York. First of all, is it possible for two Web Services to interact like this? Maybe I am just trying to connect them incorrectly. What I am doing ...more >>

Reading DATA
Posted by VK at 6/22/2005 9:32:15 AM
Folks: I have a dataset returned by web service, how I go about reading this information? I don't want to bind this information to a datagrid but more like read it and display on the website. Thanks. Vani *** Sent via Developersdex http://www.developersdex.com ***...more >>

InvalidOperationException: Unable to generate a temporary class
Posted by JimM at 6/22/2005 8:15:04 AM
I have a web services on my development system (localhost), here the unit tests work. I deployed the web service to a server on our intranet, lets call it “MyServer”. When I run my unit tests using the web service on the deployed server, I receive the following error. It looks to me t...more >>

Consume web service(s)
Posted by VK at 6/21/2005 1:45:05 PM
Folks: I was successfully able to consume the first web service(WS). Created another WS and added a reference on the client project, it added the reference as localhost1 and not localhost. Do I have to keep adding references all the all and will it keep incrementing the localhost by 1 all t...more >>

"Well-Formed XML"
Posted by Bryan Dickerson at 6/21/2005 9:21:14 AM
I have a working version of my first Web service (everyone together now: "Awwww, how nice"). I am just having it return an XML string which it is doing nicely. Now I'm working on a test app to consume it and pull information from it via XPath statements and can't get it to work. I'm not g...more >>

Simple(?) web service
Posted by VK at 6/20/2005 11:29:07 AM
Hello: I have written a simple web service which just is NOT deploying to client. The web service is an sp, and ws returns a data set. On the client project, I have added a reference to this web service. How to retrieve this dataset set into the client project? I have set up a datagrid b...more >>

Trouble with X509 authentication
Posted by Eric at 6/20/2005 11:11:29 AM
Hi all, I'm trying to get the hang of WSE2, and am running into a problem. I wrote a simple web service, and a simple client that calls that web service. If I do not have a policy in effect for the web service, everything works fine. When I turn the policy on, I get: Microsoft.Web.Serv...more >>

Submitting XML to an URL
Posted by Vi at 6/20/2005 7:57:05 AM
hello, I'm not sure this is the right place for this question, but hopefully somebody can help. I'm trying to build an in-memory XML file and submit it to an URL. Here's a sample code: //==================================================== HttpWebRequest request = (HttpWebRequest)WebRequ...more >>

Returning interfaces from web-services and remoting servers?
Posted by Ben Fidge at 6/20/2005 2:24:01 AM
Hi I'm just about to start the design and development of a large in-house Content Management System. The system will be ASP.NET based with a Sql Server back-end and will be developed be using VS.NET 2003 Ent. architect. Due to high demand (~10,000 users), and varying network setups across ...more >>

setting security
Posted by Saverio Tedeschi at 6/18/2005 11:33:57 PM
Hi all gurus, it's the very 1st time I attempt to build a Web Service app, and while simple samples work fine, I stuck trying to fill (on server side) a DataSet to be returned by the service. Test run fails with HTTP 500 - Internal server error, but the true error is in Fill method, which doe...more >>

Controlling Web Service Timeout from inside web service
Posted by dayblue at 6/18/2005 1:23:09 PM
I am implementing some web services to support a new standard for my industry. Because of the way these web services are defined, there is the possibility that a large amount of data can be sent in one call. In some cases I would want to make sure that the web service timeout is long enough ...more >>

ASP.NET and BLACKBERRY
Posted by John Cosmas at 6/17/2005 7:30:01 PM
Has anyone had the pleasure of developing ASP.NET applications of the BlackBerry? I just built a simple application, and it seems not generate incomplete HTML tags. For instance, when an <INPUT is created, it closes it with /> instead of a straight >. And for some reason whatsoever, there a...more >>

The test form is only available for requests from the local machine.
Posted by Mauricio Correa L. at 6/17/2005 4:28:45 PM
Hello, there is some way to configure the test form for remote users can probe the WebMethods, because the only way for remote users probe the webservice is make a client application. Thanks ...more >>

speed of whidbey
Posted by willem joubert at 6/17/2005 6:59:37 AM
Hi, Everywhere it is said that Whidbey is faster than vb.net 2003. But how much faster? Is it feasible to change my existing web applications to ''whidbey'' to make it faster? Willem Joubert ...more >>

Using User Defined Data Type Across
Posted by Serkan DIRIARIN at 6/17/2005 12:00:00 AM
hi! i have created a document class. I have a .net client application and a web service. Both of them using same object model and referencing a doctypes.dll file. But when i want to run a client application getting error InvalidCastException. I deleted class declaration in reference.vb in web r...more >>

ASP.Net client sending XML string
Posted by brendan_gallagher_2001 NO[at]SPAM yahoo.co.uk at 6/16/2005 1:11:17 PM
Hi, I am using a .Net (VB.Net) webservice with an ASP.net client to generate an xml string from a db and then send it to a web service on the same box (client is part of the same service) which then processes the xml amd sends a sucess result. I have this part already working. However, I...more >>

webmethod "push" through NAT (network address translation) firewall-router
Posted by Gene at 6/16/2005 10:23:26 AM
Hello, Instead of having my client (desktop) application poll the server, I would like to have my server "push" data to a desktop application. The desktop application will most probably reside on the other side of a firewall/router with address translation. How do I perform such a feat with H...more >>

Integrated Windows Authentication, ASP.NET and FoxPro
Posted by Amedee Van Gasse at 6/16/2005 4:36:53 AM
Hello, Since it is the first time I'm posting in these groups, I believe a (short) introduction of myself would not be a bad thing. I am mainly a support engineer, not a programmer. I do have some experience with Java and LAMP (Linux/Apache/MySQL/PHP) but don't consider me one of those bori...more >>

Distinguish between WebService and Windows App
Posted by Stephen Ahn at 6/16/2005 12:00:00 AM
From inside a dotnet class library, is it possible to tell whether the dotnet application which called it is a web service, or a windows application ? Thanks, Stephen ...more >>

Web Service and Threads
Posted by wbarr NO[at]SPAM tin-man.co.uk at 6/15/2005 1:19:47 AM
What I'm trying to do is call a web service which then invokes a worker thread. This thread should then handle any further lengthy processsing freeing up the WebService to complete and terminiate. To do this I'm using code similar In the Client application I call Public Sub InvokeWebServi...more >>

HttpWebResponse
Posted by Jonathan via DotNetMonster.com at 6/14/2005 8:04:36 PM
When using HttpResponse, I'm getting HTML entities in the returned value: For example: // the httpRequest has already been sent HttpWebResponse httpResponse = null; httpResponse = (HttpWebResponse)httpRequest.GetResponse(); StreamReader sr = new StreamReader(httpResponse.GetResponseStrea...more >>

Can't debug simple C# Web Service
Posted by Craig at 6/14/2005 11:34:18 AM
First, a confession. I am developing with an old version of VS .NET: VS .NET 2002 (7.0.9955). I am trying to start a *very* simple Web Service in debug mode. I'm getting this message: "Error while trying to run project: Unable to start debugging on the web server. You do not have p...more >>

Asp.net Web Application
Posted by Eddy at 6/13/2005 11:05:02 PM
I am using a Window XP Home Edition. I do not have IIS manager(localhost) to start doing a Web application. Any other way to resolve the problem?...more >>

Throw a SoapException or Return a string?
Posted by Greg Robinson at 6/13/2005 2:47:18 PM
Our web service uses ComInterop to interact with a FoxPro COM dll. The COM dll assigns 0 - 20 "Error Codes" to a public property at the end of it's method. If the call to the COM dll was successfull, the COM dll assigns 0 to the public property. If there was an error, depending on the error, t...more >>

needing help - constructor overloading
Posted by alberto.decaro NO[at]SPAM gmail.com at 6/13/2005 9:20:34 AM
Hello everybody, I'm developing a XML web service in VB, and I'd like to overload the constructor to customize the service: [...] Private _tblParameters As datatable 'the default constructor Public Sub New() MyBase.New() InitializeComponent() End Sub 'the overloaded constructor ...more >>

Handle disconnected clients?
Posted by Vlad at 6/13/2005 12:00:00 AM
Hello, I have a WebMethod that returns a large array of bytes (actually some files, but i don't think it matters). How can i know on the server-side that desktop client disconnects unexpectedly while receiving data (for example, slow WiFi connenction)? I need to do a rollback in my database w...more >>

Error Creating Event Source
Posted by Karthik Srinivasan at 6/10/2005 3:38:08 PM
Hi, My web application which runs on Windows 2003 server writes to EventLog during application startup but I get the following exception Requested registry access is not allowed. at Microsoft.Win32.RegistryKey.OpenSubKey(String name, Boolean writable) at System.Diagnostics.EventLog.Cr...more >>

Namespace Problem? COLMAN.Portal.COLMAN.Portal.Customer.IsPwdTemporary(String strUserName) - Is this Correct?
Posted by webmaster NO[at]SPAM sanjamar.com at 6/10/2005 11:36:27 AM
Is this normal or a Namespace Problem when it duplicates COLMAN.Portal 2 times? Example: COLMAN.Portal.COLMAN.Portal.Customer.IsPwdTemporary(String strUserName) Here is the full Stack Error: Server was unable to process request. --> Object reference not set to an instance of an object. ...more >>

Setting "URL Behaviour" to "Dynamic" has no effect
Posted by Hans Malherbe at 6/10/2005 4:30:27 AM
Greetings When I set the "URL Behaviour" of a web reference an entry is created in the "Web.config", but the value in the "Web Reference URL" property is still used. When I look in the file "Reference.cs" I can see that "this.Url" is set in the constructor of the reference class to the har...more >>

Webservice problem (after iisreset)
Posted by Joao Maia at 6/9/2005 9:09:53 AM
Hello all. I am using a very simple web service I developed to access a SQL Server database and returning some data. I am accessing this web service using the Microsoft WebService DHTML Behaviour (WebService htc), in order to access the data I need from some javascript code on a web page. So f...more >>

Return multiple values from web service
Posted by Shawn Cutter at 6/9/2005 8:18:07 AM
Background: I am trying to return a list of ID's to the client requesting the web service. The list of ID's I want to return is a list of all relating ID's to the passed in PersonID. How it currently functions: Web Service (Server): I have a basic web service that receives a PersonID. The ...more >>

Server Time Out
Posted by Clara at 6/9/2005 12:00:00 AM
Hi everybody, I am developing a Web Service that matches users from Active Directory and users typed in a SQL Server 200 Table. Then generates a XML with the XML.XMLElement class and returns it to a Windows program. If I debug the Web Service it works fine, I can see the XML in the Int...more >>

Making a dynamic web service call
Posted by Maziar Aflatoun at 6/8/2005 6:44:42 PM
Hi, Is there a way to connect to a Web Service dynamically at runtime (Web Reference URL)? I have always used Visual Studio to create a Web Reference and then used it in my code. However, that always requires the URL to the Web Service to be the same on the staging site and the production ...more >>

Dynamic TextBox
Posted by learningNET at 6/8/2005 6:07:02 PM
I am creating a number of textboxes dynamically(depending upon the user input) and am unable to retrieve that data to store in the DB. When I click the submit button, the code is unable to find the dynamic textbox by that name. I am creating the textboxes using a method that gets called after ...more >>

Does remoting use port 80
Posted by Ray Stevens at 6/8/2005 7:33:10 AM

run .exe from web service - looking for ideas
Posted by ryan.mclean NO[at]SPAM gmail.com at 6/7/2005 5:28:20 PM
Hello everyone, I am trying to accomplish something, and the way I had intended is not working out, so I am looking for ideas. Here is what I am trying to accomplish. I must preface this by saying that I am new to iis and iis security. I have a .exe that must stay on the server. I would li...more >>

Exexcuting a Web Services asyncronously in Web Application.
Posted by lambu at 6/7/2005 1:05:40 AM
Hi, How do i execute a Web Services asyncronously in my Web Application? How do i know when the Web Services has completed executing? One more thing - If the user requests for a page, in which the Web Service is executed asyncronously, until and unless the web services has been execut...more >>

Strange web.config problem
Posted by Bill Youngman at 6/6/2005 4:14:12 PM
Have web application that is working fine on my local development machine; however, when it is being installed on a QA machine it has to be installed under another web app directory and it is erroring out. More specifically it appears to be using the web.config file from the app directory that is...more >>

"static" application data
Posted by Gene at 6/6/2005 3:57:46 PM
Hello, I haven't seen anything written about "static" objects and web-service "applications". My web service(s) require quick (read-only) access to some cached data. I'm hesitant to putting this in a cached ADO dataset (of course it would have to implement a lazy-reader pattern to load the data)...more >>

help with WebMethod (VB)
Posted by Jure P at 6/2/2005 11:39:32 AM
can any one please help me to translate part of WebMethod Soap header from c# to vb. All translators i found do it wrong: I have problem with "return" [WebMethod(EnableSession=true,Description="Obtains the Party info of a GLN",MessageName="GetPartyByGLN")] [return:XmlElementAttribute("aaaPa...more >>

Screen Scraping HTTPS
Posted by Michael C# at 6/2/2005 10:01:38 AM
Hi all, I'm writing a web service that uses HttpWebRequest/HttpWebResponse to screen scrape. It works fine for regular HTTP sites, but for an HTTPS site (no username/password) it gets stuck... I think the certificate is causing it to fail. Here's the error message I get: "The underlying...more >>

How can i browse directries and files using C#.Net ???
Posted by Alex Smith at 6/2/2005 12:00:00 AM
Hi, I want to browse Directries and files of my IIS server using C#.Net. Anybody help me? Thnking you, Samir ...more >>


DevelopmentNow Blog