Solution needed to use Ichat to connect to my Office Video Conf IP Camera

I wanted to know if its possible to use Ichat to dial into an IP of my existing Office Video conferencing setup which is set up with a dedicated high end sony IP video camera - is there any way to do this at all even if not with ichat - with any other software so I can use my built in isight to VC with my Head Office.
Any help will be welcome

Hi Uday,
You could try some of the other apps in this list.
http://discussions.apple.com/thread.jspa?threadID=121893
1:23 PM Friday; May 12, 2006

Similar Messages

  • I have an ipad also wifi at home. Would is needed to use my wifi connection while not at home?

    I have an ipad also wifi at home. Would is needed to use my wifi connection while not at home?

    You can't use your wi-fi connection when not at home. Heck, my wi-fi connection bales out halfway down the back garden.  Many places offer wifi hot-spots. Go google. The only (relatively) surefire way to be able to get on the internet anywhere is to have a 3G capable iPad and corresonding data plan.

  • Need help using fireftp to connect to a server

    I am trying to use fireftp to connect to my college server for a web based class. each time I try to connect I get a message that says "Unable to make a connection. Please try again." I am using an imac that connects to the internet through an airport extreme and uses a home network that is protected. Can anyone help me with this?

    Have you tried the login wizard?
    http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?cont ext=ColdFusion_Documentation&file=00000180.htm

  • Ichat rarely connects, when it does, video quality is poor for one side

    Hi,
    I'm using Ichat v4.0.8.
    When trying to enter a video chat, it rarely connects just says no information has been sent for 10 seconds etc etc.
    If you persist and keep trying over and over it will eventually connect. The person on the other side can see me and hear me fine, but they are extremely blurred and the sound is very skippy.
    We have both changed to port 443 and changed our bandwidth limit to 500kbps and still no joy.
    Any help would be much apriciated!
    Thanks

    Hi,
    Welcome to the    Discussions
    In System Preferences > Quicktime > Streaming tab are you set at 1.5Mbps ?
    IS your Buddy if also on Leopard/iChat 4.x (or below) ?
    If you or your Buddy has to change this setting iChat will need to be restarted to "See" the New Speed.
    System Preferences > Quicktime caps all Video Streaming at the Automatic Setting in iChat 2, 3 and 4 (Panther/Tiger/Leopard).
    In iChat 4 it is read as 384k In earlier version as a Zero hence the need to change it.
    In iChat 3 and 4 you are trying to set your system to get iChat to see as much of your Internet Connection as is possible.
    In Snow Leopard iChat 5 "Sees" the whole speed of the Internet Connection so advice then is to tone it down to "match" your Buddies speed.
    Having said that there are ISPs where capping it again in the Bandwidth in iChat also helps on iChat 3 and 4.
    Start with the Quicktime Setting then try different Bandwidth Speeds.
    10:50 PM Tuesday; October 13, 2009
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Can i use my iPad to backup high definition video from my camera?

    I need to backup high def video from my canon 7d to free up card space.  If I export the video to my iPad (who h I can do daily using the cck) , can I re-export it to my MacBook pro without losing any resolution quality? Thanks for any fast responses to this one as I have wifi access for a few more hours before going to rural unconnected area. 

    Yes, you can do that.
    It might also be easier if you got an iPad Camera Connection kit, so you can plug the camera directly into the iPad.

  • Need help using doGoogleSearch to connect to Google API

    Hello all,
    I am trying to do my final year project and I am currently having trouble connecting to the Google API using doGoogleSearch. I dont know how to use http://api.google.com/GoogleSearch.wsdl to fill in the parameters for the doGoogleSearch and then I have to use the http://api.google.com/search/beta2 to connect to Google and perform the test. Any help would be appreciated or code or links
    Thanks in advance rgds,
    Tony
    Here is my code so far...................................
    package tony_buckley_project;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.net.URI;
    import java.net.URLConnection;
    import java.util.*;
    import java.io.*;
    import org.xml.sax.*;
    import org.xml.sax.SAXParseException;
    import org.xml.sax.helpers.DefaultHandler;
    import javax.xml.parsers.SAXParserFactory;
    import javax.xml.parsers.ParserConfigurationException;
    import javax.xml.parsers.SAXParser;
    import com.google.soap.search.GoogleSearch;
    import com.google.soap.search.GoogleSearchResult;
    import com.google.soap.search.GoogleSearchFault;
    import com.google.soap.search.GoogleSearchResultElement;
    import com.google.soap.search.*;
    import javax.xml.soap.*;
    import javax.xml.soap.SOAPConnection;
    import javax.xml.soap.SOAPConnectionFactory;
    import javax.xml.soap.MessageFactory;
    import javax.xml.soap.SOAPMessage;
    import javax.xml.soap.SOAPPart;
    import javax.xml.soap.SOAPEnvelope;
    import javax.xml.soap.SOAPBody;
    import javax.xml.soap.SOAPElement;
    import org.apache.soap.util.xml.*;
    import org.apache.soap.*;
    import org.apache.soap.rpc.*;
    import org.w3c.dom.*;
    import java.io.FileInputStream;
    import javax.xml.transform.stream.StreamSource;
    import javax.xml.messaging.URLEndpoint;
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.Source;
    import javax.xml.transform.stream.StreamResult;
    import javax.xml.transform.stream.*;
    * <p>Title: Mr. Tony Buckley</p>
    * <p>Description: </p>
    * <p>Copyright: Copyright Tony Buckley (c) 2004</p>
    * <p>Company: Cork Institute of Technology </p>
    * @[email protected]
    * @version 1.0
    public class Applet2 extends Frame implements WindowListener , ActionListener
    TextField searchField;
    Button search , quit;
    Canvas0 canvas;
    public Applet2()
    super();
    //Set up basic window
    setTitle("Tony Buckley Final Year Project");
    setBackground(Color.white);
    setSize(500 , 400);
    addWindowListener(this);
    //Set up area with buttons
    //Search button
    Panel p1 = new Panel();
    p1.setLayout(new FlowLayout());
    searchField = new TextField("" , 15);
    p1.add(searchField);
    search = new Button("Search the web for results...");
    p1.add(search);
    search.addActionListener(this);
    //Quit button
    Panel p2 = new Panel();
    p2.setLayout(new FlowLayout());
    Button quit = new Button("Quit");
    p2.add(quit);
    quit.addActionListener(this);
    //Set up search results area
    Canvas0 canvas = new Canvas0();
    add("Center" , canvas);
    Panel p4 = new Panel();
    p4.setLayout(new GridLayout(2 , 1));
    p4.add(p1);
    p4.add(p2);
    add("South" , p4);
    }//End of constructor method public Applet2()
    public void doGoogleSearch()
    String key;
    String q;
    int start;
    int maxResults;
    boolean filter;
    String restrict;
    boolean safeSearch;
    String lr;
    String ie;
    String oe;
    public static void main(String[] args)
    Applet2 app = new Applet2();
    app.setVisible(true);
    public void actionPerformed(ActionEvent event)
    //Deals with "Quit" button
    if(event.getSource() == quit)
    dispose();
    System.exit(0);
    else if(event.getSource() == search)
    /* try
    String suggestion = search_internet .doSpellingSuggestion(spellingRequest);
    if(suggestion == null)
    System.out.println("There is no spelling suggestion in the database");
    else
    System.out.println(suggestion);
    int startResult = 100;
    search_internet.setStartResult(startResult);
    int maxResult = 5;
    search_internet.setMaxResults(maxResult);
    GoogleSearchResult result_search_internet = search_internet.doSearch();
    GoogleSearchResultElement[] resultElements = result_search_internet.getResultElements();
    int startIndex = result_search_internet.getStartIndex() - 1 - startResult;
    int endIndex = result_search_internet.getEndIndex() - 1 - startResult;
    for(int i = startIndex ; i <= endIndex; i ++)
    GoogleSearchResultElement resultElement = resultElements[(i)];
    String title = resultElement.getTitle();
    String URL = resultElement.getURL();
    System.out.println(title);
    System.out.println(URL);
    System.out.println("");
    System.out.println("Start Index = " + result_search_internet.getStartIndex());
    System.out.println("End Index = " + result_search_internet.getEndIndex());
    System.out.println(result_search_internet.toString());
    int numResults = result_search_internet.getEstimatedTotalResultsCount();
    if(result_search_internet.getEstimateIsExact())
    System.out.println("Number of results: " +numResults);
    else
    System.out.println("Estimated number of results: " +numResults);
    //catch(GoogleSearchFault gsf)
    // System.out.println("Google Search Fault: " +gsf.getMessage());
    try
    String myKey = "0RK+HoNQFHJlcbNPfxgBpcjESUWV96aO";
    String wsdl = "http://api.google.com/GoogleSearch.wsdl";
    String url = "http://api.google.com/search/beta2";
    String ns1 = "urn:GoogleSearch";
    String searchTerm;
    searchTerm = "science fiction";
    String spellingRequest = searchTerm;
    //First create the connection
    SOAPConnectionFactory soapConnFactory = SOAPConnectionFactory.newInstance();
    SOAPConnection connection = soapConnFactory.createConnection();
    //Create the actual message
    MessageFactory messageFactory = MessageFactory.newInstance();
    SOAPMessage message = messageFactory.createMessage();
    //Create objects for the message parts
    SOAPPart soapPart = message.getSOAPPart();
    SOAPEnvelope envelope = soapPart.getEnvelope();
    SOAPBody body = envelope.getBody();
    //Populate the message
    SOAPElement bodyElement = body.addChildElement(envelope.createName("doGoogleSearch" , "ns1", ns1));
    GoogleSearch search = new GoogleSearch();
    search.setKey(myKey);
    search.setQueryString(searchTerm);
    //Save the message
    message.saveChanges();
    //Send the message and get a reply
    //Set the destination
    URLEndpoint destination = new URLEndpoint(url);
    //Send the message
    SOAPMessage reply = connection.call(message, destination);
    SOAPPart sp = reply.getSOAPPart();
    SOAPEnvelope se = sp.getEnvelope();
    SOAPBody sb = se.getBody();
    TransformerFactory transformerFactory = TransformerFactory.newInstance();
    Transformer transformer = transformerFactory.newTransformer();
    Source sourceContent = reply.getSOAPPart().getContent();
    StreamResult result = new StreamResult(System.out);
    transformer.transform(sourceContent, result);
    //Close the connection
    connection.close();
    catch(Exception e)
    System.out.println(e.getMessage());
    }//End of method actionPerformed
    public void windowClosing(WindowEvent event)
    //Deals with the window closing
    dispose();
    System.exit(0);
    }//End of method windowClosing
    public void windowOpened(WindowEvent event)
    public void windowIconified(WindowEvent event)
    public void windowDeiconified(WindowEvent event)
    public void windowClosed(WindowEvent event)
    public void windowActivated(WindowEvent event)
    public void windowDeactivated(WindowEvent event)
    }//End of class Applet2
    class Canvas0 extends Canvas
    public Canvas0()
    super();
    public void paint(Graphics g)
    Dimension d = getSize();
    Font f1 = new Font("TimesRoman" , Font.PLAIN , 14);
    Font f2 = new Font("TimesRoman" , Font.ITALIC , 14);
    FontMetrics fm1 = g.getFontMetrics(f1);
    FontMetrics fm2 = g.getFontMetrics(f2);
    String s1 = "Hello , ";
    String s2 = "World";
    int w1 =fm1.stringWidth(s1);
    int w2 =fm1.stringWidth(s2);
    g.setColor(Color.GREEN);

    I don't know where you got the rest of this code from (was it supplied as part of the project or did you write it yourself), but I think it may be overcomplicated.
    The last time (at least a year ago) that I looked at the Google WS api, this is all you needed:
          GoogleSearch search = new GoogleSearch();
          search.setKey("_your_key_here_");
          search.setQueryString(searchStringHere);
          GoogleSearchResult result = search.doSearch();You can look in their api docs for how to extract the results from GoogleSearchResult.
    Hope that helps?
    Kevin Hooke

  • Do i need to use the ethernet connection?

    I use the verizon Westell 7500 modem. The computer is configured to run as a wireless device.
    I'm sort of confused!!!Do I need to make a connection from the apple tv ethernet port to my modems ethernet connections.
    TheApple tv amnual makes no mention about this. This makes me thin the whole setup is wireless, but I'm still scratching my head.
    Is this a case of much ado about nothing?

    No all it is is a way to connect. If you plug in via ethernet it will use that. If you just connect apple TV to your wifi network it will use that. It makes no difference. Obviously ethernet is quicker if you're streaming movies.

  • Using ichat av 3 on panther

    i need to use ichat va 3 on panther somebody help me

    As James said, there's no way of doing this. I've tried because of various requests for this issue, and it's 100% not possible.
    -Ryan

  • Help for ichat 3.0.1 one-way video chat

    Appreciate the come back from the previous, but in ichat 3.0.1 there is no selection under Buddies for a one-way video chat. ichat 2.1 has the selection. I really need to make this connection. Is there any way? This is a mac to mac connection w/broadband. audio to audio is ok but cannot connect the one-way video with my camera. Help

    Ralph Johns (UK), "One-way video chat in 3.0.1" #1, 01:32pm Oct 22, 2005 CDT

  • Downloading and Installing a Full Solution Driver in Windows 8 Using a Wireless Connection

    Learn how to download a full solution driver for your printer from HP's website and install it using a wireless connection. The full solution driver provides you with all the tools and software needed to use all of the printer's intended functions.
    The steps shown in this video might not match exactly what you see on your screen.
    For other helpful videos go to hp.com/supportvideos or youtube.com/hpsupport. More support options for your printer are available at hp.com/support.
    This video was produced by HP.
    If I have helped you in any way click the Kudos button to say Thanks.
    The community works together, click Accept as Solution on the post that solves your issue for other members of the community to benefit from the solution.
    - Friendship is magical.
    This question was solved.
    View Solution.

    I hope you find this video useful for your new Windows 8 machine!
    If I have helped you in any way click the Kudos button to say Thanks.
    The community works together, click Accept as Solution on the post that solves your issue for other members of the community to benefit from the solution.
    - Friendship is magical.

  • WIndows 8.1 Direct Access Client Needs to approve external wifi use before it connects - proxy not responding

    Ok So I have windows 8.1 with Direct Access Client and it works fine when I am able to check and uncheck proxy settings - which is a bit of a pain and seems unnecessary (I hope). If I take the laptop to a Starbucks I get the error that the proxy server is
    not responding so it never redirects for me to "accept" the rules.
    If I uncheck my proxy settings it then redirects and connects to their internet wifi and off I go - DA connects and all is well.
    I am using a GPO to configure the proxy settings as shown (all options are greyed out for the users)

    Hi,
    Your problem is a classic one when using that kind of proxy settings, unfortunately.
    To solve this without the need of user interaction, there are two solutions that will sort this out for you. In your case, if you want to use your corporate connection for internet traffic even over da, I'd opt for alternative 1 or 2 depending on what you are
    trying to achieve.
    1. WPAD (Web Proxy Auto Discovery protocol http://en.wikipedia.org/wiki/Web_Proxy_Autodiscovery_Protocol) - it actually uses the Automatic browser configuration checkbox on your client and looks for the file wpad.dat on a specific web server that you Pointout
    with either dns-record called wpad or DHCP option 252.
    2. Auto configuration script (pac script http://en.wikipedia.org/wiki/Proxy_auto-config) - uses the same kind of file as above. The difference is that you get the possiblity, like you want in your scenario to target what users that should get the script.
    See this below article for more details on the options you have.
    http://technet.microsoft.com/en-us/library/dd361918.aspx
    http://techlib.barracuda.com/display/WSFLEXv41/How+to+Configure+Proxy+Settings+Using+Group+Policy+Management
    Let us know if you need further assistance!
    /Johan
    MCT | MCSE: Private Cloud/Server, Desktop Infrastructure

  • How to connect an apple tv to an enterprise network with a username and a password?   I need to use it over my university's wifi. theres no option to enter username and password. how to connect the apple tv to such enterprise network?

    How to connect an apple tv to an enterprise network with a username and a password?
    I need to use it over my university's wifi. theres no option to enter username and password. how to connect the apple tv to such enterprise network?

    Contact the University's IT dept, they may be able to set something up on the network to allow the ATV to connect without the need for a user name/password.

  • Need help in using my GPRS connection to surf internet on macbook

    Hi,
    I have a Nokia 9300 communicator, with a GPRS conenction. I want to use it to connect to the internet on my macbook. Since I am in India, my service provider, not having sufficient knowledge of the mac, cannot help me with configuring it.
    can anyone hwlp me here?
    i want to connect using bluetooth. Also, although I can connect the phone to the macbook via bluetooth and can trabsfer files to & fro, I cannot syncronise my phone book.
    How do I go about doing that??
    Thanks in advance.

    Hi Brian, Thanks for that. I went to meet my service provider (Hutch) yesterday. What he told me is very close to yours. Here it is
    First, when we have to make the new connection, there are 2 options - dial up or GPRS line. We tried GPRS line and set up as follows:
    Username: Blank
    Password:Blank
    Number to dial 99**# or *99#
    Here, the guy wants to know where we can enter the APN number - & I have no clue.
    Second, using these settings, I got connected, the MB says it was authenticating user and my call also showed the "G" sign, but it went away after a second, giving me an error message - Could not negotiate connection with PPP server.
    Just for curiousity sake, this guy tried his cell- a Nokia 6230. & it worked just fine. There was this problem, though, that every few seconds, the connectiion went off, giving the message that the modem had unexpectedly hung -up (& the poor guy's cell would switch off & on again on its own). But this is still distant for me.
    I need your help in getting the modem script that you are talking about. I can only see 3 nokia modems- & they are all ir, none of them are for GPRS.
    My problem is that there is no store or anything like that in India. I just bought the MB when in London recently, as it looked nice. Not very sure what to do now.
    Awaiting more help
    Rajat

  • Need to connect to upgraded Oracle EBS R12 version from R11. The current ODI set up is pointing to R11, Can i use the same connection to point to R12? Please hele experts..

    Need to connect to upgraded Oracle EBS R12 version from R11. The current ODI set up is pointing to R11, Can i use the same connection to point to R12? Please hele experts...
    Rp

    1. in physical connections part can i use the same work schema
    2. Can i use same contexts created or do i need to create everything as new and then try?
    Thanks,
    Rp.
    Hi,
    As you mentioned that you just upgraded the database, so the data is same and schema is same you can connect with the same work schema.
    Yes, you can use the same contexts , but need to do Reverse Engineering for your new database.
    And about data server, i think you also have no need to create new data server, if hostname,sid and port etc are same as these were with R11(consult with your DBAs regarding it)

  • HT3014 my mac has the VGA port and I need a newer monitor for it. what do I use that will connect it. I had a new dell monitor and none of the things that dell said worked. so I am going to get a mac monitor for a second unit.

    my mac has the VGA port and I need a newer monitor for it. what do I use that will connect it. I had a new dell monitor and none of the things that dell said worked. so I am going to get a mac monitor for a second unit.
    my laptop is a 2008 model

    Hmmm... 2008 MBP has...
    Video (Monitor):     1 (DVI)
    Details:     Supports external display in dual display and mirroring modes. VGA output provided by included Apple DVI-to-VGA adapter, S-video output provided by optional adapter (sold separately).
    http://www.everymac.com/systems/apple/macbook_pro/specs/macbook-pro-core-2-duo-2 .5-15-early-2008-penryn-specs.html

Maybe you are looking for