microsoft.public.dotnet.framework.aspnet.webservices Archive - May 2004
Post a message to this list
Messages
Page: 1234
Web pages won't refresh (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I hope that you can help me with a problem that I have with Internet Explorer. If I go to a site that has text and pictures, such as BBC News, very few of the pictures are visible. Refreshing the page does not improve the situation. If I click on a visible picture, then the "back" button, more is refreshed. Sometimes this process takes several attempts before the full page is visible.
web application definition (5 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Can we say a web application means an application with web user interface? Do u think this is a good definition? Since web services doesn't have web user interface, it should be distingushed from web application. And web application includes internet and intranet web applications.
Problems in deploying the web service on other webserver (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hi Folks, I am sort of new to Web services and facing a problem. I exposed a modifed version of HelloWorld Function through a sample web service. The web service was created using Visual Studio .NET. The files created for this web service include: SampleMaint.asmx (the main web service file) SampleMaint.asmx.vb (the coee behind file) SampleMaint.asmx.resx (The embedded Resource file) The problem i...
The static objects of the web service are swapped out. (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I write a web service which holds a static hashtable. At the first method invocation, the constructor loads the hashtable, then the look up method of the web service can run quickly by look up the pre loaded hashtable. My question is, if the web service has not called for a period of the time, the memory used by the hashtable seems to be swap out. Then the look up method will take a long time. It ...
webservice security. (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Please, what's the best way to implement webservice security. My needs are: Just some external systems or users can access a specific webservice or better, a specific method. Is there a way i can implement something like that, using native .net resources or i need to implement one myself? Tks in adv. Fabiano
Issues with web references and proxy classes. (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
Good Morning; When the WSDL.exe and/or webreference generates a proxy class for a webservice which receives/returns a custom object the class representation within the proxy class is incomplete. When the proxy class imports the object definition it leaves the root node attributes off the object root node which causes the code to blow up. (below is the example). Is there a way to foce the inclusion...
Problem with WSDL generation (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
Good Morning; When the WSDL.exe and/or webreference generates a proxy class for a webservice which receives/returns a custom object the class representation within the proxy class is incomplete. When the proxy class imports the object definition it leaves the root node attributes off the object root node which causes the code to blow up. (below is the example). Is there a way to foce the inclusion...
How to control order of web methods on web service test page? (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I found list of web methods on test page aren t in alphabetical order and aren t in source code order. It looks like almost random. But I want to have that list in specific order. So how to control order of web methods on web service test page?
Webservice vs. Remoting ! (6 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
Hello everybody, I want to ask what is the best way to tansfer DataSets (or any object ) in a local network ? Webservice or remoting ? Or any thing else ? thanks in advance
Serialization question (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hi, I have a public class within my webservice class that inherits of CollectionBase. Everything compiles and my client sees every class and webMethod excep for this class... I guess I need to serialize this class but I got some difficulties to find a comprehensive help about it... Can someone help me with this or refer me to a good tutorial about it? Thanks
Add Web References problems (15 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
Hi All. I'm brand new to this but 3 days of working on it and scanning literally thousands of user group messages has not solved my problem. I have VS.Net 2003 installed on my dev machine (Win2K), and the server components on my dev server (Win2K server), along with .net framework v1.1. I am trying to go through the walkthrough titled "Creating a Distributed Application". I can create the WebServi...
Failed to start monitoring file changes. (8 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hello, I have researched and tried every thing I have found on the web, in groups and MS KB articles. Here is what I have. I have a Windows 2000 Domain Controller all service packs and every thing else from windows update. ..NET 1.0 and 1.1 installed on the server. Actually .NET was installed before the server was made a DC. This server is a VMWare virtual machine so when I have the ability to rol...
Soap toolkit completely replaced by .NET? I'm not so sure... (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Ok, so looking up the SOAP toolkit on MSDN gives you a nice little message saying that the toolkit has been replaced by the .NET framework. Ok, fine...but here's my problem. I just checked out this sample application (http://www.codeproject.com/com/XYSoapClient.asp) which shows how to call a web service from C without knowing anything about it at compile time. There seems to be NOTHING in .net to ...
Error The underlying connection was closed (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I am trying to consume a Web Service (developed using ASP.NET/VB.NET) using a VB.NET application. I call the web service asynchronously as the processing takes more than 2 3 minutes. However I get the following error after the BeginXXX call: An unhandled exception of type 'System.Net.WebException' occurred in System.dll Additional information: The underlying connection was closed: An unexpected er...
Error: Could not find a part of the path / Reading and Writing to files in ASP.Net (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
Hello, I'm trying to read a text file located in the top folder of the virtual directory and I'm receiving the following error: "Could not find a part of the path" Below is the code that I'm using: string MyFile; MyFile Request.ApplicationPath "//sample1.txt"; StreamReader srReader; srReader new StreamReader(MyFile); txtMessage.Text srReader.ReadLine(); I have tried both "Windows" and "None" for "...
Web References how to config to read URL from config? (9 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
It's great that VS.NET makes it so effortless to add a web reference to a web service. The problem is, I haven't figured out a way to configure the URLs (or simply switch the references to another web reference) easily when I move my app from development, to staging, to production, as I have corresponding environments for the web services too. So far what I have done is copying the Reference.cs fi...
WebService return type suggestion (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I am a newbie in this area. I want to write a web service that executes an SQL and returns the resultset. The resultset is to be bound to a datagrid on the receiving end. Should I return a dataset from the web service and bind that to the Datagrid OR should I return the XML(using GetXML method of DataSet) string and on the receiving end, fill a dataset and bind that to the Datagrid. How much more ...
Connecting to SQL Server from Web Service (5 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
Hello! I am trying to connect to SQL Server 2000 ( actually MSDE ) from my Web Service, but when I try to connect, I get an exception saying: Login failed for user IWAM MachineName. I know for MS Access, I can give IWAM account read/write perms on the DB folder. Is there some analogous thing I need to do for SQL server? I am using Windows Authentication... Thanks in advance, John
Remote Administration (3 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
I am writing webform applications and successfully running them on my local machine. I have available two remote servers (from two different ISPs) running IIS 5. Is there documentation available that tells me how to copy my applications to these remote servers and have them compile and run the applications? Thom Little www.tlaNET.net Thom Little Associates, Ltd.
HOWTO: Deploy my Web Service (VB .NET) (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hello, I have created a web service that access an AS/400 server and return a set of data through XML. Now I want to deploy that web service onto a server in our enterprise so other application can use it. What do I have to do exactly? Anyone can give me instructions or point me to a site that expains everything ( security stuff) ? That would be greatly appreciated. Thanks. Christian
Web Services and Strongly Typed Collections (4 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hi, My application requires the use of strongly typed collections. This means I need the semantics of an ArrayList which supports members like Add, Item, Remove, Count etc but returns a strongly typed object reference instead of System.Object. Therefore, I have implemented two classes the fooItem class and the barCollection class barCollection *does not* implement IList or ICollection because barC...
Setting minOccurs attribute (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
Hi, When setting the XMLElementAttribute IsNullable false I get the minOccurs 0 in my WSDL: C#: [System.Xml.Serialization.XmlElementAttribute("XXXX", Form System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable false)] public myType XXXX; WSDL: s:element minOccurs "0" maxOccurs "1" form "unqualified" name "XXXX" type "s0:myType" / When setting the IsNullable true C#: [System.Xml.Serialization.XmlE...
Changing xml-encoding for webservice response (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
How do I go about changing the xml encoding for my webservice responses? It defaults to UTF 8 and changeing responseEncoding in the web.config file doesn't do me any good. Neither does setting Context.Response.ContentEncoding to System.Text.Encoding.Unicode. I got a question from a student about this and I can't find info about it anywhere. Any ideas? Magnus Lindberg, MCSD, MCT cshrp.net "Elegant ...
Mandatory WebMethod parameters (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
Hi, I have WebService (C#) with one WebMethod that takes 4 parameters, as below: s:element minOccurs "0" maxOccurs "1" name "requestedBy" type "s:string" / s:element minOccurs "1" maxOccurs "1" name "submissionDateTime" type "s:dateTime" / s:element minOccurs "0" maxOccurs "1" name "orderReference" type "s:string" / s:element minOccurs "0" maxOccurs "1" name "currentState" type "s:string" / My pro...
consuming web service in asp.net application - authorization problem (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
Hi! I have an authentication problem when trying to access web services on my local intranet. The web service requires windows authentication. I want to use asp.net with c# to do this, but every time I try I allways get error message "The request failed with HTTP status 401: Unauthorized" It seem I am not able to pass my credentials trough to the web service, even though I've included "myservice.C...
Ad
Need Dot Net Interview Questions?
Ask ExamGuru, Inc. for advice and help on Passing .Net Interviews
.Net Projects
Best-of-breed application framework for .NET projects, developed by ExamGuru, Inc. and ExamGuru IT
Free .net Help
Commission ExamGuru, Inc. and his team for your next bespoke software project
FogBUGZ
The only bug tracking system carefully crafted with one goal in mind: helping teams create great software.
Awesome Tools
If you don't know about these, you're missing out... IT Certification Questions
IT Interview Questions
Free Oracle 10g Training
MCSE Boortcamp
Cisco Study Guides
Cheap Study Guides
Exact Questions
Dot Net Interview Questions
Oracle OCP
Cheap Travel
Designer Perfumes - Wholesale Prices
Free Programming Tutorials
 
ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
 Copyright © ExamGuru, Inc. 2001-2006
Contact Us - Terms of Use - Privacy Policy - www.dot-net-guru.com - www.examguru.net - www.oraclesource.net - www.itinterviews.net - www.examguru.net/ITCertification