Re: GWT on iSeries

2014-11-27 Thread karim duran
ur logs are clean. If so, it's OK. I hope it helps you. Regards. Karim Duran 2014-11-21 13:48 GMT+01:00 Luca Tozzi : > Yes.. my doubts are based on the IBM jvm > have you find any difference among the Oracle JVM and IBM JVM... > when compile GWT? > > And is Jetty a good Serve

Re: GWT on iSeries

2014-11-18 Thread karim duran
Hi Luca, GWT apps are not different from usual JEE Web Application. JEE Web Applications are system or architecture independant, so they run on iSeries too. If you use IBM Rational studio (or Eclipse that is quite equivalent ), develop your application as you did for Tomcat

Re: How to apply a complete css file to an element in Ui-Binder?

2013-03-11 Thread karim duran
click on your suggestbox, you have a little button on properties panel (advanced properties) where you can type an ui:field name and css properties too. I hope it help you. Regards. Karim Duran 2013/3/10 membersound > How can I apply a complete css file to a specific element using UI Binder

Re: Displaying a PDF in a GWT application using a servlet (or not)

2012-03-15 Thread karim duran
Hi Philroc1, I suggest you to developp your own servlet to do that. PDF in a blob is a good solution ( no need to fill the filesystem ). Put the SubscriberInformation object in session, so your servlet can find it, and serve the PDF. I met a similar problem, and it's how i did. Regards.

Re: GWT in enterprise systems (SAP, AS/400)

2012-02-20 Thread karim duran
perience. Anyway, it was very interesting to talk with you, and i'd like to follow your project or posts about it. Hoping hear about you soon if you like. Regards. Karim Duran 2012/2/20 dominikz > Dear Karim, > > I'm very aware of jt400 library. I've done tons of things wit

Re: GWT in enterprise systems (SAP, AS/400)

2012-02-20 Thread karim duran
) You can find it (IBM production version ) directly on your AS400 : jt400native.jar if you setup the right PTF for Java support. Today, i connect to OS400 from my Android Phone or Tablet with a tn5250 terminal emulator from anywhere. It was just a notice. I'm really interrested by your work. T

Re: How to save a file in server

