Questions tagged [wwsapi]

WWSAPI is a native-code implementation of WCF, providing network communication functionality by supporting a set of the WS-* and .NET-* family of protocols. WWSAPI is designed to be used by components/applications which fall into one of the following categories:

  • Native code mandate
  • Require minimal dependencies
  • Require minimal start-up time
  • Memory constrained environments

MSDN Reference

It is mainly designed for performance and memory usage while provided WCF interop, so uses an order of magnitude less memory that a C# implementation of equivalent functionality while handling a request load two to three times higher. Reference

It currently ships with and hence requires Windows 7 or Windows Server 2008 R2 for use, limiting its usability. Microsoft can provide versions for older releases but this requires a contract to that effect with Microsoft for its redistribution.

21 questions
0
votes
1 answer

WWS server not responding over a network

I have been testing WCF and WWS services, both my own and the SortService by Mykolad Dudar. First the WCF version is created, and then wsutil is used for the WWS version. Both the WCF and WWS services are working fine if the server and client run…
Sleiban
  • 1
  • 1
0
votes
1 answer

How do I limit a function's callers to a particular logged-in user or role using WWSAPI?

I've been using http://blogs.msdn.com/b/haoxu/archive/2008/12/02/wwsapi-to-wcf-interop-nettcpbinding-with-transport-security.aspx as a guidelines on how to implement a secure connection using Windows Authentication. The next step for me is to use…
dlanod
  • 8,664
  • 8
  • 54
  • 96
0
votes
1 answer

WebRTC: Add rooms to simple WebRTC & WebSocket app - Advice Needed

I am very new to webrtc and coding, so apologies if this is not a clear question. I have followed the Shane Tully example here and amended it to run on my AWS server. Its running find but it only allows me one connection at a time. I would like to…
0
votes
1 answer

C++ wrapper class for C# class calling a web service

So, I've written a web service in c#, which has a method for signing a hash. This web service is a WCF Service application. Then, I've created a c# Console application where I've written a function to consume this web service. The declaration of the…
Paul
  • 79
  • 1
  • 8
0
votes
1 answer

Convert wstring to WS_STRING

What is the best way to convert wstring to WS_STRING? Trying with macros: wstring d=L"ddd"; WS_STRING url = WS_STRING_VALUE(d.c_str()) ; And have error: cannot convert from 'const wchar_t *' to 'WCHAR *'
vico
  • 17,051
  • 45
  • 159
  • 315
0
votes
0 answers

How to avoid generation of pointer to structs, using wsutil?

I've defined the following struct in my WCF service: [Serializable] [DataContract] public struct CompositeKey : IComparable, IComparable, IEquatable { [DataMember] public long Primary { get; private set; } …
Nawaz
  • 353,942
  • 115
  • 666
  • 851
1
2