POSTing with HttpURLConnection - Logging in

Ok, I'm trying to connect to a webpage and login in using java.
We'll call the website http://www.website.com/
The code on login.php is:
<form action=authenticate.php method=post name=login onsubmit="return saveme();">
Username: <input type=text name=username><br>
Password: <input type=password name=password><br>
Remember me?<br />
<input type="radio" value="ON" name="save">Yes
<input type="radio" name="save" value="OFF" checked>No
<input type=submit value=Submit>
</form>So in my java program I did the following:
HttpURLConnection urlc = (HttpURLConnection) new URL("http://www.website.com/authenticate.php").openConnection();
urlc.setDoInput(true);
urlc.setDoOutput(true);
urlc.setUseCaches(false);
urlc.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
urlc.setRequestProperty("Referer", "http://www.website.com/login.php");
urlc.setRequestProperty("Connection", "Keep-Alive");
urlc.setRequestMethod("POST");
DataOutputStream dos = new DataOutputStream(urlc.getOutputStream());
String content = "username=" + URLEncoder.encode(u, "UTF-8") + "&password=" + URLEncoder.encode(p, "UTF-8") + "&save=ON";
dos.writeBytes(content);
dos.flush();
dos.close();
BufferedReader br = new BufferedReader(new InputStreamReader(urlc.getInputStream()));
String str;
while ((str = br.readLine()) != null)
     System.out.println(str);
try
     br.close();
