Yes. I actually said that in my original questions, since my research pointed to the read-only issue. Thanks for the quick response.
Type: Posts; User: bdrhoa; Keyword(s):
Yes. I actually said that in my original questions, since my research pointed to the read-only issue. Thanks for the quick response.
Well, I looked at the properties of the STS folder and it looked like it was marked as read only. I unchecked it and told windows to apply the change to all subfolders and files. Unfortunately, it...
I've just rebuilt my Windows 7 machine. Installed STS successfully. But when I try to add the Grails and Groovy extensions, I get the following error. I am doing the installation as an Administrator....
Hi,
Cloud Foundry is working nicely as a demo site now that I gave it enough memory. But the STS plugin is making me crazy! Every time I made a change, it tries to build a war.
How do I turn...
FYI - Every once in a while, when trying to hit http://ibidem.cloudfoundry.com/ I get:
502 Bad Gateway
nginx
Yes, I think prod should be the default. I didn't really even know there where 2 different things. (I've been using NetBeans and just recently stated using STS.)
Anyway, since "run on server"...
Perfect! Thanks!
I assume that's a global change. Normally I want the environment to be dev. When you do grails war, the environment is set to prod. But deploying to CF, the war is made automatically, but the...
It looks like the war of a grails app that gets deployed to cloud foundry from STS has the environment set to development. How do I get it set to production?
I'm just getting started with STS (for Grails development) and Mylyn. I've been able to connect Mylyn to trac and create a query. But I the query screen has type and priority disabled. Anyway around...
Does ROO provide anything like the Grails RICHUI plugin?
I've made some progress. First, for anyone else who might be confused by some of the same things I was, such as there not being any index.task and no resolution in the XML files. The resolution is...
That's what I'm having trouble getting to work. I'm sure I'm doing something wrong with the installation, but I don't what it could be. I'd think besides setting up the database, all I'd have to is...
I'm having a lot of trouble getting this to run. Can anyone give me a .war file or instructions on getting this going?
In general it seems like files and directories are missing, in the wrong the...
I'm trying to get the jpetstore example to work with mysql. I've created a database called jpetstore with the given schema and data. It's working fine. But when running jpetstore I get unknown...
I'm developing a web service (using xfire in Spring) to front end access to our ldap which I talk to with ldaptemplate.
I have ldaptemplate working well now, with the authentication credentials...
Never mind. It turns out the real problem was elsewhere in the code and data related.
My application takes some "external key", checks to see if there's an existing entry for it and if not, generates a new unique id and creates an entry in the LDAP. If the "external key" is already in...
That was it! My applicationcontext.xml now looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"...
My problem is I'm not getting any data back from ldaptemplate. When I make the same request (TAPexternalKey=320740168) in the gui, I get data back. The only difference I can see is the with gui I get...
I have the following code to do a subtree scope search:
tpinList = ldapTemplate.search("ou=identities","TAPexternalKey="+externalKey,2,new TPINAttributesMapper());
This is my...
I got it working!
I changed my applicationcontext.xml to
...
<property name="url" value="ldap://myldap.com:14000/" />
<property name="base" value="o=tap" />
...
I got to the LDAP server access log and that when I use ldamptemplate, the server is getting:
ADD dn="uid=991999723, ou=9, ou=identities, o=TAP,o=tap/o=tap"
instead of
ADD...
I'm using Spring with Xfire and LDAPTemplate to build a web service
that given some "external key (e.g. ssn)", creates a unique id in form
of a random 9 digit number (called a TPIN). The service...
I'm trying to understand what the connection between Spring and WebSphere could/should be. I'm new to both and a bit confused...
I love the base ideas in Spring. And when I've done Java in the...