all groups > asp.net webservices > august 2005 > threads for august 1 - 7, 2005
Filter by week: 1 2 3 4 5
Problem with a method, of an object, that a webmethod returns..
Posted by RCS at 8/6/2005 11:22:24 PM
I have a web service. I have a method that returns an instance of another
class. I already learned the hard way that all properties of a returned
object have to be get AND set, even though I don't want the set. Now, when I
create a method in this secondary class, I don't see it on the consumer... more >>
'out' parameters work outside of .NET?
Posted by Doug Kent at 8/4/2005 6:52:46 PM
Hello,
In .NET C# it is possible to define a parameter to a web service method as
'out'. The web service method is expected to set the value of the parameter
before it completes execution.
The question: Do 'out' parameters work with non-.NET web service
implementations, where the non-.... more >>
EventLog logName and source Usage.
Posted by JimM at 8/4/2005 2:01:02 PM
I think I am missing something and hopefully someone can set me straight.
I am trying to create an event log with the logName and source arguments.
The logName is always set to MyLog. The source is set to one of several
names, for example: MySource1 and MySource2. I want all the messages t... more >>
Capturing Text from CAPTCHA Images
Posted by Krishna Kumar at 8/4/2005 12:00:00 AM
Hai all,
I am doing a project in .net and in that project I have a problem in
capturing text from an image. i.e images like CAPTCHA images . which has
inbuilt text with in the image.So, Can any one suggest me how to continue
my work or give their valuable suggestions for capturing ... more >>
Test my WebService
Posted by Gerhard Rauter at 8/4/2005 12:00:00 AM
Hi,
I have a .NET Webservice that has a quite complex object as Requeast
Parameter.
Now I want to test my Webservice. I know i could write a small test
application and can create the request object in code and call the service.
But I would prefer to have the a xml file containing the data jus... more >>
Disposed vs Finalize
Posted by Mike at 8/3/2005 5:29:30 AM
Hi,
I am calling some unmanaged code from a WebService class and want to ensure
that the resources are released when the WebService class is disposed.
Should I put the cleanup code in the WebServices Disposed event or override
the Finalize method?
Thanks.... more >>
printing from a webservice
Posted by Jon Vaughan at 8/2/2005 8:16:04 PM
Hi,
Background to the story :
Calling a webservice from an IPAQ to a server , wevservice prints to
networked printers
Server 2003
IIS 6.0
Framework 1.1
Pocket PC with framework installed.
What is working :
Printing from the server to network printers works fine in test prints.
cal... more >>
Using an ASP.NET Web Service from classic ASP?
Posted by Wade at 8/2/2005 12:53:22 PM
Hi all,
We have written a .NET XML web service that serves up system parameters for
our ASP.NET applications. It's been extremely useful for centralizing our
system parameters across multiple environments. It's been so successful
that some of our ASP developers also would like to connect ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
WSE 2.0 DIME Streaming Problem
Posted by David Talbot at 8/2/2005 9:20:13 AM
I'm attempting to use the WSE 2.0 DimeReader/DimeWriter extensions to
implmenent a file server service for importing/exporting large files from our
data warehousing application. Obviously transferring 500mb+ files can't be
done in huge chunks buffered entirely in memory therefore I came across... more >>
CreateObject Failure
Posted by G. Harland at 8/2/2005 5:55:08 AM
I have a webservice that is attempting to issue a CreateObject call for a
COM+ component.
When the code passes the name of a load balanced node, it fails. When the
code passes a name of one of the servers in the cluster, it works.
examples:
CreateObject("my_component","cluster.name.fails... more >>
Problems in Accessing Web Serice from ASP.Net
Posted by Prasad Dannani at 8/2/2005 12:00:00 AM
Hi,
I created a Web service and add a reference to web application. I Created
both applications from my local system and everythingworking perfectly. Then
i was installed the Web Serice to Public Server and updated the reference to
the Web Application. Now i am unable to access the web service... more >>
Enabling HTTP Post to invoke web services
Posted by Mike P at 8/1/2005 11:57:13 AM
I am calling a .Net web service from a traditional ASP page. I am using the
ServerXMLHttp object. For example:
sWebSvcUrl = "http://.....asmx"
Set oSXH = Server.CreateObject("MSXML2.ServerXMLHTTP.4.0")
oSXH.open "POST", sWebSvcUrl, False,"userid","password"
' Indicate that the body of ... more >>
|