I talked to the enterprise Architect at my company, he is responsible for monitoring the servers and making sure they have enough memory. He offered these...
Hi, I have following hierarchy in my application, SearchRequest extends BaseRequest Both these classes have 2 properties with same name, viz: __hashCodeCalc...
I was hitting some knotty issues with AMF traffic getting messy (my June 30th "Question on severity..." post)... ...so, I updated to the GDS-SEAM-196 version...
Sorry... cut-and-paste oversight... the "trace("onFault: " + event.toString());" message in my onResult handler should read "... onResult: ..." ... ...
I have a problem I encountered, plus a workaround. I get the following error when using Tide to return a List of POJOs from Seam (I have implemented...
Hi, If I don't wrap a class with an externalizer in granite-config.xml then Serialization works but on De-serialization I get ClassCast Exception. E.g. ...
Hi, You have basically 3 options: 1. Do NOT implement IExternalizable (as3) AND Externalizable (java) in your beans: you should not use any externalizer for...
Hi Frank, Thanks for the quick response. For option 3, can't the DefaultExternalizer be really default, meaning, if a bean does not implement Externalizable...
You need to add a name annotation to your customer entity. Then refer to it by that name, your code will then work as expected. i.e. @Name("customer") @Entity ...
I am working on Https enabling of my Application. I started with below changes to various files in our application Changed the Services-config.xml to add...
You have to enable https security in your web.xml (security-constraint with transport-guarantee confidential) and configure a https connector in your servlet...
Hi Franck! How area you? First i need to say, that you did nice work at GraniteDS, and i really appreciate your work. So.. i have found a little bug, but i...
Hi Pedro, Thanks for the hints! It's now commited in the trunk (with few modifications), please update and tell me if it works. Regards, Franck. ... it's a ......
Thanks for your help. Unfortunately this does not solve the problem. I still have the problem that in the end method i have a customer with name "Jimi". It...
Hi Franck... Great Job! Works fine now! Thank you! On Fri, Jul 4, 2008 at 7:51 AM, fwolff999 <franck.wolff@...> ... -- Pedro Gonçalves 031-8415 5423...
Hi Ralph, The problem is that your Customer entity has not been generated with the Tide template, which contains the necessary code to enable 'Managed...
You can see the GraniteDS Webcompiler in action in the Igenko backoffice (Widget tab) : http://igenko.org/igenko-bo/Index.swf The webcompiler is called via a...
Hi, Default encoding is already UTF-8... If you experience encoding problems, make sure your database and web servers are started with UTF-8 support. Regards, ...
Hi All, Playing around with GraniteDS ejb3 version I got the following issues when I try to call a service "getAllObject(Abstract ob)". 2008-07-07 13:56:25,053...
It seems that you are trying to send an as3 instance of AbstractEntity to the server, which is possible in as3 because there are no abstract classes. In Java...
It seems that while using GDS to access our stateful ejb3 session beans, the beans are being used as if they are stateless. I put a println inside the...
Hi, <scope>...</scope> is only used for pojo services so it won't change anything with ejbs. Normally, for each ejb destination, there should be only one jndi ...
The introduction of the scope xml attribute was just a test, this is our normal config (with some names removed): <service id="ContainerBrowser-service" ...
Hi (again), I didn't read carefully your mail so my first reply wasn't appropriate... The problem certainly comes from the cache used for this handle (ie: ...
Ok thank you Will this change have any adverse effects on the stateless beans we are using? I am a bit reluctant to check out all the source and begin building...