Re: Exposing my GWT API via web/RESTful service - can it be done (easilyish)?

2018-05-31 Thread Jens
> If yes: Is it possible to add Swagger UI for existing GWT-RPC POST > requests? > No. You would need to make a REST API using the OpenAPI specification (swagger) and let that REST API call your GWT-RPC services. GWT-RPC isn't REST / JAX-RS. -- J. -- You received this message because you

Re: Exposing my GWT API via web/RESTful service - can it be done (easilyish)?

2018-05-31 Thread Konstantin Chvilyov
Thank you Thomas, Is there such thing as "GWT-RPC POST" ? If yes: Is it possible to add Swagger UI for existing GWT-RPC POST requests? There's no such thing as "GWT-RPC REST", so no. > -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscrib

Re: Exposing my GWT API via web/RESTful service - can it be done (easilyish)?

2018-05-31 Thread Thomas Broyer
On Thursday, May 31, 2018 at 9:25:56 AM UTC+2, Konstantin Chvilyov wrote: > > Hi Richard, > Have you succeed? > Is it possible to add Swagger UI for existing GWT-RPC REST requests? > There's no such thing as "GWT-RPC REST", so no. -- You received this message because you are subscribed to the

Re: Exposing my GWT API via web/RESTful service - can it be done (easilyish)?

2018-05-31 Thread Konstantin Chvilyov
Hi Richard, Have you succeed? Is it possible to add Swagger UI for existing GWT-RPC REST requests? -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolki

Re: XML parser google.gwt.xml.client.XMLParser - can it be configured not to accept DTD?

2012-05-21 Thread Thad
GWT's com.google.gwt.xml.client is a very simple DOM tool. There's no SAX, no DTD, and (most painfully) no XPath. On Thursday, May 17, 2012 5:13:10 AM UTC-4, chico4 wrote: > > Hi, > > My question is regarding the XML Parser of google: > com.google.gwt.xml.client.XMLPar

Re: XML parser google.gwt.xml.client.XMLParser - can it be configured not to accept DTD?

2012-05-20 Thread chico4
Anyone ...? On Thursday, May 17, 2012 12:13:10 PM UTC+3, chico4 wrote: > > Hi, > > My question is regarding the XML Parser of google: > com.google.gwt.xml.client.XMLParser. Can it be configured to disallow > external doctype or doctype at all? > > As i understand SAXPar

XML parser google.gwt.xml.client.XMLParser - can it be configured not to accept DTD?

2012-05-17 Thread chico4
Hi, My question is regarding the XML Parser of google: com.google.gwt.xml.client.XMLParser. Can it be configured to disallow external doctype or doctype at all? As i understand SAXParser has that option with setFeature("http://apache.org/xml/features/disallow-doctype-decl";,

Re: Exposing my GWT API via web/RESTful service - can it be done (easilyish)?

2010-12-26 Thread Richard Berger
Thanks to all for the feedback - just wanted to share some reactions 1. I was surprised by the lack of responses re: restlets - that seemed to be a promising technology 2. Some of the suggestions/links seemed a little bit over my head - but that is probably just because my head is at a pretty l

Re: Exposing my GWT API via web/RESTful service - can it be done (easilyish)?

2010-12-21 Thread zixzigma
Two great open-source projects I came across today are: RestyGWT http://restygwt.fusesource.org/documentation/index.html GWT-JSON-CommandPattern http://code.google.com/p/gwt-json-commandpattern/ they are pretty straight forward with clean API. -- You received this message because you are subsc

Re: Exposing my GWT API via web/RESTful service - can it be done (easilyish)?

2010-12-21 Thread Sean
I have used GWTRPCCommLayer with much success. I have my normal GWT App on the web, and I also have a service running on my home PC that also calls some of my RPC functions to find status, keep things updated, etc., -- You received this message because you are subscribed to the Google Groups

Re: Exposing my GWT API via web/RESTful service - can it be done (easilyish)?

2010-12-20 Thread Gal Dolber
You can manage to use gwt's serialization with rest. Checkout this post: http://timepedia.blogspot.com/2009/04/gwt-rpc-over-arbitrary-transports-uber.html On Mon, Dec 20, 2010 at 8:13 PM, zixzigma wrote: > I am interested in the very same thing. > So far my questions have left unanswered. > > ht

Re: Exposing my GWT API via web/RESTful service - can it be done (easilyish)?

2010-12-20 Thread zixzigma
I am interested in the very same thing. So far my questions have left unanswered. http://groups.google.com/group/google-web-toolkit/browse_thread/thread/b86693200c8f3179 You can find similar thread here: http://groups.google.com/group/gwt-platform/browse_thread/thread/39bbc24842168f6a Based on my

Exposing my GWT API via web/RESTful service - can it be done (easilyish)?

2010-12-20 Thread Richard Berger
Apologies in advance if I am not using the right terminology in describing my question. English is my first language. But COBOL was my first programming language :). I am investigating using GWT/GAE for an upcoming project and one of the requirements is that we provide an engine that will be use

Re: GWT creates one JavaScript file for one application Can it be splitted into more than one?

2009-05-11 Thread Sumit Chandel
Hi Bhavik, The RunAsync feature Arthur mentioned above is most likely exactly what you need, however I feel obliged to mention the disclaimer with using code in the GWT trunk. The team is generally good about keeping the trunk stable and buildable, however, not all features may work as intended as

Re: GWT creates one JavaScript file for one application Can it be splitted into more than one?

2009-05-09 Thread Arthur Kalmenson
You have a couple of options, you could just create separate projects with different entry points, or, if you can use RunAsync which is in the GWT trunk. -- Arthur Kalmenson On Fri, May 8, 2009 at 7:25 AM, Bhavik wrote: > > Hello Friends, > > I have a doubt regarding creation of Javascript fi

GWT creates one JavaScript file for one application Can it be splitted into more than one?

2009-05-08 Thread Bhavik
Hello Friends, I have a doubt regarding creation of Javascript file, for a particular GWT Web Application. How much number of javascript files or how much big a java script file would be created for one GWT Application. If in case a very large Enterprise application has to be created in GWT then

GWT creates one JavaScript file for one application Can it be splitted into more than one?

2009-05-08 Thread Bhavik
Hello Friends, I have a doubt regarding creation of Javascript file, for a particular GWT Web Application. How much number of javascript files or how much big a java script file would be created for one GWT Application. If in case a very large Enterprise application has to be created in GWT then

GWT creates one JavaScript file for one application Can it be splitted into more than one?

2009-05-08 Thread Bhavik
Hello Friends, I have a doubt regarding creation of Javascript file, for a particular GWT Web Application. How much number of javascript files or how much big a java script file would be created for one GWT Application. If in case a very large Enterprise application has to be created in GWT then

Re: can it be ?

2009-01-04 Thread eastgate
you can create a new module for test.vo.example. For example, create a .gwt.xml at test.vo package. At your existing gwt.xml, add the following code ... ... .. .. On Jan 3, 7:26 pm, ji

can it be ?

2009-01-03 Thread jimmy6
How can i do this . I just want the following sub package included. Can? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to Google-Web-Toolkit@googlegroup