Tomcat(4.0)..jsp not working..crazy message

I get this when trying to access a simple jsp thru a url(html works fine):
A Servlet Exception Has Occurred
org.apache.jasper.JasperException: Unable to compile class for JSPNote: sun.tools.javac.Main has been deprecated.
if (pageContext != null) pageContext.handlePageException(t);
^
1 error, 1 warning
     at org.apache.jasper.compiler.Compiler.compile(Unknown Source)
     at org.apache.jasper.servlet.JspServlet.loadJSP(Unknown Source)
     at org.apache.jasper.servlet.JspServlet$JspServletWrapper.loadIfNecessary(Unknown Source)
     at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(Unknown Source)
     at org.apache.jasper.servlet.JspServlet.serviceJspFile(Unknown Source)
     at org.apache.jasper.servlet.JspServlet.service(Unknown Source)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Unknown Source)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(Unknown Source)
     at org.apache.catalina.core.StandardWrapperValve.invoke(Unknown Source)
     at org.apache.catalina.core.StandardPipeline.invokeNext(Unknown Source)
     at org.apache.catalina.core.StandardPipeline.invoke(Unknown Source)
     at org.apache.catalina.core.ContainerBase.invoke(Unknown Source)
     at org.apache.catalina.core.StandardContextValve.invoke(Unknown Source)
     at org.apache.catalina.core.StandardPipeline.invokeNext(Unknown Source)
     at org.apache.catalina.valves.CertificatesValve.invoke(Unknown Source)
     at org.apache.catalina.core.StandardPipeline.invokeNext(Unknown Source)
     at org.apache.catalina.core.StandardPipeline.invoke(Unknown Source)
     at org.apache.catalina.core.ContainerBase.invoke(Unknown Source)
     at org.apache.catalina.core.StandardContext.invoke(Unknown Source)
     at org.apache.catalina.core.StandardHostValve.invoke(Unknown Source)
     at org.apache.catalina.core.StandardPipeline.invokeNext(Unknown Source)
     at org.apache.catalina.valves.AccessLogValve.invoke(Unknown Source)
     at org.apache.catalina.core.StandardPipeline.invokeNext(Unknown Source)
     at org.apache.catalina.core.StandardPipeline.invoke(Unknown Source)
     at org.apache.catalina.core.ContainerBase.invoke(Unknown Source)
     at org.apache.catalina.core.StandardEngineValve.invoke(Unknown Source)
     at org.apache.catalina.core.StandardPipeline.invokeNext(Unknown Source)
     at org.apache.catalina.core.StandardPipeline.invoke(Unknown Source)
     at org.apache.catalina.core.ContainerBase.invoke(Unknown Source)
     at org.apache.catalina.connector.http.HttpProcessor.process(Unknown Source)
     at org.apache.catalina.connector.http.HttpProcessor.run(Unknown Source)
     at java.lang.Thread.run(Thread.java:539)
Any help would be appreciated. Thanks.

