all groups > dotnet web services > march 2005 > threads for march 29 - 31, 2005
Filter by week: 1 2 3 4 5
have webservice continue processing even after it returns data to consumer
Posted by thomasamillergoogle NO[at]SPAM yahoo.com at 3/31/2005 7:32:52 PM
I would like to have a web service continue a little bit of processsing
after it returns the data to the consumer. What is the proper way to do
this? Please provide an bit of example code on how to do this. For
example:
[WebMethod]
public string HelloWorld()
{
//creat a thread or asynch or ... more >>
using .Net soap client wrappers - any way to get to post data?
Posted by Mark at 3/31/2005 3:57:01 PM
Hi...
I used wsdl.exe to generate some wrapper classes from someone's soap web
service, and I'm looking for some way to look at what the soap request packet
actually looks like. The webservice I'm consuming is https, so packet
sniffing won't help.
I put a demo in the debugger, and I fou... more >>
Event based WebService method can't work well!
Posted by Selçuk Giray Özdamar at 3/31/2005 1:56:15 PM
I'm using Visual Studio 2005 Beta1. A windows application consumes my
HelloWorld web service. But i can't call the event based model in the client
application.
I can't do this in the windows client application:
void btnClick(.................)
{
service.HelloWorldCompleted+=new HelloW... more >>
Web Service Configuration Error.
Posted by Sean L. at 3/31/2005 1:17:02 AM
I used VS 2005 Feb. version to create a web service. It worked fine as
file-based service but when I tried to invoke from
http://localhost/.../service.asmx. to retrieve the reference from the
service, I got:
Parser Error Message: Unrecognized attribute 'xmlns'.
The error pointed to... more >>
Call to external webservice returns error "System.Net.WebException: The underlying connection was closed: Unable to connect to the remote server."
Posted by rjempson NO[at]SPAM gmail.com at 3/30/2005 10:56:11 PM
I have a VB.NET serviced component (COM+), running on a lan, that
calls out to an external web service to place an order with a
supplier.
The problem machine is the middle tier (COM+) for our in house
applications, and also has a mail server to service a 100 stores
(don't ask me why, I don't ... more >>
Timeout Error
Posted by Fred Herring at 3/30/2005 10:23:06 AM
I have moved a web service from my development machine to a hosting computer.
Now when I upload large files to this new host I get a timeout exception.
The web.config file associated with my web service has 360 seconds for time
and 30mbytes for file size but I continue to get the error. Do I... more >>
Multiple Wse in single Service
Posted by Patrik Kruse at 3/30/2005 1:31:10 AM
I am using Visual Studio (with WSE 2.0) to create a Reference.cs proxy for a
customer web service. The WSDL contains one service element with three
different ports, each port using it's own binding.
The problem is that Visual Studio only creates a Wse class for one of these
bindings, leavin... more >>
Xml string or Class definition
Posted by John Lee at 3/29/2005 10:54:22 PM
Hi,
When we define a web method, if the parameter is actually an xml, we can
either define the parameter as xml string like following:
public void webmethod(string xmldoc) { ... }
or we can create a class or set of classes that can be serialized to the
same xml like:
public void webm... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Raising the Request Length in a Web Service
Posted by Marcos at 3/29/2005 9:31:06 AM
Hi.
I´m wornking in a Web Service that has to exchenge a great amount of data,
but I keep receiving a SOAPException that says:
"There was an exception running the extensions specified in the config file.
--> Maximum request length exceeded."
How can I increase this Request Length?
T... more >>
|