• Faddy Karim
  • NEWBIE
  • 5 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 2
    Replies

How do I resolve this issue? The services are running but I can't restart the machine all the time because this is a server. 

Any help would be appreciated. 

TIA 

Failed to login. 

; nested exception is: 
java.net.SocketTimeoutException: Read timed out 

This error occurred when calling http://localhost:47008/axis/konga_aut... 

Please post the stack trace (click the button below) to the Jitterbit Support Forum. 

Client version: 5.0.3.8 
Server version: [Not connected] 
Client platform: Windows Server 2008 R2 - Java 1.7.0_07 

org.jitterbit.integration.client.server.IntegrationServerException: ; nested exception is: 
java.net.SocketTimeoutException: Read timed out 

This error occurred when calling http://localhost:47008/axis/konga_aut... 
at org.jitterbit.integration.client.server.webservice.WebServiceConfiguration.throwException(WebServiceConfiguration.java:244) 
at org.jitterbit.integration.server.implementation.webservice.interchange.authenticate.impl.AuthenticateWsImpl.login(AuthenticateWsImpl.java:94) 
at org.jitterbit.integration.client.server.LoginServiceImpl.loginImpl(LoginServiceImpl.java:120) 
at org.jitterbit.integration.client.server.LoginServiceImpl.login(LoginServiceImpl.java:100) 
at org.jitterbit.integration.client.server.ui.login.LoginJob.runImpl(LoginJob.java:55) 
at org.jitterbit.application.ui.job.UiJob$2.run(UiJob.java:514) 
at org.jitterbit.application.worker.DefaultApplicationWorker$RunnableWrapper.run(DefaultApplicationWorker.java:202) 
at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) 
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source) 
at java.util.concurrent.FutureTask.run(Unknown Source) 
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) 
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) 
at java.lang.Thread.run(Unknown Source) 
Caused by: java.net.SocketTimeoutException: Read timed out 
at org.apache.axis.AxisFault.makeFault(AxisFault.java:104) 
at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:154) 
at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32) 
at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118) 
at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83) 
at org.apache.axis.client.AxisClient.invokeTransport(AxisClient.java:150) 
at org.apache.axis.client.AxisClient.invoke(AxisClient.java:289) 
at org.apache.axis.client.Call.invokeEngine(Call.java:2838) 
at org.apache.axis.client.Call.invoke(Call.java:2824) 
at org.apache.axis.client.Call.invoke(Call.java:2501) 
at org.apache.axis.client.Call.invoke(Call.java:2424) 
at org.apache.axis.client.Call.invoke(Call.java:1835) 
at org.jitterbit.integration.server.implementation.webservice.interchange.authenticate.client.Konga_authenticateSoapBindingStub.loginWithVersionAndKeyValues(Konga_authenticateSoapBindingStub.java:282) 
at org.jitterbit.integration.server.implementation.webservice.interchange.authenticate.impl.AuthenticateWsImpl.login(AuthenticateWsImpl.java:74) 
... 11 more 
Caused by: java.net.SocketTimeoutException: Read timed out 
at java.net.SocketInputStream.socketRead0(Native Method) 
at java.net.SocketInputStream.read(Unknown Source) 
at java.net.SocketInputStream.read(Unknown Source) 
at java.io.BufferedInputStream.fill(Unknown Source) 
at java.io.BufferedInputStream.read(Unknown Source) 
at org.apache.axis.transport.http.HTTPSender.readHeadersFromSocket(HTTPSender.java:583)
at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:143) 
... 23 more

  • January 17, 2013
  • Like
  • 0

Hi All,

 

I have some long text area fields in my VF page which is using Standard controller and extension.

I am using Standard save method in the action for Saving the record.

The long text area fields have character limit of 10000.

 

When I enter more than 10000 characters in the field and click Save, I am getting the following error message twice

 

"You can't use more than 10,000 characters"

I am not using pagemessage tag and there is no validation rule also.

This is happening in the sandbox instance which was recently refreshed with the new winter release 11.

 

Initially I thought there is some problem in the controller. So I tried to have only one field in the page with only Standardcontroller and no extension. Still it displays the error message twice.

Following is the code I am having in my VF page.

<apex:page standardController="Case" apiVersion="20">
<apex:form >
      <apex:pageBlock >
          <apex:pageBlockSection title="Problem Description Notes" id="pbs1" columns="1">
               <apex:inputField value="{!Case.Problem_Description__c}" style="width:300px"/>
          </apex:pageBlockSection>
      <apex:commandButton value="UpdateCase" action="{!Save}"/>
      </apex:pageBlock>
       
</apex:form>

</apex:page>

 

 

I am not getting what is the mistake here.

 

I tried the same thing in my developer instance which is still not refreshed with the new release.

There the error message is displayed only once.

So, I am not getting if this is a new release issue.

 

Please let me know your suggestions.

 

Thanks

Arvind

  • September 24, 2010
  • Like
  • 0