Questions tagged [errai]

Errai is a GWT-based framework for building rich web applications.

Errai provides a comprehensive framework and tools for building rich web applications, leveraging the GWT compiler. With standard server-side APIs, such as CDI in the browser, managing large web applications was never so easy.

115 questions
1
vote
0 answers

Errai 4.0 Beta 3 give this error "Encountered error when looking up JsType providers"

I am getting this error in chrome console while debugging using Eclipse and SDBG. Beside this error, the web app and page is functioning well. Any idea how to troubleshoot this? [SyncBeanManager] Encountered error when looking up JsType providers…
1
vote
2 answers

Use Errai Ui with GWT

I'd really like to use Errai UI(3.2.4) in my GWT (2.8) application. I already have one setup with an EntryPoint implementation and an onModuleLoad. I have restGWT setup and interacting with my server (which uses Jersey). All of the documentation I…
Troncoso
  • 2,343
  • 3
  • 33
  • 52
1
vote
1 answer

No proxy provider found for type only in dev mode, classic run is corect

I'm writing an application in Erra and I got into trouble. RPC calls using the application. When I start in normal mode, Vee running well, but when it will bring the best in dev mode throws Well proxy provider for the type found. And there is bug…
Andrew Sneck
  • 724
  • 9
  • 18
1
vote
0 answers

Is Errai using anything besides localStorage for offline persistence?

For an upcoming project, we're evaluating GWT / Errai as the foundation. As our application will be heavy in terms of data throughput and at the same time will often face offline use, we're worried about localStorage being a limiting factor - it…
Toastor
  • 8,980
  • 4
  • 50
  • 82
1
vote
0 answers

ERRAI Tutorial (3.1.1) error during deployment on Wildfly server

I am running the stock Errai-Tutorial (3.1.1) in Eclipse using Maven 3.2.1. It runs fine in SuperDev mode, but when I try to deploy it using 'clean package wildfly:deploy', everything compiles fine but I get an error during deployment (with the…
user4061565
  • 545
  • 1
  • 5
  • 16
1
vote
0 answers

How does GWT/Errai apps deal with Search Engine crawlers

In the specification here. A URL: www.example.com/ajax.html#!key=value Will become: www.example.com/ajax.html?_escaped_fragment_=key=value However, typical Errai applications, have this form ajax.html#!SomePage;key=value Is there a way for Errai to…
quarks
  • 33,478
  • 73
  • 290
  • 513
1
vote
1 answer

Making GWT Validation work

I have a working Errai GWT app (GWT version: 2.5.1, Errai version: 3.0.0.Final), merely adding the Errai Validation in the gwt.xml (after adding its dependencies in the POM):
quarks
  • 33,478
  • 73
  • 290
  • 513
1
vote
1 answer

Get static reference to Errai RequestDispatcher in service

I'm trying to upgrade the Errai version in an GWT project. We only use the errai bus, and previously we got the ErraiService from the ServletContext to get the RequestDispatcher and send messages. Upgrading from errai 2.0.Beta2 to 3.0.3, though,…
CorayThan
  • 17,174
  • 28
  • 113
  • 161
1
vote
1 answer

Using gwt widgets in errai ui

I would like to know if it is possible to use complex gwt widgets like MenuBar or TabLayoutPanel in errai ui. For example, how can I port the following uibinder to errai's ui template?
mendieta
  • 3,470
  • 2
  • 20
  • 23
1
vote
0 answers

Errai security with PicketLink

I have this CustomAuthenticator for user with Errai Security: public CustomAuthenticator extends BaseAuthenticator { @Override public void authenticate() { String userId = loginCredentials.getUserId(); String password =…
quarks
  • 33,478
  • 73
  • 290
  • 513
1
vote
0 answers

Adding errai-security breaks GWT app

When I add these to our app: When I run the app: [ERROR] Caused by: org.jboss.errai.bus.server.QueueUnavailableException: no…
quarks
  • 33,478
  • 73
  • 290
  • 513
1
vote
1 answer

PongWebSocketFrame unsupported by Internet Explorer

I've been developing a GWT application making use of the Errai Messaging. Everything worked fine until i enabled Websocket by adding "errai.bus.enable_web_socket_server=true" in the ErraiService.properties file. No problems showed up until i tried…
1
vote
0 answers

Remove name token from browser url

We have a website, where a user can open a layer to make payments. This layer is implemented with GWTP and Errai as a modal layer, which can be closed (means, we hide that layer). If we hide the layer, we still have the last name token in the URL…
dunni
  • 43,386
  • 10
  • 104
  • 99
1
vote
1 answer

Persisting 3rd party entities in browser storage with JPA

I have two projects (app.ui & models). models is a dependency in app.ui. There we have all the entity classes. app.ui is an errai project that uses JPA to save objects in the browser's storage. So, I'm following the documentation in terms of…
cristianmiranda
  • 130
  • 2
  • 11
1
vote
0 answers

GWT RequestFactory and Server Push?

1- I have already used the following frameworks (Event based client-server) on GWT projects, and works fine with RPC call architecture. GWT-Comet GwtEventService After searching, i found a lot of frameworks that treat the client server messaging…
naddame
  • 129
  • 2
  • 10