Cannot Get Java Business Service to Work

Hi,
This is my first time using Siebel Java Business Service and I cannot get it to work.
I followed all the steps: in
http://www.impossiblesiebel.com/2010/04/java-business-service-jbs-tutorial.html
1) used netbeans, Created the Java class with no package, created a jar file . I copied the jar file to my Tools/CLASSES directory
2) added a [JAVA] entry to my local client CFG. in the
[JAVA]
DLL = C:\Program Files\Java\jre6\bin\client\jvm.dll
CLASSPATH = D:\Siebel\8.1\Tools_1\CLASSES\Siebel.jar;D:\Siebel \8.1\Tools_1\CLASSES\SiebelJI_enu.jar;D:\classes;D :\Siebel\8.1\Tools_1\CLASSES\ImposSiebelXSLT.jar
VMOPTIONS = -Xrs -Djava.compiler=NONE
3) Created a BS based on CSSJavaBusinessService and added user property
@class
4) Execute the BS and I am always getting the error
Class name incorrect or does not extend SiebelBusinessService : ImposSiebelXSLT -- JVM Exception:java.lang.UnsupportedClassVersionError: ImposSiebelXSLT : Unsupported major.minor version 51.0(SBL-EAI-05010)(SBL-EXL-00151)
Can anyone please help!!!

in case anyone faces a similar problem. The issue was a mismatch of java versions. I compiled with Java 7 but the jvm.dll was pointing to JRE6. When I pointed it to JRE7 it worked

