Domino Webservice provider - What's the maximum SOAP message size? - lotus-domino

How can I determine the maximum SOAP message size for a request to a Domino web service provider?
Thanks
Mario

it depends on the "HTTP Protocol Limits" configured in the Server Document.
You can find these settings on tab "Internet Protocols...\HTTP"
Cheers, Klaus

Related

IBM API Management and Secure Gateway

I created the secure gateway in my space and connected it to the client on my laptop (Mac Installer), I also created the destination (localhost, port 3000, TCP), now I need to create some APIs with API Management service but I am not able to see the APIs deployed in My laptop form the APIM Service.
Do I Need to configure something special to be able to connect it to my local APIs? I also need to do the same for some SOA services with WSDL.
Any help or info about how to configure this connections will be really appreciated.
Thank you very much!
#Luis Florez
Please see the section Importing or composing APIs in the page
https://www.ng.bluemix.net/docs/services/APIManagement/index.html
and it will provide some pointers to expose APIs in API management service.

WCF Test client and authentication

I'm trying to call a webservice with WCF Test Client but the webservice requires authentication.
How do I log on and call it by WCF Test Client (I tried to get it from browsers and then to call but does not work). I could use SOAP UI, but I'd like to do it with WCF Test Client if is possible. Maybe changing WCF config?
Error: Cannot obtain Metadata from If this is a Windows (R)
Communication Foundation service to which you have access, please
check that you have enabled metadata publishing at the specified
address. For help enabling metadata publishing, please refer to the
MSDN documentation at
http://go.microsoft.com/fwlink/?LinkId=65455.WS-Metadata Exchange
Error URI: Metadata contains a reference that cannot be
resolved: ''. The HTTP request is unauthorized with client
authentication scheme 'Anonymous'. The authentication header received
from the server was 'Basic realm=""'. The remote server
returned an error: (401) Unauthorized.HTTP GET Error URI:
There was an error downloading ''. The request failed with
HTTP status 401: Unauthorized.
Do you have a mex endpoint specified in your config?
If you're having setup issues I'd suggest reading through the Codeplex applications scenarios to ensure you have setup your service and WCF Test Client properly.
Please post configs and some sample code if you require any further help.
EDIT:
These links may provide some insight in to the issue:
WCF - Cannot obtain Metadata, but works when the XML Endpoint is removed?
Cannot obtain Metadata from WCF service when using Microsoft WCF Test Client.

How to check that in basicHttpBinding client gets data in text format?

By default there is no data security in basicHttpBinding, so how to check it ?
we want to check that by default in basicHttpBinding when client gets response from wcf then data travel in plain text not in encrypted form. Actully we have implement some security on it so we also then check data communication in both scenario (default behavior and with security)
Use a tool such as fiddler to analyze the messages sent by HTTP from the client machine

WCF message encryption

Is it possible to host a WCF service in IIS, access it over HTTP and have the message body encrypted using a wsHttpBinding configuration?
Yes, any protocol that can support message security and the WS-Security standard will be capable of encrypting your messages - it's actually the default setting, too.
See Message Security in WCF for more information, and for hints about how to secure your messages using a Windows credential or a X.509 certificate as the "shared secret" between client and server to ensure encryption.
Yes.
Check this page from MSDN on how to configure your bindings to do what you need:
MSDN - Web Service Protocols Supported by System-Provided Interoperability Bindings

WCF-BasicHttp NTLM ESB guidance

I am trying to access an asmx service located on IIS, the asmx is using integradted security
I am trying to call it with wcf-basichttp adapter configured inside ESB guidance 1.0
The error i am getting is :
The HTTP request is unauthorized with client authentication scheme 'Anonymous'. The authentication header received from the server was 'NTLM'
I tryed to set in the endpoint config:
UserName=DOMAIN\Username&Password=Password&TransportClientCredentialType=NTLM
Any idea would be appriciated
I would take a look at this similar thread.