OFBiz 13.07 - Communication error with the client while processing the request

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
7 messages Options
Reply | Threaded
Open this post in threaded view
|

OFBiz 13.07 - Communication error with the client while processing the request

ericnk
Hi,

I'm trying to work through the tutorial at ...

https://cwiki.apache.org/confluence/display/OFBIZ/OFBiz+Tutorial+-+A+Beginners+Development+Guide#OFBizTutorial-ABeginnersDevelopmentGuide-CreatingPracticeApplication(HelloWorld...)

But, so far I haven't been able to get a successful result.  Every time
I try to display the result page, I get nothing.  Just a blank web
page.  In the log, it seems like the request is being process normally,
except that the following warning message comes up....

ControlServlet.java:220:WARN ] Communication error with the client while
processing the request: /practice/control/person

I'm assuming that this warning message is indicating there was a problem
communicating back to the browser.  Googling the message, I saw
discussions that this message occurs when the connection to the browser
is lost, for whatever reason.


Here is the portion of log that appears when the request is submitted...

[java] 2014-04-19 09:15:03,977 (http-bio-0.0.0.0-8080-exec-1)
[ControlEventListener.java:65 :INFO ] Creating session:
94F48236EDB5D113D633528DEC16CCC7.jvm1
      [java] 2014-04-19 09:15:03,984 (http-bio-0.0.0.0-8080-exec-1)
