all groups > dotnet web services > february 2006 > threads for february 8 - 14, 2006
Filter by week: 1 2 3 4
Unable to add Web Reference in VS?
Posted by Dave at 2/14/2006 9:39:29 AM
I have a web service on a site and I want to add a web reference to it in my
VS 2003 project.
The service is sitting on a site enabled with basic auth.
I login, I find the service OK but when I go to click "Add Reference" I get:
"Web Discovery Service"
Unable to download following fi... more >>
Error Message: The handle is invalid
Posted by Gabe Garza at 2/14/2006 9:16:26 AM
In the following code snippet:
Microsoft.Web.Services.Security.Signature sig;
try
{
sig = new Signature(x509Token);
}
catch(Exception ex)
{
txtStatus.Text = ex.Message + "-" + x509Token.Certificate.GetName();
}
t... more >>
Want to Know the status of a WebService
Posted by sri at 2/14/2006 3:41:28 AM
Hi all,
I have a situation where i have to know the status of a web service(whether
it is runing or not), from another Web Service.How i can know it.Please help
me.... more >>
Help need calling a webservice.
Posted by jens Jensen at 2/13/2006 5:10:17 PM
Hello ,
i'm calling a webservice generated with oracle webservice java tools.
I'm not able to add a web reference to a .net client the usual way with
visual studio 2005.
I was therefore provided with a set of Dll that implement the proxy needed
to consume this web service.
I'm now wrapp... more >>
XmlNode to XmlDocument question.
Posted by jens Jensen at 2/13/2006 2:18:08 PM
Hello,
I have built a client of a websevrice. I call a webmethod that takes an
Xmldocument object and returns an Xmldocument object.
When i add a refernce to this webservice on the client, then the input
output types of my webmethod generated in the proxy class are changed to
XmlNode. This... more >>
Does it make any sense to apply WSE 3.0 (Security) on top of SSL?
Posted by John at 2/13/2006 9:44:25 AM
I am working on a project, the SSL is a requirement, so given the SSL
is the mandate, does it make any sense to apply any WSE 3.0 (Security)
on top of SSL?
Thanks in advance.
John
... more >>
anonymous access
Posted by Andrew at 2/13/2006 2:58:30 AM
hi,
I am testing my webapplication Admin. I have add a web reference to my
webservice Service1.
When I run the app, I get a pop-up asking me for username n password. I
read in the M'soft Press that I have to set the IIS to anonymous access to
permit unauthenticated access. However, I am s... more >>
Webservices called from behind proxy server fails
Posted by sameer at 2/10/2006 11:43:21 AM
..NET Framework 1.1
VS2003
Application is making webservice calls from behind a proxy server and then
freezes and dies.
Questoin is can i use webservice over proxy server( i guess another name of
them is ISA ... if i a not wrong), if yes how?
Sameer... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Optimizing webservice call which are returning datasets
Posted by sameer at 2/10/2006 9:31:29 AM
Hi all,
Application environment :
VB.Net desktop application,.NET 1.1 Framework, VS 2003.
communicates between the database and the application is done over
webservices using ADO.NEt Datasets.
Returned dataset is Gzip compressed and is then decompressed on the
receiving side.
Every ... more >>
How to Modify the Proxy Class for a 2005 Web Project
Posted by Tyler Carver at 2/9/2006 2:40:22 PM
I have created a web reference in a 2005 web project and need to change out
the generated complex class with the business oject that we have already
created. In a library project there is a code file for the proxy class where
I can make the change. However, there is no such file in a Web Pro... more >>
Why isn't the Dispose method of my IDisposable web service object being called?
Posted by Brad Wood
If I run this console app (outside the debugger), I will see both
Console.WriteLine statements:
class Program
{
class MyClass: IDisposable
{
public void Dispose()
{
Console.WriteLine( "MyClass dispose called" );
}
}
class MyClass2 : IDisposable
{
... more >>
Centralised NameSpace for WSs
Posted by Pierre at 2/9/2006 7:11:06 AM
Hi everybody,
I'm trying to clean my code a bit and I couldn't manage to centralise
the location of my services' namespace.
I tried that:
[WebService(Namespace =
(string)ConfigurationSettings.AppSettings["Namespace"])]
Here is the error I get in VS 2005:
Error 74 An attribute argument m... more >>
WSE2 Logging Error?
Posted by Chris Ashley at 2/9/2006 2:30:46 AM
I am trying to log all the messages sent to/from my web services and
read somewhere that WSE2 would let me do this. I have just installed
this and added the following to my code:
<microsoft.web.services2>
<diagnostics>
<trace enabled="true"
input="inputTrace.webinfo"
... more >>
Detect client timeout on server
Posted by bjansson NO[at]SPAM passagen.se at 2/9/2006 1:58:15 AM
Hi!
I have a web service. The clients calling the service has a timeout set
to 10 seconds. Is there any way to see wether or not the client has
done a timeout on the server?
I need to see it so that I can abort the database transaction.
One possible workaround would be to set the timeout on t... more >>
designing receiver to receive xml files
Posted by Jack at 2/9/2006 12:10:27 AM
I am trying to receive xml files on my server which are posted from another
server using http post. I need help in designing a receiver which will accept
this xml file and send back a success message back to the sender. Can someone
give me some code examples on how to design this piece? I am ... more >>
Security and Web Services
Posted by Grep J at 2/8/2006 7:36:23 PM
Hello,
I'm quite new to Web Services and like to know what kind of security is
usually
put to company's Web Services.
Are there any documents how secure your Web Service when you publish them to
clients?
Could some give some tips.
Cheers!
... more >>
Web Service Guidlines for uploading data?
Posted by AaronL at 2/8/2006 4:36:28 PM
I'm writing a web service in VB.Net 2005. It uploads some data from the
client to the server. One such function uploads image data as a byte array
parammetter. It works ok for small images. And fails instantly in the IDE
(with both server and client projects local in the same solution) for a... more >>
Java Web Service reachable by .NET clients.
Posted by Chris at 2/8/2006 2:10:58 PM
I'm trying to write a web service in Java (with Axis) that needs to be
able to be consumed by .NET clients. I've gone through all the
examples in the Axis documentation and still can't seem to get it to
work. Could someone please point me in the right direction? Thanks!
... more >>
Event Based Async Pattern Unit Testing
Posted by Rich Denis at 2/8/2006 11:46:44 AM
Hello,
I am in need of assistance trying to figure out how to 'Unit Test' my Event
Based Async Pattern (http://msdn2.microsoft.com/e7a34yad.aspx) web service
calls. Specifically how to test the event handler.
So as I see it, the auto generated web service proxy will create the custom
ev... more >>
Process.Start with Username hangs
Posted by Kirk at 2/8/2006 11:20:15 AM
The following C# web service works fine until you uncomment the lines
setting UserName and Password. Then the process starts as the
specified user, but hangs in a suspended state. In fact, any
executable will exhibit this problem; it is not specific to whoami.exe.
This is with .NET 2.0, of co... more >>
Logging SOAP transactions?
Posted by Chris Ashley at 2/8/2006 7:21:55 AM
Hi there,
I was just wondering if there was an easy (IE: Built into .NET) way of
automatically logging all the full SOAP messages that go through a web
service?
Thanks,
Chris
... more >>
|