all groups > dotnet web services > august 2005 > threads for august 22 - 28, 2005
Filter by week: 1 2 3 4 5
Deployment of WebService with MSI
Posted by Bill44077 at 8/28/2005 5:33:41 AM
Hi,
I have created a Web Setup and Deployment project for my web service and I
have two questions that I can't seem to resolve. Please help.
1. The file System editor puts everything under the inetpub directory. Is
there any way for me to change this directory? I would like to put everythi... more >>
Building secure webservices using 2 way SSL
Posted by Shelby at 8/28/2005 12:00:00 AM
Hi,
I'm doing some research on webservices using 2 way SSL.
It is Application-to-Application security.
Basically SERVER_SAP is hosting the webservice and SERVER_CLIENT is
consuming the webservice using a console.
So 2 way SSL means that SERVER_CLIENT need to present his certificate to
SE... more >>
How to use my own CodeDomProvider with wsdl.exe?
Posted by Andrew Shitov at 8/27/2005 9:07:41 PM
Hello!
/language: option of wsdl.exe says that it accepts a fully-qualified
name of a class implementing System.CodeDom.Compiler.CodeDomProvider.
Although I was able to provide MCppCodeProvider provider only (that
needs to use too complicated string):
/language:Microsoft.MCpp.MCppCodePr... more >>
CacheDuration not working
Posted by jonel NO[at]SPAM glenavon1.demon.co.uk at 8/26/2005 11:23:07 AM
I have the CacheDuration attribute set for 60 seconds as show below:
<WebMethod(CacheDuration:=60, Description:="Method to demonstrate
caching")> _
Public Function CachedString(ByVal inputInt As Integer) As String
Return "The time is " & DateTime.Now.ToLongTimeString
End F... more >>
Creating WebService Problem
Posted by wurst.michael NO[at]SPAM web.de at 8/26/2005 2:55:23 AM
Hi,
I'm trying to create a WebService with VisualStudio 2003 ...
New Project -> Visual C# Project -> ASP.NET Web Service
but I always get the error message:
'A connection to the server could not be established.'
So I open the IIS console, go to Default Web Site and Start/Stop the
service, ... more >>
DIME - Alive or Dead?
Posted by aiKeith at 8/25/2005 10:36:12 AM
Hello,
I was looking into the WSE 2.0 and noticed DIME which really peeked my
interest. Is DIME worth looking at (will it be enhanced, industry supported,
etc) or should I stick with sending large binaries as base64?
thanks...
... more >>
Authorize access to resources based on non-windows identity
Posted by hvj NO[at]SPAM paralax.nl at 8/25/2005 12:22:57 AM
Hi,
I read that if one needs to be able to authorize access to resources
based on the caller's identity, one should set up the server to perform
Windows authentication with impersonation.
But how can I do this when I grant access to my webserver to, let's say
2, different organizations over... more >>
Serialize/DeSerialize SOAP message
Posted by MR at 8/25/2005 12:00:00 AM
is there a way to view the SOAP message in a client after it is serialized
(before it is sent out) or deserialized (after a reply is received)?
i am using the proxy that is created by VS.NET2003 when adding a web
reference
thanks
m
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
What is the best SOAP service to use?
Posted by milkyway at 8/24/2005 3:42:37 PM
Hello,
I'm a newbie who hopes they have come to the correct place.
Basically, I want to develop a web service for consumption by .NET
program (hopefully C#). The performance of the service would have to be
able to be very fast in response and be somewhat reliable (i.e. not
abending every 2 ... more >>
How to pass a DateTime value to a WebMethod
Posted by Jaime Stuardo at 8/24/2005 2:28:03 PM
Hi all..
I have a WebMethod with a parameter defined as DateTime. When I call that
webservice, I get this error:
System.FormatException: The string '07/24/2005' is not a valid AllXsd value.
It seems that dates aren't recognized. I tried using several date formats,
for example, dd/mm/yyyy,... more >>
Authentication when calling a webservice method over Internet
Posted by Jaime Stuardo at 8/24/2005 6:44:01 AM
i all,
I have a web service in a Windows 2003 Server machine and ASP.NET 2.0. The
website has windows integrated security so that, in order to allow domain
users to connect to it, I add permissions using Front Page Server extensions.
What about calling the web service over the Internet? do... more >>
How to resolve SOAP differences
Posted by MR at 8/23/2005 10:27:36 PM
my soap messages to a remote site are failing. as far as i can tell the only
differences between what my SOAP message looks liek and what they want are
in the SOAP envelope
SInce they don't have a wsdl doc i created a localhost site based on their
DTD documetns.
How do I configure my site ... more >>
unable to connect to the remote server
Posted by wanglei at 8/23/2005 3:19:49 AM
hi there
i am trying to consume a simple hello world webservice on my PDA, I keep
get this error : unable to connect to the remote server , i am using the
address http://127.0.0.1/webservice1/service1.asmx, i even tried the server
name instead of ip address, i know i should not use loal... more >>
Web service design question
Posted by James at 8/22/2005 7:57:03 PM
Under IIS 6, what would be the suggested approach of a .net web service
calling a backend socket server that would handle a high transaction volume?
Can I just create the socket, send the data, receive the response and close
the socket in the webMethod? Should I create a pool of socket connect... more >>
SOAP Header name vs type
Posted by EJSawyer at 8/22/2005 2:55:38 PM
In the process of building a SOAP client for a third-party service, I have
created a "dummy" service running on my local machine to debug against. I
have the dummy service working pretty well, but I've discovered that the WSDL
for my service has a subtle difference from the third-party servic... more >>
.NET client cannot talk to Axis web service
Posted by Jarmo at 8/22/2005 1:11:35 PM
I have a Java-based (Axis) Web Service and am trying to write a .NET client
in C#. I run into two different problems.
1. if the WSDL was generated using the Axis defaults then .NET cannot update
its web reference. It complains that datatype 'String' is undefined.
Strangely, the WSDL returned... more >>
How to capture incoming SOAP XML request on .Net Web Service
Posted by Tim Reynolds at 8/22/2005 11:21:06 AM
Team,
We have created a web service for a client to call. In testing, client is
asking us to provide the SOAP XML we recevie when they call our .Net web
service. I have not done this before. I simply have access to the parms they
pass within my webmethod. Can someone help me with accessing ... more >>
|