Active Posts

  • When migrating your application from JBoss 4.x to JBoss 5.x, some problems might occur.
  • Below is a list of some of these possible problems.
elad 02/08/2009 - 09:31

Hello again,

 

This time I want to talk about localization (a.k.a. i18n).

As Flex developers, as I assume you already know, all you have to do is create a *.properties file (say Messages.properties) and in it define keys with localized values, like:

columnHeaderName=Name

 

Then, in the main application mxml, you would define the resource bundles:

	<mx:Metadata>
		[ResourceBundle("Messages")]
	</mx:Metadata>

 

And basically you're done. All you need to do to use it, is use the ResourceManager class to access the localized value of the key.

Simple stuff, right?

 

Not so with GWT...

sefi 29/01/2012 - 18:51

Recently, I had to create a custom component that does live filtering on data presented in a grid.

 

If you are reading this series, you probably know how this can be done in Flex. If you don't, a quick google search will probably point you in the right direction. Enough to say that in envolves a custom component to get the search criteria and a filter function on the grid's dataProvider ArrayCollection.

 

I was surprised this is relatively straight forward in GWT (using uiBinder and GXT 3.0)

sefi 15/01/2012 - 21:51

Kotlin is a language developed by JetBrains (who develop the Intellij Idea IDE). It aims to be an alternative to Java on the JVM and is developed so it will be easily supported by an IDE (obviously it will be supported by Idea very well)

ittayd 11/01/2012 - 07:41

Greeting ,

Just came on board Tikal (did not send yet a picture to lee)

 

I need a messaging queue implementation on tomcat

And I'm thinking of Jboss HornetQ.

 

Any one done it lately ?

 

Thanks,

Alon

alonm 09/01/2012 - 11:05
hagzag 20/11/2011 - 19:36
ALM

 Hi

 

I'm  trying to create Solr index from oracle db.

the trick is that i'm using multivalue field in solr, and expect from solr to split the value to multi value field.

here is my data-config.xml

<document name="doc">           
            <entity name="EBAYSE_CORE" transformer="RegexTransformer"
                      query="SELECT id,value1 FROM multivalue" >

                <field column="id" name="id" />
                <field column="value1" name="value1" splitBy="\;" />

            </entity>
        </document>

here is the schema.xml:

itaip 05/01/2012 - 16:30

Twitted by Tim Bray: "This is the kind of thing that keeps me from warming up to Scala"

http://eed3si9n.com/revisiting-implicits-without-import-tax

adi 03/01/2012 - 13:30

I upload the following jar into Nexus using GAV parameters:

google-api-client-1.6.0-beta.jar

GAV:
Group:com.google.api-client
Artifact:google-api-client
Version:1.6.0-beta

Once i'm done, this is waht i have in the repository:

/com/google/api-client/google-api-client/1.6.0-beta/google-api-client-1.6.0-beta-beta.jar.md5
/com/google/api-client/google-api-client/1.6.0-beta/google-api-client-1.6.0-beta-beta.jar.sha1
/com/google/api-client/google-api-client/1.6.0-beta/google-api-client-1.6.0-beta.pom
/com/google/api-client/google-api-client/1.6.0-beta/google-api-client-1.6.0-beta.pom.md5
/com/google/api-client/google-api-client/1.6.0-beta/google-api-client-1.6.0-beta.pom.sha1

liorb 29/12/2011 - 10:32

A new multijob plugin was created by Tikal ALM team.

Using this job you can add full hierarchy of Jenkins jobs that will be executed in sequence or in parallel.

When creating new Jenkins job you have an option to create MultiJob project. This job can define in the Build section phases that contains one job or more. All jobs belong to one phase will be executed in parallel (if there are enough executors on the node), and all jobs in phase 2 will be executed only after jobs in phase 1 are completed etc.

For example we create MultiJob project called jenkins-multijob-inherent that contains 3 multijob phases:

roni 15/09/2011 - 16:00