hi all,
i have diffent views in portlet and am importing the views in default view and in one of the view having table content provider and assycommangicon to add the table.
it is adding the data in table.
sometimes am getting below error
[POP.012.0001.wm_cafshared/hidden] A server error occured. The state of this page may be out of sync with the server.
what exact version of MWS/patch level do you have? I would ask support about it, since IE8 support is quite “new” and you maybe running an older 8.0.x version that does not support it…
am using webMethods 8.0.1 version of webMethods and IE is 8.0, i have seen an announcement ON March 31 at communities http://communities.softwareag.com/ below is the announcement
May 31, 2010 - Announcement on General Availability of Service Packs in webMethods 8 suite
Software AG is also pleased to announce the General Availability of the following webMethods releases and service packs:
webMethods Broker & JMS 8.0 SP2
CentraSite 8.0 SP4
EntireX Adapter 8.0
ESB Designer 8.1
My webMethods Server and webMethods Task Engine 8.0 SP2
webMethods Process Engine 8.0 SP2
webMethods Monitor 8.0 SP3
webMethods Optimize 8.0 SP3
webMethods Designer for Process 8.0 SP2
webMethods Composite Application Framework 8.0 SP2
These updates can now be downloaded from Empower.
The highlights for the Service packs are:
Support for Internet Explorer 8
Support for Microsoft Windows 2008 Server R2
Updated Service Development Plug-ins
am using using webMethods webMethods 8.0.1 which i downloaded on 13/April/2010, the latest announcment on March pack is not updated in our environment, i mean is not available in our login credentials of advantages site to update our environment.
Hi Anil,
I suppose that is probably the problem… you need to see in the installer the SP2 version… check out with your sales rep or support. They will probably be able to help.
Thanks for reply, i check with the support team, they replied that it has been re-solved in wM8SP2, i have upgraded the my environment to wM8SP2 from wM8SP1, let me check this status in wM8SP2.
Hi, We are also facing the same issue in our environment for the past 3-4 months without any clue on the root cause. Lot of our custom developed CAF applications are throwing this out of sync errors quite frequently. Sometime the same error shows up on standard MwS pages as well.
We are on 7.1.3 and do we have any solution for this ?
Hi Balachandar,
The reason for this error to come up is because of an Async call being performed to the server. If its possbile then you can chagne the Async Command icon to Command Icon. This will resolve this error.
Whenever there is a view navigation do not to use a Async Command Icon
instead use a Command Icon.
We solved this issue with a different work around.
I made an workaround that seems to solve the problem. Basically before the action (e.g. Search Action) we call an empty Async Hidden Command empty, this forces a sync between the browser and the server. This additional call for us it’s not a problem since this runs in a intranet, however in a internet this is an additional call :(. In any case this is only a workaround
Hi,
We are currently using 7.1.3, and sometimes we get the same problem. This usually happens if a deployment is made to the application while the user is still logged in.
After a Logout and a clear cache in the browser the problem disappears.
We are having the same issue and it happens only when there is a huge data involved.
We have an Async Table that has around 1000 rows and it is rendered via a webservice call after some time (obviously because of the huge data set).
When we sort on any of the columns, we get the message
[POP.012.0001.wm_cafshared/hidden] A server error occured. The state of this page may be out of sync with the server.
I beefed up the log level for several functions including wm_cafshared to Trace, but could not find any messages in the logs when this error occurs.
This is a Production environment and there is no deployment being done while a user session has been viewing a page from the deployment project, so this eliminates the other reason when we normally get this message.
Yes, indeed we have a Load Balancer (BIG IP) fronting our cluster of 4 MWS. Have you had this problem because of a Load Balancer and if so, can you please advise on how you got it resolved if at all.
Our SAG Support Incident on this issue is still opened. We do not yet have a solution.
I will let you know if we manage to solve the problem.
I'm sorry to hear that it also reproduces on version 8 (we plan to migrate soon).
i am getting same error in portlet include control.
i have async table contains two-three columns and 100 rows data is populating i have used Data Prev/Next control in one portlet project.
in another project in portlet view i have used portlet include control to include above portlet which contains Async table.
i have punbished the project.
i have open the project in the browse, i can see the table rows data but i soon as i click next am getting [POP.012.0001.wm_cafshared/hidden] A server error occured.
can any one suggest me how to re-solve this.this proble, is happening in mozilla browser and Internet explorer as well.
No am not using nested forms, just included other portlet in main portlet, main portlet and include portlet as same form Id name i.e deafultForm.
Can you please elaborate what you mean by nested forms in this error while doing portlet include.
A nested form is a very easy situation to generate when you have one portlet include another portlet.
As you know, when you create a CAF Portlet, it generates a default .view file. That .view file always contains a CommandForm Control (with a defaultID). Unless you remove the child portlet’s Form, or take care to ensure that the Portlet Include control in the parent is outside of a form, you will wind up with nested Form Controls.
At runtime, when the forms render, it will generate html code like this (simplified of course):
<form>
<form>
</form>
HTML doesn’t allow nested form elements.
From your description, i think that is causing this problem.