microsoft.public.dotnet.framework.aspnet.webservices Archive - October 2001
Post a message to this list
Messages
Page: 123
maintaing Session State (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Those anyone know of any problems with maintaining Session State in an ASP.NET web service? When I use the html page that VS.NET generates, session state works just fine, but once I switch to my win forms client, I just can't maintain session state. I tried using cookies directly but I can never retrive the cookie on the way back. I am using IE 6.0, win 2000 server VS Beta 2 Thanks
Basic Authentication Forms Login? (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
Dear Guys/Gals, How to implement Basic Authentication via forms login in ASP.Net? Thanks in advance
deploying asp .net application that consumes web services (4 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I have created an application that uses all web services as its data tier, these are all loaded onto a server in a project. I have a UI project that uses all of these web services that when compiled and ran from my local machine runs fine. The problem is when I copy this UI application to the production server, when I do this I receive 404 not found errors for every instance of a web reference on ...
PRB: Web Service not loading on Windows 2000 (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
When I try to debug my web service using the F5 option in VS.NET I receive: Error while trying to run project. Unable to start debugging on the web server... I load the page in IE (http://localhost/mywebservice/service1.asmx) and all it returns is %@ WebService Language "vb" Codebehind "Service1.asmx.vb" Class "MyWebService.Service1" % Current configuration is Windows 2000, 128 MB, SP6, IE6 the on...
Session not working in web service (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hi I have created a web service with web method attribute ( enableSession true). I am accessing the session variable accross the methods. But when I call the web service from the ASP forms it is not working. It works when I test the web service from the project. Thanks Gajanan
anyone introduce me some web services (5 replies)
microsoft.public.dotnet.framework.aspnet.webservices
hi, i want to build a simple B2B site sells CDs or books. is there any good web services now that i can use which return image information that makes my site goodlooking? i searched some business on uddi.microsoft.com, it always return a UDDI string xxxx xxxx xx xx(no wsdl), how can i use them with my project? thanks.
Dynamic Data Loading, without reloading a Web Page (4 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hello people! I am new in .NET and all the neat features it has.. The company I work for, is about to start a new project on the .NET platform. The problem: I want to have a Web Page (.html, .asp, .aspx or what ever) and I want to load the values of the form from a database server, multiple times, without reloading the page (because it is extremely large). To be more precise (as more as I can be) ...
Thread problem related to ASP.NET WebService. (6 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hi. I'm newbie in .NET world. I'm developing a website using ASP.NET. I want to make some component using ASP.NET werservice feature. These componentes will be accessed by many(about 10~50) users and will be reused. So, I want to make something clear before build my homepage. How many instance of web service will be created when Homepage calls webservice methods? Only 1? or It's created when acces...
Getting Response Codes 400 and 500 (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I have a very simple test web application, which is a single ASPX page. That page makes a single request to our web service. I am using the ACT tool, that comes with VS.NET, and this simple web application to stress our web service. I am finding that when I run a stress test with ACT set to simulate a large number of concurrent users, response codes of 400 and 500 are being returned for some of th...
maintaining session state (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hi, I have a webservice on a m/c and asp.net client on another m/c. I want to maintain the some of the objects which are created in the webservice in the session . I am able to do this if both webservice and the client are on the m/c but not able maintain the session state if the webservice is on a m/c and asp.net client on another m/c. please help.. gdc
webservice returning an Array? (4 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I implemented a webservice returning one Object which works fine. Then I changed the return Type to an Array and the webservice allways returns an empty array. How can I debug the code to see the serialized Soap messages? Thanks! works fine [WebMethod] public Product product() { Product product new Product(); product.name "Peters Product"; return product; } does no work: [WebMethod] public Product...
programmatically setting the URI to a web service (6 replies)
microsoft.public.dotnet.framework.aspnet.webservices
is there a way to set at run time the uri/url to a web service? i tried modifying the proxy class generated by vs.net i added a constructor that accepts a string containing the URL. it worked, but there's a warning in a comment block at the top of the the auto generated class that it shouldn't be modified. can anybody suggest an alternative ? thanks.
webservice scaleability question (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I'm putting my site's data access layer into 1 webservice. Its working fine. Each webmethod represents one report, creating a db connection, then does a con.Open(); return(sda); It returns the sda to the calling aspx page. I've got about 4 webmethods for 4 aspx reports already in my webservice. But i don't know if its time to divide up the service into 4 services, deploy 4 dll's etc, or is it scal...
Cannot Subclass Webservice-returned Classes in Client App (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Anyone know if this is possible??? Problem description: I have written a Web Service which correcly returns a serialised representation of a custom object hierarchy. A client .Net Windows App has a reference to this web service and the IDE shows the objects correctly and can access them when the web service function is called. The web service returned objects have only Properties no methods as exp...
Default Xml Namespace (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
Anyone know how to set the Xml Default Namespace using Javascript. I have created A webservice using VB and it works fine. I then ported the code to Javascript but don't know how to set the default namespace. In VB I used this. WebService(Description : "My Description here", Namespace: "http://www.MyNamespace.com/webservice/") Public Class My Class Inherits WebService WebMethod() Public Function M...
Session state maintainence in webservice. (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hi I am having a problem with session state with the example given in MSDN %@ WebService Language "C#" Class "Service1" % using System.Web.Services; public class Service1: WebService { [ WebMethod(Description "Per session Hit Counter",EnableSession true)] public int SessionHitCounter() { if (Session["HitCounter"] null) { Session["HitCounter"] 1; } else { Session["HitCounter"] ((int) Session["HitCo...
Web Service error (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
When I try to get to my newly created WebService I get the following in an web page. %@ WebService Language "c#" CodeBehind "Service1.asmx.cs" Class "WebService1.Service1" % It is as though ASP.NET is not installed. I re ran the entire installation and still the same thing. Any idea? Love, Michael
One line C# code failing in ASP.NET but not in .NET Windows app (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
I've been trying to build a .NET application that references the MapPoint Type Library. I've been successfully able to import the Library with TlbImp.exe and to run a .NET Windows application with the following early binding: private void Form1 Load(object sender, System.EventArgs e) { MapPoint.Application app new MapPoint.Application(); textBox1.Text app.Caption; } This works just fine, but when ...
WebService behavior (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I've heard that there is a new WebService behavior in IE5 that enables client side script to invoke remote methods exposed by Microsoft .Net Web Services, or other Web servers that support the Simple Object Access Protocol (SOAP). Where I can find more info on the behavior? Thanks
Problem? Invoking WebService on "other" thread... (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I have a C# Windows Form application. This app needs to do some steps asynchronously, including invoking a WebService. So...I start a new thread, and begin to do these steps on a thread other than the GUI thread. I am not making any calls into the apartment threaded GUI components. When I invoke a WebService in this manner, I typically get exceptions, sometimes at some random time later, and somet...
Basic Authentication and Web Services (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Any suggestions on how clients of Web Services (using a web reference) should consume a Web Service that is a IIS virtual directory that has Basic Authentication turned on? Yechezkal Gutfreund, Ph.D. Chief Scientist Surgency, Inc. Cambridge, MA USA
Too many automatic redirection attempts (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I'm experimenting with some c# webservice code that is designed to return the most recent say, 3 days of "HOWTOS" from the MS Search service. Here is a sample working GET URL. You can paste this into IE and it will return a result page. (sorry about any wrapping): http://search.support.microsoft.com/kb/psssearch.asp?SPR msall&KT ALL&T N&T1 3d&LQ HOWTO&PQ PastQuery&S F&A T&DU C&FR 0&D support&LPR &...
Is it possible to make MSOffice COM objects into WebServices (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I've been trying to set up MapPoint 2002 as a WebService to talk to a Java application via SOAP. While I've been successful in importing the MapPoint COM Object type library and using that in a .NET Windows application, I haven't been able to access the imported Interop.MapPoint assembly from a WebService. I even tried making a ..NET Class Library and referencing that in the WebService. Every time...
ISAPI Extension in .NET (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Can I write ISAPI Extension in .NET yet? I found the System.Web.Hosting.ISAPIRuntime class but there is no documentation yet, anyone know if this class is usable in Beta2?
state in webservices - BUG ?? (4 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hallo! I try to set an application object at the global.asax.cs to an inital state. A webservice uses this object and simply increments its value. With a generated webservice page everything works fine, but with my own ASPX pages the webservice has the problem that the application object isn't initialized even not created. Any ideas whats wrong ??? Peter
Ad
MBR BootFX
Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
 
 Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
Contact Us - Terms of Use - Privacy Policy - www.dotnet247.com