CAN ANY BODY SOLVE THIS.

Hi ,
TILL NOW ANY BODY HAS RUN APPLICATION ( calling flex
application in url) WHICH INVOKES A SERVLET PERFORMS
REQUEST/RESPONCE . IF YES PLEASE SOLVE MY CODE.
ELSE
PLEASE HELP ME WITH A SAMPLE CODE/Example.
currently i have a login.jsp in which i am calling
source="./login.mxml"
code for login.jsp
<%@ taglib uri="FlexTagLib" prefix="mm" %>
<html>
<head>
<title>This is calling HelloServlet</title>
</head>
<body>
<form action=./HelloServlet method=POST>
<mm:mxml source="./Login.mxml">
</mm:mxml>
</form>
</body>
</html>
and code in login.mxml
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml"
layout="absolute" >
<mx:Panel width="382" height="315" layout="absolute"
horizontalCenter="4" verticalCenter="2.5" fontFamily="Verdana"
title="eCTDViewer-Login">
<mx:Label x="25" y="49" text="UserName "/>
<mx:TextInput x="115" y="47"/>
<mx:Text x="25" y="98" text="Password"/>
<mx:TextInput x="115" y="96" displayAsPassword="true"/>
<mx:Button label="Login" horizontalCenter="-80"
verticalCenter="42.5" textRollOverColor="#408080" />
<mx:Button x="186" y="169" label="Cancel"
textRollOverColor="#408080"/>
<mx:Label x="10" y="-26" text="eCTDViewer-Login"
width="310" height="23" enabled="true"/>
</mx:Panel>
</mx:Application>
and in now i am calling login.jsp in IE 7.0 as url=
http://localhost:8080/flex/login.jsp
it is displaying login page exactly what i want, but after
entering username,password when i click submit button it should go
to HelloServlet, there in servlet i am just printing a message,
but it is not going to HelloServlet, Please guide me how to
do this. and what need s to be configured in web.xml,
/**********************HelloServlet**************/
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.HttpServlet;
public class HelloServlet extends GenericServlet {
public void service(ServletRequest req, ServletResponse res)
throws ServletException, IOException
res.setContentType("text/html");
PrintWriter pw=res.getWriter();
System.out.println("I can into HelloServlet");
pw.println("<B>Hello!");
pw.println("<B>Hi!");
pw.close();
/***********************web.xml**************/
<?xml version="1.0" encoding="utf-8"?>
<web-app id="WebApp_ID" version="2.4" xmlns="
http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<servlet>
<servlet-name>login</servlet-name>
<servlet-class>HelloServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>login</servlet-name>
<url-pattern>/login</url-pattern>
</servlet-mapping>
</web-app>
waiting for reply.

there is already reply to your request in FlexBulder
category(even though not sure what flex builder has to do with it )
anyways, you cant get servlet to run unless you invoke it and you
are definitely not invoking it from flex .look at reply in
flexbuilder category.
it gives good example.

Similar Messages

  • Please iam getting index out of bound exception can any body solve my probl

