microsoft.public.dotnet.framework.aspnet.webservices Archive - February 2003
Post a message to this list
Messages
Page: 123
Isn't it a DotNet Technology BUG ? ( Need someone from MS to answer ) URGENT (4 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hello, We are writing a Client/Server Application that will be used to serve one server and multiple clients. We are testing 2 different .NET technologies now (Remoting and WebServices) and we have problems with both of them. The problems are related to the realization of multithreading in these 2 technologies. Here are the tests (on both technologies) we have made based on which we think the mult...
WSE Filters running as other than ASPNET (4 replies)
microsoft.public.dotnet.framework.aspnet.webservices
If I am right, the default Soap Filters for signing, encryption, time to live all run in the context of the ASPNET account. Is there any way to change this? You need to give cert store permissions to ASPNET for things to work. Is this OK? Does this end up giving too much privilege to an account that is supposed to be low power? Is it better to create another specific account instead of using ASPNE...
Typed Datasets and Webservices (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hi I have three projects: 1. Class Object with one class: MyClass 2. VB Form Application 3. Web Service Application Both the Form App and the Webservice use the MyClass object, and it works fine. The problem happens when I try to pass an object of type MyClass from my form to my webservice. Even though they both reference the same project (i.e. dll), when I reference the web service in my VB Form ...
raw HTTP POST (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
How can one gain access to the raw HTTP POST, alter it, and then let the altered version get processed by the framework through to the web method. thanks
Dynamically Create controls - Please Help (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I have a requirement to create text box controls dynamically in ASP.net. I tried to create the controls in a Do While loop. But it creates with the same ID. I used like this % Dim Counter as Integer Counter 1 Do while Counter 10 % asp:textbox id "textbox1" runat "server" /asp:textbox % Counter Counter 1 % Here it created 10 text box controls without any problem; but with the same ID. Is there anyw...
RPC call. How to send the notification from server to client through Webservices (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hi there, How to send the notification from server to client through Webservices (make RPC call) Currently we are using DCOM. As far as we understand Webservices are good for the DataExchange. Michael
Simple Webservices Design Question (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I am trying to create a windows application which allows the user to select the location of a certain Access database and hit "Upload". The app captures the data from the specified Access database and attempts to send it to a webservice to update the database that is serving a website. Here's my question... I have created a schema for the information that is going to be transferred. It is simply a...
passing null to a web service (4 replies)
microsoft.public.dotnet.framework.aspnet.webservices
How do I pass a "null" to a web method that accepts a string? I get an runtime error. Regards Michael
How do I create an instance of SoapContext? (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Can I create a SoapContext instance directly? e.g. SoapContext x new SoapContext(); If not, how can I create one outside the Http environment???? Thanks
DIME & memory leaks follow-up (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Dear All, Many messages have been posted to this list regarding unusually high memory consumption when sending/receiving DIME attachments. I'd like to summarize the recent discussions and prompt the MS people on the list to reply to the outstanding issues : 1. Memory consumption goes up during sending/receiving. Many of us have noticed that the memory consumption increases when using DIME this is ...
Upload 2GB file (4 replies)
microsoft.public.dotnet.framework.aspnet.webservices
How can I do this? I used this code in my client, but it's ok only for 20mb file. There is another problem, when I upload a 5/10/20 mb file, I see in taskmanager that my client uses 230mb of memory!!!! why??? This is my simple code: Private Sub Button1 Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Try Dim f As System.IO.File Dim fs As System.IO.FileStream ...
Serializing a custom collection (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I have this code : Public Class Listing Public Listing No as Int32 End Class Public Class Listings Private m listings as ArrayList Public Sub Search ... End Sub End Class and a webmethod to be called via SOAP. The problem is that nothing gets serialized. How can I correct this ?? thanx *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for i...
How do I... (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I've created a (very simpe) web service but the returned XML is not what I want it to be. For instance, one of my Web Methods is a multiplication function. The root element name is the datatype of the return value. How do I change that? Here's some sample of my code and the result: ****************** Web Method Code ***************************** WebMethod(Description: "Accepts two numbers and retu...
Dynamically linking to WebServices (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I will have several webservices that do the same thing (they return the Latitude & Longitude for a given list of addresses) and am attempting to write a central controlling app that will pick and choose among these services based on a configuration file I provide and pinging of the various sites to see if they're available at runtime. My problem is I don't want to have to set up web References to ...
Passing DataSet as parameter (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
How do i pass a DataSet from my client to a web service? I'm using C# Thanks in advance Andy
SoapContext - nearly so very cool.... (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Jim, Hervey, anyone please help: I'm overiding GetWebRequest to transport Soap messages over MSMQ. So far so good. Now I'm adding WSE "around this" and using standard InputMessage Pipeline invocations on each end to drive the GetPassword / GetDecryptionKey. What a very cool architecture by the way. And it all works lovely. Almost.... On the client side, I hang my InputMessage pipeline invocation o...
ws newbie and System.IO.FileNotFoundException (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hello I've just created basic web service ( HelloWorld ). Unforutanelly when i push button "invoke" i get error message : System.IO.FileNotFoundException: File or assembly name rmb7qeqg.dll, or one of its dependencies, was not found. File name: "rmb7qeqg.dll" .... Pre bind state information LOG: Where ref bind. Location C:\WINDOWS\TEMP\rmb7qeqg.dll LOG: Appbase file:///c:/inetpub/wwwroot/ws2 LOG: ...
Returning Large Datasets from a ASP.NET Web Service (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I currently have a web service in which one of the methods returns a large dataset (about 2M) that will be used as a readonly dataset on the client. The web method first checks if the DataSet has been cached in the Context. If not it invokes a stored procedure to return the result set into a DataSet, caches the DataSet, and returns the DataSet to the client. If the DataSet is in the cache it simpl...
generating ws proxy at runtime problem (4 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hi everyone, I'm trying to generate webservice proxy at runtime. When I add multiple service descriptions into service description importer and then Import(...), exception is thrown ("schema with the namespace ... has already been added"). Is there a workaround for this? From stacktrace I can see that deep inside XmlSchemas.Add() is called, and documentation for it says that if "ns has already bee...
.net framework 1.1 error returning dataset with column errors (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Returning datasets from a web service does not work if any column errors are set. If you do not mark any errors, it works fine. When you look at the xml generated from the web services everything is fine. When you attempt to call the web method from a windows .net application, you get an xml error. Suprisingly, if you add additional out parameters to the web method, it works. The following code wo...
Schedule sending email through Windows service (5 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hello, I need to schedule sending email through a windows service. I tried using Imports system.web.mail but did not work in .net. Any suggestions? Thanks in advance. S
configuration Error (6 replies)
microsoft.public.dotnet.framework.aspnet.webservices
we have a c /MFC DLL, named as mg.dll, being used in our C /MFC applications. we want to use some of classes and functions of mg.dll in our xml web service applications. 1. I created a managed C library, WrapMg.dll(from Visual C projects\Managed C Class Library), which has two methods. (see the wrapMg.cpp at the bottom). I put WrapMg.dll and mg.dll in c:\Inetpug\wwwroot\jws1\bin 2. I then created ...
can't connect to ADODB (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hey all, This works on a regular asp page : set oCmd server.CreateObject("ADODB.Command") oCmd.ActiveConnection sql connection But it doesn't on my asp.net webservice... does anyone know what the correct syntax is and why it won't accept this? Thanks, V
Unable to connect to oracle in ASP.NET web service (5 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I'm unable to connect to Oracle database from ASP.NET using either OleDb.OLEDbConnection or OracleClient.OracleConnection. I'm using Oracle Client 9.2. I am, however, able to connect using either type of connection when attempting from .NET windows form application. Any help would be greatly appreciated. Thanks, Stacey Tarr
Permissions problem accessing web services (4 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I am using Everett (final beta) and cannot access any web services either public ones or on the local machine. If I create a 'hello world' web service, I can use it from IE no problem. However, if I try to access it from a vb.net client (using either local host or machine name as reference) I always get the following error (and same error when accessing public services): An unhandled exception of ...
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