Note that there are some explanatory texts on larger screens.

plurals
  1. POJava service (JAX-WS RI) getting timed out in WCF client but working fine with Java client or Perl client
    primarykey
    data
    text
    <p>I am trying to consume a web service which was java(JAX-WS) based. I need to write client for it in both WCF and Java. Reason: Java client will run on Unix box as a part of night cycle and WCF Client would be part of our existing Windows Client application.</p> <p>Here is a funny thing that is happening: 1) Java Client is able to consume the data. 2) Even perl client is also able to consume the data. 3) WCF client fails to consume.(Always times out even when the time out is set to 15 minutes, it fails within 2 minutes and says timed-out)</p> <p>Here is some more background. The Java service was originally not JAX-WS based, @ that time all three clients (JAVA, WCF, Perl) were able to consume the data. However as soon as they moved to JAX-WS RI based Java web service, this started happening.</p> <p><strong>What is JAX-WS RI doing to make life difficult for WCF Client. Also as I originally mentioned WCF client now times out within 2 minutes even when the time out is set to as high as 15 minutes.</strong></p> <p>Also note that I am using basicHttpBinding in my WCF Client.</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;configuration&gt; &lt;system.serviceModel&gt; &lt;bindings&gt; &lt;basicHttpBinding&gt; &lt;binding name="FIN_BookService_1_PortBinding" closeTimeout="00:05:00" openTimeout="00:15:00" receiveTimeout="00:15:00" sendTimeout="00:15:00" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="65536000" maxBufferPoolSize="52428800" maxReceivedMessageSize="65536000" messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true"&gt; &lt;readerQuotas maxDepth="32" maxStringContentLength="819200" maxArrayLength="1638400" maxBytesPerRead="409600" maxNameTableCharCount="1638400"/&gt; &lt;security mode="None"&gt; &lt;transport clientCredentialType="None" proxyCredentialType="None" realm=""/&gt; &lt;message clientCredentialType="UserName" algorithmSuite="Default"/&gt; &lt;/security&gt; &lt;/binding&gt; &lt;/basicHttpBinding&gt; &lt;/bindings&gt; &lt;client&gt; &lt;endpoint address="http://*********************/FIN_BookService_1" binding="basicHttpBinding" bindingConfiguration="FIN_BookService_1_PortBinding" contract="RDH.FIN_BookService_1_PortType" name="FIN_BookService_1_Port"/&gt; &lt;/client&gt; &lt;/system.serviceModel&gt; &lt;startup&gt;&lt;supportedRuntime version="v2.0.50727"/&gt;&lt;/startup&gt;&lt;/configuration&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload