microsoft.public.dotnet.framework.aspnet.webservices Archive - August 2002
Post a message to this list
Messages
Page: 1234
object returned but properties stay empty... (4 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hey everybody, My Delphi SOAP Server returns an Object of type TTypeObject (home made ; ) The object has just 1 property, and it's a STRING. That doesn't sound too hard I think. However, when I call the function that returns the object, the app. receives the object alright, but the property (STRING) stays empty. I created the client with C# out of Visual Studio.NET and the importing and creation o...
Design Questions PLEASE HELP (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
Hello all, We are planning on a distributed application using web services with vb.net. Before we got into the full fury I had a couple of design questions. 1. Can I make a web service dynamic so at run time if the web service is down it can load the dataset from another web service? 1 A. Is there some documentation on this somewhere? 2. If the database is down for the current web service is there...
Accessing SOAP headers before invoking WebMethod (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
Hi all, I have a windows form that uses a WebService. If I try to invoke a WebMethod with code like this: CodeWebService.Service1 proxy new CodeWebService.Service1(); MessageBox.Show(proxy.HelloWorld(this.txtHelloWorld.Text).ToString()); ....this only changes the SOAP body. There is no chance to alter the SOAP header beforehand. I need to customize the SOAP header before sending it to the WebServi...
webservice security issue with network-based Winform (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
We've got an established set of web services that useWindows authentication. We can access these without problem for ASP.NET web apps and locally installed Windows applications. For kicks, we installed all the Windows assemblies (exe and dlls) to a network share so we could test performance with multiple users hitting a single shared application. The forms download fine but when we call the web se...
Publish/Subscribe using Web Services (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I am developing an application for a trading environment. One of the basic problems in this kind of application is how to notify users of an asynchronous event. For example, the price of an equity might change, or an order may come into a trading desk from a manager. Has anyone used Web Services to push data rather than pull it? Obviously I can use TIBCO or some polling mechanism, but both seem to...
Multi-threaded Web Services (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Is it possible to design a web service to be multi threaded? I.e., suppose a website is posting information to a web service, the web service is performing some kind of calculation or processing of the data, and then writes it to a database, but you don't want the client's browser to be sitting there waiting for it to finish, how do you get around this? How can it receive the information, then red...
ASP and Remoting (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hi NG, this is my problem: I want to connect to a Remote process from my "codebehind" file, but I get no response from the remote server. We've tried the same connection with a simple Winapplication, and we were able to connect. I cannot tell you the exact Exception Message, because I use the german version, but I'll try to translate it: System.Net.Sockets.SocketException: the requested Servicepro...
Cannot display chinese character correclty (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
Hi, I have problem to display a chinese character in web service, the following is part of my code. I just add a chinese character in Hello World web services only... WebMethod() Public Function HelloWorld() As String HelloWorld "Hello World" "你好嗎??" End Function However, it cannot display the chinese characters in the browser correctly, is it realted to encoding issues? Anyon...
Web Service deployment question (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hi, I have a simple web service (the temperature converter example from MS) that works fine on the PC I have .Net installed. I have a second machine (Win2000 Pro) that I want to deploy the web service to I have installed the .Net Framework. I added a Web Setup project and added everything to the package after the build I transferred it to the second PC where I ran the setup.exe to install it. The ...
WebException: The underlying connection was closed: Unable to connect to the rem (3 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
Hi, I wrote a simple Web Service and it works fine when I press the "Invoke" Button on asmx s page. Ok, so when I use the Proxy Class the result is: The underlying connection was closed: Unable to connect to the remote server. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it...
method overloading (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I m trying to set default properties for a webservice function. So i can call SendMail whithout any properites when needed. Whem i make a call to the webservice like this : strResult oWSsendmail.SendMail() i get the following message arguments not specified for parameter 'strMsg' What goes wrong here ? thx already ' webservice snippet Private defaultstrMb As String "No body tekst available" Privat...
.NET objects on a web client. (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
Please help I'm stuck and nobody seems to be able to help me! Sorry if this is not pitched at the right newsgroup but it's a difficult one to pigeonhole as it combines dhtml and .NET webservices and a C# object. I have written a C# class library dll that defines an object which I need to instantiate on a web client and then send to my webservice as a parameter to a webservice function (I'm using t...
WebService User Interface .. (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
Hi all, I have a web service which is currently running for my customers. Every now and then a customer discovers a bug with the web service. I dont know about this bug until the customer rings me, and yet the web service is running on the machine next to my desk! Ok I know I could have the web service email me when a fault occurs which is probably my short term solution, but what I would really l...
Add Web Reference (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Help. I have been trying for the last 16 hrs to get a reference added to consume a webservice. I have been through all the posts regarding this topic and none seem to help. I am on XP Pro and am trying to use http://localhost/TempConvert1/TempConvert1.asmx. The message I receive is as follow: No Web References were found on this page. There was an error downloading 'http://localhost/TempConvert1/T...
Calling WebMethods without using ASP.NET (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
I coded a little WebServer just to call webservices (I really had reasons for that). Now I receive a HTTP Request, parse it and need to pass on to my web service class. How to do that? Thanks
Internal Servor Error'500 (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I have a problem : InternalServorError 500 Url not found exception "http://localhost/MSP/Service1.asmx" i check the same url in the browser it works fine i have no idea whats happening hers my code please help Here buffer is the string buffer i am passing. String http ""; endpoint new URL("http://localhost/MSP/Service1.asmx"); con (HttpURLConnection)endpoint.openConnection(); con.setDoInput(new Bo...
how to change tcp port of default web site programmatically? (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hello group, We have implemented some web services and an installer (using C#), and we like to use a different tcp port to access it (i.e.: http://machinename: port number /...). At this time, we have to change manually the tcp port before installer starts (everytime!!) because if we don't do it, the installer throw an error because it can't connect with the service (installer try to connect with ...
Web Service Startup Performance (6 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
I have several Web Services (ASMX) deployed in a production environment. One these services are running, they are lightning fast. The problem is that the first request (since reboot, in the morning, after any period of inactivity) takes a *long* time to load. What options are there in the .NET world to pin an ASMX in memory? Cache/precompile switches/transaction managers/something in the Framework...
Calling a web service is runing forever? (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
Hi, All: We have a pretty simple web service which is tested successfully. However, when we try to call the web service from a web application. The process is runing forever. Technical info is as following. 1). VS.net beta 2 2). Windows 2000 server 3). SQL server 2000 It will be appreciated for any advices. Charles The code is as following. web servcie: using System; using System.Collections; usin...
Dynamic webservice proxy creation (4 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
Hello everyone, I'm a bit of a newbie in this ... just wrote my first webservice :). I was wondering though one thing: is there a way for the proxy classes to be created dynamically? For instance, if I just know the location of a webservice (or have the user enter it in a dialog box) is there any way for me to access that service without running WSDL.exe? I'd like to be able to call methods (even ...
Can I call a Web Service from the command line? (3 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
is there a way to call a web service from the command line, providing any arguments it might require. e.g. something like c: ...etc... MathService01.Multiply?A 2&B 5 why? because i have a problem whereby a service runs fine within IE (on the client) but in my winform application dies, but only on the client ("conveniently" without .Net development installed, only the framework). So i am trying to ...
can't get soapexception to work!...keep getting HTTP 500 error (3 replies)
microsoft.public.dotnet.framework.aspnet.webservices
I have been able to get my webservice to return data from my database and everything works great. Now I want to add code to nicely handle any errors that may occur and I found that the 'System.Web.Services.Protocols.SoapException' object should handle this for me. I added the following webmethod to my class as a test (all of my other webmethods work with no problems, it's just this soapexception t...
How to step into a web service from a client web application? (2 replies)
microsoft.public.dotnet.framework.aspnet.webservices
Hi, All: Is there anyone there who knows how to step into a web service from a web application? Thanks. Charles
HELP: XML Web Service Client CRASHes (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
Hi, I designed a simple .NET Web Service which in this case returns a particular string to whoever is consuming that particular function of my web service. I designed a C (generic unmanaged code) client to use the generate proxy to consume my service. On my local machine W2K Pro with .NET installed, the client runs fine and all is great, but when I move to another machine..same W2K Pro without .NE...
New webservice for IIS6 (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet.webservices
I can't create ASP.NET project under Windows .NET IIS6, even logging as Administrator. The same task works perfect under XP/2000. What is wrong? The same problem with Webservice type of project. The error is: Unable to create Web Project "WebService1". ..... HTTP Error 4040: Not Found. What is going on? Thanks, Leonid
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