Greetings,
I am attempting to create a login servlet that will authenticate against LDAP. Unfortunately, I'm getting the following when I try to connect:
javax.naming.AuthenticationException: [LDAP: error code 32 - NDS error: no such entry (-601)] at...
Hey all,
I am reposting this question from the PHP forum since I think I've run up against a MySQL privileges problem. But read on and maybe you can point me in the right direction! I've been trying to track down an answer to this for a couple of days now without success.
I have a website...
Alrighty, thanks for your time. I thought it was a PMA config issue but, like you say, it looks more and more like a MySQL issue. I'll move this question to the MySQL forum.
Okay...gave it a shot and got this message:
I got the same message using the "stduser" and "stdpass" properties.
I then tried the "controluser" and "controlpass" properties and got:
Am I missing something?
Ah...interesting...
So, would that be these 2 lines...
$cfgServers[1]["user"] = 'my_user_id';
$cfgServers[1]["password"] = 'my_super_secret_password';
...in the config.inc.php file?
Thanks for your reply!
UPDATE:
I downloaded and installed MySQL Administrator. As with phpMyAdmin I'm still unable to view my databases, but now I get an error message that says "Access denied: Must have SHOW DATABASES privilege to perform this action" or something to that effect.
Am I correct in assuming that this...
Hey all,
I've been trying to track down an answer to this for a couple of days now without success. I'm hoping someone here can point me in the right direction.
I have a website hosted by netINS.net which has MySQL but no database admin interface. [ponder] So, I checked with them to make sure...
I would think the jsp scripting should work. [ponder]
What is the scope of "something"? Is it in request or session scope? You might try
request.getSession().getAttribute("something")
or even
<%
String foo = request.getSession(false).getAttribute("something1");
String bar =...
This is a little old, so you may have found the answer to your question. However, just in case you haven't, you might want to check the id attribute of your logic:iterate tag. The id should match an indexed getter and setter method in you formbean and then each of your editable fields should...
Alrighty...I discovered that you don't have to override anything. When you iterate on the vector of objects, you just have to declare the type and give it an id that matches your indexed getter and setter methods, then set indexed equal to true on your html form object properties. Pretty...
I don't believe that's accurate...
My understanding is that when the form is initially created, so is the form bean with the default values (in this case, streetNameLength = 0; ). So, as long as the form exists in the jsp that he uses the logic tags in, the property is available without...
I have an actionform with a property that is a vector of objects which extend a superclass. I am having difficulty accessing the properties of the child class (objects in the vector) which are inherited from the superclass. My question is, do the inherited properties have to have the getter...
If you want to do it in struts you could create a property in you actionform for the length of the streetName:
private int streetNameLength = 0;
public int getstreetNameLength {
return this.streetName.length();
}
and then use the <logic:greaterThan> tag:
<logic:greaterThan...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.