    Dear all
    iam doing aproject in swing in that one class iam using the below method. Iam getting index out of bound exception. Actually iam trying to access the more that 50mb file at that time its giving out of memory exception after that iam using this method now its giving index out of bound exception, when it is going second time in the while loop. can any body solve my problem. Please give me the solution . Ill be very thankful to you.
    public Vector getFileContent(File fileObj){
    FileInputStream fis = null;
    DataInputStream dis = null;
    Vector v = new Vector();
    byte[] data = null;
    int pos = 0;
    int chunk = 10000;
    int sizePos = 0;
    try{
    fis = new FileInputStream(fileObj);
    int size = (int)fileObj.length();
    dis = new DataInputStream(fis);
    int k = 1;
    if(size <10000){
    data = new byte[size];
    //v.addElement(dis.readFully(data));
    dis.readFully(data);
    v.addElement(data);
    else {
    while(pos < size){
    sizePos = size - chunk*k;
    if(sizePos > 10000){
    chunk = 10000;
    else{
    chunk = sizePos;
    data = new byte[chunk];
    dis.read(data, pos, chunk);
    v.addElement(data);
    System.gc();
    pos = pos + chunk + 1;
    regards,
    surya

    pos = pos + chunk + 1;Why the +1??

  • Can any body answer this-Want to set the cursor position in textfield.

    i want my cusor position in textfield at the initial position which will come by default.
    but when i'm using the textfields in an inner class i'm getting the cursor position at the end of the text in text filed.pls can any body answer this.
    thanks in advance.
    if want run this example.
    import java.awt.*;
    import java.awt.event.*;
    class Testing extends JFrame implements ActionListener
         Container cnt;
         JButton jd;
         JTextField jt1;
         JTextField jt2;
         Testing()
              cnt = getContentPane();
              cnt.setLayout(new FlowLayout());
              jd = new JButton("OK");
              //jd.setBounds(50,50,100,30);
              cnt.add(jd);
              jd.addActionListener(this);
         public void actionPerformed(ActionEvent ae)
              Object but = ae.getSource();
              System.out.println("in action 00000");
              if(but.equals(jd))
                   System.out.println("in action ");
                   call();
                   return;
         void call()
              System.out.println("in action 1111111111");
              Inner inn = new Inner();
              inn.jdlg.show();
         public static void main(String s[])
              JFrame jf = new Testing();
              jf.setSize(200,200);
              jf.show();
         class Inner
              JDialog jdlg;
              //JTextField jt1;
              //JTextField jt2;
              Container cnt;
              Inner()
                   jdlg = new JDialog();
                   JLabel jla = new JLabel("Label");
                   jt1 = new JTextField();
                   jt2 = new JTextField(5);
                   cnt = jdlg.getContentPane();
                   cnt.setLayout(new FlowLayout());
                   cnt.add(jt1);
                   cnt.add(jt2);
                   jt1.setText("aaaaaaaa");
                   jt2.setText("bbbbbbbb");
                   System.out.println("the text "+jt1.getText());
                   jdlg.setSize(200,200);

    JTextFiled.setCaretPosition(0);

  • Hi, can any body solve my issue

    Hi friends,
    When we create sales order,
    as we know using backword scheduling first system checks stock. If stock doesnt exist, forward sceduling is carried out to find out the next material availability date & Delivery date.
    Could somebody explain in detail from where these dates are determined.? Eg. Delivery date
    Goods issue date
    Loading date
    Material avail.date
    Transportation Plan. Date
    What are configuration setting required from SD sides?
    Please share your knowledge on above scenario.
    THEN I WNAT TO KNOW ABOUT ONE THING IN THE ABOVE QUESTION
    SPECIFICALLY
    THAT IS
    1).CAN I HAVE SALES ORDER DATE, DELIVERY DATE AND BILLING DATE AND PRICING DATE AS SAME DAY
    I KNOW THAT IT IS POSSIBLE.
    BUT WHERE IN CUSTOMIZING SETTINGS IN R/3.
    IF ANY BODY KNOW HELP ME PLZ.
    2.
    MY SECOND QUESTION IS
    VERY SIMPLE.
    IF MATERIAL ORDERED IS AVAILABLE BUT ONLY HALF IS AVAILABLE.
    THEN FROM SALES ORDER SCREEN IT HAS TO GO TO AVAILABILITY CHECK OVER VIEW SCREEN THAT THE MATERIAL ORDERED BY YOU WILL BE AVAILABLE WITH IN THIS DATE.
    3.
    IF MATERIAL ORDERED IS AVAILABLE BUT ONLY HALF IS AVAILABLE.
    IT HAS TO SHOW THE LIST OF PLANTS IN WHICH STOCK IS AVAILBLE FOR DELIVERY FROM AVAILABILITY CHECK OVER VIEW SCREEN.
    PLZ I AM AVAILABLE IN
    [email protected]
    REGARDS,
    BALAJI.T
    09990019711.

    Hi Balaji,
    Backward scheduling or Forward scheduling is done based on your the requested deliery date in the sales order. you can configure requested delivery date from VOV8. (it can also be manually changed while creating an order.)
    Therefore when you create an order giving the requested delivery date, system takes into account the following times –
    a.     Transit Time +
    b.     Loading Time +
    c.     Pick/Pack Time +
    d.     Transportation Lead/Planning Time.
    The loading time and pick/pack time come from the shipping point whereas the transit time and transportation lead time come from the route.
    These timings are configured in Logistics Execution. Depending on these times.........the system gives you an expected delivery date. That is it does backward scheduling if the material is available or Forward scheduling in case the material cannot be delivered on the requested delivery date.
    Your sales order date, delivery date, billing date and pricing date can be the same only in the case of CASH SALES or RUSH ORDER SALES. in any normal business scenario, you cannot have all four dates as same as there will be a delivery involved from the warehouse to the customer, in other words there will be a transit time involved.
    Question 2
    if you configure ATP logic, the system will take you to the future stock availability screen.
    Question 3
    There is no automatic way of transferring displaying stocks in all the plants during sales order creation if the material is not available in one plant.
    The only way is to manually check the stocks for that particular material through T-code: MMBE in all the available plants and manually change the delivery plant at the order level during creation.
    REWARD PONTS IF HELPFUL
    Regards
    Sai

  • Can any one solve this problem

    when i sent request to the jsp using struts1.1 this error occurred. i couldn't understand this error. can any one let me know when such error comes and let me Know how to solve this error.
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Failed to load or instantiate TagLibraryValidator class: org.apache.taglibs.standard.tlv.JstlCoreTLV
         org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:50)
         org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:407)
         org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:279)
         org.apache.jasper.compiler.TagLibraryInfoImpl.createValidator(TagLibraryInfoImpl.java:653)
         org.apache.jasper.compiler.TagLibraryInfoImpl.parseTLD(TagLibraryInfoImpl.java:246)
         org.apache.jasper.compiler.TagLibraryInfoImpl.<init>(TagLibraryInfoImpl.java:162)
         org.apache.jasper.compiler.Parser.parseTaglibDirective(Parser.java:423)
         org.apache.jasper.compiler.Parser.parseDirective(Parser.java:492)
         org.apache.jasper.compiler.Parser.parseElements(Parser.java:1552)
         org.apache.jasper.compiler.Parser.parse(Parser.java:126)
         org.apache.jasper.compiler.ParserController.doParse(ParserController.java:211)
         org.apache.jasper.compiler.ParserController.parse(ParserController.java:100)
         org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:146)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:286)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:267)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:255)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:563)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:293)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)
         org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesRequestProcessor.java:274)
         org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
         org.apache.struts.tiles.TilesRequestProcessor.processForwardConfig(TilesRequestProcessor.java:320)
         org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
         org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    java.lang.ClassNotFoundException: org.apache.taglibs.standard.tlv.JstlCoreTLV
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1338)
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1187)
         org.apache.jasper.compiler.TagLibraryInfoImpl.createValidator(TagLibraryInfoImpl.java:649)
         org.apache.jasper.compiler.TagLibraryInfoImpl.parseTLD(TagLibraryInfoImpl.java:246)
         org.apache.jasper.compiler.TagLibraryInfoImpl.<init>(TagLibraryInfoImpl.java:162)
         org.apache.jasper.compiler.Parser.parseTaglibDirective(Parser.java:423)
         org.apache.jasper.compiler.Parser.parseDirective(Parser.java:492)
         org.apache.jasper.compiler.Parser.parseElements(Parser.java:1552)
         org.apache.jasper.compiler.Parser.parse(Parser.java:126)
         org.apache.jasper.compiler.ParserController.doParse(ParserController.java:211)
         org.apache.jasper.compiler.ParserController.parse(ParserController.java:100)
         org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:146)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:286)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:267)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:255)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:563)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:293)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)
         org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesRequestProcessor.java:274)
         org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
         org.apache.struts.tiles.TilesRequestProcessor.processForwardConfig(TilesRequestProcessor.java:320)
         org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
         org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.12 logs.

    Its problem related to your configuration files. check struts config file

  • Can any body explain this for loop

    public void trymethod(){
    int i =0;
    for ( foo('A'); foo('B')&&(i<2); foo('C')){
    i++ ;
    foo('D');
    static boolean foo(char c) {
    System.out.print(c);
    return true;
    }The program runs fine but If I return a char from 'foo()' it does not compile.

    The second clause in your for loop declaration uses boolean logic (if this do that, etc). Once foo is returning a character, it's no longer returning a boolean so the result can't have boolean logic applied to it
    Don't ask me how to fix it, I have no idea what you're trying to do!

  • Can Any Body Share this RFC Information

    working with RFC
    I need Struc Info and FIeld info
    zusps_create_workOrder_res
    zusps_createWorkOrder_req

    Hi Praveen
    You told that these are RFC's so it may be in your system(Server) or may be in any other system(Other Server). so if you want to se the structure and fields of RFC go to SE37 and give the name of RFC and click on DISPLAY/CHANGE button under IMPORT andEXPORT tab u can see the fields of the RFC.
    Thanks

  • Can any one solve this?

    Hello Guys,
    I hv Solaris 10 update 4 Installed through Vmware on My Windows. Now I hv a POPE WAN Internet Connection
    Here are some details
    Physical address -00-53-45-00-00-00
    IP Address-59.94.140.244
    Subnet mask -255.255.255.255
    Default gateway- 59.94.140.244
    DNS Servers- 218.248.240.79
    218.248.240.135
    Now Could someone gimme step by step details on how to set up Internet Connection on Solaris 10.
    thanks
    Somil

    The IP address you have is the same as the Default Gateway. If the IP address for the server is correct then you need to determine the the address for the Default Gateway (router). The default gateway IP is placed in /etc/defaultrouter.
    DNS information is placed in /etc/resolv.conf
    The hosts line in /etc/nsswitch.conf needs to be midified to add "dns" before "files.
    I suggest reading the man pages for /etc/resolv.conf, /etc/nsswitch.conf and /etc/defaultrouter.
    Check with the network people and sysadmin to make sure you have the right IPs.
    Cheers

  • On my macbook pro when opening a page i can not save it as a pdf only give me the option of saving it as a web page can any body help me on this I have tryed so many times without success

    on my macbook pro when opening a page on safaryi can not save it as a pdf only give me the option of saving it as a web page can any body help me on this I have tryed so many times without success?

    Just select Print in Safari and then, in the bottom left-hand corner, select PDF and you can save it to whichever flavor pdf file you like.
    Clinton

  • I'm trying to sync a new i phone to i tunes.  I get message that says cannot be used because the apple mobile device service is not started.  Any idea what I can do to solve this issue?

    I'm trying to sync a new iphone into i tunes.  I'm getting a message that says that this iphone cannot be used because the apple mobile device service is not started.  Any idea what I can do to solve this issue?

    See Here...
    AMDS for Windows
    http://support.apple.com/kb/TS1567
    AMDS for Mac
    http://support.apple.com/kb/ht1747

  • My computer has become much slower and may have been infected.  Is there any course of action I can take in solving this problem?

    my computer has become much slower and may have been infected.  Is there any course of action I can take in solving this problem?

    If this started happening without your having made any changes and without a warning of low disk space, then it's likely that the startup drive, or some other hardware component, is failing. Back up all data immediately, then run Apple Diagnostics or the Apple Hardware Test.
    Even if the test is negative, you should make a "Genius" appointment at an Apple Store to have the machine tested more thoroughly.

  • Can any body please read this and ans me

    hi all,
    can any body please read this and tell is there any function module or some other thing is available.
    Material masters are location specific, and Progistix maintains part details in Canadian $, now we need to get the logic how SAP converts the standard cost of the material from Canadian $ to US $
       The plant number of Canada is 3002.

    Hi
    you would have to use the following function modules
    CONVERT_TO_LOCAL_CURRENCY
    CONVERT_TO_FOREIGN_CURRENCY
    regards
    Dinesh

  • Can any body explain me this query?   select 'alter index '||index_name||' monitoring usage' as index_monitor from user_indexes where index_name='EMP';

    Initially i've a put an index of emp table in monitoring state..
    later i've got this query
    select 'alter index '||index_name||' monitoring usage' as index_monitor from user_indexes where index_name='EMP';
    can any body explain me what is the meaning of this query...
    and how do that query in the strings of projection area works....
    i'm totally confused
    thank you in advance.

    This is referred to as SQL generating SQL.  It is most useful when you  need to generate SQL statements for all indexes or indexes for one user.  After generating the text you then would execute it in SQLPlus or the tool of your choice.  If you combine this with a spool statement, SPOOL MyGeneratedScript.SQL you can run it with @MyGeneratedScript in SQLPlus.  I combine this into a script which generates the file, calls the editor so you can look it over and then executes it.  Here is an example of moving indexes to a different tablespace.
    -- UTL_Move_Indexs_To_New_TableSpace_Script.SQL
    /* This script will grab all the tables out of the specified source tablespace
    ** and move them into the specified target tablespace.  Ensure the the target
    ** exists and has sufficient room.  You must be logged in as the table owner.
    ACCEPT v_source_tablespace_name PROMPT 'Enter source tablespace name: '
    ACCEPT v_target_tablespace_name PROMPT 'Enter target tablespace name: '
    SET HEADING OFF
    SET FEEDBACK OFF
    SET TERMOUT OFF
    SET ECHO OFF
    SPOOL _move_index.SQL
    SELECT    'ALTER INDEX '
           || ndx.owner
           || '.'
           || ndx.index_name
           || CHR (10)
           || 'REBUILD '
           || CHR (10)
           || 'TABLESPACE '
           || UPPER ('&v_target_tablespace_name')
           || ';'
             sql_statement
    FROM   dba_indexes ndx
    WHERE      ndx.tablespace_name = UPPER ('&v_source_tablespace_name')
           AND ndx.index_type <> 'LOB'
    ORDER BY ndx.owner,
             ndx.index_name;
    SPOOL OFF
    --Edit the move script
    EDIT _move_index
    --Reset parameters.
    SET TERMOUT ON
    PAUSE Hit Ctrl+C to ABORT, any key to CONTINUE,
    -- Run the move script
    SPOOL  Move_Indexs_To_New_TableSpace.LOG
    @_move_index
    SPOOL OFF
    --Reset parameters.
    SET TERMOUT on
    SET FEEDBACK on
    SET HEADING on
    Marcus Baocn

  • CAN ANY BODY EXPLAIN THESE QUESTIONS, VERY URGENT

    WHAT IS THE USE OF CHAPTER ID, IN CHAPTER ID RATES    WILL  BE   DETERMINES.
    HOW MANY TAX CODES NEED CST, LST.
    WHERE CAN I SEE EXCISE REGISTER
    WHAT IS MEANT BY RG1 CAN ANY BODY EXPLAIN BRIEFLY, WHAT IS THE USE OF RG1
    HOW DO I GET OPENING BALANCE FOR EVERY MONTH.
    IN DEPOT SALES, IF CREATING  EXCISE INVOICE A CERTIFICATED WILL ISSUE, IN A CERTIFICATE WHICH FIELDS WILL BE THERE.
    WHAT IS MEANT BY JURISDICTION CODE & COUNTY CODE.
    IN SD FACTORY SALES WHICH A/C ENTERIES GENERATED.
    CAN ANY BODY EXPLAIN THESE FORMS, WHICH SITUATION THESE FORMS WE ARE USING.  I NEED VERY URGENT.
    a) A form
    b) D form
    c) C form
    d) H form
    e) DDP form
    f) TR6 form
    g) D3 form.
    H) ARE.
    I) ARE 1
    j) ARE 2
    IN DEPOT SALES PRICING PROCEDURE JFACT, WHICH CONDITION TYPES  WILL COME,
    IN FACTORY SALES PRICING PROCEDURE JFACT, WHICH CONDITION TYPES WILL COME
    NOW WHAT IS THE VAT TAX.
    what is the use of common distribution channel and common divisions
    PLS FORWARD ANSWERS TO THIS MAIL ID.
    i hope that definitely people will help
    thanks every body.

    Dear vara prasad
    You can take it for granted if you post so much questions in one thread like this, nobody will answer / clarify you.
    So please make one thread per question.
    Meanwhile, just I would like to clarify for few questions
    1)  The most important feature of chapter id is that based on this chapter id which you maintain in "Excise Tax Rate",  all your excise tax rates will be flowing into your sale order / billing
    2) If the rate of tax differs, then you need to maintain a separate tax code.  For example, the LST / VAT in some state is 4%, and in some state it is 12%.  So in this case, you need to maintain two tax codes
    thanks
    G. Lakshmipathi

  • Can any body help me in creating a jar using Weblogic server tool

    I have created the class files of the container manged bean successfully.I want to create the jar file using the weblogic tool.
    I have created a new jar file and now I have to add a bean class file and a home class file to it.In the tool I choose a the path using the choose button.When I say next it complaints that it cannot locate the bean files.
    Can any body please help me soon..
    waiting for your reply.

    I had similar problems with the WLS deploy tool. I think they were solved by making sure that I started the tool from the directory that contained the root package of my EJBs.
    It might work...

Maybe you are looking for

  • BPM Process not able to view in NWA

    Hi, I have downloaded and installed the trial version of NWDS and CE ehp1 server from SDN. The server is up and running. I am able to create the sample BPM process and build and deploy in the server. In order to start the process, if i open NWA and c

  • Non-blocking server

    Hi there, I've got a problem with the NIO package: I'm trying to make a simple webserver, just to get familiar with SocketChannel, ServerSocketChannel, Selector, Buffer's and so on. My problem is that my server can only receive one single request, th

  • Need help creating dvd

    Hello Final Cut community! I'm trying to create a DVD for a friend of mine. I'm editing it in Final Cut Pro and its about 30 minutes long. My question is: How do I create a 30 min video in Final Cut Pro 7 so that it will be able to fit on a standard

  • Concatenate 2 columns from 2 different dimension tables

    Hi, I have 2 columns one from each dimension table. Column A from Dimension 1 and Column B from Dimension 2. In my answers i want the results as "dim1.Col A / Dim2.Col B". I used the concatenate function and it dint give me the results. Both the colu

  • Quicktime 7.1.2 causing poor Rosetta performance

    Has anyone else noticed considerably poor performance from any PowerPC apps (such as major lag typing in Microsoft Word) and general system slugglishness after installing the Quick 7.1.2 update? I have.