Click here to Skip to main content
15,905,144 members

Comments by KVPalem (Top 15 by date)

KVPalem 1-Jul-16 2:58am View    
Client
====
<pre>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<Thread_UseAllCpuGroups enabled="true"/>
<GCCpuGroup enabled="true"/>
<gcServer enabled="true"/>
</runtime>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="ProcessBindings" closeTimeout="00:59:00" openTimeout="00:59:00" receiveTimeout="00:59:00" sendTimeout="00:59:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="2147483647" maxBufferPoolSize="2147483647"
maxReceivedMessageSize="2147483647" messageEncoding="Mtom" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="2147483647" maxArrayLength="2147483647"
maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
<security mode="None" />
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:7896/ProcessService.svc" binding="basicHttpBinding" bindingConfiguration="ProcessBindings"
contract="Service.IProcessService" behaviorConfiguration="myBehavior" name="IProcessService"/>
</client>
<behaviors>
<endpointBehaviors>
<behavior name="myBehavior">
<clientVia />
</behavior>
</endpointBehaviors>
</behaviors>
</system.serviceModel>

</configuration>
</pre>
KVPalem 1-Jul-16 2:52am View    
Service
======
<pre>
<system.serviceModel>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" aspNetCompatibilityEnabled="false" />
<services>
<service behaviorConfiguration="ServiceBehavior" name="Service.App2DataService">
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="DefaultBinding" contract="Service.IApp2DataService" />
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:2345/App2Data/App2DataService.svc" />
</baseAddresses>
</host>
</service>
<service behaviorConfiguration="ServiceBehavior" name="Service.ProcessService">
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="DefaultBinding" contract="Service.IProcessService" />
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:1989/App2Data/ProcessService.svc" />
</baseAddresses>
</host>
</service>
</services>
<bindings>
<basicHttpBinding>
<binding name="DefaultBinding" closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="2147483647" maxBufferPoolSize="2147483647"
maxReceivedMessageSize="2147483647" messageEncoding="Mtom" textEncoding="utf-8" transferMode="Streamed" useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="2147483647" maxArrayLength="2147483647"
maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
<security mode="None" />
</binding>

<binding name="AspriseServiceBinding" closeTimeout="00:59:59" openTimeout="00:59:59" receiveTimeout="00:59:59" sendTimeout="00:59:59"
messageEncoding="Mtom" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"
textEncoding="utf-8" transferMode="Streamed" useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="2147483647" maxArrayLength="2147483647"
maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:8733/AspriseService/" binding="basicHttpBinding"
bindingConfiguration="AspriseServiceBinding" contract="Service.IAspriseService"
name="IAspriseService" />
</client>
<behaviors>
<serviceBehaviors>
<behavior name="ServiceBehavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
<dataContractSerializer maxItemsInObjectGraph="2147483647" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</pre>
KVPalem 24-Jul-15 7:59am View    
Yes
KVPalem 22-Jul-15 6:52am View    
Thanks Richard for the Post. I will update you very shortly
KVPalem 15-Jun-15 3:16am View    
Thanks for the response. I think above solution will work for E-Form PDF but not for the
Vector or Flattened PDF's. Because in normal PDF's (i.e. other than E-Form) we can't get the AcroFields using iTextSharp.

I don't have any problem with E-Form. i am able to read all data. only problem with non editable PDF forms.