[     ControlServlet.java:140:INFO ] [[[person(Domain:http://localhost)]
Request Begun, encoding=[UTF-8]- total:0.0,since last(Begin):0.0]]
      [java] 2014-04-19 09:15:03,986 (http-bio-0.0.0.0-8080-exec-1)
[       VisitHandler.java:232:INFO ] Found visitorId [10000] in cookie
      [java] 2014-04-19 09:15:03,997 (http-bio-0.0.0.0-8080-exec-1)
[       SequenceUtil.java:349:INFO ] Got bank of sequenced IDs for
[Visit]; curSeqId=11300, maxSeqId=11400, bankSize=100
      [java] 2014-04-19 09:15:04,005 (http-bio-0.0.0.0-8080-exec-1) [    
ConfigXMLReader.java:116:INFO ] controller loaded: 0.001s, 1 requests, 1
views in jndi:/0.0.0.0/practice/WEB-INF/controller.xml
      [java] 2014-04-19 09:15:04,009 (http-bio-0.0.0.0-8080-exec-1) [    
ConfigXMLReader.java:116:INFO ] controller loaded: 0.0s, 39 requests, 19
views in
file:/E:/Java/Eclipse/workspace-ofbiz/ofbiz-release13.07%20(Custom)/framework/common/webcommon/WEB-INF/common-controller.xml
      [java] 2014-04-19 09:15:04,011 (http-bio-0.0.0.0-8080-exec-1) [    
ConfigXMLReader.java:116:INFO ] controller loaded: 0.0s, 0 requests, 0
views in
file:/E:/Java/Eclipse/workspace-ofbiz/ofbiz-release13.07%20(Custom)/framework/common/webcommon/WEB-INF/handlers-controller.xml
      [java] 2014-04-19 09:15:04,013 (http-bio-0.0.0.0-8080-exec-1)
[     RequestHandler.java:310:INFO ] This is the first request in this
visit. sessionId=94F48236EDB5D113D633528DEC16CCC7.jvm1
      [java] 2014-04-19 09:15:04,017 (http-bio-0.0.0.0-8080-exec-1)
[     RequestHandler.java:814:INFO ] Rendering View [person],
sessionId=94F48236EDB5D113D633528DEC16CCC7.jvm1
      [java] 2014-04-19 09:15:04,018 (http-bio-0.0.0.0-8080-exec-1)
[     UtilJ2eeCompat.java:69 :INFO ] serverInfo: apache tomcat/7.0.52
      [java] 2014-04-19 09:15:04,018 (http-bio-0.0.0.0-8080-exec-1)
[     UtilJ2eeCompat.java:78 :INFO ] Apache Tomcat detected, using
response.getWriter to write text out instead of response.getOutputStream
      [java] 2014-04-19 09:15:04,262 (http-bio-0.0.0.0-8080-exec-1)
[     AbstractEngine.java:66 :INFO ] Loaded Service Locations:
{entity-sync-http=http://localhost:8080/webtools/control/httpService,
eedcc-test=http://localhost:8080/webtools/control/httpService,
main-soap=http://localhost:8080/webtools/control/SOAPService,
rita-rmi=rmi://localhost:1099/RMIDispatcher,
main-http=http://localhost:8080/webtools/control/httpService,
entity-sync-rmi=rmi://localhost:1099/RMIDispatcher,
main-rmi=rmi://localhost:1099/RMIDispatcher}
      [java] 2014-04-19 09:15:04,271 (http-bio-0.0.0.0-8080-exec-1) [  
ServiceDispatcher.java:589:INFO ] Sync service
[practice/getUserPreferenceGroup] finished in [13] milliseconds
      [java] 2014-04-19 09:15:04,276 (http-bio-0.0.0.0-8080-exec-1)
[     ControlServlet.java:220:WARN ] Communication error with the client
while processing the request: /practice/control/person
      [java] 2014-04-19 09:15:04,282 (http-bio-0.0.0.0-8080-exec-1)
[       ServerHitBin.java:637:INFO ] Visit delegatorName=default,
ServerHitBin delegatorName=default
      [java] 2014-04-19 09:15:04,286 (http-bio-0.0.0.0-8080-exec-1)
[     ControlServlet.java:324:INFO ] [[[person(Domain:http://localhost)]
Request Done- total:0.302,since last([person(Domain:ht...):0.302]]


Is there anyone that can offer guidance or suggestions as to why this is
happening and how to solve it?  It would be much appreciated.  Thanks.


Regards,

Eric

Reply | Threaded
Open this post in threaded view
|

Re: OFBiz 13.07 - Communication error with the client while processing the request

Ashish Vijaywargiya-5
That document is useful when used with release1104.

--
Regards,
Ashish Vijaywargiya

----- Eric Kingston <[hidden email]> wrote:
| Hi,
|
| I'm trying to work through the tutorial at ...
|
| https://cwiki.apache.org/confluence/display/OFBIZ/OFBiz+Tutorial+-+A+Beginners+Development+Guide#OFBizTutorial-ABeginnersDevelopmentGuide-CreatingPracticeApplication(HelloWorld...)
|
| But, so far I haven't been able to get a successful result.  Every time
| I try to display the result page, I get nothing.  Just a blank web
| page.  In the log, it seems like the request is being process normally,
| except that the following warning message comes up....
|
| ControlServlet.java:220:WARN ] Communication error with the client while
| processing the request: /practice/control/person
|
| I'm assuming that this warning message is indicating there was a problem
| communicating back to the browser.  Googling the message, I saw
| discussions that this message occurs when the connection to the browser
| is lost, for whatever reason.
|
|
| Here is the portion of log that appears when the request is submitted...
|
| [java] 2014-04-19 09:15:03,977 (http-bio-0.0.0.0-8080-exec-1)
| [ControlEventListener.java:65 :INFO ] Creating session:
| 94F48236EDB5D113D633528DEC16CCC7.jvm1
|       [java] 2014-04-19 09:15:03,984 (http-bio-0.0.0.0-8080-exec-1)
| [     ControlServlet.java:140:INFO ] [[[person(Domain:http://localhost)]
| Request Begun, encoding=[UTF-8]- total:0.0,since last(Begin):0.0]]
|       [java] 2014-04-19 09:15:03,986 (http-bio-0.0.0.0-8080-exec-1)
| [       VisitHandler.java:232:INFO ] Found visitorId [10000] in cookie
|       [java] 2014-04-19 09:15:03,997 (http-bio-0.0.0.0-8080-exec-1)
| [       SequenceUtil.java:349:INFO ] Got bank of sequenced IDs for
| [Visit]; curSeqId=11300, maxSeqId=11400, bankSize=100
|       [java] 2014-04-19 09:15:04,005 (http-bio-0.0.0.0-8080-exec-1) [    
| ConfigXMLReader.java:116:INFO ] controller loaded: 0.001s, 1 requests, 1
| views in jndi:/0.0.0.0/practice/WEB-INF/controller.xml
|       [java] 2014-04-19 09:15:04,009 (http-bio-0.0.0.0-8080-exec-1) [    
| ConfigXMLReader.java:116:INFO ] controller loaded: 0.0s, 39 requests, 19
| views in
| file:/E:/Java/Eclipse/workspace-ofbiz/ofbiz-release13.07%20(Custom)/framework/common/webcommon/WEB-INF/common-controller.xml
|       [java] 2014-04-19 09:15:04,011 (http-bio-0.0.0.0-8080-exec-1) [    
| ConfigXMLReader.java:116:INFO ] controller loaded: 0.0s, 0 requests, 0
| views in
| file:/E:/Java/Eclipse/workspace-ofbiz/ofbiz-release13.07%20(Custom)/framework/common/webcommon/WEB-INF/handlers-controller.xml
|       [java] 2014-04-19 09:15:04,013 (http-bio-0.0.0.0-8080-exec-1)
| [     RequestHandler.java:310:INFO ] This is the first request in this
| visit. sessionId=94F48236EDB5D113D633528DEC16CCC7.jvm1
|       [java] 2014-04-19 09:15:04,017 (http-bio-0.0.0.0-8080-exec-1)
| [     RequestHandler.java:814:INFO ] Rendering View [person],
| sessionId=94F48236EDB5D113D633528DEC16CCC7.jvm1
|       [java] 2014-04-19 09:15:04,018 (http-bio-0.0.0.0-8080-exec-1)
| [     UtilJ2eeCompat.java:69 :INFO ] serverInfo: apache tomcat/7.0.52
|       [java] 2014-04-19 09:15:04,018 (http-bio-0.0.0.0-8080-exec-1)
| [     UtilJ2eeCompat.java:78 :INFO ] Apache Tomcat detected, using
| response.getWriter to write text out instead of response.getOutputStream
|       [java] 2014-04-19 09:15:04,262 (http-bio-0.0.0.0-8080-exec-1)
| [     AbstractEngine.java:66 :INFO ] Loaded Service Locations:
| {entity-sync-http=http://localhost:8080/webtools/control/httpService,
| eedcc-test=http://localhost:8080/webtools/control/httpService,
| main-soap=http://localhost:8080/webtools/control/SOAPService,
| rita-rmi=rmi://localhost:1099/RMIDispatcher,
| main-http=http://localhost:8080/webtools/control/httpService,
| entity-sync-rmi=rmi://localhost:1099/RMIDispatcher,
| main-rmi=rmi://localhost:1099/RMIDispatcher}
|       [java] 2014-04-19 09:15:04,271 (http-bio-0.0.0.0-8080-exec-1) [  
| ServiceDispatcher.java:589:INFO ] Sync service
| [practice/getUserPreferenceGroup] finished in [13] milliseconds
|       [java] 2014-04-19 09:15:04,276 (http-bio-0.0.0.0-8080-exec-1)
| [     ControlServlet.java:220:WARN ] Communication error with the client
| while processing the request: /practice/control/person
|       [java] 2014-04-19 09:15:04,282 (http-bio-0.0.0.0-8080-exec-1)
| [       ServerHitBin.java:637:INFO ] Visit delegatorName=default,
| ServerHitBin delegatorName=default
|       [java] 2014-04-19 09:15:04,286 (http-bio-0.0.0.0-8080-exec-1)
| [     ControlServlet.java:324:INFO ] [[[person(Domain:http://localhost)]
| Request Done- total:0.302,since last([person(Domain:ht...):0.302]]
|
|
| Is there anyone that can offer guidance or suggestions as to why this is
| happening and how to solve it?  It would be much appreciated.  Thanks.
|
|
| Regards,
|
| Eric
|

Reply | Threaded
Open this post in threaded view
|

Re: OFBiz 13.07 - Communication error with the client while processing the request

Jacques Le Roux
Administrator
Hi Ashish,

Then we should mention it. The tutorial  says only <<This tutorial is intended to be used with the latest SVN revision. It will /not/ work with
Release 4.>>

Or better update it ;)

Jacques

Le 19/04/2014 17:28, Ashish Vijaywargiya a écrit :

> That document is useful when used with release1104.
>
> --
> Regards,
> Ashish Vijaywargiya
>
> ----- Eric Kingston <[hidden email]> wrote:
> | Hi,
> |
> | I'm trying to work through the tutorial at ...
> |
> | https://cwiki.apache.org/confluence/display/OFBIZ/OFBiz+Tutorial+-+A+Beginners+Development+Guide#OFBizTutorial-ABeginnersDevelopmentGuide-CreatingPracticeApplication(HelloWorld...)
> |
> | But, so far I haven't been able to get a successful result.  Every time
> | I try to display the result page, I get nothing.  Just a blank web
> | page.  In the log, it seems like the request is being process normally,
> | except that the following warning message comes up....
> |
> | ControlServlet.java:220:WARN ] Communication error with the client while
> | processing the request: /practice/control/person
> |
> | I'm assuming that this warning message is indicating there was a problem
> | communicating back to the browser.  Googling the message, I saw
> | discussions that this message occurs when the connection to the browser
> | is lost, for whatever reason.
> |
> |
> | Here is the portion of log that appears when the request is submitted...
> |
> | [java] 2014-04-19 09:15:03,977 (http-bio-0.0.0.0-8080-exec-1)
> | [ControlEventListener.java:65 :INFO ] Creating session:
> | 94F48236EDB5D113D633528DEC16CCC7.jvm1
> |       [java] 2014-04-19 09:15:03,984 (http-bio-0.0.0.0-8080-exec-1)
> | [     ControlServlet.java:140:INFO ] [[[person(Domain:http://localhost)]
> | Request Begun, encoding=[UTF-8]- total:0.0,since last(Begin):0.0]]
> |       [java] 2014-04-19 09:15:03,986 (http-bio-0.0.0.0-8080-exec-1)
> | [       VisitHandler.java:232:INFO ] Found visitorId [10000] in cookie
> |       [java] 2014-04-19 09:15:03,997 (http-bio-0.0.0.0-8080-exec-1)
> | [       SequenceUtil.java:349:INFO ] Got bank of sequenced IDs for
> | [Visit]; curSeqId=11300, maxSeqId=11400, bankSize=100
> |       [java] 2014-04-19 09:15:04,005 (http-bio-0.0.0.0-8080-exec-1) [
> | ConfigXMLReader.java:116:INFO ] controller loaded: 0.001s, 1 requests, 1
> | views in jndi:/0.0.0.0/practice/WEB-INF/controller.xml
> |       [java] 2014-04-19 09:15:04,009 (http-bio-0.0.0.0-8080-exec-1) [
> | ConfigXMLReader.java:116:INFO ] controller loaded: 0.0s, 39 requests, 19
> | views in
> | file:/E:/Java/Eclipse/workspace-ofbiz/ofbiz-release13.07%20(Custom)/framework/common/webcommon/WEB-INF/common-controller.xml
> |       [java] 2014-04-19 09:15:04,011 (http-bio-0.0.0.0-8080-exec-1) [
> | ConfigXMLReader.java:116:INFO ] controller loaded: 0.0s, 0 requests, 0
> | views in
> | file:/E:/Java/Eclipse/workspace-ofbiz/ofbiz-release13.07%20(Custom)/framework/common/webcommon/WEB-INF/handlers-controller.xml
> |       [java] 2014-04-19 09:15:04,013 (http-bio-0.0.0.0-8080-exec-1)
> | [     RequestHandler.java:310:INFO ] This is the first request in this
> | visit. sessionId=94F48236EDB5D113D633528DEC16CCC7.jvm1
> |       [java] 2014-04-19 09:15:04,017 (http-bio-0.0.0.0-8080-exec-1)
> | [     RequestHandler.java:814:INFO ] Rendering View [person],
> | sessionId=94F48236EDB5D113D633528DEC16CCC7.jvm1
> |       [java] 2014-04-19 09:15:04,018 (http-bio-0.0.0.0-8080-exec-1)
> | [     UtilJ2eeCompat.java:69 :INFO ] serverInfo: apache tomcat/7.0.52
> |       [java] 2014-04-19 09:15:04,018 (http-bio-0.0.0.0-8080-exec-1)
> | [     UtilJ2eeCompat.java:78 :INFO ] Apache Tomcat detected, using
> | response.getWriter to write text out instead of response.getOutputStream
> |       [java] 2014-04-19 09:15:04,262 (http-bio-0.0.0.0-8080-exec-1)
> | [     AbstractEngine.java:66 :INFO ] Loaded Service Locations:
> | {entity-sync-http=http://localhost:8080/webtools/control/httpService,
> | eedcc-test=http://localhost:8080/webtools/control/httpService,
> | main-soap=http://localhost:8080/webtools/control/SOAPService,
> | rita-rmi=rmi://localhost:1099/RMIDispatcher,
> | main-http=http://localhost:8080/webtools/control/httpService,
> | entity-sync-rmi=rmi://localhost:1099/RMIDispatcher,
> | main-rmi=rmi://localhost:1099/RMIDispatcher}
> |       [java] 2014-04-19 09:15:04,271 (http-bio-0.0.0.0-8080-exec-1) [
> | ServiceDispatcher.java:589:INFO ] Sync service
> | [practice/getUserPreferenceGroup] finished in [13] milliseconds
> |       [java] 2014-04-19 09:15:04,276 (http-bio-0.0.0.0-8080-exec-1)
> | [     ControlServlet.java:220:WARN ] Communication error with the client
> | while processing the request: /practice/control/person
> |       [java] 2014-04-19 09:15:04,282 (http-bio-0.0.0.0-8080-exec-1)
> | [       ServerHitBin.java:637:INFO ] Visit delegatorName=default,
> | ServerHitBin delegatorName=default
> |       [java] 2014-04-19 09:15:04,286 (http-bio-0.0.0.0-8080-exec-1)
> | [     ControlServlet.java:324:INFO ] [[[person(Domain:http://localhost)]
> | Request Done- total:0.302,since last([person(Domain:ht...):0.302]]
> |
> |
> | Is there anyone that can offer guidance or suggestions as to why this is
> | happening and how to solve it?  It would be much appreciated.  Thanks.
> |
> |
> | Regards,
> |
> | Eric
> |
>
>

--

Reply | Threaded
Open this post in threaded view
|

Re: OFBiz 13.07 - Communication error with the client while processing the request

Vijay Krishnamurthy
Hello All,

Any one can suggest me that, is this application can I use it for my
Transport Business.
Where I need to Manage the followings:
Vehicles,
Drivers,
Staff,
Invoices,
Services,
Expenses...etc

Thank You All.

Regads,*
**VK Murthy,**
**India.*

On 4/19/2014 9:24 PM, Jacques Le Roux wrote:

> Hi Ashish,
>
> Then we should mention it. The tutorial  says only <<This tutorial is
> intended to be used with the latest SVN revision. It will /not/ work
> with Release 4.>>
>
> Or better update it ;)
>
> Jacques
>
> Le 19/04/2014 17:28, Ashish Vijaywargiya a écrit :
>> That document is useful when used with release1104.
>>
>> --
>> Regards,
>> Ashish Vijaywargiya
>>
>> ----- Eric Kingston <[hidden email]> wrote:
>> | Hi,
>> |
>> | I'm trying to work through the tutorial at ...
>> |
>> |
>> https://cwiki.apache.org/confluence/display/OFBIZ/OFBiz+Tutorial+-+A+Beginners+Development+Guide#OFBizTutorial-ABeginnersDevelopmentGuide-CreatingPracticeApplication(HelloWorld...)
>> |
>> | But, so far I haven't been able to get a successful result. Every time
>> | I try to display the result page, I get nothing.  Just a blank web
>> | page.  In the log, it seems like the request is being process
>> normally,
>> | except that the following warning message comes up....
>> |
>> | ControlServlet.java:220:WARN ] Communication error with the client
>> while
>> | processing the request: /practice/control/person
>> |
>> | I'm assuming that this warning message is indicating there was a
>> problem
>> | communicating back to the browser.  Googling the message, I saw
>> | discussions that this message occurs when the connection to the
>> browser
>> | is lost, for whatever reason.
>> |
>> |
>> | Here is the portion of log that appears when the request is
>> submitted...
>> |
>> | [java] 2014-04-19 09:15:03,977 (http-bio-0.0.0.0-8080-exec-1)
>> | [ControlEventListener.java:65 :INFO ] Creating session:
>> | 94F48236EDB5D113D633528DEC16CCC7.jvm1
>> |       [java] 2014-04-19 09:15:03,984 (http-bio-0.0.0.0-8080-exec-1)
>> | [     ControlServlet.java:140:INFO ]
>> [[[person(Domain:http://localhost)]
>> | Request Begun, encoding=[UTF-8]- total:0.0,since last(Begin):0.0]]
>> |       [java] 2014-04-19 09:15:03,986 (http-bio-0.0.0.0-8080-exec-1)
>> | [       VisitHandler.java:232:INFO ] Found visitorId [10000] in cookie
>> |       [java] 2014-04-19 09:15:03,997 (http-bio-0.0.0.0-8080-exec-1)
>> | [       SequenceUtil.java:349:INFO ] Got bank of sequenced IDs for
>> | [Visit]; curSeqId=11300, maxSeqId=11400, bankSize=100
>> |       [java] 2014-04-19 09:15:04,005 (http-bio-0.0.0.0-8080-exec-1) [
>> | ConfigXMLReader.java:116:INFO ] controller loaded: 0.001s, 1
>> requests, 1
>> | views in jndi:/0.0.0.0/practice/WEB-INF/controller.xml
>> |       [java] 2014-04-19 09:15:04,009 (http-bio-0.0.0.0-8080-exec-1) [
>> | ConfigXMLReader.java:116:INFO ] controller loaded: 0.0s, 39
>> requests, 19
>> | views in
>> |
>> file:/E:/Java/Eclipse/workspace-ofbiz/ofbiz-release13.07%20(Custom)/framework/common/webcommon/WEB-INF/common-controller.xml
>> |       [java] 2014-04-19 09:15:04,011 (http-bio-0.0.0.0-8080-exec-1) [
>> | ConfigXMLReader.java:116:INFO ] controller loaded: 0.0s, 0 requests, 0
>> | views in
>> |
>> file:/E:/Java/Eclipse/workspace-ofbiz/ofbiz-release13.07%20(Custom)/framework/common/webcommon/WEB-INF/handlers-controller.xml
>> |       [java] 2014-04-19 09:15:04,013 (http-bio-0.0.0.0-8080-exec-1)
>> | [     RequestHandler.java:310:INFO ] This is the first request in this
>> | visit. sessionId=94F48236EDB5D113D633528DEC16CCC7.jvm1
>> |       [java] 2014-04-19 09:15:04,017 (http-bio-0.0.0.0-8080-exec-1)
>> | [     RequestHandler.java:814:INFO ] Rendering View [person],
>> | sessionId=94F48236EDB5D113D633528DEC16CCC7.jvm1
>> |       [java] 2014-04-19 09:15:04,018 (http-bio-0.0.0.0-8080-exec-1)
>> | [     UtilJ2eeCompat.java:69 :INFO ] serverInfo: apache tomcat/7.0.52
>> |       [java] 2014-04-19 09:15:04,018 (http-bio-0.0.0.0-8080-exec-1)
>> | [     UtilJ2eeCompat.java:78 :INFO ] Apache Tomcat detected, using
>> | response.getWriter to write text out instead of
>> response.getOutputStream
>> |       [java] 2014-04-19 09:15:04,262 (http-bio-0.0.0.0-8080-exec-1)
>> | [     AbstractEngine.java:66 :INFO ] Loaded Service Locations:
>> | {entity-sync-http=http://localhost:8080/webtools/control/httpService,
>> | eedcc-test=http://localhost:8080/webtools/control/httpService,
>> | main-soap=http://localhost:8080/webtools/control/SOAPService,
>> | rita-rmi=rmi://localhost:1099/RMIDispatcher,
>> | main-http=http://localhost:8080/webtools/control/httpService,
>> | entity-sync-rmi=rmi://localhost:1099/RMIDispatcher,
>> | main-rmi=rmi://localhost:1099/RMIDispatcher}
>> |       [java] 2014-04-19 09:15:04,271 (http-bio-0.0.0.0-8080-exec-1) [
>> | ServiceDispatcher.java:589:INFO ] Sync service
>> | [practice/getUserPreferenceGroup] finished in [13] milliseconds
>> |       [java] 2014-04-19 09:15:04,276 (http-bio-0.0.0.0-8080-exec-1)
>> | [     ControlServlet.java:220:WARN ] Communication error with the
>> client
>> | while processing the request: /practice/control/person
>> |       [java] 2014-04-19 09:15:04,282 (http-bio-0.0.0.0-8080-exec-1)
>> | [       ServerHitBin.java:637:INFO ] Visit delegatorName=default,
>> | ServerHitBin delegatorName=default
>> |       [java] 2014-04-19 09:15:04,286 (http-bio-0.0.0.0-8080-exec-1)
>> | [     ControlServlet.java:324:INFO ]
>> [[[person(Domain:http://localhost)]
>> | Request Done- total:0.302,since last([person(Domain:ht...):0.302]]
>> |
>> |
>> | Is there anyone that can offer guidance or suggestions as to why
>> this is
>> | happening and how to solve it?  It would be much appreciated. Thanks.
>> |
>> |
>> | Regards,
>> |
>> | Eric
>> |
>>
>>
>

--
Regards,
Vijay
Reply | Threaded
Open this post in threaded view
|

Re: OFBiz 13.07 - Communication error with the client while processing the request

Pranay Pandey-2
In reply to this post by Jacques Le Roux

Hi Jacques, Ashish

I have to check the authenticity and infect thinking to have a fresh and new light weight tutorial for beginners. Its been a long time we haven't done any major changes here, I have recently revisited it and think it needs overhaul.

Thanks and Regards
--
Pranay Pandey
Hotwax Media | http://www.hotwaxmedia.com/
ApacheCon US 2014 Silver Sponsor - http://na.apachecon.com/sponsor/our-sponsors
LinkedIn - http://www.linkedin.com/company/hotwax-media
Twitter - http://twitter.com/ofbizbyhotwax






On 19-Apr-2014, at 9:24 PM, Jacques Le Roux wrote:

> Hi Ashish,
>
> Then we should mention it. The tutorial  says only <<This tutorial is intended to be used with the latest SVN revision. It will /not/ work with Release 4.>>
>
> Or better update it ;)
>
> Jacques
>
> Le 19/04/2014 17:28, Ashish Vijaywargiya a écrit :
>> That document is useful when used with release1104.
>>
>> --
>> Regards,
>> Ashish Vijaywargiya
>>
>> ----- Eric Kingston <[hidden email]> wrote:
>> | Hi,
>> |
>> | I'm trying to work through the tutorial at ...
>> |
>> | https://cwiki.apache.org/confluence/display/OFBIZ/OFBiz+Tutorial+-+A+Beginners+Development+Guide#OFBizTutorial-ABeginnersDevelopmentGuide-CreatingPracticeApplication(HelloWorld...)
>> |
>> | But, so far I haven't been able to get a successful result.  Every time
>> | I try to display the result page, I get nothing.  Just a blank web
>> | page.  In the log, it seems like the request is being process normally,
>> | except that the following warning message comes up....
>> |
>> | ControlServlet.java:220:WARN ] Communication error with the client while
>> | processing the request: /practice/control/person
>> |
>> | I'm assuming that this warning message is indicating there was a problem
>> | communicating back to the browser.  Googling the message, I saw
>> | discussions that this message occurs when the connection to the browser
>> | is lost, for whatever reason.
>> |
>> |
>> | Here is the portion of log that appears when the request is submitted...
>> |
>> | [java] 2014-04-19 09:15:03,977 (http-bio-0.0.0.0-8080-exec-1)
>> | [ControlEventListener.java:65 :INFO ] Creating session:
>> | 94F48236EDB5D113D633528DEC16CCC7.jvm1
>> |       [java] 2014-04-19 09:15:03,984 (http-bio-0.0.0.0-8080-exec-1)
>> | [     ControlServlet.java:140:INFO ] [[[person(Domain:http://localhost)]
>> | Request Begun, encoding=[UTF-8]- total:0.0,since last(Begin):0.0]]
>> |       [java] 2014-04-19 09:15:03,986 (http-bio-0.0.0.0-8080-exec-1)
>> | [       VisitHandler.java:232:INFO ] Found visitorId [10000] in cookie
>> |       [java] 2014-04-19 09:15:03,997 (http-bio-0.0.0.0-8080-exec-1)
>> | [       SequenceUtil.java:349:INFO ] Got bank of sequenced IDs for
>> | [Visit]; curSeqId=11300, maxSeqId=11400, bankSize=100
>> |       [java] 2014-04-19 09:15:04,005 (http-bio-0.0.0.0-8080-exec-1) [
>> | ConfigXMLReader.java:116:INFO ] controller loaded: 0.001s, 1 requests, 1
>> | views in jndi:/0.0.0.0/practice/WEB-INF/controller.xml
>> |       [java] 2014-04-19 09:15:04,009 (http-bio-0.0.0.0-8080-exec-1) [
>> | ConfigXMLReader.java:116:INFO ] controller loaded: 0.0s, 39 requests, 19
>> | views in
>> | file:/E:/Java/Eclipse/workspace-ofbiz/ofbiz-release13.07%20(Custom)/framework/common/webcommon/WEB-INF/common-controller.xml
>> |       [java] 2014-04-19 09:15:04,011 (http-bio-0.0.0.0-8080-exec-1) [
>> | ConfigXMLReader.java:116:INFO ] controller loaded: 0.0s, 0 requests, 0
>> | views in
>> | file:/E:/Java/Eclipse/workspace-ofbiz/ofbiz-release13.07%20(Custom)/framework/common/webcommon/WEB-INF/handlers-controller.xml
>> |       [java] 2014-04-19 09:15:04,013 (http-bio-0.0.0.0-8080-exec-1)
>> | [     RequestHandler.java:310:INFO ] This is the first request in this
>> | visit. sessionId=94F48236EDB5D113D633528DEC16CCC7.jvm1
>> |       [java] 2014-04-19 09:15:04,017 (http-bio-0.0.0.0-8080-exec-1)
>> | [     RequestHandler.java:814:INFO ] Rendering View [person],
>> | sessionId=94F48236EDB5D113D633528DEC16CCC7.jvm1
>> |       [java] 2014-04-19 09:15:04,018 (http-bio-0.0.0.0-8080-exec-1)
>> | [     UtilJ2eeCompat.java:69 :INFO ] serverInfo: apache tomcat/7.0.52
>> |       [java] 2014-04-19 09:15:04,018 (http-bio-0.0.0.0-8080-exec-1)
>> | [     UtilJ2eeCompat.java:78 :INFO ] Apache Tomcat detected, using
>> | response.getWriter to write text out instead of response.getOutputStream
>> |       [java] 2014-04-19 09:15:04,262 (http-bio-0.0.0.0-8080-exec-1)
>> | [     AbstractEngine.java:66 :INFO ] Loaded Service Locations:
>> | {entity-sync-http=http://localhost:8080/webtools/control/httpService,
>> | eedcc-test=http://localhost:8080/webtools/control/httpService,
>> | main-soap=http://localhost:8080/webtools/control/SOAPService,
>> | rita-rmi=rmi://localhost:1099/RMIDispatcher,
>> | main-http=http://localhost:8080/webtools/control/httpService,
>> | entity-sync-rmi=rmi://localhost:1099/RMIDispatcher,
>> | main-rmi=rmi://localhost:1099/RMIDispatcher}
>> |       [java] 2014-04-19 09:15:04,271 (http-bio-0.0.0.0-8080-exec-1) [
>> | ServiceDispatcher.java:589:INFO ] Sync service
>> | [practice/getUserPreferenceGroup] finished in [13] milliseconds
>> |       [java] 2014-04-19 09:15:04,276 (http-bio-0.0.0.0-8080-exec-1)
>> | [     ControlServlet.java:220:WARN ] Communication error with the client
>> | while processing the request: /practice/control/person
>> |       [java] 2014-04-19 09:15:04,282 (http-bio-0.0.0.0-8080-exec-1)
>> | [       ServerHitBin.java:637:INFO ] Visit delegatorName=default,
>> | ServerHitBin delegatorName=default
>> |       [java] 2014-04-19 09:15:04,286 (http-bio-0.0.0.0-8080-exec-1)
>> | [     ControlServlet.java:324:INFO ] [[[person(Domain:http://localhost)]
>> | Request Done- total:0.302,since last([person(Domain:ht...):0.302]]
>> |
>> |
>> | Is there anyone that can offer guidance or suggestions as to why this is
>> | happening and how to solve it?  It would be much appreciated.  Thanks.
>> |
>> |
>> | Regards,
>> |
>> | Eric
>> |
>>
>>
>
> --
>

Reply | Threaded
Open this post in threaded view
|

Re: OFBiz 13.07 - Communication error with the client while processing the request

info@agentur-m3.de
I had the same error message and a blank screen.
The reason was a typo in the page-reference
of the screen component.

<view-map name="xxx" type="screen"
page="component://myComponent/widget/xxx.xml">

If the valid name is XXX.xml instead of xxx.xml
this message occures (maybe it occoures also in other cases,
but with this typo I can produce a blank screen).




Reply | Threaded
Open this post in threaded view
|

Re: OFBiz 13.07 - Communication error with the client while processing the request

Pierre Smits
If the error (bug) still exists, please feel free to create a JIRA issue.

Best regards,

Pierre Smits

*ORRTIZ.COM <http://www.orrtiz.com>*
Services & Solutions for Cloud-
Based Manufacturing, Professional
Services and Retail & Trade
http://www.orrtiz.com

On Wed, Feb 18, 2015 at 5:02 PM, AgM3 <[hidden email]> wrote:

> I had the same error message and a blank screen.
> The reason was a typo in the page-reference
> of the screen component.
>
> <view-map name="xxx" type="screen"
> page="component://myComponent/widget/xxx.xml">
>
> If the valid name is XXX.xml instead of xxx.xml
> this message occures (maybe it occoures also in other cases,
> but with this typo I can produce a blank screen).
>
>
>
>
>