all groups > dotnet web services > january 2008 > threads for january 8 - 14, 2008
Filter by week: 1 2 3 4 5
Does WSDL.exe's protocol parameter actually allow http post?
Posted by Thomas Lunsford at 1/14/2008 1:31:36 PM
I have been asked to allow one of our old-school .asp pages to support
being used as a web service. Specifically, WSDL was mentioned. I am
not an expert on this , but I have done quite a bit of reading, and I
understand that I can create a WSDL file that supports HTTP POST and
then use WSDL.ex... more >>
WCF: How to disable remote connections
Posted by Markus Strobl at 1/14/2008 1:08:35 PM
Hi!
I'm developing a self-hosted WCF service running on client machines for
interprocess-data exchange using netTcpBinding.
For security reasons i'd like to configure the service in a way it only
accepts local connections.
Does anybody know how this can be done?
Thanks a lot in advan... more >>
Webservice data question
Posted by Matt at 1/14/2008 10:49:02 AM
Just starting to work with webservices (using C#).
We need to build a service that will accept an order from one of our
business partners. The order will consist of 10-12 fields (we are
still finalizing with them). I can have them pass this data as
individual parameters - but was looking at ... more >>
Changing MTU size on client machines
Posted by Glenn Thimmes at 1/12/2008 2:53:01 PM
Hello,
I have a c# application hitting an asp.net web service. .net 2.0
I have been told by a customer of mine that it is necessary that I reduce
the MTU size of all my outbound client web requests to 1470. I've done a bit
of searching on the topic, and it is apparent to me that this can o... more >>
namespace?
Posted by cj at 1/11/2008 3:07:05 PM
What does the line
<System.Web.Services.WebService(Namespace:="http://tempuri.org/")> _
do in the example below?
Imports System.Web.Services
Imports System.Web.Services.Protocols
Imports System.ComponentModel
' To allow this Web Service to be called from script, using ASP.NET
AJAX, uncom... more >>
help understand C# example for use in my VB web service
Posted by cj at 1/11/2008 3:03:42 PM
I'm trying to understand writing web services in VB and I have been
pointed to an example that's in C#
http://dotnetjunkies.com/Tutorial/4D13CEFA-D0FD-44BE-8749-8D17B5757564.dcik
Where do I put [WebService(Description="My ...")] in VB?
I'm still working with the default web service that is gi... more >>
HttpChannel in WCF
Posted by Scott at 1/11/2008 6:27:00 AM
I have a small program that exposes an interface via soap as follows:
HttpChannel ipc = new HttpChannel( nPort );
ChannelServices.RegisterChannel( ipc, false );
RemotingConfiguration.RegisterWellKnownServiceType(
typeof(WsdlClient.CJLResponse), "JLSoapResponse.rem",
WellKnownObjectMode.Sing... more >>
Client sends incomplete SOAP-Request
Posted by Martin Hey at 1/10/2008 4:24:35 PM
I'm consuming an AXIS-webservice. Therefore I got the WSDL.
I added a new web reference to my project pointing to this WSDL.
In Visual Studio I can use all objects the webservice returns and The
service responds to all requests. But there is also a method I have to send
one of the complex ty... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Type is ambiguous. Please specify the assembly explicitly...
Posted by Mini-Tools Timm at 1/10/2008 3:50:06 PM
I have an odd web services problem.
I have a shared assembly (shared.dll) that is referenced both by a C#
WinForms client (client.exe) and a C# Web Service (service.dll). When I
upload the web service, naturally both service.dll and shared.dll are
uploaded to the bin folder.
In servic... more >>
WCF error: The request for security token could not be satisfied .
Posted by Jerry C at 1/8/2008 11:04:03 AM
Accessing a WCF service I get this error:
The request for security token could not be satisfied because authentication
failed.
I am trying to use a very simple WCF service and at this point I don't need
much security. I need to know how to configure a WCF service with the minium
securit... more >>
Retrieve a List of WebServices from a Server
Posted by Busby at 1/8/2008 4:33:01 AM
Hi
I need to retrieve a list of all WebServices running on a specific machine.
Much like DevStudio produces a list of WebServices on the local machine.
The machine is XP Pro and as far as I can see does not have a .disco file or
UDDI url to read!
How does DevStudio generate the list of... more >>
|