catch (Exception e)
     e.printStackTrace();
     return false;
}I also have the code for authenticate.php:
<?php
session_start();
if ($_POST['username'] == "" || $_POST['password'] == "")
     die("<h3>Your Game Name Error</h3>
     You did not fill in the login form!<br>
     <a href=login.php>> Back</a>");
//MYSQL stuff
if (mysql_num_rows($uq)==0)
     die("<h3>Your Game Name Error</h3>
     Invalid username or password!<br>
     <a href=login.php>> Back</a>");
else
$_SESSION['loggedin']=1;
$mem=mysql_fetch_array($uq);
$_SESSION['userid']=$mem['userid'];
header("Location: loggedin.php");
?>And one line of code from loggedin.php
if($_SESSION['loggedin']==0) { header("Location: login.php");exit; }I think what might be happening is that it is logging in OK, but when it tries to redirect to loggedin.php, it doesn't realise I'm still logged in. How do I keep me logged in? I know it must have something to do with cookies but I'm not exactly sure what.
Any help would be appreciated, and example code to assist your answer would really help.
Thanks
Krimson Eagl

If your jdk version is 1.6,you can use following code to handler the cookies:
  private static void installCookieHandler(){
        if(CookieHandler.getDefault() ==null){
            CookieHandler handler =new CookieManager(null,CookiePolicy.ACCEPT_ALL);
            CookieHandler.setDefault(handler);
    }make sure this code has run before the HttpURLConnection's;

Similar Messages

  • My mac froze in an application so I shut it down by powering off with button, now when I try to turn it on I have a grey screen with Apple loge and the timer swirling but it doesn't get past this, please help!

    I Shut down my Mac by holding in the power button after my iMac froze and now when I try to turn it back it on all I get is the grey screen with Apple loge and the timer and doesn't get any further.  I have tried the diagnostic test but nothing was found.

    Take each of these steps that you haven't already tried. Stop when the problem is resolved.
    To restart an unresponsive computer, press and hold the power button for a few seconds until the power shuts off, then release, wait a few more seconds, and press it again briefly.
    Step 1
    The first step in dealing with a startup failure is to secure the data. If you want to preserve the contents of the startup drive, and you don't already have at least one current backup, you must try to back up now, before you do anything else. It may or may not be possible. If you don't care about the data that has changed since the last backup, you can skip this step.
    There are several ways to back up a Mac that is unable to start. You need an external hard drive to hold the backup data.
    a. Start up from the Recovery partition, or from a local Time Machine backup volume (option key at startup.) When the OS X Utilities screen appears, launch Disk Utility and follow the instructions in this support article, under “Instructions for backing up to an external hard disk via Disk Utility.” The article refers to starting up from a DVD, but the procedure in Recovery mode is the same. You don't need a DVD if you're running OS X 10.7 or later.
    b. If Step 1a fails because of disk errors, and no other Mac is available, then you may be able to salvage some of your files by copying them in the Finder. If you already have an external drive with OS X installed, start up from it. Otherwise, if you have Internet access, follow the instructions on this page to prepare the external drive and install OS X on it. You'll use the Recovery installer, rather than downloading it from the App Store.
    c. If you have access to a working Mac, and both it and the non-working Mac have FireWire or Thunderbolt ports, start the non-working Mac in target disk mode. Use the working Mac to copy the data to another drive. This technique won't work with USB, Ethernet, Wi-Fi, or Bluetooth.
    d. If the internal drive of the non-working Mac is user-replaceable, remove it and mount it in an external enclosure or drive dock. Use another Mac to copy the data.
    Step 2
    If the startup process stops at a blank gray screen with no Apple logo or spinning "daisy wheel," then the startup volume may be full. If you had previously seen warnings of low disk space, this is almost certainly the case. You might be able to start up in safe mode even though you can't start up normally. Otherwise, start up from an external drive, or else use the technique in Step 1b, 1c, or 1d to mount the internal drive and delete some files. According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation.
    Step 3
    Sometimes a startup failure can be resolved by resetting the NVRAM.
    Step 4
    If a desktop Mac hangs at a plain gray screen with a movable cursor, the keyboard may not be recognized. Press and hold the button on the side of an Apple wireless keyboard to make it discoverable. If need be, replace or recharge the batteries. If you're using a USB keyboard connected to a hub, connect it to a built-in port.
    Step 5
    If there's a built-in optical drive, a disc may be stuck in it. Follow these instructions to eject it.
    Step 6
    Press and hold the power button until the power shuts off. Disconnect all wired peripherals except those needed to start up, and remove all aftermarket expansion cards. Use a different keyboard and/or mouse, if those devices are wired. If you can start up now, one of the devices you disconnected, or a combination of them, is causing the problem. Finding out which one is a process of elimination.
    Step 7
    If you've started from an external storage device, make sure that the internal startup volume is selected in the Startup Disk pane of System Preferences.
    Start up in safe mode. Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Post for further instructions.
    Safe mode is much slower to start and run than normal, and some things won’t work at all, including wireless networking on certain Macs.
    The login screen appears even if you usually log in automatically. You must know the login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    When you start up in safe mode, it's normal to see a dark gray progress bar on a light gray background. If the progress bar gets stuck for more than a few minutes, or if the system shuts down automatically while the progress bar is displayed, the startup volume is corrupt and the drive is probably malfunctioning. In that case, go to Step 11. If you ever have another problem with the drive, replace it immediately.
    If you can start and log in in safe mode, empty the Trash, and then open the Finder Info window on the startup volume ("Macintosh HD," unless you gave it a different name.) Check that you have at least 9 GB of available space, as shown in the window. If you don't, copy as many files as necessary to another volume (not another folder on the same volume) and delete the originals. Deletion isn't complete until you empty the Trash again. Do this until the available space is more than 9 GB. Then restart as usual (i.e., not in safe mode.)
    If the startup process hangs again, the problem is likely caused by a third-party system modification that you installed. Post for further instructions.
    Step 8
    Launch Disk Utility in Recovery mode (see Step 1.) Select the startup volume, then run Repair Disk. If any problems are found, repeat until clear. If Disk Utility reports that the volume can't be repaired, the drive has malfunctioned and should be replaced. You might choose to tolerate one such malfunction in the life of the drive. In that case, erase the volume and restore from a backup. If the same thing ever happens again, replace the drive immediately.
    This is one of the rare situations in which you should also run Repair Permissions, ignoring the false warnings it may produce. Look for the line "Permissions repair complete" at the end of the output. Then restart as usual.
    Step 9
    If the startup device is an aftermarket SSD, it may need a firmware update and/or a forced "garbage collection." Instructions for doing this with a Crucial-branded SSD were posted here. Some of those instructions may apply to other brands of SSD, but you should check with the vendor's tech support.  
    Step 10
    Reinstall the OS. If the Mac was upgraded from an older version of OS X, you’ll need the Apple ID and password you used to upgrade.
    Step 11
    Do as in Step 9, but this time erase the startup volume in Disk Utility before installing. The system should automatically restart into the Setup Assistant. Follow the prompts to transfer the data from a Time Machine or other backup.
    Step 12
    This step applies only to models that have a logic-board ("PRAM") battery: all Mac Pro's and some others (not current models.) Both desktop and portable Macs used to have such a battery. The logic-board battery, if there is one, is separate from the main battery of a portable. A dead logic-board battery can cause a startup failure. Typically the failure will be preceded by loss of the settings for the startup disk and system clock. See the user manual for replacement instructions. You may have to take the machine to a service provider to have the battery replaced.
    Step 13
    If you get this far, you're probably dealing with a hardware fault. Make a "Genius" appointment at an Apple Store, or go to another authorized service provider.

  • Posts with green at sign (@)

    To respond to discussions using email is a new feature of the new forum software. These respones are appearing as a separate item in the discussion overview listing, showing a green at sign and RE: subject line. The posting is also appearing in the actual discussion. The response does not show as a separeate item in the content view. I think this is somewhat confusing and wonder why email respones appear as a separate discussion item. If 10 people respond by email, will there be 10 additional disussions?  Is there some purpose, or is it another one of those broken things?
    P.S. I changed the subject from Email replies of discussions -> Posts with green at sign (@) since I was misunderstanding the cause of these posts.

    If I understand correctly now, the only I will see the green @ messages in the overview listing? I actually thought those responses were email because of the @ sign.
    What about those other resent messages, they are also visible without logging in.
    Re: Welcome to the new OTN Community!
    jgarry mentioned Community Feedback and Suggestions (Do Not Post Product-Related Questions Here)
    Apparently what was mentioned here was the name of the community. I wonder how much sense it makes to have this as a separate notification item.

  • Unable to make posts with account - Receive website unavailable message

    I have two accounts. One prior to being an oracle employee (kevinp), and one for after leaving oracle and having my Oracle account mapped to my current account (Kevin Pinsky). Almost everytime i try and make a post with my current account, i get the error:
    The website you are attempting to access is currently experiencing network connectivity errors. The problem is being worked on and will be resolved as soon as possible. We apologize for any inconvenience this may cause and thank you for your patience.If i sign in with my old account, i don't seem to have any problems. Can one of the administrators please contact me at the email address listed under either of my account. I am unable to provide assistance to users in the Identity Management forum.
    Thanks!
    -Kevin

    If you are using IE 9 (maybe also IE 8), could you try File > New session (then log in) as a temporary workaround?
    It sometimes works for me when there seem to be some single sign-on related issue.

  • Help Please with HttpURLConnection

    We�re having an issue with HttpURLConnection when executing from a servlet, initially reached through a Proxy server. A little background of our environment and overall processing taking place:
    We have a typical multi-tier extranet architecture with firewalls between our Web, App and Data layers. The application (Websphere) experiencing this issue; 1) is first invoked by an https request that�s passed back to the app layer, 2) this initial servlet then opens a URLConnection to tunnel back through a Proxy server (sitting between Web and App layers) and passes a subsequent request to another Websphere servlet, 3) from this second servlet a new HttpURLConnection is opened and attempts to issue a request to a servlet running under Tomcat (directly accessible from the Application-Tier layer).
    It�s been determined the HttpURLConnection is not connecting directly to Tomcat, but instead going back through the Proxy server (opened earlier) to the Web-Tier layer, where our Tomcat server can�t be reached. We�ve had no problems executing the HttpURLConnection and sending requests directly to Tomcat server, from servlets where the Proxy server is bypassed. We�ve looked at the attributes and methods for HttpURLconnection and haven�t come across anything to override the OutputStream that�s pointing back to the initial Proxy connection.
    Following are code snippets from both initial URLconnection (Proxy) and subsequent HttpURLConnection (Tomcat):
    Proxy
    Properties systemSettings = System.getProperties();
    systemSettings.put("proxySet", "true");
    systemSettings.put("proxyHost", "myProxyServer.com");
    systemSettings.put("proxyPort", "8080");
    System.setProperties(systemSettings);
    URL url=new URL("http://someserver/somepage");
    URLConnection uc = url.openConnection ();
    Tomcat
    requestData.put("Fld1", var_1);
    requestData.put("Fld2", var_2);
    requestData.put("Fld3", var_3);
    requestData.put("Fld4", var_4);
    //Encode the POST data in application /x-www-form-urlencoded format
    byte[] postData = encodeFormData(requestData);
    HttpURLConnection connection = (HttpURLConnection) (new URL(var_URL).openConnection());
    connection.setRequestMethod("POST");
    connection.setDefaultUseCaches(false);
    connection.setDoInput(true);
    connection.setDoOutput(true);
    connection.setInstanceFollowRedirects(false);
    connection.getOutputStream().write(postData);

    If you are using JDK 1.5 or 1.6:
    http://java.sun.com/j2se/1.5.0/docs/api/java/net/URLConnection.html#setReadTimeout(int)

  • Help With HttpURLConnection and PHP

    I can connect to a site with HttpURLConnection but i need to access a link FROM that site.
    Ex: www.hangman/index.php
    I need to get a link like www.hangman/index.php?letter=a
    It will only display the letter if you go from www.hangman/index.php and click on the letter. But how do i do that with HttpURLConnection.
    I think you have to use the POST , but it doesnt work.
    Thanks.

    That's probably because the site uses cookies to maintain a session.
    The cookie's name is PHPSESSID, so I'm guessing this is a standard PHP session maintenance system (I haven't worked with PHP much...).
    So if you want to create a java app that will play hangman from that site, it looks like you'll have to handle cookies to keep the session active between accesses. So you'll grab the cookie from the response headers in the first connection, and then send it to the server in the request headers in subsequent connections. The cookie may remain the same throughout the session, or it may change on each connection; I don't know.
    I did a quick google and found this:
    http://jcookie.sourceforge.net/
    I haven't used it myself, but it looks useful. Unless you're doing this as a learning exercise, it's probably easier to use this than to wrote your own cookie code.

  • [svn] 977: Bug: BLZ-93 - When a producer sends a message to a secure destination with no credentials it causes a security exception to get logged with a log level of error .

    Revision: 977
    Author: [email protected]
    Date: 2008-03-27 17:04:59 -0700 (Thu, 27 Mar 2008)
    Log Message:
    Bug: BLZ-93 - When a producer sends a message to a secure destination with no credentials it causes a security exception to get logged with a log level of error.
    QA: Yes
    Doc: No
    Details:
    Updates to catch-all exception logging hinge points on the server to use a new method on MessageException that protects against repeat logging of the same exception as we unwind the call stack on the server, as well as allowing exception subclasses to control the log level, intro text and inclusion of a full stack trace in the logged output. This allows things like SecurityExceptions, which represent common errors like incorrect user credentials, to avoid polluting the log with error-level logging and stack traces. It also consolidates our catch-all handling for MessageExceptions and their subclasses in a single point, avoiding problems with needing to make updates or tweaks to our logging output in multiple places.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-93
    Modified Paths:
    blazeds/branches/3.0.x/modules/common/src/java/flex/messaging/log/Log.java
    blazeds/branches/3.0.x/modules/common/src/java/flex/messaging/util/ExceptionUtil.java
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/MessageBroker.java
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/MessageException.java
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/endpoints/amf/MessageBrokerFi lter.java
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/endpoints/amf/SuspendableMess ageBrokerFilter.java
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/security/SecurityException.ja va
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/services/ServiceException.jav a

    One thing I forgot to add, which may be causing you
    problems: the "mount volume" command is not part of
    the Finder dictionary. It stands alone.
    bill
      Mac OS X
    (10.4.10)   1 GHz Powerbook G4
    I tried the mount command. After executing it in Script Editor, I was prompted with login and password, but it was my Keychain!
    I don't know if you have your keychain unlocked or what else..
    Maybe the original poster (Rick Anderson) has his keychain locked and the prompt is from it.
    Just a guess...
    Ciao,
    Ermanno
    Dual 2 GHz PowerPC G5   Mac OS X (10.4.9)   4.5 GBy SDRAM, 5 external FW disks, 2 Internal SATA disks

  • Bad system crash, need help with crash log please

    I am using the Photoshop beta version which I assume is the cause of this crash but will post the crash log just to be sure if someone can help.
    Host Name: Derek-Burrows-Computer
    Date/Time: 2006-12-19 15:25:46.016 -0500
    OS Version: 10.4.8 (Build 8N1051)
    Report Version: 4
    Command: IOBackB
    Path: /Applications/Tri-Select/IOBackB
    Parent: WindowServer [64]
    Rosetta: Yes
    Version: ??? (???)
    PID: 282
    Thread: Unknown
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x00697020
    Thread 0:
    0 <<00000000>> 0xb52b8202 0 + -1255439870
    1 <<00000000>> 0xbfffece0 0 + -1073746720
    Thread 1:
    0 LaunchCFMApp 0xb823369b strchr + 72
    1 LaunchCFMApp 0xb81cef17 pthreadcondwait + 3114
    2 LaunchCFMApp 0xb816831a catchexception_raise_stateidentity + 318
    3 LaunchCFMApp 0xb8167856 CallPPCFunctionAtAddressInt + 177220
    4 LaunchCFMApp 0xb816774d CallPPCFunctionAtAddressInt + 176955
    5 LaunchCFMApp 0xb8168418 catchexception_raise_stateidentity + 572
    6 LaunchCFMApp 0xb820480c pthread_create + 1124
    Thread 2:
    0 LaunchCFMApp 0xb813516f spinlockwrapper + 97059
    1 LaunchCFMApp 0xb8160750 CallPPCFunctionAtAddressInt + 148286
    2 LaunchCFMApp 0xb81632bd CallPPCFunctionAtAddressInt + 159403
    3 LaunchCFMApp 0xb80c7b3a 0xb8000000 + 817978
    Unknown thread crashed with unknown flavor: 1
    state_count: 16
    Binary Images Description:
    0x1000 - 0x2fff LaunchCFMApp /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp
    0x4fd000 - 0x500fff com.kcn.thebadape The APE version 4.0 (4.0) /Library/Application Enhancers/The Bad APE.ape/Contents/MacOS/The Bad APE
    0x8fc00000 - 0x8fc50fff dyld 46.9 /usr/lib/dyld
    0x8fe00000 - 0x8fe49fff dyld 46.9 /usr/lib/dyld
    0x90000000 - 0x901c0fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90218000 - 0x9021dfff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021f000 - 0x90261fff com.apple.CoreText 1.1.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90289000 - 0x9036dfff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90396000 - 0x90757fff com.apple.CoreGraphics 1.258.51 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907e6000 - 0x908bdfff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90904000 - 0x90904fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90906000 - 0x90a0ffff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a60000 - 0x90ae3fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90b0c000 - 0x90b7efff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bf1000 - 0x90bfcfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90c01000 - 0x90c76fff com.apple.framework.IOKit 1.4.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c8c000 - 0x90ca0fff libauto.dylib /usr/lib/libauto.dylib
    0x90ca6000 - 0x90f71fff com.apple.CoreServices.CarbonCore 682.15 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90fce000 - 0x91047fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9108a000 - 0x910cbfff com.apple.CFNetwork 129.19 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x910df000 - 0x910f3fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x910ff000 - 0x91190fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x911cc000 - 0x911ecfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x911f9000 - 0x91208fff libz.1.dylib /usr/lib/libz.1.dylib
    0x9120b000 - 0x913c0fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x914bd000 - 0x914c6fff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x914cd000 - 0x914f5fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91507000 - 0x9150ffff libbsm.dylib /usr/lib/libbsm.dylib
    0x91513000 - 0x9158cfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x915d6000 - 0x915d6fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x915d8000 - 0x9160bfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91621000 - 0x916fefff com.apple.ColorSync 4.4.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9173d000 - 0x917befff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x917fb000 - 0x918adfff com.apple.QD 3.10.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x918e2000 - 0x91938fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91960000 - 0x9197afff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91988000 - 0x919a8fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x919b5000 - 0x919f1fff com.apple.LaunchServices 181 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91a09000 - 0x91a17fff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91a1f000 - 0x91a5afff com.apple.ImageIO.framework 1.5.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a6e000 - 0x91b31fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b7c000 - 0x91b91fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b96000 - 0x91bb6fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91bbb000 - 0x91c1afff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c2c000 - 0x91c30fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c32000 - 0x91c95fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c9a000 - 0x91cdafff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91ce0000 - 0x91cfafff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91cff000 - 0x91d01fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d03000 - 0x91d03fff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91d05000 - 0x91debfff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91df3000 - 0x91e12fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e7e000 - 0x91f0afff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91f16000 - 0x91fadfff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91fc6000 - 0x92573fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x925a6000 - 0x928d1fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92901000 - 0x92987fff com.apple.DesktopServices 1.3.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x929c9000 - 0x92bfdfff com.apple.Foundation 6.4.7 (567.28) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92d12000 - 0x92e00fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92e1f000 - 0x92f0efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92f1f000 - 0x92f3ffff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f4a000 - 0x92fa6fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fbc000 - 0x92fbcfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fbe000 - 0x92fd3fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe4000 - 0x92feffff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ff7000 - 0x93000fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93008000 - 0x9309bfff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930b0000 - 0x930b5fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930b9000 - 0x930dbfff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x930ef000 - 0x930f7fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x930fe000 - 0x93167fff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93190000 - 0x931d8fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93202000 - 0x93213fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9321c000 - 0x93223fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93229000 - 0x9354ffff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93684000 - 0x93691fff com.apple.opengl 1.4.13 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x936fc000 - 0x936fcfff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x936fe000 - 0x93d6cfff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x940f4000 - 0x94166fff com.apple.CoreData 90 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9419f000 - 0x9425efff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942a1000 - 0x942a1fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942a3000 - 0x9446cfff com.apple.QuartzCore 1.4.11 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x944c0000 - 0x94500fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94508000 - 0x9454cfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94772000 - 0x94a41fff com.apple.QuickTime 7.1.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94b04000 - 0x94b26fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x9b819000 - 0x9b81bfff Interposers.dylib /usr/libexec/oah/Shims/Interposers.dylib
    0xb8000000 - 0xb82d9fff LaunchCFMApp /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp
    0xc0000000 - 0xc000ffff com.unsanity.ape 2.0.2 /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
    Translated Code Information:
    Rosetta Version: 17.15
    Args: /Applications/Tri-Select/IOBackB /Applications/Tri-Select/IOBackB -psn04194305
    Exception: EXCBADACCESS (0x0001)
    Thread 0: Crashed (0xb7fffabc, 0xb52b8202)
    0x85359c08: No symbol
    0x85355c94: No symbol
    0x853d0824: No symbol
    0x853cff34: No symbol
    0x853cfeb0: No symbol
    0x853da40c: No symbol
    0x853d45b0: No symbol
    0x853d10a4: No symbol
    0x853d2358: No symbol
    0x915da408: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE : _Z20aeDispatchAppleEventPK6AEDescPSmPh + 0xa4
    0x915da314: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE : _Z25dispatchEventAndSendReplyPK6AEDescPS + 0x2c
    0x915da154: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE : _aeProcessAppleEvent + 0xe4
    0x9323582c: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox : _AEProcessAppleEvent + 0x38
    0x853dca90: No symbol
    0x853dc31c: No symbol
    0x853d9fdc: No symbol
    0x853d9d6c: No symbol
    0x853cfcf0: No symbol
    0x853ed198: No symbol
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x85359c08 ctr: 0xfffeff00
    r00: 0x85359c08 r01: 0xbfffece0 r02: 0x90accd54 r03: 0x00333180
    r04: 0x90accd54 r05: 0x00000001 r06: 0x00003227 r07: 0x00003229
    r08: 0x00000001 r09: 0x90accd5b r10: 0x90899553 r11: 0x6f52cd54
    r12: 0x00697000 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x0000000a r17: 0x00000028 r18: 0x00000096 r19: 0x00000140
    r20: 0x002e17e4 r21: 0x002e17ec r22: 0x002e17f4 r23: 0x00000000
    r24: 0x00000000 r25: 0x002e180c r26: 0x002e1814 r27: 0x0180fbb0
    r28: 0x002e1824 r29: 0x00333180 r30: 0x00000000 r31: 0x908b6ae0
    Thread 1: (0xb00997fc, 0xb813516f)
    0x90009008: /usr/lib/libSystem.B.dylib : _calloc + 0x280
    0xc0001b54: No symbol
    0x9002c4e8: /usr/lib/libSystem.B.dylib : _pthreadbody + 0x60
    0x00000000: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp : + 0x0
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x9000b2bc ctr: 0x9000b360
    r00: 0xffffffe1 r01: 0xf0080d10 r02: 0x00000032 r03: 0x002fe000
    r04: 0x00000006 r05: 0x00000000 r06: 0x00001000 r07: 0x00003803
    r08: 0x00000000 r09: 0x00000000 r10: 0x00000000 r11: 0xa00069a0
    r12: 0x9000b360 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0xc0011a38 r18: 0xc0011a38 r19: 0xc0011a38
    r20: 0xc0011a38 r21: 0x00000040 r22: 0x00000038 r23: 0x00000000
    r24: 0x002fe000 r25: 0x00001000 r26: 0x00003803 r27: 0x00000000
    r28: 0x00000000 r29: 0x00000006 r30: 0x00000006 r31: 0xc0001a38

    Hi Andbrowny,
    Thank you for responding.
    first, I can not manually connect to the other mac nor can I ping it (message "host is down") however both macs can connect to the internet and can connect to a pc on the same network. I can ping my router and both macs are receiving a tcp/ip address through DHCP. appletalk is not active on the wireless network since it is used on ethernet to print through an Asantetalk bridge. It has always before worked OK like this. SLP is enabled in directory access. I cannot find a file either visable or invisable called slp.regfile. I have zapped pram and rebooted many times.
    I first thought that the problem was my router untill I found the error message about slp. Now I don't know.
    Glenn

  • Error while posting with Tax code

    Dear All,
    I am getting the following error while i am trying to post with a tax code. Can someone tell me what could be the issue?
    Customization for RIL j_1iindcus missing in table
    Message no. 8I303
    Diagnosis
    The customization details have not been maintained for this company
    Procedure
    Please use the localization IMG or Global settings
    to maintain the company settings
    Regards
    Suresh

    Dear Suresh,
           If  you are using versions below 4.7 execute T_Code <b>J1IT</b>, go to <b> India Localization Menu->Global Settings->Company Settings</b> and add an entry for your Company Code and save.
           If you are on higher versions use the following path:
    <b>SPRO --> Logistics - General --> Tax on Goods Movement --> India --> Basic Settings --> Maintain Company Code Settings.</b>
    This should solve the issue.
    Kindly let me know if it was useful.
    Regards,
    Mary Sofia

  • If I click on an e-mail address link in a web page instead of a blank message opening I always get a pop up screen with a log-in for googlemail. I do not have and do not want a googlemail account. I just want to be able to send e-mails using Outlook.

    If I click on an e-mail address link in a web page instead of a blank message opening I always get a pop up screen with a log-in for googlemail. I do not have and do not want a googlemail account. I just want to be able to send e-mails using Outlook.

    OUtlook was already set as the mail client for FF, and is my operating system (XP)'s default mail programme. therefore problem not solved at all. what I get whenever I follow a link in a webpage to send an e-mail is a little pop up window asking me to sign in to gmail or open an account. any other suggestions?

  • Problem with HttpURLConnection and HttpSession.

    Hi,
    Problem with HttpURLConnection and HttpSession.
    I created a HttpSession object in my main class and then called a URL via HttpURLConnection.
    I tried to access the same session object from the servlet called by the URL . but the main session
    is not returned a new seperate session is created.let me know how can we continue the same session in
    the called URL also which is created in main class.
    Thanks
    Prasad

    You are not supported to create a HttpSession by java client. Only J2EE web container can create it.

  • Is there a way to use the iMac's display mode with a Mac mini with out logging in first on the Mac mini

    Is there a way to use the iMac's display mode with a Mac mini with out logging in first on the Mac mini (late2014)
    im currently useing my Mac mini as a portable computer, I take it to the university and use the iMacs there as a monitor but before I can do that I have to log in to my Mac mini first which means doing it blind
    is there a way to put the IMacs into display mode with out logging into my Mac mini first
    or is there a portable monitor that I can use that will not require me to login first

    This
    Target Display Mode: Frequently Asked Questions (FAQ) - Apple Support
    says:
    How do I enable TDM?
    Make sure both computers are turned on and awake. 
    Connect a male-to-male Mini DisplayPort or ThunderBolt cable to each computer.
    Press Command-F2 on the keyboard of the iMac being used as a display to enable TDM.
    Note: In Keyboard System Preferences, if the checkbox is enabled for "Use all F1, F2, etc. keys as standard functions keys," the key combination changes to Command-Fn-F2.
    How do I exit TDM?
    To leave TDM, press Command-F2 on the keyboard of the iMac that is in TDM. You can also exit TDM if you shutdown or sleep either computer or detach the cable.
    Can I use a third-party keyboard or older Apple keyboard to enable TDM?
    Some older Apple keyboards and keyboards not made by Apple may not allow Command-F2 to toggle display modes. You should use an aluminum wired or wireless Apple keyboard to toggle TDM on and

  • Unable to clear open items through post with Clearing F-04

    Hi Experts,
    I want to clear one GL code through transaction F- 04 Post with Clearing.
    When I clear the open items throgh f-04, (Document types UA , KR , MJ ) it posts the document but again it makes a new line item as a open item with same amount.New line item shows in a list as a open item. ( I tryed F-03 as well)
    I am unable to unable to understand the exact functionality of transacion F-04.
    Can anyone explain me please ? Please advice if I am missing anthing on this.
    Thanks,
    Manasi

    Hi Manasi,
    As the name suggest, F-04 allows you to POST to one account by CLEARING another account.
    For example you have a provision account which needs to be adjusted when the actual expense is paid -  this how it will be done -
    Give the document header details, select "Transfer posting with clearing", enter the posting key (40), give the GL account (expense account as per the example) and go to the next screen.
    Give the amount and other details for the line items and then select "choose open item" from the menu. The new screen will ask you to give an account where you will give the provision account (the account from which the open item needs to be cleared).
    Press enter and you will get the list of open items for the GL account from where you can proceed like any other clearing.
    Hope this clarifies. Do revert in case of any further queries.
    Thanks and Regards,
    anit

  • F-04 post with clearing

    Hi,
      I have made 2 jv transaction posting in fb50 those are reflecting in fbl3n as open items but if i want to clear it through F-04 post with clearing those line items are not appearing pls suggest the solution what might be reason for the same.
    waiting for early reply.
    Regards
    Pramod

    Dear Satwik,
    ever doc. have 2 ways to clear
    1) post with clearing
    2)post with out clearing
    post with clearning : if u have a invocie and u r passing the payment for that invoice if u chose post with clearning system clear the invoice against that payment.
    2)post with out clearning: if u have a invoice and ur passing gthe payment for that invoice if u chose post with out clearning that time system is not clearing the invoice amount
    and its showing as 2 line item one is invoice and 2nd is payment line item, after that u can clear both line item against each other
    Regards
    radha

  • How do I copy purchases between 2 itunes libraries on the same computer with different log ins and separate apple user ids?

    How do I copy purchases between 2 itunes libraries on the same computer with different log ins and separate apple user ids?

    Load the library which doesn't contain the songs and drag them into the open iTunes application window. If you need to move them between different computer user accounts, put them into /Users/Shared/.
    (74502)

Maybe you are looking for

  • Why does iTunes Default to a Previous Sync?

    Syncing my iPhone with my iTunes account on my computer so that I can transfer some digital downloads of movies and music ripped from a CD that weren't added back to my phone when I restored from an iCloud backup (since it isn't material that's backe

  • Method calling, a little difficultly, some help please

    Hi there! I have a "main" Class named Exchange (has the GUI elements) and instantiates other Classes. Another Class named Comms performs some methods which listen to an incoming stream of data. One particular method named incomingBody( StringBuffer s

  • How to make a page that slides in

    Hi, I am new and i'm trying to add a page that slides in from the right. I'm gonna be adding this to a dynamic flash template that i bought. I've managed to make the page slide then stop, as i know how to make a simple motion tweed. However, how do i

  • Errors when trying to update cs6 13.4 (I think) on Mac osx 10.8.4

    Errors when trying to update cs6 13.4 (I think) on Mac osx 10.8.4. I have a purchased copy. Downloaded patch which also does not work. Very frustrating.

  • Need help choosing file format

    I just purchased elements 9 for Mac, and am a total newbie.  I have hundreds of photos, slides, and negatives.  I would like to scan these before I begin trying to learn.  Is there a file format that I can choose that will allow me enhance these file