Similar Messages

  • Cannot get Java Web plugin to work in Safari.

    I have been using the JAva web plugin for a while, and managed to get past the problem with the Oracle Java 7 plugin successfully, but today, the Java web plugin is not working for me at all, and I'm struggling to find out why.
    When I visit java.com and run their detection page, afer about a minute, it comes back with "We are unable to verify if Java is currently installed and enabled in your browser."
    I've followed the advice at http://support.apple.com/kb/HT5559 on how to re-enable the old Java 6 web plugin, I've tried reinstalling the Oracle plugin... but no matter what I do (restarting Safari, enabling disabling Java in Safari preferences, rebooting the Mac), I still cannot get it working in Safari.
    This is a massive problem as website myself and my 20,000 colleagues use to log in to work remotely depends on the Java web plugin.  Right now (as in this morning)... the only option I have is to use a different OS (i.e. Windows). 
    Longer term, I really want to get this working on OS X again - any advice on further troubleshooting?

    Apple has barred Java from running on Macs, leaving companies that rely on Java plug-ins out in the cold.
    Apple blocked Java 7 Update 11 by adding it to the banned list in XProtect.
    This is the second time in two weeks that Apple has blocked Oracle's code from running on Macs. This time Java is blocked through Apple's XProtect anti-malware feature.
    Java has come under fire as the means by which hackers have been able to gain control of computers. In April 2012 more than 600,000 Macs were reported to have been infected with a Flashback Trojan horse that was being installed on people's computers with the help of Java exploits. Then in August Macs were again at risk due to a flaw in Java, this time around, there was good news for Mac users: Thanks to changes Apple has made, most of us were safe from the threat.
    Unwilling to leave its customers open to potential threats Apple has apparently decided it's safer to block Java entirely.
    Macs running OS X Snow Leopard and beyond are affected.

  • Cannot get java system call to work

    I am trying to make a system level call that will create a new user but have not been sucessful. I am reading the list of new users from newbousrs.txt file. Why am I getting the error message shown below? Here is my program:
    import java.io.*;
    public class ReadSource {
    public static void main(String[] arguments) {
    try {
    FileReader file = new FileReader("newbousrs.txt");
    BufferedReader buff = new BufferedReader(file);
    Runtime rt = Runtime.getRuntime();
    boolean eof = false;
    while (!eof) {
    String line = buff.readLine();
    if (line == null)
    eof = true;
    else
    System.out.println(line);
    Process proc = rt.exec("\\Blowfish\\droot\\Program Files\\Business Objects\\BusinessObjects 5.0\\supervsr.exe -USER xxxxx -PASS yyyy -IMPORTUSERS \\Blowfish\\droot\\accsp\\public\\newusers\\newbousrs.txt");
    buff.close();
    } catch (IOException e) {
    System.out.println("Error -- " + e.toString());
    There error I get is this:
    C:\jakarta-tomcat-4.0.3\webapps\webdav\WEB-INF\classes\accsp>java ReadSource
    NU,Public,Steve Mcnealy,Steve Mcnealy,U,N,N,Y,N,N,PC,F,Y,N,N
    Error -- java.io.IOException: CreateProcess: \Blowfish\droot\Program Files\Busin
    ess Objects\BusinessObjects 5.0\supervsr.exe -USER accsp -PASS fish -IMPORTUSERS
    \Blowfish\droot\accsp\public\newusers\newbousrs.txt error=3

    Just a guess....
    Program Files\\Business ObjectsSpace used in arguments in a command line command must have quotes around them. That includes the first argument.

  • Cannot get Java Query API to work

    I am trying to use the ultrasearch java api and am having no luck. I get this error:
    Exception in thread "main" oracle.ultrasearch.query.SearchException: WKG17005: connection failure: Closed Connection
    at oracle.ultrasearch.query.Instance.connect(Instance.java:383)
    at oracle.ultrasearch.query.Instance.getResult(Instance.java:561)
    at oracle.ultrasearch.query.Instance.getResult(Instance.java:725)
    at oracle.ultrasearch.query.Instance.getResult(Instance.java:677)
    at Test.search(Test.java:77)
    at Test.main(Test.java:92)
    Here is my code:
    oracle.ultrasearch.query.Instance searcher=new oracle.ultrasearch.query.Instance();
    Connection conn=getConnection();
    try {
    searcher.setConnection(conn);
    searcher.setInstanceName("ULTRASEARCH_DOTORG");
    oracle.ultrasearch.query.Request searchRequest=new oracle.ultrasearch.query.Request();
    oracle.ultrasearch.query.Query searchQuery=new oracle.ultrasearch.query.Contains("water", searcher.getMetaData());
    searchRequest.setQuery(searchQuery);
    oracle.ultrasearch.query.Result searchResults=searcher.getResult(searchRequest);
    } finally {
    conn.close();
    Note that "getConnection()" is using the standard OracleDataSource class supplied with the current 10g driver; I've used it to connect to other oracle databases without trouble. I am working within a standard Windows JDK 1.5 (also tried 1.4.2) environment.
    I've also tried using QueryInstance instead of Instance - exception and code follow:
    Exception in thread "main" oracle.ultrasearch.query.SearchException: WKG17005: connection failure: User credentials doesn't match the existi
    ng ones
    at oracle.ultrasearch.query.Instance.connect(Instance.java:383)
    at oracle.ultrasearch.query.Instance.getMetaData(Instance.java:432)
    at Test.search2(Test.java:89)
    at Test.main(Test.java:94)
    oracle.ultrasearch.query.QueryInstance searcher=new oracle.ultrasearch.query.QueryInstance();
    searcher.setConnectionString(jdbcURL);
    searcher.setUser(jdbcUserName);
    searcher.setPassword(jdbcUserPass);
    searcher.setInstanceName("ULTRASEARCH_DOTORG");
    oracle.ultrasearch.query.Request searchRequest=new oracle.ultrasearch.query.Request();
    oracle.ultrasearch.query.Query searchQuery=new oracle.ultrasearch.query.Contains("water", searcher.getMetaData());
    searchRequest.setQuery(searchQuery);
    oracle.ultrasearch.query.Result searchResults=searcher.getResult(searchRequest);
    Any ideas?

    As always I find the answer right after I post a question....
    This post explained it pretty well:
    Connection Pooling and QueryInstance
    My first example will work as long as I call Instance.setCloseConnection(false). Apparently the second example can only work in OC4J, although I haven't verified such.
    It would be a really good idea for Oracle to get it together and add this information to their JavaDocs.

  • Cannot Get Remote Desktop Service to Work

    On Windows 8.1 Pro 64-bit, we went to Remote tab and enabled Remote Desktop.   We entered into the Remote Desktop Users group two users who are local on the box.  One of those is local admin and the other is a standard user.  When we connect
    to this machine by remote desktop and then authenticate, we get a message from Windows that the Remote Desktop Users group needs to be able to login through Remote Desktop Services.    
    I looked in secpol.msc and the Local Policies | User Rights Assignment | Allow logon through Remote Desktop Services already has the Remote Desktop Users included.
    What could be going wrong here that might cause Remote Desktop to disallow authenticated users that match to the Remote Desktop users group?
    Will

    Hi,
    Please check whether two machines are in the same network environment. And make sure if
    Remote Desktop Services is running, you can follow these steps:
    Press Windows + R keys simultaneously, type services.msc then press
    Enter.
    Check the status of Remote Desktop Services.
    Roger Lu
    TechNet Community Support

  • Since upgrading my iPhone 5 to ios 7, I cannot get the internet, email to work on 3g.  I get the message ""could not activate mobile data network. You are not subscribed to a mobile data service".  How do I fix it?

    Since upgrading my iPhone 5 to ios 7, I cannot get the internet, email to work on 3g.  I get the message ""could not activate mobile data network. You are not subscribed to a mobile data service".  How do I fix it?
    I've contacted o2, tried all of their suggested updates and changes, reset my phone 3 times and still no luck.
    Any help appreciated.
    Thanks,
    Louisa

    Hi, l have the same problem, were you able to resolve?

  • I cannot get my iPad 2 to work with VPN provider.

    I cannot get my iPad 2 to work with my VPN service provider.  Using OS 4.3.3.  iPad purchased in the USA.  Have heard there are issues with iPad 2 and VPN support.  Any suggestions?

    You can try this ... hold down on the sleep button and the power button at the same time for about 10 seconds until you see the Apple logo on the screen, release the buttons and see if the iPad restarts and you can use it.

  • I cannot get bb attachment services back

    I cannot get bb attachment services back.  It is missing from apploader.  I think this is what I took off by mistake and it remove my external display.  Please help.  I have tried multiple suggestions to set to factory, but none worked for my BB Pearl Flip 8220 with v04.6 os.
    Solved!
    Go to Solution.

    Oh dear...we have two threads now going on with this OP....
    Sasi -- please choose one thread to work in and mark the other as solved...it's too confusing to work one issue in two threads...
    Thanks.
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • HT204380 I cannot get any FaceTime calls to work.

    I cannot get any FaceTime calls to work. If I do manage to talk to the other person, I only see myself. One only sees himself. One sees nothing. What are we doing wrong?
    Thanks.

    Sounds like a catch 22 situation. I rekon you are in the UK trying to use the 3 USB wimax stick.
    In anycase an iMac is a big machine to lug around. It's a difficult situation.
    If you have a neighbor, politely ask them if you can use their broadband for a short while. If this is not practical then call 3 and let them know your circumstances.
    I might be stepping on my own feet here…wait. You need Java 6.
    Ok for now, try the standalone combo update for Lion client. We will try things the manual way. It's a big download, please make sure you are not going to reach your download cap on your phone becuase you are now tethered to your mobile phone and I wouldn't want to see you pay a premium for this.
    Here is the Lion Client combo update. Download it and double click the eventual DMG file. http://support.apple.com/kb/DL1524

  • I cannot get my juno account to work on the ipad

    i cannot get my juno account to work on the ipad

    Hi Cantonvase.
    I am going to asume that you have a MBP 13" Mid 2012 as you have in your profile.
    First check if you computer is updateing the spotlight.  Second. Make sure the Icloud acount is activated. (using your apple id and password). Once that is working, and all of these are made, repair permitions and wait be sure all programs are close. Reset the computer.
    Once that is done. Go to system preferences, Select Security and Privacy. Then select privacy and see if maps is seleccted in location services. In order to change that unlock the lock and add the password fom you computer.
    If that is check, we can see what we can do next.  Also make sure that diagnostic & usage is selected, so all these info be send to apple for making these better. 
    One step at a time. 
    I work 2 instalacion. One clean install and 1 upgrade. The clean isntall has being perfect so far. I only find 2 errors so far and i am working on those right now.
    Carlos

  • I cannot get the numerical keys to work on my Mac pro any ideas?

    HI
    I am trying to return something bought on line and need to fill out various information on the website. I cannot get the numerical keys to work anybody any ideas as to what I may be doing wrong?
    GL

    Hi Goostrey Lou,
    Thanks for visiting Apple Support Communities.
    Start with the tips in this article if some keys on your keyboard are not working:
    One or more keys on the keyboard do not respond
    http://support.apple.com/kb/ts1381
    All the best,
    Jeremy

  • I installed the new 7.0 on my ipad and now I cannot get my internet connection to work. Any ideas, I have already tried rebooting but no luck. Another useless apple update that doesnt work?

    I installed the new 7.0 on my ipad and now I cannot get my internet connection to work. Any ideas, I have already tried rebooting but no luck. Another useless apple update that doesnt work?

    1. Turn router off for 30 seconds and on again.
    2. Settings>General>Reset>Reset Network Settings.

  • I cannot get the Output Module to work. I was able to get the button to show up, but when I click on it, nothing happens. i need to export a PDF asap

    I cannot get the Output Module to work. I was able to get the button to show up, but when I click on it, nothing happens. i need to export a PDF asap. I am trying to export 33 PSD files in BRIDGE to a PDF like I used to do on my other computer with bridge.

    Let's start with the general things.
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    orange Firefox button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?

  • HT2494 I cannot get my logitec speakers to work on my iMac

    I cannot get my Logitec speakers to work. They do not show up in the output section
    Thanks

    Hi. If the speakers are using a standard 3.5mm plug, they need to be plugged into the headphone jack. Please clarify which jack you are using.
    Stedman

  • I lost my internet last night and now i cannot get my airport express to work

    i lost my internet last night and now i cannot get my airport express to work it is blanking yellow on /off

    Have you tried AirPort Utility it the Utility folder? If so, what was the result?

Maybe you are looking for