Struts- not able to work on

Dear sir,
Sub: not able to work on "select option"
This is Naveen.s working on struts ( new to struts )where i have to sumbit to my university .
I have done a project where i have to maintain the list projects , programers, urgency of project etc., where i can edit and delete ( up to this i completed ) .
Now , the query is i have to place the "select options" for the fields. and in the same page the list of data should be present so that i can select any one of the options fields and i should view the selected data only.
I did not created any DynaAction Forms for this project with out using them can i do it
I did using" TaskForms, TaskActions,Task .jsp".
I am attaching my code .
Please reply after receiving
Advance Thanks for the cooperation and my carrier in IT field
xml:-------------
<form-beans>
<form-bean name="loginForm"
type="com.Iris.LoginForm" />
<form-bean name="taskForm"
type="com.Iris.TaskForm" />
</form-beans>
<global-forwards>
<forward name="login" path="/login.jsp"/>
</global-forwards>
<action-mappings>
<action path="/Login"
type="com.Iris.LoginAction"
validate="true"
input="/login.jsp"
name="loginForm"
scope="request" >
<forward name="success" path="/TaskList.do"/>
</action>
<action path="/TaskList"
type="com.Iris.TaskListAction"
scope="request" >
<set-property property="loginRequired" value="true"/>
<forward name="success" path="/tasklist.jsp"/>
</action>
listAction.java:--------------------------
import javax.sql.DataSource;
import java.sql.Connection;
import java.sql.Statement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.HashMap;
import java.util.ArrayList;
import java.util.*;
import java.lang.*;
public class TaskListAction extends Action {
protected ArrayList getProj_tasks() {
Task task = null;
     Task task1 = null;
ArrayList proj_tasks = new ArrayList();
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;
     ResultSet rs1 = null;
java.util.Hashtable grouphash=new java.util.Hashtable();
java.util.Hashtable statushash=new java.util.Hashtable();
java.util.Hashtable taskhash=new java.util.Hashtable();
java.util.Hashtable priorityhash=new java.util.Hashtable();
java.util.Hashtable assignhash=new java.util.Hashtable();
ServletContext context = servlet.getServletContext();
DataSource dataSource = (DataSource)
context.getAttribute(Action.DATA_SOURCE_KEY);
try {
conn = dataSource.getConnection();
stmt = conn.createStatement();
     rs1 = stmt.executeQuery("select group_id,groupname from group_level order by groupname");
     while(rs1.next()){ 
          int i =rs1.getInt(1);Integer i1 = new Integer(i);
          String names =rs1.getString(2);
          System.out.print(i1);
          System.out.println(names);
          grouphash.put(i1,rs1.getString(2)); }
          System.out.println("This is from hashtable.."+grouphash);
               task1= new Task();
               task1.setGrouphash(grouphash);
               proj_tasks.add(task1);
     rs1 = stmt.executeQuery("select status_id,statusname from Status_level order by statusname");
     while(rs1.next()){  statushash.put("statushashkey",rs1.getString(2)); }
     rs1 = stmt.executeQuery("select task_id,taskname from type_task order by taskname");
     while(rs1.next()){  taskhash.put("taskhashkey",rs1.getString(2)); }
     rs1 = stmt.executeQuery("select priority_id,priorityname from task_priorities order by priorityname");
     while(rs1.next()){  priorityhash.put("priorityhashkey",rs1.getString(2)); }
     rs1 = stmt.executeQuery("select assign_id,assignee from task_assigned order by assignee");
     while(rs1.next()){  assignhash.put("assignhashkey",rs1.getString(2)); }
rs =
stmt.executeQuery("select * from proj_tasks,group_level,Status_level,type_task,task_priorities,percentage,task_assigned where proj_tasks.group_id=group_level.group_id and proj_tasks.status_id=Status_level.status_id and proj_tasks.task_id=type_task.task_id and proj_tasks.priority_id=task_priorities.priority_id and proj_tasks.percen_id=percentage.percen_id and proj_tasks.assign_id=task_assigned.assign_id");
while ( rs.next() ) {
task= new Task();
          //task.setGrouphash(grouphash);
          //task.setNames(names);
task.setSeq_id(new Integer(rs.getString("seq_id")));
task.setPrjname(rs.getString("prjname"));
task.setGroupname(rs.getString("groupname"));
task.setGroup_id(new Integer(rs.getString("group_id")));
task.setStatusname(rs.getString("statusname"));          
          task.setStatus_id(new Integer(rs.getString("status_id")));
task.setTaskname(rs.getString("taskname"));          
          task.setTask_id(new Integer(rs.getString("task_id")));
task.setPriorityname(rs.getString("priorityname"));          
          task.setPriority_id(new Integer(rs.getString("priority_id")));
task.setEstimated_amount(new Integer(rs.getString("estimated_amount")));
task.setPercentage_support(rs.getString("percentage_support"));          
          task.setPercen_id(new Integer(rs.getString("percen_id")));
          task.setDue_date(rs.getString("due_date"));
task.setAssignee(rs.getString("assignee"));          
     task.setAssign_id(new Integer(rs.getString("assign_id")));
proj_tasks.add(task);
System.err.println("prjname : " + task.getPrjname()
+ " taskname : " + rs.getString("taskname")); } }
catch (SQLException e) {      System.err.println(e.getMessage());    }
finally {      if (rs != null) {        try {          rs.close();        }
catch (SQLException sqle) {          System.err.println(sqle.getMessage());       }
rs = null; } if (stmt != null) {        try {          stmt.close();        }
catch (SQLException sqle) {     System.err.println(sqle.getMessage());        }
stmt = null; } if (conn != null) {        try {          conn.close();        }
catch (SQLException sqle) {    System.err.println(sqle.getMessage());        }
conn = null; } }
return proj_tasks; }
     public ActionForward perform(ActionMapping mapping,
          ActionForm form,
          HttpServletRequest request,
          HttpServletResponse response)
          throws IOException, ServletException {
          // Default target to success
String target = new String("success");
TaskActionMapping taskMapping =
(TaskActionMapping)mapping;
// Does this action require the user to login
if (taskMapping.isLoginRequired() ) {
HttpSession session = request.getSession();
if ( session.getAttribute("USER") == null ) {
// The user is not logged in
target = new String("login");
ActionErrors errors = new ActionErrors();
errors.add(ActionErrors.GLOBAL_ERROR,
new ActionError("errors.login.required"));
// Report any errors we have discovered back to
// the original form
if (!errors.empty()) {          saveErrors(request, errors);        } } }
ArrayList proj_tasks = null;
proj_tasks = getProj_tasks();
// Set the target to failure
if ( proj_tasks == null ) {      target = new String("login");    }
else {      request.setAttribute("proj_tasks", proj_tasks);    }
     // Forward to the appropriate View
     return (mapping.findForward(target));     }}