2012-02-16 Thread karim duran
course, in this case, you have to config web.xml before deploying your application, and tomcat runtime *must have write permission for the folder /var/www/uploadedFiles/* in this exemple. I hope it helps. Look at the Servlet API javadoc for more details. It doesn't depends upon GWT. Regards.

Re: GWT App Deployed To Tomcat Displays Old Content

2012-01-24 Thread karim duran
f it solves anything. If not, we investigate more. I hope it helps. Regards. Karim Duran 2012/1/24 KGD > Hi, >I am currently using Eclipse with GWT SDK 2.4.0 to develop a > GWT application. Inside Eclipse, I have tested my application to > ensure it pulls the dynamic co

Re: How to inspect GWT generated javascript in Internet Explorer?

2012-01-17 Thread karim duran
k that the Mozilla tools are more suitable. Regards. Karim Duran 2012/1/16 Thomas Broyer : > > > On Monday, January 16, 2012 8:46:31 AM UTC+1, karim33 wrote: >> >> Hi Mariyan >> >> Tools to inspect javascript code in IE are difficult to find. > > Er, starting with

Re: How to inspect GWT generated javascript in Internet Explorer?

2012-01-15 Thread karim duran
and debug with the tools i'm speaking about. I hope it helps. Regards. Karim Duran 2012/1/15 mariyan nenchev : > Hi, > > I am unable to inspect GWT generated javascript code in IE? > Any ideas how to do it? > > Thanks. > > -- > You received this message because you

Re: GWT cross-domain requests works in Chrome/FF, fail in IE/Opera

2012-01-11 Thread karim duran
a real security problem. I hope it helps. Regards. Karim Duran 2012/1/11 darkflame : > I dont know about IE, but try Opera12 as cross-domain support via CORS > was only added on that version. > > On Jan 10, 8:23 pm, ussuri wrote: >> Hello! >> >> I serve my gwt-based

Re: Add packages to GWT project

2012-01-04 Thread karim duran
co ( for example ) Then on it right clic and new -> class -> your business class In UI component, you just have to instanciate your Objects and call their services. That's all. I hope it helps. Regards. Karim Duran. 2011/12/28 franco <90fra...@gmail.com> > Hello. > &g

Re: Problem with gwt fileUpload in GWT 2.4

2011-12-08 Thread karim duran
Hi James, You can also use Apache commons fileupload library, it's easy to use and to integrate with GWT. http://commons.apache.org/fileupload/ Regards. Karim Duran. 2011/12/8 James Drinkard > Okay, after doing more searching I found you can't do RPC with this > widget, so I

Re: Dart and GWT

2011-11-11 Thread karim duran
Hi Eric, I saw the Dart Editor (Linux, Mac, Win). It's a standalone editor based on Eclipse UI. Is there a real Dart plugin for Eclipse ? If not, do you plan to provide one ? 2011/11/11 Eric Clayberg (Google) > See... http://googlewebtoolkit.blogspot.com/2011/11/gwt-and-dart.html > > The Googl

Re: Failure Parsing XML Document from Servlet

2011-09-29 Thread karim duran
Type("text/xml"); 3) did you close your stream with the close() method of the OutPutStream ? 4) your GWT client receive a raw XML stream. What do you do with it ? I hope it helps. Regards. Karim Duran 2011/9/29 AThinerCoin > I'd like to pass an xml file to my gwt client. I crea

Re: How to use external Java beans on client

2011-09-28 Thread karim duran
the step 3), clic on the jar you just added -> javadoc location -> browse to the folder where you unzip the source. And it's done. I hope it helps. Regards. Karim Duran 2011/9/28 David > I need to use Java beans (classes with getters and setters) from an > external jar-f

Re: How To test Application an emulate many users

2011-09-28 Thread karim duran
ormal user. WebLoad record your surf on the application ( there is a record button ) into a script. 5) Then, stop recording, and replay with 1, 100, 1000 users The tool record load average, request time, etc..and produce high quality report. I hope it helps. Regards. Karim Duran. 2011/9

Re: JSON

2011-09-20 Thread karim duran
Hi Facundo, Did you try Google Gson : http://code.google.com/p/google-gson/ Have a look, maybe it can help you. Regards. Karim Duran 2011/9/20 Facundo Schwindt > Hi Everyone. > > Anyone knows which are the best option for JSON Serialization and > Deserialization ? > I

Re: EJB integration in GWT-jBoss-project

2011-09-15 Thread karim duran
ere is a 'Product.class' and 'sung.app.kylintv.product' package. Sometimes Eclipse War exportation tool don't include package or classes with compilation warnings. 2) Of course GWT applications work with EJB...So in my opinion EJBs are not the problem. You'll tell me

Re: What about non Javascript sites?

2011-09-07 Thread karim duran
hope it helps. Regards. Karim Duran. 2011/9/7 Alexandre Dupriez > Hello, > > Could you please tell us more about the tier application you would > have to maintain? Which technology is used, if not Javascript? > > On 6 sep, 15:43, raks wrote: > > Hi, > > > >

Re: Developing GWT App using Tomcat

2011-09-06 Thread karim duran
stallation subfolder.( for me it's /usr/share/tomcat5.5/common/lib/mysql-connector-java-5.1.14-bin.jar ). I'm surprised that you can't debug your code !!! It should work, you should be abble to debug your application. I think something is missing to your project settings. I hope i

Re: GWT development is UNBEARABLY slow

2011-09-05 Thread karim duran
my application. You can really build a sophisticated application in few days. Once on server it run fast. Regards. Karim Duran 2011/9/5 John Wheeler > The cross-browser time-savings are completely diminished when you take into > account OOPHM or hosted mode development in ANY of t

Re: mailto: links in Google Chrome

2011-09-01 Thread karim duran
? Or in deploiement mode ? May be you can try to use a GWT link instead of hard coded HTML mailto link. I hope it helps. Regards Karim Duran 2011/9/1 melody > I am trying to implement mailto: links in my application. When I use > the mailto: link with the target attribute as shown belo

Re: Providing html contents directly to servlet

2011-08-31 Thread karim duran
out.write(xml.getBytes()); - out.close(); 3) register your servlet in web.xml ( servlet class, servlet mapping ) in order to let the J2EE container knows it exists 4) download Firefox liveHTTP and watch if you have a 404 or 500 http servor error, then investigate I hope it helps. Regards. Karim Duran

Re: Google logo's to brighten up the app.

2011-08-29 Thread karim duran
Hi Rohan If you want a "Google-logo-like" for your app or product : http://neswork.com/logo-generator/google-font Regards Karim Duran 2011/8/29 Rohan Chandiramani > Just a friendly bump, i would really like to know. > > -- > You received this message because you are su

Re: Google logo's to brighten up the app.

2011-08-29 Thread karim duran
Hi Sean If you want a "Google-logo-like" for your app or product : http://neswork.com/logo-generator/google-font Regards Karim Duran 2011/8/29 Sean > Just use Google Image search to get the logos. As long as you don't say you > drew it or its your product, you can u

Re: GWT + HttpServlets

2011-08-25 Thread karim duran
n order the J2EE container knows it exists 5) call your servlet with a url link in your web page : /getimage?imageid=123456 That's all. If you send me more information about what you want to do, i can help you more. GWT servlet extends standard HttpServlet, so methods are still available.

Re: Cross domain GWT RPC

2011-08-24 Thread karim duran
main2.net *OK works in all cases* <--- <--- I hope it helps. Regards Karim Duran 2011/8/24 joe > d vide.bz writes: > > > > > JSON or ProxyServlet is for me not an option. I need to transfert a > > network of

Re: Generating XML

2011-08-20 Thread karim duran
tring firstName, lastName; .../... constructor(s), getters, setters, methods omitted .../ @override public string toString() { // you can get class fields using introspection if you want to automate the process return "" + firstName + "" + "" + lastName + "";

Re: Embed pdf into gwt app

2011-08-15 Thread karim duran
lled plugins for your browser, just type url "about:plugins". Regards. Karim Duran 2011/8/15 P.G.Taboada > hello, > > I am tryring to display PDF files in my app. Unfortunately, Firefox > and Safari are downloading the PDF instead of showing them embedded. > > I tried &q

Re: onsubmit complete called in windows but problem in linux

2011-08-11 Thread karim duran
permissions are blurred, so as TOMCAT is installed as a service, may be it can write anywhere on Win filesystem. Try to check these points, may be it's the problem. The same issue can appear on other J2EE server ( JBOSS, WebSphere, GlassFish...). It's not related to GWT. I hope it helps.

Re: running gwt on websphere 6 and 7? confict of java version requirments?

2011-08-10 Thread karim duran
true ). that's why, may be, you get java.lang.UnsupportedClassVersionError I hope it helps. Regards. Karim Duran 2011/8/10 Elhanan > hi.. > > on one hand i see that there is a warning of running gwt on java lower then > 1.6, > however if i would like to use webspehre 6 or even 7 ,whic

Re: Storing User-Information in client

2011-08-09 Thread karim duran
p; 2) are independant from GWT, it's HTTP protocol specification. See the J2EE API documentation (HttpSession, HttpServletResponse) I hope it helps. regards. Karim Duran 2011/8/9 Ashwin Desikan > ** > Folks, > > What is the best way to store user information ( i require only

Re: Calling a Java Method from Handwritten JavaScript

2011-08-09 Thread karim duran
hat is happening. I used this methodology to track some jsni method behaviour, difficult to debug, from the point of view of java. I hope it helps. Regards. Karim Duran 2011/8/8 ASlak > I have some code in my host html page that I would like to call one of > my java methods from. &g

Re: component for editing an image

2011-08-08 Thread karim duran
t, and you can still use it. I hope it helps. Regards. Karim Duran. 2011/8/7 moa-code > Hi, > > I want a component that I can use to allow a user to draw a box or > circle over an image they have previously uploaded. I then want the > component to message the circle or squares

Re: Cannot open GWT classes with GWT Designer

2011-07-27 Thread karim duran
..) ? did you respect GWT project folders structure ? regards. karim duran 2011/7/27 Jordan Reynolds > I am using the GWT plugin along with GWT Designer on Eclipse 3.6. I > get the following error when trying to switch from "Source" to > "Design" view in GWT Designe