Need help on Java in sound application

A good day to everyone here,
I need help on using Java.My project is mainly manipulating WAV sound files with Java. There is some problem.I hope you all can help me. I couldn't find much info about Java in sound manipulating,sample coding or something like that. I need to find the command to
1) Find each sampling point value in a sound file.
2) Find the number of sampling point and the average value of the all the sampling point.
3) Record the sound file in a different bit rate format.
I dont know how to go about it.I really hope you all can help me, or direct me to any resources that may help me. Your help is very much appreciated.
Thank you very much....

i found this coding in a website n i not very sure that i understand it.
can anyone tell me if i can find the sample point value of a sound file with this coding (byte[] source is byte array of the sound file).
thanks...for all the help
public byte[] executeAmplitudeTransformationInternal(byte[]
source)
int[] sampleArray = getSampleArray(source);
int[] newSampleArray = executeTransformation(sampleArray);
//convert 16 bit samples back to 8 bit byte[]
return getByteArray(newSampleArray);
public int[] getSampleArray(byte[] eightBitByteArray) {
//create an array 1/2 the size (since every 2
//8bit samples makes 1 16bit sample)
int[] toReturn = new int[eightBitByteArray.length];
int index = 0;
for (int t = 0; t < eightBitByteArray.length; t += 2) {
//read the high bit
int low = (int) eightBitByteArray[t];
//read the low bit
int high = (int) eightBitByteArray[t + 1];
//bit shift the high bit 8 bits to the left and
// "And" the low bit against 255 to drop any
//sign extended data in the top 8 bits.
//refer to the tutorial for more clarification
toReturn[index] = (high << 8) (low & 0x00ff);
index++;
return toReturn;
public byte[] getByteArray(int[] sampleArray) {
//create a new byte[] twice as big as the sample array
//because it takes two 8-bit bytes to represent one
//16-bit sample
byte[] toReturn = new byte[sampleArray.length * 2];
int index = 0;
for (int t = 0; t < sampleArray.length; t++) {
int sample = sampleArray[t];
//this places the low byte in the array.
//the downcasting automatically lops off the high byte
toReturn[index] = (byte) sample;
index++;
//this byte shifts the sample 8 bits to the right
//this puts the old high byte in the position of the low byte.
//this way the high byte remains after the downcasating from
//an int to a byte
toReturn[index] = (byte) (sample >> 8);
index++;
return toReturn;
public int[] executeTransformation(int[] sampleArray) {
//create a clone sample array
int[] newSampleArray = new int[sampleArray.length];
//apply algo to each sample
for (int t = 0; t < sampleArray.length; t++) {
int result = (int) (sampleArray[t] );
//add the sample
newSampleArray[t] = result;
return newSampleArray;

Similar Messages

  • Need HELP in JAVA ( client /server application )

    hi there ,
    I need the following codes in java for my client/server application . which i can use to perform certain function on another computer on LAN. This is part of my semester project . I would really appreciate if any one can help me
    ->Open/close the CD-ROM once or in intervals (specified in seconds).
    ->Swap mouse buttons the right mouse button gets the left mouse button's functions and vice versa.
    ->Start optional application.
    ->Play optional sound-file.
    ->Point the mouse to optional coordinates.
    ->Shutdown the system, logoff the user etc.
    ->Mouse can be controlled on the target computer with remote mouse.
    ->Keys (letters) on the keyboard can be disabled.
    ->Increase and decrease the sound-volume.
    ->Listen for keystrokes and send them back to you!
    I would really appreciate if some1 can help me find these codes in java
    thanx
    Alamzaib Shafi
    [email protected]

    Dude, if you did your own homework once in a while you'd be able to handle your own semester project. I hope you fail your class and get kicked out of the program. One less idiot with a diploma competing with us hackers for the tech jobs.
    You are indeed a most worthy recipient of my unemployed angst.

  • Need help in localizing the Flex Application

    Hi,
    I need help in localizing my Flex Application.
    my Question is: How to make SPANISH as the default language of Flex Application(Progamatically)? By default its taking en_US as the locale but my requirement is to change it to sp_SP(SPANISH)..
    Thanks in Advance..
    Pradeep

    Localization tutorial:
    http://livedocs.adobe.com/flex/3/html/help.html?content=l10n_3.html
    How to change the locale at runtime:
    http://cookbooks.adobe.com/post_Change_Locale_at_the_runtime-11143.html

  • I need helping using iAds in my application.

    I need helping using iAds in my application. I currently am not using any storyboards. I am using Sprite builder for my UI.
    I attatched an image ot show all the different file name I have.
    Everyone is being used & they all work fully.
    The "iAdViewController.h & .m" files are just example codes I looked up and was messing with so that my iAd can work.

    I wouldn't even be able to use the Mathscript node in an executable? 
    What I am trying to do is make a user configurable data stream. 
    They tell me how many bytes are in the stream and what parameters they
    want to be put in to it.  Currently I have to make vi's that are
    called dynamicaly to make the parameters.   Then recompile
    the code and send it to them.  This is somewhat of how the config
    file is set up so I know how to make the data.
    Data_Type  foo
    Bytes 30
    parameter_name        
    function           
       byte#          format
    sync              
    foo_sync            
    29               int
    time                              
    foo_time             
    1,2,3,4       double
    If I can't use MathScript to allow the user to make there own functions
    is there another way that I might be able to do this so I do not have
    to recompile the code atleast?  Were I might just be able to make
    the new function and send that to them.
    Any Idea would be great.

  • Need Help Regarding JAVA BEAN

    Is any one tell me that JAVA BEAN only used in WEB or also you in Desktop applications???? and aslo tell how i implement Java class and use JAVA BEAN. I need help regarding above matter
    thanks in advance
    Rehan MIrza

    Here is a good link that indicate that JavaBean is not only for applets
    http://java.sun.com/docs/books/tutorial/javabeans/whatis/beanDefinition.html
    quote:
    The JavaBeans API makes it possible to write component software in the Java programming language. Components are self-contained, reusable software units that can be visually composed into composite components, applets, applications, and servlets using visual application builder tools. JavaBean components are known as Beans.
    Francois

  • Need help with simple file sharing application

    I have an assignment to build a Java File Sharing application. Since I'm relatively new to programming, this is not gonna be an easy task for me.
    Therefore I was wondering if there are people willing to help me in the next few days. I will ask questions in this thread, there will be loads of them.
    I already have something done but I'm not nearly halfway finished.
    Is there a code example of a simple file sharing application somewhere? I didn't manage to find it.
    More-less, this is what it needs to contain:
    -client/server communication (almost over)
    -file sending (upload, download)
    -file search function (almost over)
    -GUI of an application.
    GUI is something I will do at the end, hopefully.
    I hope someone will help me. Cheers
    One more thing, I'm not asking for anyone to do my homework. I will only be needing some help in the various steps of building an application.
    As I said code examples are most welcome.
    This is what I have done so far
    Server:
    package ToJeTo;
    import java.io.*;
    import java.net.*;
    public class MultiServer {
        public static ServerSocket serverskiSoket;
        public static int PORT = 1233;
        public static void main(String[] args) throws IOException {
            try {
                serverskiSoket = new ServerSocket(PORT);
            }catch (IOException e) {
                System.out.println("Connection impossible");
                System.exit(1);
            do {
                Socket client = serverskiSoket.accept();
                System.out.println("accepted");
                ClientHandler handler = new ClientHandler(client);
                handler.start();
            } while(true);
    }Client:
    package ToJeTo;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.net.*;
    import java.util.Scanner;
    public class MultiClient {
        public static InetAddress host;
        public static int PORT = 1233;
        public static void main(String[] args) {
            try {
                host = InetAddress.getLocalHost();
            }catch (UnknownHostException uhe) {
                System.out.println("Error!");
                System.exit(1);
            sendMessages();
        private static void sendMessages() {
            Socket soket = null;
            try {
                soket = new Socket(host, PORT);
                Scanner networkInput = new Scanner(soket.getInputStream());
                PrintWriter networkOutput = new PrintWriter(soket.getOutputStream(), true);
                Scanner unos = new Scanner(System.in);
                String message, response;
                do {
                    System.out.println("Enter message");
                    message = unos.nextLine();
                    networkOutput.println(message);
                    response = networkInput.nextLine();
                    System.out.println("Server: " + response);
                }while (!message.equals("QUIT"));
            } catch (IOException e) {
                e.printStackTrace();
            finally {
                try{
                    System.out.println("Closing..");
                    soket.close();
                } catch (IOException e) {
                    System.out.println("Impossible to disconnect!");
                    System.exit(1);
    }ClientHandler:
    package ToJeTo;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    public class ClientHandler extends Thread {
        private Socket client;
        private Scanner input;
        private PrintWriter output;
        public ClientHandler(Socket serverskiSoket) {
            client = serverskiSoket;
            try {
            input = new Scanner(client.getInputStream());
            output = new PrintWriter(client.getOutputStream(), true);
            } catch (IOException e) {
                e.printStackTrace();
            public void run() {
                String received;
                do {
                received = input.nextLine();
                output.println("Reply: " + received);
                } while (!received.equals("QUIT"));
                try {
                    if (client != null)
                        System.out.println("Closing the connection...");
                        client.close();
                }catch (IOException e) {
                    System.out.println("Error!");
    }Those three classes are simple client server multi-threaded connection.

    Now the other part that contains the search function looks like this:
    package ToJeTo;
    import java.io.*;
    import java.util.*;
    public class User {
        String nickname;
        String ipAddress;
        static ArrayList<String> listOfFiles = new ArrayList<String>();
        File sharedFolder;
        String fileLocation;
        public User(String nickname, String ipAddress, String fileLocation) {
            this.nickname = nickname.toLowerCase();
            this.ipAddress = ipAddress;
            sharedFolder = new File(fileLocation);
            File[] files = sharedFolder.listFiles();
            for (int i = 0; i < files.length; i++) {
                listOfFiles.add(i, files.toString().substring(fileLocation.length()+1));
    public static void showTheList() {
    for (int i = 0; i < listOfFiles.size(); i++) {
    System.out.println(listOfFiles.get(i).toString());
    @Override
    public String toString() {
    return nickname + " " + ipAddress;
    User Manager:
    package ToJeTo;
    import java.io.*;
    import java.util.*;
    class UserManager {
        static ArrayList<User> allTheUsers = new ArrayList<User>();;
        public static void addUser(User newUser) {
            allTheUsers.add(newUser);
        public static void showAndStoreTheListOfUsers() throws FileNotFoundException, IOException {
            BufferedWriter out = new BufferedWriter(new FileWriter("List Of Users.txt"));
            for (int i = 0; i < allTheUsers.size(); i++) {
                    System.out.println(allTheUsers.get(i));
                    out.write(allTheUsers.get(i).toString());
                    out.newLine();
            out.close();
    }Request For File
    package ToJeTo;
    import java.util.*;
    public class RequestForFile {
        static ArrayList<String> listOfUsersWithFile = new ArrayList<String>();
        Scanner input;
        String fileName;
        public RequestForFile() {
            System.out.println("Type the wanted filename here: ");
            input = new Scanner(System.in);
            fileName = input.nextLine();
            for (User u : UserManager.allTheUsers) {
                for (String str : User.listOfFiles) {
                    if (str.equalsIgnoreCase(fileName))
                        listOfUsersWithFile.add(u.nickname);
        public RequestForFile(String fileName) {
            for (User u : UserManager.allTheUsers) {
                for (String str : User.listOfFiles) {
                    if (str.equalsIgnoreCase(fileName))
                        listOfUsersWithFile.add(u.nickname);
        public static List<String> getAll() {
            for (int i = 0; i < listOfUsersWithFile.size(); i++) {
                //System.out.println("User that has the file: " + listOfUsersWithFile.get(i));
            return listOfUsersWithFile;
    }Now this is the general idea.
    The user logs in with his nickname and ip address. He defines his own shared folder and makes it available for other users that log on to server.
    Now each user has their own list of files from a shared folder. It's an ArrayList.
    User manager class is there to store another list, a list of users that are connected with server.
    When the user is searching for a particular file, he is searching through all the users and their respective files lists. Therefore for each loop inside a for each loop.
    Now the problem is how to connect all that with Client and Server class and put it into one piece.
    GUI should look somewhat like this:

  • Need help in copying Hyperion Planning application from Production to UAT

    Hi,
    We are currently using Hyperion Planning version 9.3.1.
    We have Hyperion planning cubes which are used for Hyperion Planning application. Users use Planning web forms.
    We need to copy the current PROD application to UAT which are on different servers.
    I am new user to Hyperion Planning and I am aware of Hyperion Essbase.
    I am aware of process to copy the Planning cube between the PROD and UAT servers.
    I need your assistance in completing the Hyperion Planning migration other than Planning cube copy activity as it involves more than cube copying. like Planning forms, etc.
    Thanks,
    Praveen.

    Hi John,
    Thanks for your suggestions. I have tried to start planning web application from Start menu. The error logs [SystemErr.log] says as below.
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R Can not set database catalog name, skipping set of catalog name: HPSPLN
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R Query Failed: SQL_GET_SYSTEMCFG: null
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R java.sql.SQLException: [Hyperion][SQLServer JDBC Driver][SQLServer]The SELECT permission was denied on the object 'HSP_SYSTEMCFG', database 'master', schema 'dbo'.
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.base.BaseExceptions.createException(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.base.BaseExceptions.getException(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.sqlserver.tds.TDSRequest.processErrorToken(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.sqlserver.tds.TDSRequest.processReplyToken(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.sqlserver.tds.TDSRPCRequest.processReplyToken(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.sqlserver.tds.TDSRequest.processReply(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.sqlserver.SQLServerImplStatement.getNextResultType(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.base.BaseStatement.commonTransitionToState(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.base.BaseStatement.postImplExecute(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.base.BasePreparedStatement.postImplExecute(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.base.BaseStatement.commonExecute(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.base.BaseStatement.executeQueryInternal(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.base.BasePreparedStatement.executeQuery(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.sql.HspSQLImpl.executeQuery(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.sql.HspSQLImpl.executeQuery(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.sql.JDBCCacheLoader.loadObjects(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.sql.GenericCache.loadCache(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.sql.GenericCache.getCache(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.sql.GenericCache.getUnfilteredCache(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.HspJSImpl.loadSystemCfg(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.HspJSImpl.<init>(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.HspJSHomeImpl.createHspJS(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.HspJSHomeImpl.getHspJSByApp(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.HyperionPlanningBean.Login(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at HspLogOn.Handle(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at HspLogOn.doPost(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1146)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:592)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:525)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:90)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:764)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1478)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:133)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:458)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:387)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:102)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:165)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:196)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:751)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:881)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1497)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R java.sql.SQLException: [Hyperion][SQLServer JDBC Driver][SQLServer]The SELECT permission was denied on the object 'HSP_SYSTEMCFG', database 'master', schema 'dbo'.
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.base.BaseExceptions.createException(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.base.BaseExceptions.getException(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.sqlserver.tds.TDSRequest.processErrorToken(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.sqlserver.tds.TDSRequest.processReplyToken(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.sqlserver.tds.TDSRPCRequest.processReplyToken(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.sqlserver.tds.TDSRequest.processReply(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.sqlserver.SQLServerImplStatement.getNextResultType(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.base.BaseStatement.commonTransitionToState(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.base.BaseStatement.postImplExecute(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.base.BasePreparedStatement.postImplExecute(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.base.BaseStatement.commonExecute(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.base.BaseStatement.executeQueryInternal(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at hyperion.jdbc.base.BasePreparedStatement.executeQuery(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.sql.HspSQLImpl.executeQuery(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.sql.HspSQLImpl.executeQuery(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.sql.JDBCCacheLoader.loadObjects(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.sql.GenericCache.loadCache(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.sql.GenericCache.getCache(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.sql.GenericCache.getUnfilteredCache(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.HspJSImpl.loadSystemCfg(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.HspJSImpl.<init>(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.HspJSHomeImpl.createHspJS(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.HspJSHomeImpl.getHspJSByApp(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.HyperionPlanningBean.Login(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at HspLogOn.Handle(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at HspLogOn.doPost(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1146)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:592)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:525)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:90)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:764)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1478)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:133)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:458)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:387)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:102)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:165)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:196)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:751)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:881)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1497)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R java.lang.RuntimeException: Error loading objects from data source: java.sql.SQLException: [Hyperion][SQLServer JDBC Driver][SQLServer]The SELECT permission was denied on the object 'HSP_SYSTEMCFG', database 'master', schema 'dbo'.
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.sql.GenericCache.loadCache(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.sql.GenericCache.getCache(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.sql.GenericCache.getUnfilteredCache(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.HspJSImpl.loadSystemCfg(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.HspJSImpl.<init>(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.HspJSHomeImpl.createHspJS(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.HspJSHomeImpl.getHspJSByApp(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.HyperionPlanningBean.Login(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at HspLogOn.Handle(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at HspLogOn.doPost(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1146)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:592)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:525)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:90)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:764)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1478)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:133)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:458)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:387)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:102)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:165)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:196)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:751)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:881)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1497)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R java.lang.NullPointerException
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.HspJSImpl.loadSystemCfg(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.HspJSImpl.<init>(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.HspJSHomeImpl.createHspJS(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.HspJSHomeImpl.getHspJSByApp(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.hyperion.planning.HyperionPlanningBean.Login(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at HspLogOn.Handle(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at HspLogOn.doPost(Unknown Source)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1146)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:592)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:525)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:90)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:764)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1478)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:133)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:458)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:387)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:102)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:165)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:196)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:751)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:881)
    [9/5/11 10:46:53:571 GMT+08:00] 00000019 SystemErr R      at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1497)
    [9/5/11 11:23:07:284 GMT+08:00] 00000013 SystemErr R Creating rebind thread to RMI
    We have 'HYPPLN' Planning applciation and the related Essbase Cube and not 'HPSPLN'. Verified on to the 'PlanningSystemDB.properties' file and its entried are
    SYSTEM_DB_DRIVER=hyperion.jdbc.sqlserver.SQLServerDriver
    SYSTEM_DB_URL=jdbc:hyperion:sqlserver://<DBServer>:1440
    SYSTEM_DB_USER=hypadm
    SYSTEM_DB_PASSWORD=DIFLAIAIANFGBMFO
    SYSTEM_DB_CATALOG=PLNSYS2
    SYSTEM_DB_TYPE=SQL
    INSTANCE=HYPPLNINS
    Here too the SYSTEM_DB_CATALOG is having entry as PLNSYS2 and not the HYPPLN which is our Planning application name. Tried verifying on PROD which is running fine and we there too have HYPPLN cube/planning application but at the DB Server, we have Database as PLNSYS again and the DB_CATALOG is having entry as 'PLNSYS' and not the HYPPLN. Not sure if this is ok or not.
    Also tried looking at the SELECT Permission issue that is there on the error log.
    The SELECT permission was denied on the object 'HSP_SYSTEMCFG', database 'master', schema 'dbo'.
    On our Database Server side, i have PLNSYS2 and the tables under this are only few as :
    dbo.HSP_ACTION
    dbo.HSPSYS_APP_CLUSTER_DTL
    dbo.HSPSYS_APPLICATION
    dbo.HSPSYS_CLUSTER
    dbo.HSPSYS_DATASOURCE
    dbo.HSPSYS_PI_INFO
    dbo.HSPSYS_PROPERTIES
    I do not see HSP_SYSTEMCFG and other mainly discussed table 'HSP_USERS' for SID verifications.
    I have writtend the issue in detail and I couldn't find the related solutions on the forums too. Please verify and help me in fixing the issue.
    Thanks in advance.
    Edited by: 883090 on 04-Sep-2011 20:55

  • Need help with java

    ok so i have a midterm and need help this question that is gonna be on the midterm. i dont know how to do it and its worth 16 marks!!!! here it is
    the UW Orchestra wants to produce a CD containing all the pieces of music
    from its upcoming concert. In order to do that, it needs to calculate the total length of time for the
    CD. In addition, the conductor wishes to know which piece of music has the longest duration.
    Sample output for the program.
    The Swan (3.88)
    The Bee (0.98)
    Claire de Lune (6.02)
    Liebesfreund (3.38)
    Ragtime (3.48)
    The total time for the CD is 18.74 minutes.
    The longest piece is Claire de Lune.
    Do not include the HTML that is required to embed the program into a Web page (that is, show
    only what you would write between <script> and </script> tags).
    [4 marks] In the following space, define a function, Print, that takes two parameters, Title and
    Length, and outputs a line of text such that Title appears in italics, followed by Length in
    parentheses. The function also returns the value of Length.
    For example, Print("My World",30) will output the line
    My World (30)
    and return the value 30.
    Put your JavaScript program for the remainder of this question in the space provided on the next
    two pages.
    [9 marks]. For each piece of music, your program should input the title of the piece and the
    duration (in minutes) for that piece, and it should output a line showing those values using the
    Print function just defined. After all pieces have been listed, the program should output the
    total length of time for the CD, adding in 0.25 minutes between each piece of music (which is
    needed on the CD to separate the pieces).
    [3 marks] The program should also output the name of the piece that has the longest playing
    time.
    Use reasonable variable names, indentation and good programming style. Documentation and
    comments are not required, but you may add them to explain any assumptions you might want to
    make. You need not check that the input is valid, and you may assume that no two pieces have the
    same duration.
    can anyone help me out! i would be indebt of ur kindness if u can help me out!

    This forum is for Java, not JavaScript. The two have nothing to do with each other.
    And anyway, this is your studying, so you should try to do it, put forth your best effort, and ask specific questions (on the proper fourm).

  • Need help with Java Script to perform a calculation in Adobe Acrobat Pro 9 form

    I have a form (test) that I am creating in Adobe Acrobat Pro 9.
    I need help creating custom Java Script so I can get the desired answer.
    1) There are several questions in each group that require a numerical answer between 0-4
    2) There is a total field set up to sum the answers from all above questions
    3) The final "score" takes the answer from Step 2 above and divides by the total possible answer
    Any help on what Java Script I need to complete this would be greatly appreciated!
    I've attached a "spreadsheet" that shows it in more detail as well as what formulas I used in Excel to get the desired end result.
    Thanks in advance.

    Have you tried the "The field is the average of:"?

  • Need help in Java Script

    i Need some help in Java Script,
    am using the following code :
    <script type="text/javascript">
    var newwindow;
    function poptastic(url)
    newwindow=window.open(url,'name','height=300,width=400,left=100, top=100,resizable=yes,scrollbars=yes,toolbar=yes,status=yes');
    if (window.focus) {newwindow.focus()}
    else {newwindow.close()}
    //     if (window.focus) {newwindow.focus()}
    </script>
    In HTML,
    thWorld Environment
    Day, June 5<sup>th</sup>,2005
    Am using onmouseover event, so that when my mouse in on the link, popup is opened....and when my mouse is out of the link, the new window should b closed....
    but according to the above code, the new window is opened but have to close it manually....
    Is there any other way to close the popup when my mouse is out of the link

    Prawn,
    This is not really a good way to make friends. With the cross posting and the posting in a wrong forum anyway thing you have going.
    Please kindly take your question to an appropriate JavaScript forum.
    Have a happy day.
    Cross post from http://forum.java.sun.com/thread.jspa?messageID=3797201

  • Need help with Java always get error

    hey guys need help
    this the problem i get :
    I go to certain websites and I get this error with firefox.
    This Site requires that JavaScript be enabled.
    It is enabled.
    This is the one of the errors in java script console with firefox.
    Error: [Exception... "'Component does not have requested interface' when calling method: [nsIInterfaceRequestor::getInterface]" nsresult: "0x80004002 (NS_NOINTERFACE)" location: "<unknown>" data: no]
    I have installed the java script from there home site and did a test and says everything is fine. Any ideas?
    please help

    Hi 49ers,
    Sorry not to have any real idea of how to help you out here, but this is a Java forum, not JavaScript.
    Some Firefox expert may stumble across your post and be able to offer some advice (I hope they do) but this isn't really the best place to post such questions.
    Try here: http://www.webdeveloper.com/forum/forumdisplay.php?s=&forumid=3
    Good luck!
    Chris.

  • Need Help with Java Desktop CP Icon

    I just formatted and reinstalled Windows XP Home SP2 and installed the JRE 1.5.0.02. I usually see an icon in my Control Panel but it only appears in the Administrator's CP which I can reach in Safe Mode of course, but it would be easier to deal with if it appeared somewhere on my desktop/taskbar or CP (I am also an Admin). In Safe Mode I made sure that the right settings were made for displaying, but it doesn't.
    I know precious little about Java so I need help here.

    This forum is dedicated to Sun's Java Desktop System, an alternative desktop operating environment. Try reposting here:
    http://forum.java.sun.com/forum.jspa?forumID=54

  • Need Help regarding a simple mobile application

    Hello friends,
    I am bit newbee to J2ME technology.
    I have basic understanding about MIDLETS.
    Friends,i am designing an instant messenger using midlet.
    Could anyone send some idea's of how to design a CHAT application.IF some one can give a small code of implementing it could be really helpful....
    Looking for your help!!!
    Thanks In Advance !!!
    Regards,
    RAHUL

    You have been no help but I will post again hoping someone else can reply....
    Here is a more exact detailing of what I am trying to do:
    I am hosting a text file here:
    http://www.geocities.com/biocx/entertainer.txt
    And when I open up MMAPI Demo and go to simple player, and then URL and paste this in, it plays the simple rtttl/midi file. It is doing this through RingToneConverter.
    Now all I want to do, and this is the part I need help with, is while it is playing, I want the notes to be displayed on screen. Can anyone help me with this! I have tried and every time is gives me a problem saying that the RingToneConverter Class isn't abstract and I cannot print to screen...
    If someone could help me with this, it would be greatly appreciated.
    Thank you,
    Mike

  • Need help for java program

    Hi,
    I need help with my web application. When i tried to run it using
    localhost:8080
    it's giving me error that
    signup.do file is not available.
    can someone tell me what could be wrong with my code?
    I want to know what is .do file and what needs to do to have remove the error
    I have also used struts config file.
    Please help me.
    Message was edited by:
    star4588

    See struts documentation here http://struts.apache.org/1.2.9/userGuide/building_controller.html#action_mapping_example
    you should have something like that :
    <action-mappings>
            <action
                path="/signup"
                type="org.apache.struts.webapp.example.SignupAction"
                name="signupForm"
                scope="request"
                input="/signup.jsp"
                unknown="false"
                validate="true" />
        </action-mappings>in your struts-config.xml.
    Hope That Helps

  • I cannot connect to app store. I tried all the possible ways to fix these error but still nothing happened. I really need help i cannot update my applications. I'm using iphone 5 ios 8.1.2

    please i really need help!

    I had the same problem on my Mac Pro, iPad, Macbook Pro. Could not load iTunes, App Store or any support community. Called Apple Care and she asked if I had rebooted my router in awhile. I had not. Each of these would load half way and then just stop. She said iTunes and App Store could be stopped as they are different than my Discover or e-Bay accounts, which were fine. So during the 75 min call I pulled the power cord of the Netgear Wi Fi router, let it sit for 2 or 3 min and then replugged the power adapter. In about 4 to 5 min the sites started to load, although not displayed correctly. After quitting and re-starting the apps in question they are working fine again. But this has happened twice now in a 6 hour time period. So give it a try, but also give it a couple of tries.

Maybe you are looking for

  • Select Data from aufm too slow

    Hi experts, I have a query in my report but its performance too slow. is there any proper way or any way to improve the performance of below query. SELECT  * FROM  aufm     into table i_aufm          " collecting input material document numbers      

  • Raising Exception in Selection screen validation

    Hi All, I am doing a selection screen validation in BI report using the CMOD. If my validation fails i need to raise a error message instead showing the report. How can i perform that. How should i handle this using abap. Thanks in advance Prem

  • Adding text to a text area

    Im trying to add text from a result set to a text area but the text simply isnt showing. When i try String s =(res.getString("OrderID")); System.out.println(s); it prints the corretc result to the screen. However, when i try String s =(res.getString(

  • Mac Book Pro 17"

    I've just got this a week ago. Normally I just shut the lid when I am busy. When I reopen it - it is red hot - almost glowing in the dark, and the battery has almost gone. If I chose Sleep from the menu, it's cold when I restart.

  • HT4972 I have a new iPhone 3GS but cannot upgrade to iOS5 or 6, it gives me errors, is there another way to upgrade to higher versions of ios5?

    iPhone 3GS is brand new but gives me errors when attempting to downliod iOS6, I have tried 10 times - same error same everytime.. Anyhelp here? Thanks IAN