.jsp:-------------------------------------------
<table width="100%">
<tr> <td width="15%"class="titreSection"><B>Incomplete Tasks�</B></td>
<td width="85%" align="right">
<font size="-1" face="arial"> Add New Task
</font> </td> </tr>
<tr> <td colspan="15"><hr></td> </tr> </table>
<table> <tr> <td align="right" width="5%"></td>
<td align="right" width="20%">i have to get hear-----------     </td>
<td align="left" width="10%"> ---i have to get hear------------- </td>
<td align="left" width="10%">---i have to get hear------------- </td>
<td align="center" width="10%">---i have to get hear----------- </td>
<td align="right" width="15%">�---i have to get hear------------- </td>
<td align="right" width="20%">� ---i have to get hear------------- </td>
<td width="10%">� <input type="submit" value="Filter"> </td>
</tr> </table>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr align="left">
<th><bean:message key="app.seq_id" /></th>
<th><bean:message key="app.prjname" /></th>
          <th><bean:message key="app.groupname" /></th>
<th><bean:message key="app.statusname" /></th>
<th><bean:message key="app.taskname" /></th>
<th><bean:message key="app.priorityname" /></th>
<th><bean:message key="app.estimated_amount" /></th>
<th><bean:message key="app.percentage_support" /></th>
<th><bean:message key="app.due_date" /></th>
<th><bean:message key="app.assignee" /></th>
</tr> <!-- iterate over the results of the query -->
<logic:iterate id="task" name="proj_tasks">
<tr align="left">
<td> <bean:write name="task" property="seq_id" />     </td>
<td> <bean:write name="task" property="prjname" /> </td>
<td> <bean:write name="task" property="groupname" /> </td>
<td> <bean:write name="task" property="statusname" />     </td>
<td> <bean:write name="task" property="taskname" />     </td>
<td> <bean:write name="task" property="priorityname" />     </td>
<td> <bean:write name="task" property="estimated_amount" /> </td>
<td> <bean:write name="task" property="percentage_support" />     </td>
<td> <bean:write name="task" property="due_date" />     </td>
<td> <bean:write name="task" property="assignee" />     </td>
<td> ">Edit</a>
<a href="Delete.do?prjname=<bean:write name="task"property="prjname" />">Delete</a>
</td></tr> </logic:iterate>
<tr> <td colspan="14">     <hr>     </td> </tr> </table>
</body></html>
and java bean for above tags

