-
Occasionally I am getting a client side error in the web browser. Has anyone else seen this? I am using the latest code pulled from SVN. The error is:
ERROR INVOKING call 0 of 103: setComponent
error:message=this[bC][f] is null
error:fileName=https://test.gothaos.com/en/?_twr_=ThinWire_v1.2_RC2_r641.js
error:lineNumber=2332...
2009-12-12 16:50:32 UTC by n0en
-
Thanks jimfuller. It works fine.
2009-10-16 16:00:04 UTC by davidrom81
-
remove
webapps/WEB-INF/lib/commons-fileupload-1.0.jar
replace with
webapps/WEB-INF/lib/commons-fileupload-1.2.1.jar,
webapps/WEB-INF/lib/commons-io-1.3.2.jar
Edit thinwire.render.web.WebServelet.java
Remove following import statements:
import org.apache.commons.fileupload.DiskFileUpload;
import org.apache.commons.fileupload.FileItem;
import...
2009-10-14 20:26:19 UTC by jimfuller
-
No it dosnt work. If the File ist bigger than ~1MB it dont work. I tested it with the ThinWireSDK_v1.2_RC2.
org.apache.commons.fileupload.FileUploadException: Processing of multipart/form-data request failed. C:\upload_00000000.tmp (Zugriff verweigert)
at org.apache.commons.fileupload.FileUploadBase.parseRequest(FileUploadBase.java:429)
at...
2009-09-22 22:00:26 UTC by davidrom81
-
Those of you who wanted to evaluate a framework with similar API, take a look at Vaadin. Development model is almost identical to Thinwire, but in addition to server-side API, Vaadin also allows client-side development (using Google Web Toolkit). Project is mature (has been around since year 2001), Apache licensed, has really active development and nice growing community.
http://vaadin.com/.
2009-09-09 15:01:19 UTC by joonaslehtinen
-
Pressing F5 on an IE 8 project doesn't work if the session has been previously terminated. It seems to come down to it assuming _getFrameBounds() will be called, but it doesn't get triggered the second time in IE8. This patch checks to see if its IE8 and calls triggers the event like it does for other browsers.
2009-09-01 08:14:30 UTC by dextar78
-
inset/outset borders are showing up solid on IE 8.
I have solved the problem and you just need a simple browser check condition in the getIEBorder js method.... Attached is a patch for this.
2009-09-01 03:59:40 UTC by dextar78
-
I also posted a patch for this one:
https://sourceforge.net/tracker/?func=detail&aid=1649503&group_id=170706&atid=855241.
2009-09-01 03:52:24 UTC by dextar78
-
Sorry, I don't know how to add an attachment, but here is the patch to build.xml to use the yui-compressor.
Also, you need to add the yui compressor and dependant libraries to the build/yuicompressor-2.4.2 directory. I think I have commit access to this project, so I can commit it if you like.
Index: build.xml
===================================================================
--- build.xml...
2009-09-01 02:09:29 UTC by dextar78
-
Hi all,
Ok, if we use Yahoo's yui compressor, the total javascript size is: 167,628 bytes (164K), on the other hand, the thinwire-jso is: 162,379 bytes (159K) So there is around 5K extra added this way.
BUT....
Since its gzipped most of the time going over the wire, the yui-compressor version is actualler SMALLER 38,776 (38K) compared to the thinwire-jso version gzipped 44,111 (43K)!
So I...
2009-09-01 01:27:17 UTC by nobody