Here's an interesting one (well I think so)! I've got a standard gwt client -> rpc -> servlet (tomcat) arrangement. Which is working fine.
Now I want to push some events from another application running on the server (written in perl) to the servlets. I see that I can rpc to my java servlets using telnet, something like: POST /xxx/yyy HTTP/1.1 Host: gwt.example.com:8080 Content-Type: text/x-gwt-rpc; charset=utf-8 Content-Length: 373 5|0|12|http://gwt.example.com:8080/xxx/| 1EE3668A0B1A53C21471910BC1B900E7| com.example.gwt.client.controllers.interfaces.ApplicationInterface| sendUpdate|com.example.gwt.client.models.Update| com.example.gwt.client.models.Update/2498603623|[Ljava.lang.String;/ 2600011424|xxx|yyy||updateUserStatus|StatusController|1|2|3|4|1|5|6|7| 2|8|9|10|11|12| [the details in the rpc request are not important] How practical is it to generate such a request in the perl programme and push the POST requests to my servlets? Can anyone help me understand the details of the body in the above request? I guess otherwise I need to set up some kind of SOAP arrangement between this perl programme and the java servlets, but seeing as my servlets are already set up to receive gwt-rpc I thought why not use that. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
