I'm currently using smartgwt power 3.0 with gwt 2.3 on redhat linux. I will be deploying to weblogic 12c. I have a form that allows the user to upload a file into the database. When I am running in dev mode, the upload works fine. When I deploy to weblogic, I get an error message that says "Problem communicating with the server". Here are the logs from Eclipse when running in dev mode.
I don't see any logs on the server that I can post. Is there anything here that can help diagnose the problem?
Code:
=== 2012-04-03 13:54:43,430 [l0-4] INFO RequestContext - URL: '/myapplication/sc/IDACall', User-Agent: 'Mozilla/5.0 (X11; Linux i686 on x86_64; rv:8.0.1) Gecko/20100101 Firefox/8.0.1': Moz (Gecko) with Accept-Encoding header === 2012-04-03 13:54:43,431 [l0-4] WARN RPCManager - client/server version mismatch. Client is version: SC_SNAPSHOT-2012-01-16_v8.1p, server is version: SC_SNAPSHOT-2012-01-11_v8.2p - mixing different client/server versions is generally not supported. If you've installed a more recent client version, try clearing the browser cache and reloading the page. === 2012-04-03 13:54:43,484 [l0-4] DEBUG XML - Parsed XML from (in memory stream): 14ms === 2012-04-03 13:54:43,488 [l0-4] DEBUG RPCManager - Processing 1 requests. === 2012-04-03 13:54:43,489 [l0-4] INFO DSRequest - We parsed 1 uploaded file(s): "myfile.pdf" (85123 bytes) === 2012-04-03 13:54:43,490 [l0-4] DEBUG RPCManager - Request #1 (DSRequest) payload: { values:{ attachment_contents:"myfile.pdf", file_ID:9653, attachment_name:"testing", attachment_contents_date_created:new Date(1333461283489), attachment_contents_filename:"myfile.pdf", attachment_contents_filesize:85123 }, operationConfig:{ dataSource:"fileattachmentDataSource", operationType:"add" }, componentId:"isc_DynamicForm_6", appID:"builtinApplication", operation:"fileattachmentDataSource_add", oldValues:{ }, criteria:{ } } === 2012-04-03 13:54:43,490 [l0-4] INFO IDACall - Performing 1 operation(s) === 2012-04-03 13:54:43,490 [l0-4] DEBUG AppBase - [builtinApplication.fileattachmentDataSource_add] No userTypes defined, allowing anyone access to all operations for this application === 2012-04-03 13:54:43,491 [l0-4] DEBUG AppBase - [builtinApplication.fileattachmentDataSource_add] No public zero-argument method named '_fileattachmentDataSource_add' found, performing generic datasource operation === 2012-04-03 13:54:43,491 [l0-4] WARN Validation - [builtinApplication.fileattachmentDataSource_add] No such type 'binary', not processing field value at /fileattachmentDataSource/attachment_contents === 2012-04-03 13:54:43,492 [l0-4] INFO SQLDataSource - [builtinApplication.fileattachmentDataSource_add] Performing add operation with criteria: {file_ID:9653,attachment_name:"testing",attachment_contents_date_created:new Date(1333461283489),attachment_contents_filename:"myfile.pdf",attachment_contents_filesize:85123} values: {file_ID:9653,attachment_name:"testing",attachment_contents_date_created:new Date(1333461283489),attachment_contents_filename:"myfile.pdf",attachment_contents_filesize:85123} === 2012-04-03 13:54:43,493 [l0-4] DEBUG SQLValuesClause - [builtinApplication.fileattachmentDataSource_add] Sequences: {} === 2012-04-03 13:54:43,522 [l0-4] DEBUG PoolableSQLConnectionFactory - [builtinApplication.fileattachmentDataSource_add] Returning pooled Connection === 2012-04-03 13:54:43,523 [l0-4] DEBUG SQLTransaction - [builtinApplication.fileattachmentDataSource_add] Started new Oracle transaction "15266629" === 2012-04-03 13:54:43,523 [l0-4] INFO SQLDriver - [builtinApplication.fileattachmentDataSource_add] Executing SQL update on 'Oracle': INSERT INTO file_attachment (file_ID, attachment_contents, attachment_contents_date_created, attachment_contents_filename, attachment_contents_filesize, attachment_name) VALUES (9653, ?, TO_DATE('2012-04-03 13:54:43','YYYY-MM-DD HH24:MI:SS'), 'myfile.pdf', 85123, 'testing') === 2012-04-03 13:54:43,624 [l0-4] DEBUG SQLDataSource - [builtinApplication.fileattachmentDataSource_add] add operation affected 1 rows === 2012-04-03 13:54:43,625 [l0-4] INFO SQLDataSource - [builtinApplication.fileattachmentDataSource_add] primaryKeys: {attachment_name=testing, file_ID=9653} === 2012-04-03 13:54:43,626 [l0-4] DEBUG AppBase - [builtinApplication.fileattachmentDataSource_add, builtinApplication.null] No userTypes defined, allowing anyone access to all operations for this application === 2012-04-03 13:54:43,626 [l0-4] DEBUG AppBase - [builtinApplication.fileattachmentDataSource_add, builtinApplication.null] No public zero-argument method named '_null' found, performing generic datasource operation === 2012-04-03 13:54:43,626 [l0-4] INFO SQLDataSource - [builtinApplication.fileattachmentDataSource_add, builtinApplication.null] Performing fetch operation with criteria: {attachment_name:"testing",file_ID:9653} values: {attachment_name:"testing",file_ID:9653} === 2012-04-03 13:54:43,627 [l0-4] INFO SQLDataSource - [builtinApplication.fileattachmentDataSource_add, builtinApplication.null] derived query: SELECT $defaultSelectClause FROM $defaultTableClause WHERE $defaultWhereClause === 2012-04-03 13:54:43,627 [l0-4] INFO SQLDataSource - [builtinApplication.fileattachmentDataSource_add, builtinApplication.null] Executing SQL query on 'Oracle': SELECT file_attachment.file_ID, file_attachment.attachment_contents, file_attachment.attachment_contents_date_created, file_attachment.attachment_contents_filename, file_attachment.attachment_contents_filesize, file_attachment.attachment_name FROM file_attachment WHERE (file_attachment.attachment_name='testing' AND file_attachment.file_ID='9653') === 2012-04-03 13:54:43,628 [l0-4] INFO SQLDriver - [builtinApplication.fileattachmentDataSource_add, builtinApplication.null] Executing SQL query on 'Oracle': SELECT file_attachment.file_ID, file_attachment.attachment_contents, file_attachment.attachment_contents_date_created, file_attachment.attachment_contents_filename, file_attachment.attachment_contents_filesize, file_attachment.attachment_name FROM file_attachment WHERE (file_attachment.attachment_name='testing' AND file_attachment.file_ID='9653') === 2012-04-03 13:54:43,767 [l0-4] INFO DSResponse - [builtinApplication.fileattachmentDataSource_add, builtinApplication.null] DSResponse: List with 1 items === 2012-04-03 13:54:43,767 [l0-4] INFO DSResponse - [builtinApplication.fileattachmentDataSource_add] DSResponse: List with 1 items === 2012-04-03 13:54:43,767 [l0-4] DEBUG RPCManager - Content type for RPC transaction: text/html; charset=UTF-8 === 2012-04-03 13:54:43,767 [l0-4] DEBUG SQLTransaction - Committing Oracle transaction "15266629" === 2012-04-03 13:54:43,773 [l0-4] DEBUG RPCManager - non-DMI response, dropExtraFields: false === 2012-04-03 13:54:43,775 [l0-4] DEBUG SQLTransaction - Ending Oracle transaction "15266629" === 2012-04-03 13:54:43,778 [l0-4] INFO Compression - /myapplication/sc/IDACall: 775 -> 478 bytes
Comment