all groups > dotnet web services enhancements > june 2006 > threads for june 1 - 7, 2006
Filter by week: 1 2 3 4 5
Contract First Development and WSE 3.0 Policy Files
Posted by Chris Mullins at 6/7/2006 3:33:12 PM
I've built a Web Service using the new VS.NET 2005 Contract-First
methodology - define an Interface, put the "WebMethod" attributes on there,
and than have a concrete class implement the interface. This works great,
and really helps with versioning issues.
The problem is, I'm trying to get ... more >>
Transferring Large (GB+ size) files with MTOM
Posted by Chris Mullins at 6/7/2006 11:22:18 AM
I need to build an infrastructure that moves large files around the
Internet. The scenario is many clients all submitting information to a
single server. The data in question is confidential, so encryption and
signatures are important. Customers currently write data to magnetic tape
and have... more >>
Running WSE 3.0 WebServices without IIS
Posted by paulo at 6/6/2006 12:43:07 PM
Hello,
We are finishing our application server built using WSE 3.0. Although
many of our clients do have IIS has a viable option, others do not.
I have read the document "Host and ASP.NET Web Service Outside of IIS"
at
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wse3.0... more >>
Catch Custom SoapException
Posted by Giulio.Marri NO[at]SPAM gruppopro.it at 6/6/2006 9:01:22 AM
Hi programmers, I'm quite new in this blog, I have a question
concerning web services Soap Exceptions: I created a class
MySoapException derived from SoapException, I add the references both
server-side and client-side, and I tried to implement correctly
serialization, I mean, the "ability" of a... more >>
Read WSE configuration from class library project
Posted by YC at 6/6/2006 8:25:03 AM
Hi,
I have a problem - I have a .net web site which implements the MVC pattern.
Thus, I have a class library controller which is in charge of all the web
services/wse communications.
The problem is the controller runs under the context of the web site and the
configuration in the app.config ... more >>
Send Certificate & WSE3.0
Posted by Hung Ngo at 6/5/2006 10:18:01 PM
Hi,
With Https protocol, the server will send it's certificate to client
whenever receiving a request of a new client.
When using WSE3.0 with Certificate assertion, the client must have the
server certificate ? and server must have client certificte?
I'm not sure about this, can you help ... more >>
SCT and certificates questions
Posted by YC at 6/4/2006 8:08:01 AM
Hi,
I have 2 questions regarding WSE 3.0:
1) Using sct with asp.net application as client - I implemented sct with an
asp.net web application as a client. I can see in the trace files that the
element <wst:RequestSecurityToken> gets created each time I invoke the
specific web method with the... more >>
upload dataset/datatable from windows mobile 5 to a webservice. How?
Posted by A.Neves at 6/2/2006 3:29:01 PM
Hi,
I'm developing an application that needs to upload a dataSet or datatables
at the end of the day. I'm going to use Windows Mobile 5 and Net Framework
2.0 and visual studio 2005 and sqlserver2000.
I'd like to implement a Webservice, but I couldn' find a way of upload a
DataTable to ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Anyone get WSE 3.0 running on Vista?
Posted by Chris Mullins at 6/2/2006 8:51:05 AM
Has anyone been able to get WSE 3.0 to install on a Windows Vista machine?
All the variations I've tried result only in an error:
Product: Microsoft WSE 3.0 -- Error 1721.There is a problem with this
Windows Installer package. A program required for this install to complete
could not be run. C... more >>
Problems trying to add soap transports programmatically
Posted by olly at 6/2/2006 8:09:02 AM
Hi,
I am trying to use a custom soap transport, in this case an http.sys
transport, based Aaron Skinnard's MSDN example. I want to remove the need for
the app.config file, so programmatically add the transport, using
WebServicesConfiguration.MessagingConfiguration.AddTransport("http",
ty... more >>
debugging web services
Posted by DBC User at 6/1/2006 2:32:41 PM
I would like to know how can I see the messages that are send to web
services and what client program is receiving? I am using
WSE3.0/VS2005/C#
Thanks.
... more >>
UserNameToken question
Posted by DBC User at 6/1/2006 1:51:40 PM
Hi All,
I was using a token which contains more than user name and password. I
was doing
token = CustomToken(name, pass, age);//my class
RequestSoapContext.Security.Tokens.Add(token);
RequestSoapContext.Security.Elements.Add(new MessageSignature(token));
with this it was working fine in ... more >>
Setting a SOAP Message SoapAction in WSE3
Posted by Moe at 6/1/2006 9:14:02 AM
Hi,
I've been trying to implement xml messaging and stumbled on this article
"Introducing the Web Services Enhancements 2.0 Messaging API".
When creating the soap envelope and setting the SoapAction this is how its
done.
SoapEnvelope env = CreateAddMessage();
env.Context.Action = "urn:ma... more >>
wse 3.0 Authenticate via Username/Password token (no windows secur
Posted by Martin Schönholzer at 6/1/2006 7:36:02 AM
Hello all.
I was working through the labs (Messageing/Security) which are provided
on WSE 3.0 Page. All the samples where very clear and all worked fine.
But in these Samples if you want to use a Username/Password Policy, the
Credentials are automatically tested against Windows Accounts.
I... more >>
|