Cannot find JavaBean?

Created JSP program that calls a javabean but for some reason it cannot find the javabean class.
here is the JSP that tries to do the import (This jsp sits in C:\jakarta-tomcat-4.0.3\webapps\webdav\myJSPs):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@page import="accsp.application.*" %>
<html>
<head>
<title>Add ACCSP Application for Non-Confidential Data</title>
</head>
<body>
<jsp:useBean id="accapp"
class="accsp.application.NonConfBean"
scope="request" />
<jsp:setProperty name="accapp" property="*"/>
</jsp:useBean>
<BR>
<% accapp.updateDatabase(); %>
<jsp:forward page="NonconfPresentation.jsp" />
</body>
</html>
I have a package defined called NonConfBean.java compiled to NonConfBean.class and it looks something like this:
package accsp.application;
import java.sql.*;
public class NonConfBean{
String memberid, first, last, datebox, affiliation, address;
String suite, city, state, zip, phone, fax;
String email, comments, interest;
public void setMemberid(String inputMemberid){
memberid = inputMemberid;
public String getMemberid(){
return memberid;
public void setFirst(String inputFirst){
first = inputFirst;
I have put NonConfBean.class in the following directories just to make sure I am covering all bases:
1. C:\accsp\application
2. C:\j2sdk1.4.0\accsp\application
3. C:\jakarta-tomcat-4.0.3\accsp\application
4. C:\jakarta-tomcat-4.0.3\webapps\examples\WEB-INF\classes\accsp\application
Here is my classpath: .;C:\j2sdk1.4.0\lib\tools.jar;C:\accsp\application;C:\j2sdk1.4.0\accsp\application;C:\jakarta-tomcat-4.0.3\accsp\application;C:\jakarta-tomcat-4.0.3\webapps\examples\WEB-INF\classes\accsp\application
error message looks like this:
org.apache.jasper.JasperException: Unable to compile class for JSPNote: sun.tools.javac.Main has been deprecated.
C:\jakarta-tomcat-4.0.3\work\localhost\webdav\myJSPs\addaccspapp$jsp.java:3: Package accsp.application not found in import.
import accsp.application.*;
^
1 error, 1 warning
Why am I getting this error message? Frustrated new jsp developer....

You need to point your classpath to the root directory of your package. So do these things
1) Get rid of all but one copy of your NonConfBean.class
2) Whichever you decide to keep, probably the ...\WEB-INF\classes\accsp\application\NonConfBean.class, then put that root in your classpath. By root, i mean the last directory before your package directory structure begins. In this case, you just need the ...\WEB-INF\classes directory in your classpath.
Here's why. The package name in your class tells Java where to look for the file. If you tell it that you want to import application.accsp.* then it's going to look through each directory in your classpath, and then look for the directory structure /application/accsp. So, in your example it would actually be trying to find a package in the directory structure ...\WEB-INF\classes\application\accsp\application\accsp. This is obviously not what you want.

Similar Messages

  • Cannot find JavaBean class?

    Created JSP program that calls a javabean but for some reason it cannot find the javabean class. I moved the NonConfBean.class and NonConfBean.java modules to the directory: C:\jakarta-tomcat-4.0.3\webapps\examples\WEB-INF\classes. Also, I modified my CLASSPATH to the following: .;C:\j2sdk1.4.0\lib;C:\jakarta-tomcat-4.0.3\webapps\examples\WEB-INF\classes.
    Here is the JSP:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <%@ page import="accsp.application.*"%>
    <head>
    <title>Add ACCSP Application for Non-Confidential Data</title>
    </head>
    <body>
    <jsp:useBean id="accapp"
    class="accsp.application.NonConfBean"
                                  scope="request" />
    <jsp:setProperty name="accapp" property="*"/>
    <BR>
    <% accapp.updateDatabase(); %>
    <jsp:forward page="NonconfPresentation.jsp" />
    </body>
    </html>
    And here is the error:
    org.apache.jasper.JasperException: Unable to compile class for JSPNote: sun.tools.javac.Main has been deprecated.
    C:\jakarta-tomcat-4.0.3\work\localhost\webdav\myJSPs\addaccspapp$jsp.java:3: Package accsp.application not found in import.
    import accsp.application.*;
    ^
    1 error, 1 warning
    If I take out the import I receive the following error:
    org.apache.jasper.JasperException: Unable to compile class for JSPNote: sun.tools.javac.Main has been deprecated.
    An error occurred between lines: 7 and 9 in the jsp file: /myJSPs/addaccspapp.jsp
    Generated servlet error:
    C:\jakarta-tomcat-4.0.3\work\localhost\webdav\myJSPs\addaccspapp$jsp.java:60: Class accsp.application.NonConfBean not found.
    accsp.application.NonConfBean accapp = null;
    Why is this happening?

    Yes I have put NonConfBean.class in the following directories just to make sure I am covering all bases:
    1. C:\accsp\application
    2. C:\j2sdk1.4.0\accsp\application
    3. C:\jakarta-tomcat-4.0.3\accsp\application
    4. C:\jakarta-tomcat-4.0.3\webapps\examples\WEB-INF\classes\accsp\application
    Here is my classpath: .;C:\j2sdk1.4.0\lib\tools.jar;C:\accsp\application;C:\j2sdk1.4.0\accsp\application;C:\jakarta-tomcat-4.0.3\accsp\application;C:\jakarta-tomcat-4.0.3\webapps\examples\WEB-INF\classes\accsp\application
    And here is the JSP that tries to do the import:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <%@page import="accsp.application.*" %>
    <html>
    <head>
    <title>Add ACCSP Application for Non-Confidential Data</title>
    </head>
    <body>
    <jsp:useBean id="accapp"
    class="accsp.application.NonConfBean"
                                  scope="request" />
    <jsp:setProperty name="accapp" property="*"/>
    </jsp:useBean>
    <BR>
    <% accapp.updateDatabase(); %>
    <jsp:forward page="NonconfPresentation.jsp" />
    </body>
    </html>
    And here is the error message:
    org.apache.jasper.JasperException: Unable to compile class for JSPNote: sun.tools.javac.Main has been deprecated.
    C:\jakarta-tomcat-4.0.3\work\localhost\webdav\myJSPs\addaccspapp$jsp.java:3: Class accsp.application.NonConfBean not found in import.
    import accsp.application.NonConfBean;

  • Cannot find any information on property 'Name' in a bean of type 'UserBean'

    Hello,
    I was trying to solve this problem myself but never got through, its really routine. So please can you see this error message, html file, jsp file and say if there are mistakes or if I need to add something else somewhere?
    Error
    org.apache.jasper.JasperException: Cannot find any information on property 'Name' in a bean of type 'UserBean'
    HTML
    <html>
    <head>
    <title>jsp test</title>
    </head>
    <body bgcolor ="white">
    <form action ="course.jsp" method ="post">
    <table>
    <tr><td>userName:</td>
    <td><input type="text"      name ="Name">
    </td>
    </tr>
    <tr>
    <td>userID:</td>
    <td><input type ="text" name ="ID"></td>
    </tr>
    <tr>
    <td>userAddress</td>
    <td><textarea name ="Description"></textarea></td>
    </tr>
    <tr>
    <td><input type ="submit" name ="submit"></td>
    </table>
    </form>
    </body>
    </html>
    JSP
    <%@ page language="java" contentType="text/html" %>
    <html>
    <body bgcolor="white">
    <jsp:useBean id="courseBean" class="UserBean">
    <jsp:setProperty name="courseBean" property="*" />
    </jsp:useBean>
    The following was done:
    <jsp:getProperty name="courseBean" property="Name" />
    <jsp:getProperty name="courseBean" property="ID" />
    <jsp:getProperty name="courseBean" property="Description" />
    </body>
    </html>
    JAVABEAN:
    public class UserBean implements Serializable{
    private String Name;
    private String ID;
    private String Description;
    public UserBean(){
    public void setName(String Name){
    this.Name=Name;
    public String getName(){
    return ID;
    public void seID(int userID){
    this.ID=ID;
    public int getUserID(){
    return ID;
    public void setDescription(String Description){
    this.Description=Description;
    public String getDescription(){
    return Description;
    Thank you in advance
    Ajlear

    Use a lower case initial on a bean property name.
    Instead of:
    <jsp:getProperty name="courseBean" property="Name" />try:
    <jsp:getProperty name="courseBean" property="name" />The same will apply to other properties. Also, make sure you use the lower case initial on form field names. e.g. <input type="text" name ="name"> for use in <jsp:setProperty name="courseBean" property="*" />

  • Cannot find symbl method update Date(int,java.util.Date)

    I get following error
    cannot find symbl method update Date(int,java.util.Date) on compling class called GuestDataBean at line ( rowSet.updateDate( 4, guest.getDate() ); ).
    GustBean.java. I need help on why I get it.
    // JavaBean to store data for a guest in the guest book.
    package com.deitel.jhtp6.jsp.beans;
    import java.util.*;
    public class GuestBean
       private String firstName;
       private String lastName;
       private String email;
       private Date date;
       private String message;
       //Constructors
       public GuestBean(){
            public GuestBean(String firstname, String lastname, String email,Date date,String message){
                 this.firstName=firstname;
                 this.lastName=lastName;
                 this.email=email;
                 this.date=date;
                 this.message=message;
       // set the guest's first name
       public void setFirstName( String name )
          firstName = name; 
       } // end method setFirstName
       // get the guest's first name
       public String getFirstName()
          return firstName; 
       } // end method getFirstName
       // set the guest's last name
       public void setLastName( String name )
          lastName = name; 
       } // end method setLastName
       // get the guest's last name
       public String getLastName()
          return lastName; 
       } // end method getLastName
       // set the guest's email address
       public void setEmail( String address )
          email = address;
       } // end method setEmail
       // get the guest's email address
       public String getEmail()
          return email; 
       } // end method getEmail
       public void setMessage( String mess)
          message = mess;
       } // end method setEmail
       // get the guest's email address
       public String getMessage()
          return message; 
       } // end method getEmail
       public void setDate( Date dat )
          date = dat;
       } // end method setEmail
       // get the guest's email address
       public Date getDate()
          return date; 
       } // end method getEmail
    } // end class GuestBean
    GuestDataBean.java/**
    * @(#)GuestDataBean.java
    * @author
    * @version 1.00 2008/7/18
    // Class GuestDataBean makes a database connection and supports
    // inserting and retrieving data from the database.
    package com.deitel.jhtp6.jsp.beans;
    import java.sql.SQLException;
    import javax.sql.rowset.CachedRowSet;
    import java.util.ArrayList;
    import com.sun.rowset.CachedRowSetImpl; // CachedRowSet implementation
    import java.sql.*;
    public class GuestDataBean
       private CachedRowSet rowSet;
       // construct TitlesBean object
       public GuestDataBean() throws Exception
          // load the MySQL driver
          Class.forName( "org.gjt.mm.mysql.Driver" );
          // specify properties of CachedRowSet
          rowSet = new CachedRowSetImpl(); 
          rowSet.setUrl( "jdbc:mysql://localhost:3306/virsarmedia" );
          rowSet.setUsername( "root" );
          rowSet.setPassword( "" );
           // obtain list of titles
          rowSet.setCommand(
             "SELECT firstName, lastName, email,date,message FROM guest" );
          rowSet.execute();
       } // end GuestDataBean constructor
       // return an ArrayList of GuestBeans
       public ArrayList< GuestBean > getGuestList() throws SQLException
          ArrayList< GuestBean > guestList = new ArrayList< GuestBean >();
          rowSet.beforeFirst(); // move cursor before the first row
          // get row data
          while ( rowSet.next() )
             GuestBean guest = new GuestBean();
             guest.setFirstName( rowSet.getString( 1 ) );
             guest.setLastName( rowSet.getString( 2 ) );
             guest.setEmail( rowSet.getString( 3 ) );
             guest.setDate( rowSet.getDate( 4 ) );
             guest.setMessage( rowSet.getString( 5 ) );
             guestList.add( guest );
          } // end while
          return guestList;
       } // end method getGuestList
       // insert a guest in guestbook database
       public void addGuest( GuestBean guest ) throws SQLException
          rowSet.moveToInsertRow(); // move cursor to the insert row
          // update the three columns of the insert row
          rowSet.updateString( 1, guest.getFirstName() );
          rowSet.updateString( 2, guest.getLastName() );
          rowSet.updateString( 3, guest.getEmail() );
          rowSet.updateDate( 4, guest.getDate() );
          rowSet.updateString( 5, guest.getMessage() );
          rowSet.insertRow(); // insert row to rowSet
          rowSet.moveToCurrentRow(); // move cursor to the current row
          rowSet.commit(); // propagate changes to database
       } // end method addGuest
    } // end class GuestDataBean

    This isn't a JSP question, it better belongs in the JavaProgramming, or JDBC forums.
    But the problem is because the updateDate method uses a java.sql.Date object and you are giving it a java.util.Date object. You have to convert from java.util.Date to java.sql.Date. See: [the api for java.sql.Date|http://java.sun.com/javase/6/docs/api/java/sql/Date.html] .
    Edited by: stevejluke on Jul 21, 2008 5:43 PM

  • Cannot find PortableRemoteObject

    Greetings:
    I am attempting to compile an EJB test client using the Sun tools. I am running on a Red Hat Linux environment. My classpath is as follows:
    CLASSPATH=/home/work/research/jdk1.3.1_01
    and I am attempting to do the compile using compile.sh, which contains the following script:
    J2EE_HOME=/home/work/research/j2sdkee1.3
    WKHOME=/home/work/research/testbean/practice1
    CPATH=.:$J2EE_HOME/lib/j2ee.jar:$WKHOME/ClientJar1.jar
    javac -classpath "$CPATH" TestClient1.java
    Note that TestClient1.java is in the same directory as compile.sh. ClientJar1.jar is the client jar generated when I used deploytool to deploy my test Javabean.
    When I run the script, I get the following error message:
    "TestClient1.java:1: error:Cannot find type "javax/rmi/PortableRemoteObject"
    I have searched through j2ee.jar, rt.jar, and a number of other jar files throughout the SDK and the J2EE. I can find no reference to PortableRemoteObject.
    Have I found a bug in JDK1.3? If not, then how do I include this class so I can compile my files???
    -Factor Three

    Derek:
    I do not know why I didn't find it before, having looked at rt.jar before, but that seems to have solved my problem. I must have been looking at the wrong rt.jar (the one I searched wasn't in the jre directory) or maybe I screwed up my grep call. Regardless, I can compile now.
    Of course, now I have a runtime problem, but that is a different matter.
    Thanks.
    Factor Three

  • Compile error : Cannot find symbol

    hello, i'm having trouble compiling a bean that resorts to another bean's public operation. Im trying to make a shopping cart which takes individual item orders such as item name and quantity and place them within an array list called cart in another bean. The errors i get when im trying to compile is:
    cannot find symbol
    symbol : class OrderItem
    location: class beans.WidgetOrder
               public void setItem(OrderItem o){cart.add(o);}I've looked at other threads and heard that quicktime can intervein with the classpath, so i deleted that, and also checked that CLASSPATH is set to C:\Program Files\Java\jre1.6.0_04\lib\ext\QTJava which it is, but the javabeans are set in the same path so i don't know what difference that is.

    Are you using an IDE?
    Is the OrderItem class in the beans package?
    You should have a path structure like some/path/beans where the WidgetOrder.class file will reside inside the beans directory. If OrderItem is in the beans package, then when you compile you should use something like "javac -cp some/path WidgetOrder.java"

  • My itunes wont open and i cannot find an itunes .exe file

    my itunes wont open and i cannot find an itunes .exe file

    I have this same problem and when I go to the control panel to uninstall itunes, I can't do that either.  I have been trying to uninstall so I can reinstall.  Hopefully someone has an idea.

  • When I open up my emails and close them, they disappear and I cannot find them.  Where are they going?  Is there a setting that I have to change?

    Once I open up my emails they disappear and I cannot find them anymore.  Is there a setting that I need to change to stop this from happening?

    Are you tapping any of the icons at the of the Mail app after opening them, or do they disappear without you doing anything ? And if you have more than one account on the iPad, does it happen on your other accounts as well ?

  • VM created on Win 8.1 Pro Laptop cannot find win 7 iso file on USB

    VM cannot find USB to load Win 7       
    I have a Windows laptop with Win 8.1 Pro installed. I turned on Hyper-V and created a VM. Everything worked up to that point. I also downloaded the Win 7 iso and placed it on a USB thumb drive.  I also downloaded the Win 7 installer.
    When I "start" the VM, I get a black screen with a message the VM could not load an OS.
    It appears to me that the VM does not know where to look for the OS. I cannot find any way to tell it where to look.
    I spent over $300 for upgrades to Win 8.1 Pro and a licensed copy of Win 7 so I could run Win 7 on my laptop as I need it to run UPK (which is not compatible with Win 8).
    As a last resort I went to the Micrsoft store in Miami and offered to buy a Surface Pro 3 if they would install the VM and Win 7 on that for me. They said it was very easy to do and I would have no problems, etc., etc., etc. In other words they did not have
    a clue about what I was talking about.
    I hate to see over $3000 worth of hardware collecting dust on my closet shelf because I cannot use them. I am hopeful someone here can help a non-techie make this thing work.
    Thanks in advance,
    Dennis
    PS - Went to the Apple store last night and was shown a MacBook Air with Parallels installed. It was running Apple stuff on the Apple OS and MS Office 365 on Win 7. It was all very seamless so am leaning very much to going with Apple as a solution.

    You don't say that you attached the iso to the VM.  The easiest way to do
    that is to connect to the VM and then on the console, pull down the
    "Media" menu, Select "Insert Disk", then browse to the ISO and select it.
    Then under the "Action" menu, select "Reset".
    You can also mount an iso in the settings for the VM.
    Bob Comer

  • In the new Pages 5.0, what is the page break shortcut key. I cannot find the key as indicated on the drop down menu.

    in the new Pages 5.0, what is the page break shortcut key (it used to be the Fn + enter). I cannot find the (new) key as indicated on the drop down menu. Please help.

    Hi Bruce and fruhulda,
    ok, I found the keyboard viewer, it only shows the traditional symbol 'return'.  something like a sideway u-turn continued with the arrow under.  This is the Canadian or US keyboard. 
    btw thanks for your suggestion.

  • Can not receive Mac mail -error Outlook cannot find the server. Verify the server information is entered correctly in the Account Settings, and that your DNS settings in the Network pane of System Preferences are correct.  Account name: "MacMail"

    Can not receive Mac mail -error Outlook cannot find the server. Verify the server information is entered correctly in the Account Settings, and that your DNS settings in the Network pane of System Preferences are correct.  Account name: "MacMail"
    What are the correct mail account settings and more importantly the correct DNS settings
    Thank you for any help you may be able to provide
    Cheers
    Chris (iMac i7)

    Do not delete the old account yet. sign up for an iCloud account if you haven't.
    I understand .mac mail will still come through. Do not delete the old account yet.
    You cannot use .mac or MobileMe as type of Account, you have to choose IMAP when setting up, otherwise Mail is hard coded to change imap.mail.me.com to mail.me.com & smtp.mail.me.com to smtp.me.com, no matter what you try to enter.
    iCloud Mail setup, do not choose .mac or MobileMe as type, but choose IMAP...
    On second step where it asks "Description", it has to be a unique name, but you can still use your email address.
    IMAP (Incoming Mail Server) information:
              •          Server name: imap.mail.me.com
              •          SSL Required: Yes
              •          Port: 993
              •          Username: [email protected] (use your @me.com address from your iCloud account)
              •          Password: Your iCloud password
    SMTP (outgoing mail server) information:
              •          Server name: smtp.mail.me.com
              •          SSL Required: Yes
              •          Port: 587
              •          SMTP Authentication Required: Yes
              •          Username: [email protected] (use your @me.com address from your iCloud account)
              •          Password: Your iCloud password
    Also, you must upgrade your password to meet the new criteria:  8 characters, including upper and lower case and numbers.  If you have an older password that does not meet these criteria, when you try to setup mail on your mac, using all of the IMAP criteria listed above, it will still give a server error message.  Go to   http://appleid.apple.com         then follow directions to change your password, then go back to setting up your mail using the IMAP instructions above.
    Thanks to dpepper...
    https://discussions.apple.com/thread/3867171?tstart=0

  • I have downloaded the latest pages  update on my iPad, but my iMac still has version 4.3 and I cannot find out how to update it only desktop. When I try to send something from my iPad pages to via email to be opened on my desktop in Pages, it won't open P

    I have downloaded the latest pages update on my iPad, but my iMac still has Pages version 4.3, and I cannot find out how to update it on my desktop. When I try to send something from my iPad pages via email to be opened on my desktop in Pages, it won't open in Pages. I get a message that it can't be opened because the version is too old. I sent the document as a PDF and it worked. But I want to be able to use Pages back and forth. HOw do I update the Pages version on my desktop iMac?

    The file format used by the iOS versions of the iWork apps can only be read by the new iWork apps on your Mac - i.e. Keynote 6, Pages 5 & Numbers 3. Those versions for the Mac require Mavericks, OS X 10.9. The "too old" error on a Mac comes if you are trying to open an iWork '08 or earlier file in the newest apps. If you do have the newest apps you can open the files from your iPad.
    If you can't or don't want to upgrade to Mavericks & the newest iWork apps your best option would be to export/share the files from the iPad to a type an older version of iWork can read such as Word, text, Excel, etc.
    Or contact AppleCare. They made this mess, let them fix it.

  • I cannot find my contact info after moving to iCloud, i cannot find my contact info after moving to iCloud

    i cannot find my contact info after moving to iCloud, i cannot find my contact info after moving to iCloud, i'm using PC

    Please try clearing cache and cookies. If that doesn't help you can try disabli9ng add-ons and see if it help. [[Safe Mode]] is to disabled add-ons.

  • I have installed Adobe packages and cannot find the Acrobat extension folder please advise how can I get these applications to load onto my computer?

    I have installed Adobe Creative Cloud for teams CC Packages which says that Acrobat XI Pro is installed. Your support page says it does not install Acrobat and I have to look in the Extensions folder for an MSI file.  I have run a number of searches and  cannot find the Acrobat extension folder please advise how can I get these applications to load onto my computer?
    Also I now administer the teams and have accepted the invitation to I received to be a team member and download the apps.  The admin page shows that I have been sent an invitation but does not show my account as "ACtive" unlike my other team members.  I tried to use the link in the invite to accept it become active but the link displayed an error saying I had already accepted the invite... why is no account not active?
    Finally what other product downloads in Creative Cloud do not actually download as part of the Creative cloud Packager for downloading the apps? e.g. acrobat and what else?

    My apologies Eadeszoo I believe our support agents are unavailable on January 1.
    Are you able to copy the contents of the DVD to your computer?  Are you receiving any particular error messages when you are trying to install?  Finally which operating system are you using?

  • Cannot find any of the links under menu

    Hi guys,
    I made a installation of PT8.51 on Oracle11gR2 on Win2k8R2 64-bit.All scripts ran successfully.Everything went fine.Iam using 2 machines i.e. one as an application server and other as an database server.I configured the application server and booted it.I configured the PIA and i logged into it but to my surprise i cannot find any of the links or anything under the menu.Why is it.Do i have to run any scripts to grant the user PS some permission to access the menu or what??Pls help me.Do i have to make any further configuration on any of the servers?

    Thank you for your reply.No nic i have not managed for an upgrade.Is there any other way to check that i have got everything in my PIA.I doubt it may be something like the PS user is not granted the security to access any of the links.PLs advise what to do?

Maybe you are looking for

  • Should I wait to install Windows 8 on my MacBook Pro?

    I heard that I should wait to instal Windows 8 on my mac and let the drivers update before I do so. If I install Windows, and then the drivers update, will I be able to update my drivers or will it be too late? The macbook pro is early 2011 if that m

  • USB hard drive is not recognized on MBP running Lion

    Hello, I have: - Freecom ToughDrive Pro USB hard drive - New MBP running Lion 10.7.3 When I plug the disk in an USB port in the MBP, the light that indicates operation starts blinking but very lighltly colored and the disk is not recognized by the co

  • Nvidia card better for Photoshop?

    Which Apple stock card is better for Photoshop? Is there a significant difference? Would Nvidea be better than both? Best all-purpose card for Photoshop, video, 3D modeling?

  • Jdbc adapter:unable to locate a suitable JDBC driver

    Hi,gurus:    My scenario is jdbc to file.    Ater I activated the scenario,there was an error occured in RWB: " Unable to locate a suitable JDBC driver".But we have deployed relavant driver in SDM,so why did it happen?Any help will be appreciated!

  • Thunar: incorrect sort order

    Hello, everyone. Guys, maybe any of you encountered with that problem in Thunar... especially if you use cyrillic letters in file or folder names. I have the latest version of Thunar (1.4.0) installed, and it turns out it incorrectly sorts contents o