Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

web Appli Error in PB 11.5 PageRequestManagerServerErrorException: 500

Status
Not open for further replies.

gruhcomputer

Programmer
Oct 16, 2009
1
IR
I have a web application in power builer 11.5, and all deployement steps passed and web form successfully loaded.
connection with database oracle done and everything works fine.
when I double click on an ithem of datawindow, to retrieve another datawindow, server stops running and this error occured:
sys.webForms.PageRequestManagerServerErrorException: An unknown error occured while processing the request on the server. The status code returned from the server was: 500

by deploying program with Debug (instead of Release) mode, I can trace program in Power builder 11.5
I saw that the server hangs on this line of code:

dwh.retrieve( i1, i2, i3)

three arguments passed to a datawindow child named "dwh", but this datawindow doesn't retrieve and error occurs.
the code before this line of error is:

datawindowchild dwh
dw_11.getchild( "f3", dwh )
dwh.settrans( sqlca )
dwh.retrieve( i1, i2, i3)

"f3" is a datawindow child of dw_11, that has two simple (text) column inside.

this form runs successfully in a windows application target, but in web target, it fails.
I have same problem in datawindow with the BLOB object inside, that returns error number 500, But this datawindow and it's childs has no blob fields.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top