upload your fla onto some server and post a link.  maybe someone else can open it and resave it for you.

Similar Messages

  • Not able to work with customized Java roles which were edited in ABAP stack

    Hello All,
    I am trying to copy standard roles into customized roles (i.e. Z roles) using PFCG in XI system. All ABAP based roles are working fine, but all JAVA based roles are not working. I generated profiles as well. And I check all the authorization objects in both standard and customized roles. Everything look same but customized roles are not working.
    And when I check the logs on JAVA stack I found the error which says " User XXXXXXXXXX IP address HTTP request processing failed. HTTP error [403] will be returned. The error is [You are not authorized to view the requested resource.No details available]."
    I thought there might be any Jco RFC connections missing between the stacks and I tried to check in Visual Admin, but I was not able to find much info regarding these roles.
    Am I missing anything or is there any other way for these roles to make customized roles.
    And can any one tell me how to run a trace for JAVA stack activitites as we do in ABAP using ST01. Any help will be rewarded. Thanks in advance.
    Regards,
    Farooq.

    Java roles work with influence of permissions in Application Server which we call actions in UME. As you are aware in PI user master record will be in ABAP stack. So the roles in ABAP stack will be having only RFC connections to JAVA stack for the specific JAVA based role. So you need to edit the permission on Java App Server. For that you need to log on to server through visual admin and then go to services and you will find the standard groups assigned to actions. But I don’t remember that under which service you will find them
    Under that service you will find some 200 actions. And you have to add the name of the custom created JAVA roles on ABAP to all those actions where you find the standard roles. And its a very very lengthy procedure. So SAP advice to go for customized ABAP roles and Standard JAVA roles.
    Hope this answer clears your query.
    Farooq.

  • Not able to work with multiple Databases using  oracle.jdbc.driver.OracleDr

    Hi all,
    I am using the following Oracle Driver in Weblogic 6.1 sp 4
    oracle.jdbc.driver.OracleDriver / jdbc:oracle:thin:
    Driver. I am not able to select rows from two different table, which resides in two different Databases.
    The Exception is :
    SQL Exception Connection has already been created in this tx context for pool named CDPool. Illegal attempt to create connection
    nother pool: MultiTransactionTest
    Start server side stack trace:
    java.sql.SQLException: Connection has already been created in this tx context for pool named CDPool. Illegal attempt to create c
    on from another pool: MultiTransactionTest
    at weblogic.jdbc.jts.Driver.getExistingConnection(Driver.java:288)
    at weblogic.jdbc.jts.Driver.connect(Driver.java:123)
    at weblogic.jdbc.common.internal.RmiDataSource.getConnection(RmiDataSource.java:214)
    at weblogic.jdbc.common.internal.RmiDataSource_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:305)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:93)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:274)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    End server side stack trace
    Can any one help me to fix this issue?
    -Thanks & Regards,
    Shamil.S

    Shamil S wrote:
    Hi all,
    I am using the following Oracle Driver in Weblogic 6.1 sp 4
    oracle.jdbc.driver.OracleDriver / jdbc:oracle:thin:
    Driver. I am not able to select rows from two different table, which resides in two different Databases.
    The Exception is :
    SQL Exception Connection has already been created in this tx context for pool named CDPool. Illegal attempt to create connection
    nother pool: MultiTransactionTestHi. You can't domultiple DBMSes in one transaction unless you use an XA driver and
    an XA transaction. Your workarounds are:
    1 - Use an XA driver, datasource, and tx
    2 - If you're just reading, you can use non-transactional datasources. Do make sure you
    always close your connections...
    Joe
    >
    Start server side stack trace:
    java.sql.SQLException: Connection has already been created in this tx context for pool named CDPool. Illegal attempt to create c
    on from another pool: MultiTransactionTest
    at weblogic.jdbc.jts.Driver.getExistingConnection(Driver.java:288)
    at weblogic.jdbc.jts.Driver.connect(Driver.java:123)
    at weblogic.jdbc.common.internal.RmiDataSource.getConnection(RmiDataSource.java:214)
    at weblogic.jdbc.common.internal.RmiDataSource_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:305)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:93)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:274)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    End server side stack trace
    Can any one help me to fix this issue?
    -Thanks & Regards,
    Shamil.S

  • Trying for the last 3 days. still not able to work on webservices

    Have made a webservice.
    Made a client.
    ran the client.
    it works fine. It prints the entire "receiving xml" part. then "sending xml" part.
    then again receiving xml and then the message i sent back from the web service
    However,
    shift it to another machine which has wls6.1
    It hangs in between
    It prints the entire "receiving xml" part.
    It stops in between printing the "sending xml" part.
    It gives an error :filenotfoundexception http://localhost:7001/invoicews/invoicewsuri.
    I think it is able to get the remote(?) of the webservice. but when it fires the
    method, it gives this error. This i found out by looking at the line number.
    On teh server side, it gives an error - NameNotFoundException: Unable to resolve
    xxx. resolved ''. unresolved 'xxx'. remaining name 'xxx'.
    Pl help. I am amazed how it works on one machine and not on another??
    Wuold request you to send your response to my account [email protected] as well.
    Thanks heap in advance. An early response would be highly appreciated!!!!
    Prashant Gupta

    Try replacing 'localhost' with the actual name of the host.
    You will also need to fix the NameNotFoundException - something is not registered.
    Mike
    "prashant gupta" <[email protected]> wrote:
    >
    Have made a webservice.
    Made a client.
    ran the client.
    it works fine. It prints the entire "receiving xml" part. then "sending
    xml" part.
    then again receiving xml and then the message i sent back from the web
    service
    However,
    shift it to another machine which has wls6.1
    It hangs in between
    It prints the entire "receiving xml" part.
    It stops in between printing the "sending xml" part.
    It gives an error :filenotfoundexception http://localhost:7001/invoicews/invoicewsuri.
    I think it is able to get the remote(?) of the webservice. but when it
    fires the
    method, it gives this error. This i found out by looking at the line
    number.
    On teh server side, it gives an error - NameNotFoundException: Unable
    to resolve
    xxx. resolved ''. unresolved 'xxx'. remaining name 'xxx'.
    Pl help. I am amazed how it works on one machine and not on another??
    Wuold request you to send your response to my account [email protected]
    as well.
    Thanks heap in advance. An early response would be highly appreciated!!!!
    Prashant Gupta

  • I want to re download firefox 3.6 because 4.0 is not able to work on my computer. can't find it....help?

    My "old" laptop (Mac) will not support the new firefox version and I want to reinstall the older one, but can't find it on your website.

    You can get Firefox 3.6 from http://www.mozilla.com/en-US/firefox/all-older.html

  • Not able to work in internet explorer due to the contents not expanding

    Hi.
    When am clicking + symbol gets changed - but not showing any links content , under the + symbol there is some links are there but as our system system is windows xp internet explorer 7 

    under the + symbol there is some links 
    See if you can view them without CSS, e.g. using View, Style, No Style (Alt-V y N)
    Robert Aldwinckle

  • Not able to work with Class.forName

    I am trying to use Class.forName() from a string which is passed to me as argument.
    Class batchClass = Class.forName(args[1]);
    A jar file contains the class file for the string received above and I have this jar file in the manifest of my executable jar.
    I get a class not found exception when I run my executable jar
    Can some body give pointers..what could possibly be the issue.
    The jar file is in my classpath
    Message was edited by:
    chabhi

    run script
    #!/bin/csh
    java -jar -DDBPROVIDER=NO -DDBUS_ROOT=$DBUS_ROOT -DVTNAME=$VTNAME ./jar/IntraDayDepotPositionBatch.jar MagellanStart IntraDayDepotPositionBatch INPUTFILE LOGFILE
    Exception
    Magellan program starting - program class IntraDayDepotPositionBatch
    Cannot find program class - IntraDayDepotPositionBatch
    IntraDayDepotPositionBatch
    java.lang.ClassNotFoundException: IntraDayDepotPositionBatch
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at com.db.mmrepo.app.IntraDayDepotPositionBatch.MagellanStart.main(Unknown Source)
    THanks for your time on this issue,,,,

  • Missing images and not able to use copy and paste anymore - just blank rect

    Hello!
    I've a problem that really scares me.
    I use severall png and pdf images. But at one point keynote looses the media and just displays these grey rectangles instead of some images. I tried to figure out if it just happens with pdf images and replaced the missing pdf images through png24 images with transparency. It first worked fine (they showed up) and then it tells images can not be saved. If I open the presentation again, the images are missing. And it seems that the more images and slides i put in the presentation, the more images are missing…
    But there is more: I even can't copy and paste these images anymore. If I try to copy one of the images I just have replaced (because they have been lost by saving), it just pastes the blank grey rectangle instead of the image.
    This really is a problem because I now have to repetitive tasks (like same animation for the same image in the same size) over and over again. And when I save the doc – they are al gone again…
    It really scares me and I don't have an idea how to solve this.
    It also happens, if I repleace an pdf image with an png image and than try to copy this new png image. However I am able to drag the image from the Finder again.
    I am working on a PB G4, 1.5 GHz, 1 GB RAM.
    My Keynote Version is 3.0.2.
    The Keynote Dokument is saved and opened from a G4 X-Serve wich is only used by Macs (so no Windows Filesystem anywhere). I still have anough space on both, my local and the server volume. I don't transfer the Keynote document. So it should not be a problem with the names on the files… And the files are just exported from Adobe Illustrator (png 24 files with "save for web" and the pdf files are saved as Illustrator pdf) – so they should really be fine and not corrupted…
    At this time the Keynote document has a size of 179 MB (because of a video) and only 16 slides. And the theme was built from scratch – so no import from Powerpoint or so…
    I looked through the Keynote preferences and found a thing like (sorry self-translated from german version to english) "scale placed images to slide-size". I wondered if keynote saves a copy of the sacaled image after that and corrupts the image itself? But I don't think so.
    I've had these problems with earlier versions of Keynote, but it occured just sporadically and I could solve it through pasting it again. But this time I can not solfe it anymore.
    Does anybody encounter same problem? Or has a hint?
    I really would appreciate, because I have to finish the presentation very soon and are not able to work properly with that. Furthermore, I am scared of saving and opinging the presentation again, because the lost files can not be replaced…

    I now have a hint:
    As a colleague said, he encountered some problems with usagerights on our fileserver (XServe). He said he wasn't able to read files he put on the server himself again…
    If this is true, the same could have happened to Keynote for placed images, as Keynote writes these images as separate files in the doc package…
    I will try to work on my local volume and see if it solfes the problem.
    But sooner or later I will have to place the whole thing on the server again…
    Do you think this is the reason?

  • Hi There, I'm not able to Get the value for echo %cust_top% for custom dev

    Hi,
    Before doing any thing in dos usually i run envshell
    Which let me to switch to product specific location through Appl_top, au_top etc
    I'm Sending Out Put At cmd Prompt Please Check
    D:\oracle\visappl>echo %ar_top%
    d:\oracle\visappl\ar\11.5.0
    but not able to work for custom development.
    D:\oracle\visappl>echo %cust_top%
    %cust_top%
    D:\oracle\visappl>
    Why it's so?
    Bachan.

    Hi There,
    I got document, but not able to understand 2nd step i.e
    "2) Add the custom module into the environment
    Apply ADX.E.1 and add the entry to topfile.txt as a standard product top entry (follow the existing model in the file)
    Customised environment variables can be added to AutoConfig by using the filename specificed by s_custom_file, which is then called from the APPSORA.env file.
    If using Forms Listener Servlet, you may also need to add $CUSTOM_TOP to formsservlet.ini in $APACHE_TOP/Jserv/etc"
    1. What is ment by ADX.E.1 and topfile.txt ?
    2. And How can i add to "AutoConfig by using the filename specificed by s_custom_file, which is then called from the APPSORA.env file. " ?
    3. And agin What is ment by "If using Forms Listener Servlet, you may also need to add $CUSTOM_TOP to formsservlet.ini in $APACHE_TOP/Jserv/etc"
    Please Give a breaf note on this Question's.
    Thanks Bachan

  • Not able to connect for BI publisher from OBIEE

    Hi Experts,
    I am trying to loggin through BI publisher( more products- BI publisher) and i am getting an error of Reporting Login(404) not found.
    I started the OC4J server aslo. I dont have explicity a BI publisher server.
    is there any simple steps to install ( since I have already installed the OBIEE 10.1.3.2) the Oracle BI publisher.
    I am not able to work on Labs of BI publisher due to above issues
    can any one help.
    Thanks
    Jag
    Edited by: 788556 on 15-Aug-2010 22:24

    Hi,
    The Instance config xml shows as
    <ServerURL>http://machinename:9704/xmlpserver/services/XMLPService</ServerURL>
    <WebURL>http://machinename:localhost:9704/xmlpserver</WebURL>
    <AdminURL>http://machinename:9704/xmlpserver/servlet/admin</AdminURL>
    <AdminCredentialsAlias>bipublisheradmin</AdminCredentialsAlias>
    I am trying to log in from Answers--> More Products--> BI publisher.
    still it shows as error same.
    Thanks
    Jagadesan

  • Mac not able to command Printer - Printer is able to command Mac

    The Mac cannot command the HP printer to print. Print is somehow not able to work by either clicking " print " or using file/print while in iphoto8 or any program for that matter.
    The Mac will recieve into iphoto a scanned image from the HP printer but for some reason cannot command the HP printer to print.
    The Mac and HP successfully work via the router connection that enables the HP to send scanned images to the Mac's iphoto8 software without error.
    How do I run a diagnostic on the Mac so it can find the HP printer and restore the file/print command ?
    Thanks

    Followed your recommendation and even designated this printer as default.
    Went back to document in Word and selected file print. As soon as I selected this printer the program shut down and Word quit.
    Fortunately this document had been named and saved. Because it is not listed in " recent documents or in open. Only able to find in Spotlight.
    When I bring it back from Spotlight it is a " recovered document " of course because of the quit sequence I am sure.
    When I go again to file/print I only have to select this printer name ( which by the way is also listed under Bonjur ) and the document vanishes and Word quits.
    Any suggestions further are appreciated
    Imagine I will have to take this Mac to Apple store in the morning.

  • WRT54GS not able to connect wirelessly, or through ethernet

    Hello all, I have a problem with my WRT54GS router that has just popped up over the last couple of weeks.  It is connected to internet via ethernet cable. Light shows receiving signal. Wireless signal is intemittent, but unable to connect wirelessly.  Direct connection from router to desktop does not allow internet access.  All port lights on router work when something is plugged into them.  Am currently accessing internet via direct connect from modem to desktop. I have attempted to reset router when connected to ethernet, but my wireless internet connection only lasts about 1 minute, then I lose that capability. I still don't get any connection thru wired desktop.  Therefore I am not able to work with router settings or anything.  Any help on this matter would be greatly appreciated. 

    Internet Service Provider and Modem Configurations
    What ISP Service do you have? Cable or DSL?
    What ISP Modem Mfr. and model # do you have?
    Is ISP Modem/Service using Dynamic or Static WAN IP addressing?
    What ISP Modem service link speeds UP and Down do you have?
    Check cable between Modem and Router, swap out to be sure. Link>http://en.wikipedia.org/wiki/CAT6 is recommended.
    Check ISP MTU requirements, Cable is usually 1500, DSL is around 1492 down to 1472. Call the ISP and ask.
    http://kb.linksys.com/Linksys/ukp.aspx?vw=1&docid=88e63d78588142e6bb68e22d7faf2046_Configuring_the_M...
    For DSL/PPPoE connections on the router, ensure that "Always ON" option is enabled.
    If the ISP modem has a built in router, it's best to bridge the modem. Having 2 routers on the same line can cause connection problems: Link>http://www.practicallynetworked.com/networking/fixing_double_nat.htm and http://cognitiveanomalies.com/cisco-nat-how-nat-works/. If the modem can't be bridged then see if the modem has a DMZ option and input the IP address the router gets from the modem and put that into the modems DMZ. Also check the routers DHCP IP address maybe conflicting with the ISP modems IP address of 192.168.0.1. Check to see if this is the same on the ISP modem, and if modem can't be bridged, change the DIR router to 192.168.1.1 or .0.254.
    Prefered connection method with a ISP stand alone modem:
    I recommend that you have your ISP check the cabling going to the ISP modem, check signal levels going to the ISP modem. For cable Internet, RG-6 coaxial cable is needed, not RG-59. Check for t.v. line splitters and remove them as they can introduce noise on the line and lower the signal going to the ISP modem. Connecting to the ISP modem could result in a false positive as the signal to the modem could be just enough to that point then adding on a router, could see problems. Ensure modem is working well too. Bad modems are out there as well. The router operation is dependent upon getting good data flow from the ISP modem and the modem is dependent upon getting good signal from the ISP Service.
    What wireless modes are you using?
    Try setting a manual Channel to a open or unused channel. 1, 6 or 11. 11 for single mode N if the channel is clear. 13 for EU regions. Try channel 48 or 149 on 5Ghz. http://en.wikipedia.org/wiki/List_of_WLAN_channels
    http://kb.linksys.com/Linksys/ukp.aspx?vw=1&docid=f2625b15a5d7454b8e7fafbe65d5aa63_4009.xml&pid=80&r...
    What security mode are you using? Preferred security is WPA-Personal. WPA2 Only. http://kb.linksys.com/Linksys/ukp.aspx?vw=1&docid=8ce9e83bd3784001aee72da7f1ef48e8_Changing_the_basi...
    http://kb.linksys.com/Linksys/ukp.aspx?pid=80&vw=1&articleid=19073
    What wireless devices do you have connected?
    Ensure any devices with WiFi adapter drivers are updated.
    Any 2.4Ghz or 5Ghz cordless house phones or WiFi APs near by?
    Any other WiFi routers in the area? Link> Use http://www.techspot.com/downloads/5936-inssider.html to find out. Use v3. How many?
    Router Placement
    Forum User - "Well I feel really dumb. After moving the router away from other electronic devices my speeds are back to normal. Just a heads up for anyone experiencing slow speeds, you might want to move it away from other electronics and see if that helps."
    3-6' feet minimum safe distance between devices.
    Placement on main level floor and central in the building and WELL ventilated is preferred. Not in basements or closets as building materials, or near by electronics devices could interfere or hinder good signal propagation.
    http://kb.linksys.com/Linksys/ukp.aspx?vw=1&docid=d9a3b1b2039741948a2365b053a93ea8_3759.xml&pid=80&r...

  • I work with a child who is not able to move his neck.  to see the ipad, it has to be placed high above the table (eye level).  he needs access with a mouse - is this possible?

    I work with a child who has physical disability and cannot move his neck.  The ipad needs to be eyelevel in order for him to see it, but he also is not able to raise his hand and would need mouse access...  is this possible?

    I'm sorry but the iPad does not work with a mouse, there is no cursor on the iPad and the iPad was designed as a touch screen device so a mouse will not work.
    I really don't know what to suggest other than this new device, and it might be worth a look. I assume that the child can use his hands for a keyboard.
    http://www.thinkgeek.com/product/e722/

  • My Iphone 5 voice speaker is not working.I'm not able to hear the voice of the person calling.But when I put my iphone 5 on speaker mode, things seem ok.Please provide me some suggestions.

    My Iphone 5 voice speaker is not working.I'm not able to hear the voice of the person calling.But when I put my iphone 5 on speaker mode, things seem ok.Please provide me some suggestions.

    Hello rizvijunaid,
    Thank you for providing the details of the issue you are experiencing with calls on your iPhone.  I recommend following the steps in the article below for the issue you described:
    iPhone: Receiver and call audio quality issues
    http://support.apple.com/kb/ts5196
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Not able to sign into Blackberry Protect. Backup and Restore function not working. "Your device isn't associated with a Blackberry ID"

    Not able to sign into Blackberry Protect.  Backup and Restore function not working. Message is: "Your device isn't associated with a Blackberry ID."  My Blackberry Messenger and Blackberry World is working fine so I am sure its not an ID issue on the phone.  I can sign into Link, Blackberry.com and Protect.  I see my device in Protect but cannot send messages or view it on a map.  Times out with cannot reach device message.  BB Protect on Device has a swirling circle beside the on/of switch.  Cannot turn off.  
    I have deleted Link and re-installed.
    I have reset phone to default(factory) and signed in. 
    OS level is 10.2.1.3062
    BB Link is 1.2.3.56
    Solved!
    Go to Solution.

    I managed to figure this out myself. I had to delete the device from the Blackberry Protect website.  protect.blackberry.com.  I wiped my device again and signed in with my Blackberry ID.  I dont know if the step of wiping was necessary as I did not try my backup with the current configuration on the device following the delete.  Restore is in progress for me!

Maybe you are looking for