Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7809321
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T03:23:52+00:00 2026-06-02T03:23:52+00:00

I appear to be able to connect fine since new RestS3Service doesn’t throw an

  • 0

I appear to be able to connect fine since new RestS3Service doesn’t throw an exception.

However, when I try to do something like getBucket(“name”), then I get: Invalid class name: org.jets3t.service.utils.RestUtils$ConnManagerFactory

Any idea how to solve this?

Thanks!

My code:

    AWSCredentials awsCredentials = new AWSCredentials(awsAccessKey, awsSecretKey);
    S3Service s3Service = null;

    System.out.println("Credentials created, trying Service");

    try {
        s3Service = new RestS3Service(awsCredentials);
    } catch (S3ServiceException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

    System.out.println("Service connected, trying bucket grab");

    try {
        S3Bucket bucket = s3Service.getBucket("mrbucket");
        System.out.println("bucket grabbed: "+bucket.getName());
    } catch (S3ServiceException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

Output:

Credentials created, trying Service

Installer - Installer service created

Service connected, trying bucket grab

org.jets3t.service.S3ServiceException: Request Error: java.lang.IllegalStateException: Invalid class name: org.jets3t.service.utils.RestUtils$ConnManagerFactory
  at org.jets3t.service.S3Service.getBucket(S3Service.java:1911)
  at org.red5.core.Application.myFunction(Application.java:78)
  at org.red5.core.Application.appStart(Application.java:42)
  at org.red5.server.adapter.MultiThreadedApplicationAdapter.start(MultiThreadedApplicationAdapter.java:408)
  at org.red5.server.adapter.ApplicationAdapter.start(ApplicationAdapter.java:54)
  at org.red5.server.Scope.start(Scope.java:1170)
  at org.red5.server.Scope.init(Scope.java:905)
  at org.red5.server.WebScope.register(WebScope.java:207)
  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  at java.lang.reflect.Method.invoke(Method.java:597)
  at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeCustomInitMethod(AbstractAutowireCapableBeanFactory.java:1544)
  at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1485)
  at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1417)
  at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:519)
  at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:456)
  at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:293)
  at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
  at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:290)
  at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:192)
  at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:585)
  at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:895)
  at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:425)
  at org.red5.server.tomcat.TomcatLoader$1.run(TomcatLoader.java:577)
Caused by: java.lang.IllegalStateException: Invalid class name: org.jets3t.service.utils.RestUtils$ConnManagerFactory
  at org.apache.http.impl.client.AbstractHttpClient.createClientConnectionManager(AbstractHttpClient.java:308)
  at org.apache.http.impl.client.AbstractHttpClient.getConnectionManager(AbstractHttpClient.java:445)
  at org.apache.http.impl.client.AbstractHttpClient.createHttpContext(AbstractHttpClient.java:274)
  at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:797)
  at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:754)
  at org.jets3t.service.impl.rest.httpclient.RestStorageService.performRequest(RestStorageService.java:334)
  at org.jets3t.service.impl.rest.httpclient.RestStorageService.performRequest(RestStorageService.java:281)
  at org.jets3t.service.impl.rest.httpclient.RestStorageService.performRestGet(RestStorageService.java:981)
  at org.jets3t.service.impl.rest.httpclient.RestStorageService.listAllBucketsImpl(RestStorageService.java:1373)
  at org.jets3t.service.StorageService.listAllBucketsImpl(StorageService.java:1379)
  at org.jets3t.service.StorageService.listAllBuckets(StorageService.java:563)
  at org.jets3t.service.S3Service.listAllBuckets(S3Service.java:1367)
  at org.jets3t.service.S3Service.listAllBuckets(S3Service.java:84)
  at org.jets3t.service.StorageService.getBucket(StorageService.java:729)
  at org.jets3t.service.S3Service.getBucket(S3Service.java:1909)
  ... 24 more
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T03:23:54+00:00Added an answer on June 2, 2026 at 3:23 am

    It looks like org.jets3t.service.utils.RestUtils$ConnManagerFactory.class is missing from your class path. Do you have the entire JetS3t library available? There are about 19 jars in the library, RestUtils$ConnManagerFactory.class is in jet3t-0.8.1a.jar in the 0.8.1a version.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to be able to have default text like Enter content here... appear
It would appear that I am suffering from a new bug in IE7, as
There doesn't appear to be a generic implementation of OrderedDictionary (which is in the
I'd like to be able to restrict the ports used by my application to
My subclasses don't appear to be able to masquerade as the base class when
I don't appear to be able to use the onkeyup event to detect when
As the title says, when attempting to do folder.open() it fails, doesn't throw an
I am trying to connect to mysql database. I am using try catch while
I have an adobe connect account in which I am able to create a
I normally would connect files like this with a symlink to outside the project

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.