As you found out there is not jetty.xml for GWT's internal Jetty. You have two choices:
Configure your own external Jetty with the -noserver flag http://www.gwtproject.org/doc/latest/DevGuideCompilingAndDebugging.html#How_do_I_use_my_own_server_in_development_mode_instead_of_GWT%27s Extend GWT's JettyLauncher to confire your SSL stuff programmaticly. I've done something similar to enable hotdeployment. See here: https://github.com/jbarop/gwt-hotdeployment/blob/master/gwt-hotdeployment/src/main/java/de/barop/gwt/HotDeploymentJettyLauncher.java 2013/8/15 Alp Yilancioglu <[email protected]> > Hello, > i am trying to integrate Bank Virtual Pos to my GWT project > for development i need to run my Project in GWT Dev Mode ( with SSL ) > > i googled a lot but i couldnt find a way to do it > > > i duplicated > > com.google.gwt.dev.shell.jetty.JettyLauncher.java and modified it but > didnt worked > > > > can some one please help me out how to enable GWT Dev Mode Jetty SSL? > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/google-web-toolkit. > For more options, visit https://groups.google.com/groups/opt_out. > -- Johannes Barop - Softwareentwicklung & Beratung Alsterdorfer Straße 573 DE-22335 Hamburg E-Mail: [email protected] Tel.: +49 40 807 907 37 Fax : +49 40 807 907 39 Mobil: +49 176 491 551 38 Web: http://www.barop.de Steuernummer: 49/012/01566 Umsatzsteuer-Identifikationsnummer gemäß §27 a Umsatzsteuergesetz: DE271106292 -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out.