Thanks for the reply. I have JDK1.4 installed as C:\JDK1.4 and my CLASSPATH is C:\JDK1.4\LIB;C:\JDK1.4\LIB\TOOLS.JAR. The TOMCAT install is vanilla. This is the source from the TOMCAT date example (date$jsp.java) in the WORK dir - it blows at the catch phrase towards the bottom of the source:
package org.apache.jsp;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
import org.apache.jasper.runtime.*;
public class date$jsp extends HttpJspBase {
// begin [file="/jsp/dates/date.jsp";from=(9,0);to=(9,90)]
// end
static {
public date$jsp( ) {
private static boolean jspxinited = false;
public final void jspxinit() throws org.apache.jasper.runtime.JspException {
public void _jspService(HttpServletRequest request, HttpServletResponse  response)
throws java.io.IOException, ServletException {
JspFactory _jspxFactory = null;
PageContext pageContext = null;
ServletContext application = null;
ServletConfig config = null;
JspWriter out = null;
Object page = this;
String _value = null;
try {
if (_jspx_inited == false) {
synchronized (this) {
if (_jspx_inited == false) {
jspxinit();
jspxinited = true;
_jspxFactory = JspFactory.getDefaultFactory();
response.setContentType("text/html;charset=ISO-8859-1");
pageContext = _jspxFactory.getPageContext(this, request, response,
               "", false, 8192, true);
application = pageContext.getServletContext();
config = pageContext.getServletConfig();
out = pageContext.getOut();
// HTML // begin [file="/jsp/dates/date.jsp";from=(0,0);to=(6,0)]
out.write("<html>\r\n<!--\r\n Copyright (c) 1999 The Apache Software Foundation. All rights \r\n reserved.\r\n-->\r\n\r\n");
// end
// HTML // begin [file="/jsp/dates/date.jsp";from=(6,26);to=(9,0)]
out.write("\r\n\r\n<body bgcolor=\"white\">\r\n");
// end
// begin [file="/jsp/dates/date.jsp";from=(9,0);to=(9,90)]
dates.JspCalendar clock = null;
boolean jspxspecialclock = false;
synchronized (pageContext) {
clock= (dates.JspCalendar)
pageContext.getAttribute("clock",PageContext.PAGE_SCOPE);
if ( clock == null ) {
jspxspecialclock = true;
try {
clock = (dates.JspCalendar) java.beans.Beans.instantiate(this.getClass().getClassLoader(), "dates.JspCalendar");
} catch (Exception exc) {
throw new ServletException (" Cannot create bean of class "+"dates.JspCalendar", exc);
pageContext.setAttribute("clock", clock, PageContext.PAGE_SCOPE);
if(_jspx_specialclock == true) {
// end
// begin [file="/jsp/dates/date.jsp";from=(9,0);to=(9,90)]
// end
// HTML // begin [file="/jsp/dates/date.jsp";from=(9,90);to=(13,23)]
out.write("\r\n\r\n<font size=4>\r\n<ul>\r\n<li>\tDay of month: is ");
// end
// begin [file="/jsp/dates/date.jsp";from=(13,23);to=(13,76)]
out.print(JspRuntimeLibrary.toString((((dates.JspCalendar)pageContext.findAttribute("clock")).getDayOfMonth())));
// end
// HTML // begin [file="/jsp/dates/date.jsp";from=(13,76);to=(14,15)]
out.write("\r\n<li>\tYear: is ");
// end
// begin [file="/jsp/dates/date.jsp";from=(14,15);to=(14,62)]
out.print(JspRuntimeLibrary.toString((((dates.JspCalendar)pageContext.findAttribute("clock")).getYear())));
// end
// HTML // begin [file="/jsp/dates/date.jsp";from=(14,62);to=(15,16)]
out.write("\r\n<li>\tMonth: is ");
// end
// begin [file="/jsp/dates/date.jsp";from=(15,16);to=(15,64)]
out.print(JspRuntimeLibrary.toString((((dates.JspCalendar)pageContext.findAttribute("clock")).getMonth())));
// end
// HTML // begin [file="/jsp/dates/date.jsp";from=(15,64);to=(16,15)]
out.write("\r\n<li>\tTime: is ");
// end
// begin [file="/jsp/dates/date.jsp";from=(16,15);to=(16,62)]
out.print(JspRuntimeLibrary.toString((((dates.JspCalendar)pageContext.findAttribute("clock")).getTime())));
// end
// HTML // begin [file="/jsp/dates/date.jsp";from=(16,62);to=(17,15)]
out.write("\r\n<li>\tDate: is ");
// end
// begin [file="/jsp/dates/date.jsp";from=(17,15);to=(17,62)]
out.print(JspRuntimeLibrary.toString((((dates.JspCalendar)pageContext.findAttribute("clock")).getDate())));
// end
// HTML // begin [file="/jsp/dates/date.jsp";from=(17,62);to=(18,14)]
out.write("\r\n<li>\tDay: is ");
// end
// begin [file="/jsp/dates/date.jsp";from=(18,14);to=(18,60)]
out.print(JspRuntimeLibrary.toString((((dates.JspCalendar)pageContext.findAttribute("clock")).getDay())));
// end
// HTML // begin [file="/jsp/dates/date.jsp";from=(18,60);to=(19,22)]
out.write("\r\n<li>\tDay Of Year: is ");
// end
// begin [file="/jsp/dates/date.jsp";from=(19,22);to=(19,74)]
out.print(JspRuntimeLibrary.toString((((dates.JspCalendar)pageContext.findAttribute("clock")).getDayOfYear())));
// end
// HTML // begin [file="/jsp/dates/date.jsp";from=(19,74);to=(20,23)]
out.write("\r\n<li>\tWeek Of Year: is ");
// end
// begin [file="/jsp/dates/date.jsp";from=(20,23);to=(20,76)]
out.print(JspRuntimeLibrary.toString((((dates.JspCalendar)pageContext.findAttribute("clock")).getWeekOfYear())));
// end
// HTML // begin [file="/jsp/dates/date.jsp";from=(20,76);to=(21,14)]
out.write("\r\n<li>\tera: is ");
// end
// begin [file="/jsp/dates/date.jsp";from=(21,14);to=(21,60)]
out.print(JspRuntimeLibrary.toString((((dates.JspCalendar)pageContext.findAttribute("clock")).getEra())));
// end
// HTML // begin [file="/jsp/dates/date.jsp";from=(21,60);to=(22,21)]
out.write("\r\n<li>\tDST Offset: is ");
// end
// begin [file="/jsp/dates/date.jsp";from=(22,21);to=(22,73)]
out.print(JspRuntimeLibrary.toString((((dates.JspCalendar)pageContext.findAttribute("clock")).getDSTOffset())));
// end
// HTML // begin [file="/jsp/dates/date.jsp";from=(22,73);to=(23,22)]
out.write("\r\n<li>\tZone Offset: is ");
// end
// begin [file="/jsp/dates/date.jsp";from=(23,22);to=(23,75)]
out.print(JspRuntimeLibrary.toString((((dates.JspCalendar)pageContext.findAttribute("clock")).getZoneOffset())));
// end
// HTML // begin [file="/jsp/dates/date.jsp";from=(23,75);to=(29,0)]
out.write("\r\n</ul>\r\n</font>\r\n\r\n</body>\r\n</html>\r\n");
// end
} catch (Throwable t) {
if (out != null && out.getBufferSize() != 0)
out.clearBuffer();
if (pageContext != null) pageContext.handlePageException(t);
} finally {
if (_jspxFactory != null) _jspxFactory.releasePageContext(pageContext);

Similar Messages

  • BUG in iOS7: Post iOS7 upgrade, search option does not work for "Messages". If you want to search a contact name in Messages who is way below the list, the search will not yield any result.

    BUG in iOS7: Post iOS7 upgrade, search option does not work for "Messages". If you want to search a contact name in Messages who is way below the list, the search will not yield any result.

    These are user forums. You are not speaking to Apple here. Report your problem at Apple Feedback.

  • I have an ipad (IOS 7.1) and downloaded latest version of itunes (11.1.5.5) and downloaded itools (1.8.2.8) but my Itools does not work and message that your itools is not compatible with itunes so please want your comment for that.

    I have an ipad (IOS 7.1) and downloaded latest version of itunes (11.1.5.5) and downloaded itools (1.8.2.8) but my Itools does not work and message that your itools is not compatible with itunes so please want your comment for that.

    Hello JD_NINJA,
    Thanks for using Apple Support Communities.
    Error 9006 when restoring your iOS device indicates that there is security software on your computer which is preventing connection to the Apple server or your device.  To troubleshoot this issue please follow the directions below.
    Check your security software
    Related errors: 2, 4, 6, 9, 1611, 9006. Sometimes security software can stop your device from communicating with either the Apple update server or with your device.
    Check your security software and settings to make sure that they aren't blocking a connection to the Apple servers.
    Get help with iOS update and restore errors - Apple Support
    When restoring your iPhone, please make sure to follow the directions in the link below to properly restore.
    Restore your device from an iCloud or iTunes backup - Apple Support
    Take care,
    Alex H.

  • Applemobiledevice not working properly message

    Just downloaded the latest itunes. Every time I open itunes there's an "apple mobile device not working properly" message that continually pops up and it won't stop. I use Vista and have no clue how to stop it. Can anyone help?

    Take a look here:
    http://discussions.apple.com/ann.jspa?annID=640
    Selective startup info:
    http://support.microsoft.com/kb/310560
    Hope that helps.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Discussions page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums, in the User Tips Library and in the Apple Knowledge Base before you post a question.
    Regards.

  • My large monitor is not showing the screen of my MAC airbook on it. All cables are hooked up. I reset the pram  and still not working. Message on black monitor says"check signal cable...?

    My large monitor is not showing the screen of my MAC airbook on it. All cables are hooked up. I reset the pram per the instructions I received at the MAC store and the monitor is still not working. Message on blacked out monitor says"check signal cable". All cables are attached and monitor and MAC are both plugged into power source...Help ?

    Go to System Preferences, Display. Click on dectect displays.

  • Help pls ! JSP not working in tomcat

    Hi techies,
    I have a problem in executing jsp files thru tomcat on windows
    The problem is i have my jsp files in a directory, i use virtual directory concept by setting up context in server.xml file to access my jsp, servlets and html files and some jsp files are working properly, but certain jsp files are not working...
    It gives an error saying " jsp file not found.." even though the file is in the directory
    Can anyone help to come-out of this problem.
    Rgds
    sathish

    Hi,
    if you are trying to map a short name to a jsp page, you should do that in the web.xml file not in the server.xml i think...
    Hope this help...

  • Login thru JSP not working?

    Hello
    I am trying to login thru JSP, Web Server is Tomcat & database is sqlserver2000. After filling user, password & pressing submit button,error message is as follows :
    cannot resolve symbol
    symbol : variable connection
    location: class org.apache.jsp.verifyuser_jsp
    Statement statement = connection.createStatement();
    This is the code :
    <BODY>
    <% String user = request.getParameter("user");%>
    <% String pwd = request.getParameter("pwd");%>
    <%
    try
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection connection = DriverManager.getConnection(
    "jdbc:odbc:DEVELOPER1","sa","");
    System.out.println("database connected");
    Statement statement = connection.createStatement();
    String query1 = "SELECT Username, Password FROM login WHERE Username = '"+user+"' AND Password = '"+pwd+"'";
    ResultSet p = statement.executeQuery(query1);
    while (p.next())
    String Puser = p.getString("Username");
    String Ppass = p.getString("Password");
    if (user.equals("Puser") && pwd.equals("Ppass"))
    %>
    <jsp:forward page = "welcome.jsp"/>
    <% else { %>
    <h3>Invalid username or password</h3>
    <% }
    connection.close();
    catch (Exception e)
    out.println(e.getMessage());
    %>
    <h3>error in accessing database</h3>
    <% }
    %>
    </BODY>
    what's wrong?

    import java.sql.* package is given, even then its not working.

  • Include file in jsp not working

    Hi ,
    I have an include file statement in my jsp file which is not working. Not getting any error message either only the page is displayed without the jsp file included.
    My include code looks like this :
    <%@ include file ="Includes/hello.jsp" %>Also i tried including an html file or an image in the same place neither of the two displayed.
    <!--#include virtual="includes/footer.html" -->
    My jsp file is hosted on IIS

    nb123 wrote:My jsp file is hosted on IIS
    Hi ,
    I have an include file statement in my jsp file which is not working. Not getting any error message either only the page is displayed without the jsp file included.
    My include code looks like this :
    <%@ include file ="Includes/hello.jsp" %>Also i tried including an html file or an image in the same place neither of the two displayed.
    <!--#include virtual="includes/footer.html" -->
    My jsp file is hosted on IIS
    Check the path you've specified. It may well be;
    <%@include file="hello.jsp" %>or
    <%@include file="/Includes/hello.jsp" %>

  • TS3989 New MacAir but  photostream does not work.  Message though everything is on. "In order to use Photo Stream, you have to be signed into your iCloud account in System Preferences." And,

    New computer but Photostream does not work.  I am signed into my account but get the following message:  In order to use Photo Stream, you have to be signed into your iCloud account in System Preferences.  I go to system preferences and then get a message that says that my account cannot be accessed.  However, I am using my icloud account for email and other items and it works fine.  Any thoughts?

    Are you getting this messages in iPhoto? If so try the following (again?):
    Log out of iCloud in the System/iCloud preference pane and disable Photo Stream in iPhoto's Photo Share preference pane.  Then log back in and re-enable, respectively.  That should jump start Photo Stream.
    OT

  • Tomcat 4.1.x not working under JDK 1.2.2

    We are trying to test our web application on all versions of JDK starting from 1.2.2. We use Tomcat as the servlet engine and after upgrading from Tomcat 3.2.x to 4.1.24 (we've tried 4.1.18 as well) we have noticed that the new Tomcat does not start under JDK 1.2.2, see command line output below. We've tried on several machines and it fails with the same Exception. Has anyone tried running Tomcat 4.x on JDK 1.2.x? We find it hard to believe that a product like Tomcat would fail to support JDK 1.2, so any information would be appreciated.
    C:\Java\jakarta-tomcat-4.1.24\bin>catalina.bat run
    Using CATALINA_BASE: ..
    Using CATALINA_HOME: ..
    Using CATALINA_TMPDIR: ..\temp
    Using JAVA_HOME: c:\java\jdk1.2
    Bootstrap: Class loader creation threw exception
    java.lang.IllegalMonitorStateException: current thread not owner
    at org.apache.catalina.loader.StandardClassLoader.addRepositoryInternal(StandardClassLoader.java, Compiled Code)
    at org.apache.catalina.loader.StandardClassLoader.<init>(StandardClassLoader.java, Compiled Code)
    at org.apache.catalina.startup.ClassLoaderFactory.createClassLoader(ClassLoaderFactory.java, Compiled Code)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java, Compiled Code)

    I had the same problem.
    No Tomcat 4.1.x is not working under JDK1.2.2.
    It has something to do with a difference in byte code of the classes between jdk1.2.2 and jdk 1.4.
    I am running now on J2SDK1.4.1_03 and have no problems any more

  • My Video chat is not working with messages.

    When someone tries to send me an invite for a video chat the green light shows up but I do not receive and invitation window to accept it.
    I am using an aim account on messages and my server settings are api.oscar.aol.com, port 443, and use SSL is checked.
    In connection doctor is says my router type is port restricted and that "This computer's network setup includes one or more devices that are not fully compatible with audio and video chatting. I am not sure if this is the reason my video chat is not working.
    If anyone can help me please let me know.

    Hi,
    Most routers can be accessed via  Web Browser.
    The IP shown in System Preferences > Network > Advanced Button > TCP/IP tab in the "Router IP" box is generally the one to use.
    You also tend to need a User ID and Password.
    Apple Base Stations are different in that they have an App in the Utilities folder that accesses the set up screens.
    Your router can have different methods of opening the ports.
    Port Forwarding
    This tends to be the oldest of the methods.
    Essentially you point a port to an IP (computer) to allow it.
    A collection of ports may need to be entered one by one.
    Once set up, only that computer can use those ports.
    Port Triggering
    This cuts down the number of ports set to be Open as it involves "listening" ports that then open further ports
    iChat/Messages needs some ports to be open all the time and you set these a bit like Port Forwarding but with listing the IP to send the data to.
    The A/V side can have a listening port (port 5678 for the Visible part of the Invite)
    The advantage is that multiple computers can use the same ports.
    DMZ (Demilitarised Zone)
    This is an ON or Off setting (Enable/Disable)
    It opens all the port (65535 of them) to one IP (i.e only one computer can use this.)
    It is sort of like Port Forwarding Extreme
    UPnP (Universal Plug 'n' Play)
    A setting that allows the App to tell the router which ports to open.
    This means the router can carry on doing DHCP and multiple computer can use the ports involved.
    Where these setting are varies at least as much as there are manufacturers.
    This is  Linksys Port Forwarding (the arrows above the pic show the Others  (it does not show DMZ)
    7:47 PM      Thursday; September 27, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and and iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • AIM not working with messages

    Hello,
    My AIM account has not worked with ichat or messages in the last few months. I called Apple about this over 3 weeks ago and they said their is a glitch in the lion software and aim? However, all of my friends have no problem with their aim accounts working. I have downloaded AIM and everything works. It just does not work in ichat/messages after re-setting the password and re-adding the account. Help!

    Yes,  enabling and disabling the AIM account (sometimes it takes doing it a few times) seems to work.  And I found elsewhere that opening activity monitor and killing off the imagent process (which then automatically relaunches) seems to work as well.  Those workarounds are not permanent solutions for me though.  As soon as the iMac is either restarted or shut down and then turned back on...  Messages seems to be right back at square one with not being able to connect to AIM unless I use the workaround again.  I just hope Apple can figure out what is going on and fix the app before it goes final.

  • JSP Not Working with Thin Driver

    My JSP is not working with Oracle thin driver but it is working with Oracle OCI driver.
    From my jsp i am calling a stored procedured and passing 170 parameters to the procedure. This JSP works with Oracle OCI Driver configured as thrid party drivers in iAS6.0 SP2, but not working with Oracle Thin Driver configured as third party drivers in iAS6.0. My thin driver JDBC Connection URL is as follows:
    jdbc:oracle:thin:@(DESCRIPTION =(ADDRESS_LIST =(ADDRESS = (PROTOCOL = TCP)(HOST = MAPDBI01)(PORT = 1521)))(CONNECT_DATA =(SID = MAPS))).
    I have to give this URL because my production server deployment consists of iWS4.1 SP5 and iAS6.0 SP2 in different solaris boxes and Oracle 8.1.7 Database server in another Solaris Box. There is a pool of proxy servers between iAS6.0 box and the oracle box.

    Wim,
    I'd really appreciate it if you could provide some sample code. A complete, small, simple java class that I could copy and try out would be wonderful -- if it's not too much trouble.
    Thanks heaps (in advance :-),
    Avi.

  • Hyperlink to file in JSP not working

    I have a JSP page where I am providing a hyperlink to a file on the C: drive as follows
    Try this
    Nothing happens when I click this hyperlink.
    When I scroll over the hyperlink I see the correct path "file:///C:/ReqImport/data.txt" in the status bar and when paste this path in my address bar, it does open up the file.
    Any ideas why this file hyperlink does not work on this JSP page.
    Thanks

    Hmm, you're right, I just tried it and it doesn't appear to work. It looks like a security thing: If the original page is on my hard drive, links to other files on my hard drive work. But when the original page is on a web server, links to files on my hard drive don't appear to work.
    Do you realize that such a link is referring to a file on the C: drive of the client, the user, not the C: drive of the server? I'm not sure what you're up to, but for most applications such a link is pretty much useless, as you normally have no way of knowing what files the user has on his C: drive.

  • Find My iPhone not working - MobileMe message: No Location Available

    Hi Guys, I'm upgraded to iOS 4.3.1 and the Find My iPhone feature is not working. My MobileMe account picks up the iPhone but says: No Location Available. Even though I can pick up my location on Google Maps/Facebook/Camera/Google without any problems on my iPhone. I installed the Find My iPhone app on my iphone and the same thing happens, picks up the phone but give a message: No Location Available. I tried on 3G/Wifi still
    Time Zone = Johannesburg, South Africa
    MobileMe Push is enabled
    Is anyone else experiencing problems with Find My iPhone?

    i had all the same problems as everyone. then I tried powering down the ipad (even when I bought it, it was in sleep mode so it had never been off). to power down, To turn off the iPad, locate the hold button on top of the iPad, at its right side. This is a physical button, not an onscreen one. Press the hold button for a few seconds, until a slider appears at the top of the screen that says "slide to power off."
    To turn the iPad off, move the slider from left to right. If you don't want to shut it down, tap the "cancel" button at the bottom of the screen.
    After I turned it back on (by pressing and holding the same button), it worked!

  • Video, screen sharing not working, error messages

    I have used the video chat function a few times, but i have always had problems with it not working, any time i do screen sharing or a video chat with a windows OR macintosh machine now it brings up an error message after it says that it is connecting...i am really confused and this is ******* me off!
    I will list the error that came after the video:
    iChat Connection Log:
    2008-05-21 20:35:16 -0400: AVChat started with ID 2194222853.
    2008-05-21 20:35:16 -0400: 0x18126420: State change from AVChatNoState to AVChatStateWaiting.
    2008-05-21 20:35:16 -0400: xotightpantsxo8: State change from AVChatNoState to AVChatStateInvited.
    2008-05-21 20:35:23 -0400: 0x18126420: State change from AVChatStateWaiting to AVChatStateConnecting.
    2008-05-21 20:35:23 -0400: xotightpantsxo8: State change from AVChatStateInvited to AVChatStateConnecting.
    2008-05-21 20:35:33 -0400: 0x18126420: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-05-21 20:35:33 -0400: 0x18126420: Error -8 (Did not receive a response from 0x18126420.)
    2008-05-21 20:35:33 -0400: xotightpantsxo8: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-05-21 20:35:33 -0400: xotightpantsxo8: Error -8 (Did not receive a response from 0x18126420.)
    Video Conference Error Report:
    306.405273 @SIP/SIP.c:2719 type=4 (900A002D/0)
    [SIPConnectIPPort failed]
    522.369096 @SIP/SIP.c:2719 type=4 (900A002D/0)
    [SIPConnectIPPort failed]
    560.164233 @SIP/SIP.c:2719 type=4 (900A002D/0)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    11.412461 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    11.781589 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    58.376604 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 2 returns 1
    58.467048 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    290.052208 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 3 returns 1
    299.850964 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    299.854461 @Video Conference/VCInitiateConference.m:1701 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    305.891465 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK3ea7e75c026bef0d
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=4752864
    Call-ID: 438be96a-2795-11dd-af25-fdfccf654012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=shealueder 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:405184561
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:996536708
    306.399168 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK3ea7e75c026bef0d
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=4752864
    Call-ID: 438be96a-2795-11dd-af25-fdfccf654012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=shealueder 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:405184561
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:996536708
    351.681334 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 5 returns 1
    351.833003 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    508.339376 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 6 returns 1
    515.834266 @VCChannel/VCChannel.m:252 type=2 (00000000/0)
    [VCChannel prepareConnectionWithRemoteConnectionData - remote VCConnectionData: 1]
    515.837805 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    515.842287 @Video Conference/VCInitiateConference.m:1701 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    521.868058 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK7619eb4d60bf5c9b
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1933163902
    Call-ID: c447b642-2795-11dd-af25-bc7a03df4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 402
    v=0
    o=shealueder 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2202818905
    522.368933 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK7619eb4d60bf5c9b
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1933163902
    Call-ID: c447b642-2795-11dd-af25-bc7a03df4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 402
    v=0
    o=shealueder 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2202818905
    538.607026 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 8 returns 1
    553.638006 @VCChannel/VCChannel.m:252 type=2 (00000000/0)
    [VCChannel prepareConnectionWithRemoteConnectionData - remote VCConnectionData: 1]
    553.642410 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    553.648235 @Video Conference/VCInitiateConference.m:1701 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    559.663172 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK70e7d9e002cec9d7
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1812590830
    Call-ID: dad06936-2795-11dd-af25-9796a55f4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 402
    v=0
    o=shealueder 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2441623279
    560.164077 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK70e7d9e002cec9d7
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1812590830
    Call-ID: dad06936-2795-11dd-af25-9796a55f4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 402
    v=0
    o=shealueder 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2441623279
    1036.508147 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 10 returns 1
    1036.587432 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    0.000057 @:0 type=5 (00000000/16402)
    [Local SIP port]
    0.000073 @:0 type=5 (00000000/16402)
    [Local SIP port]
    Binary Images Description for "iChat":
    0x1000 - 0x239fff com.apple.iChat 4.0.2 (604) /Applications/iChat.app/Contents/MacOS/iChat
    0x2ae000 - 0x31cfff com.apple.Bluetooth 2.1 (2.1f14) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x368000 - 0x4b9fff com.apple.viceroy.framework 363.1 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x527000 - 0x566fff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x588000 - 0x5a1fff com.apple.frameworks.preferencepanes 12.0 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5bb000 - 0x5f4fff com.apple.remotedesktop.screensharing 1.0 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x604000 - 0x618fff com.apple.ScreenSaver 2.1 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x628000 - 0x646fff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x64e000 - 0x6c0fff com.apple.iLifeMediaBrowser 1.0.5 (205.0.2) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x6fe000 - 0x72ffff com.apple.iChatCommonGUI 4.0.2 (604) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x758000 - 0x75bfff com.apple.BezelServicesFW 1.4.624 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x769000 - 0x769fff com.ksuther.chax.loader ??? (2.1.1) /Library/InputManagers/Chax/Chax.bundle/Contents/MacOS/Chax
    0x78e000 - 0x78efff com.apple.JavaPluginCocoa 12.0.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x7d7000 - 0x7dcfff com.apple.iChat.Styles.Balloons 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x7e3000 - 0x7e6fff com.apple.iChat.Styles.Boxes 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x7ed000 - 0x7f3fff com.apple.iChat.Styles.Compact 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x900000 - 0x902fff com.apple.iChat.Styles.Text 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0x908000 - 0x931fff com.ksuther.chax ??? (2.1.1) /Library/InputManagers/Chax/Chax.bundle/Contents/Resources/Chaxmain.bundle/Contents/MacOS/Chaxmain
    0x96a000 - 0x96bfff com.apple.iChat.PersonIconPlugIn 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0x978000 - 0x979fff com.ecamm.pluginloader Ecamm Plugin Loader v1.0.5 (1.0.5) /Library/InputManagers/Ecamm/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0x97e000 - 0x997fff com.ecamm.ConferenceRecorder v2.1.3 (2.1.3) /Library/InputManagers/Ecamm/Plugins/ConferenceRecorder.plugin/Contents/MacOS/C onferenceRecorder
    0xe9c000 - 0xfa6fff com.apple.RawCamera.bundle 2.0.4 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0xfbc000 - 0xfe1fff com.ecamm.iglasses v2.0.1 (2.0.1) /Library/InputManagers/Ecamm/Plugins/iGlasses.plugin/Contents/MacOS/iGlasses
    0x15080000 - 0x15083fff com.apple.ink.component 1.3 (81) /System/Library/Components/Ink.component/Contents/MacOS/Ink
    0x1511b000 - 0x1518cfff com.DivXInc.DivXDecoder 6.4.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1519a000 - 0x151eafff com.DivXInc.DivXDecoder 6.0.5 /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x15b74000 - 0x15b79fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x15bc9000 - 0x15bccfff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x15bd2000 - 0x15bd7fff com.apple.audio.AppleHDAHALPlugIn 1.5.6 (1.5.6a19) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x15be1000 - 0x15beafff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x15d00000 - 0x15d3bfff com.apple.QuickTimeFireWireDV.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x15d46000 - 0x15d73fff com.apple.QuickTimeIIDCDigitizer 7.4.5 (67) /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x15d7e000 - 0x15dc8fff com.apple.QuickTimeUSBVDCDigitizer 2.1.6 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x15e02000 - 0x15f84fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x15fb2000 - 0x1600bfff com.apple.driver.AppleIntelGMA950GLDriver 1.5.24 (5.2.4) /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x16013000 - 0x1602ffff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x17136000 - 0x172c6fff com.apple.audio.codecs.Components 1.6.2 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x17318000 - 0x17319fff com.ecamm.iGlassesVDIG iGlasses v2.0.1 (2.0.1) /Library/Components/iGlasses.component/Contents/MacOS/iGlasses
    0x1731e000 - 0x17327fff com.apple.iokit.IOUSBLib 3.0.0 /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
    0x175e0000 - 0x175e7fff com.apple.JavaVM 12.0.2 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x17f53000 - 0x17f56fff com.apple.iokit.IOQTComponents 1.6 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x18538000 - 0x18538fff liblangid.dylib /usr/lib/liblangid.dylib
    0x18900000 - 0x18912fff com.noiseindustries.Units 1.1.1 (kFxFactoryRepositoryVersion) /Users/shealueder/Library/Graphics/Image Units/Noise Industries Units.plugin/Contents/MacOS/Noise Industries Units
    0x18b50000 - 0x18b6cfff com.apple.QuartzComposer.ExtraPatches 2.1 (106.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x18b9d000 - 0x18baafff com.apple.QuartzComposer.Backdrops 1.1 /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x18bf4000 - 0x18c11fff com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x900cefff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x900cf000 - 0x900defff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x900df000 - 0x900e1fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x900e2000 - 0x90124fff com.apple.NavigationServices 3.5.1 (161) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x90125000 - 0x90149fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x9014a000 - 0x907e3fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907e4000 - 0x907e4fff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x907e5000 - 0x907f5fff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90804000 - 0x90883fff com.apple.SearchKit 1.2.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90884000 - 0x90926fff com.apple.QuickTimeImporters.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x90927000 - 0x9092bfff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9092c000 - 0x90a0bfff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90a0c000 - 0x90a34fff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x90a35000 - 0x90a36fff libffi.dylib /usr/lib/libffi.dylib
    0x90a37000 - 0x90b5bfff com.apple.audio.toolbox.AudioToolbox 1.5.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90b5c000 - 0x90bd9fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90c0f000 - 0x90c3efff com.apple.AE 402.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90c3f000 - 0x90c49fff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x90c4a000 - 0x90c4cfff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x90c4d000 - 0x9100bfff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9100c000 - 0x91093fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x91094000 - 0x910a2fff libz.1.dylib /usr/lib/libz.1.dylib
    0x910a3000 - 0x9115dfff com.apple.CoreServices.OSServices 224.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9116b000 - 0x91181fff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9124b000 - 0x91251fff com.apple.print.framework.Print 218.0.2 (220.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91252000 - 0x9138afff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x9138b000 - 0x91448fff com.apple.WebKit 5525.18 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x91449000 - 0x914fbfff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x914fc000 - 0x9152efff com.apple.LDAPFramework 1.4.3 (106) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9152f000 - 0x91589fff com.apple.CoreText 2.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9158a000 - 0x915c3fff com.apple.securityfoundation 3.0 (32989) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x915ce000 - 0x9172dfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9172e000 - 0x91b3efff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x91b3f000 - 0x91e47fff com.apple.HIToolbox 1.5.2 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x91e48000 - 0x92121fff com.apple.CoreServices.CarbonCore 785.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92122000 - 0x922a0fff com.apple.AddressBook.framework 4.1 (687.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x922a1000 - 0x922b4fff com.apple.IMUtils 4.0.2 (579) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x922b5000 - 0x922b5fff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x922b6000 - 0x922b6fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x92324000 - 0x92348fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x92349000 - 0x9234efff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9234f000 - 0x92394fff com.apple.Metadata 10.5.2 (398.7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x92395000 - 0x923e4fff com.apple.QuickLookUIFramework 1.1 (170.2) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x923e5000 - 0x923e5fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x923e6000 - 0x925b1fff com.apple.security 5.0.2 (33001) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x925be000 - 0x925cffff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x925d0000 - 0x925fdfff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x925fe000 - 0x9260dfff com.apple.DSObjCWrappers.Framework 1.2.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9260e000 - 0x9262cfff com.apple.DirectoryService.Framework 3.5.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9262d000 - 0x9262dfff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x9262e000 - 0x9262efff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9262f000 - 0x9262ffff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x92630000 - 0x92648fff com.apple.openscripting 1.2.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92649000 - 0x92655fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x92656000 - 0x93706fff com.apple.QuickTimeComponents.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x93707000 - 0x93712fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93713000 - 0x93751fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x93752000 - 0x93897fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x93898000 - 0x93979fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x9397a000 - 0x93999fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9399a000 - 0x939eafff com.apple.HIServices 1.7.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x939eb000 - 0x93aecfff com.apple.PubSub 1.0.3 (65.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x93aed000 - 0x93afdfff com.apple.speech.synthesis.framework 3.6.59 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x93afe000 - 0x93b1afff com.apple.IMFramework 4.0.2 (579) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x93b1b000 - 0x93ba6fff com.apple.framework.IOKit 1.5.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x93ba7000 - 0x93bebfff com.apple.DirectoryService.PasswordServerFramework 3.0.2 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x93cc0000 - 0x93cc0fff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x93cc1000 - 0x93d1dfff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93d1e000 - 0x93da7fff com.apple.DesktopServices 1.4.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x93da8000 - 0x945a5fff com.apple.AppKit 6.5.2 (949.26) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x945a6000 - 0x945bafff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x945bb000 - 0x945ecfff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x94856000 - 0x948e9fff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x948ea000 - 0x9492bfff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9492c000 - 0x94f7cfff com.apple.WebCore 5525.18.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x94f7d000 - 0x95044fff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x95045000 - 0x95200fff com.apple.QuartzComposer 2.1 (106.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x95201000 - 0x95205fff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x9535f000 - 0x95395fff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x95396000 - 0x953cdfff com.apple.SystemConfiguration 1.9.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x954ae000 - 0x954d6fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x954d7000 - 0x95534fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x95535000 - 0x9555ffff com.apple.CoreMediaPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x95560000 - 0x9558bfff libauto.dylib /usr/lib/libauto.dylib
    0x9558c000 - 0x9563cfff edu.mit.Kerberos 6.0.12 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9563d000 - 0x956d0fff com.apple.ApplicationServices.ATS 3.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x956d1000 - 0x956e8fff com.apple.datadetectors 1.0.1 (66.2) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x956e9000 - 0x95763fff com.apple.print.framework.PrintCore 5.5.2 (245.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95764000 - 0x957e0fff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x957e1000 - 0x957e8fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x957e9000 - 0x957f1fff com.apple.DiskArbitration 2.2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x957f2000 - 0x95864fff com.apple.PDFKit 2.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x95865000 - 0x958cafff com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x958cb000 - 0x95957fff com.apple.QTKit 7.4.5 (67) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x95958000 - 0x95978fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95979000 - 0x95980fff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x95981000 - 0x9598afff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9598b000 - 0x95a32fff com.apple.QD 3.11.52 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x95a33000 - 0x95a6dfff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95a6e000 - 0x95a84fff com.apple.CoreVideo 1.5.0 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95a85000 - 0x95da5fff com.apple.QuickTime 7.4.5 (67) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x95da6000 - 0x96279fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9627a000 - 0x962c8fff com.apple.datadetectorscore 1.0.1 (52.13) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x962ce000 - 0x962d2fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x962d3000 - 0x962dafff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x962db000 - 0x962dbfff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x962dc000 - 0x96326fff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x96327000 - 0x96365fff com.apple.CoreMediaIOServicesPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x96396000 - 0x96399fff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9639a000 - 0x96730fff com.apple.QuartzCore 1.5.1 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x96731000 - 0x9678afff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9678b000 - 0x9678dfff com.apple.CrashReporterSupport 10.5.0 (156) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x967cc000 - 0x96843fff com.apple.CFNetwork 221.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9684a000 - 0x9684afff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9684b000 - 0x96868fff com.apple.QuickLookFramework 1.1 (170.2) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9695e000 - 0x96965fff libbsm.dylib /usr/lib/libbsm.dylib
    0x96966000 - 0x96981fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x96982000 - 0x969c1fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x969c2000 - 0x96a90fff com.apple.JavaScriptCore 5525.17 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x96a91000 - 0x96a96fff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x96a97000 - 0x96bcefff com.apple.imageKit 1.0.1 (1.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x96c00000 - 0x96c1efff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x96c1f000 - 0x96c6ffff com.apple.framework.familycontrols 1.0.2 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x96c70000 - 0x96da2fff com.apple.CoreFoundation 6.5.1 (476.10) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96da3000 - 0x96e88fff com.apple.CoreData 100.1 (186) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x96e89000 - 0x96f15fff com.apple.LaunchServices 286.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x96f16000 - 0x96f21fff com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x96f22000 - 0x9719cfff com.apple.Foundation 6.5.4 (677.15) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9719d000 - 0x971a2fff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x971a3000 - 0x971a3fff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0xc0000000 - 0xc0008fff com.growl.growlframework 0.7.3 /Library/InputManagers/Chax/Chax.bundle/Contents/Resources/Chax_main.bundle/Con tents/Frameworks/Growl.framework/Growl

    There is nothing in this log that says there is a problem.
    The SIP port listed for you and your Buddy are on port 16402 which is iChat's first choice.
    As you have not said anything about any other settings or the devices you use to connect to the internet then it is impossible to say more.
    5:10 PM Saturday; May 24, 2008

Maybe you are looking for

  • Snow Leopard killed my vga displays!!

    This is by far the most weird problem I have ever encountered after upgrading to a new OS. I run a company where we have something like 15 different Macs. Mostly Intel, but different ages, Mac Pro, Macbook Pro, iMacs, Mac Mini etc. A couple of days a

  • Purchase order idoc - generate all lines with any changes

    when the orders idos is created new all material lines are created in the idoc when there is a change only the changed material lines are included in the idoc if no material lines are changed only the header idoc segments are created how can I have t

  • How to open network tab in developer tool and filter based on a value in C# selenium webdriver

    Hi, I am using selenium webdriver in c#, is there any way i can open the network tab of developer tool for the opened page, filter based on a value, and click on the event where i can check the value of the variable Sample code woulb b helpful Thanks

  • Migrating SQL Server database to Oracle 8i - any known issues

    Hi, I am in the process of migrating SQL Server database to Oracle 8i for testing purpose. When I do migrate SQL Server database to Oracle 8i, am I doing any harm to the exiting SQL Server database? Would the users be able to use SQL Server database

  • Unable to bind socket: Address already in use

    Hi, I get the following error whenever I start my Application Server on Linux machine. If I deploy the EJB application onto a OC4J instance, the server is refusing the connection by throwing Connection Refused error. Any insight about this issue will