GTalk from behind the firewall using Python

Friends,
I'm a student accessing the net from behind the University Firewall and it does not allow us access to GTalk (some crappy policy). When I was using Windows, about a couple of months back, I used to run Python server and to tunnel thru it to access Internet and GTalk in particular.
Now Google does not have a dedicated GTalk client, . I tried fiddeling with some settings in iChat and Adium but couldn't get it to work.
Can anyone help in this respect.
highly hopeful,
Aditya
Macbook   Mac OS X (10.4.8)   2.0Ghz Intel Core 2 Duo, 1Gb ram, 80Gb HD

Hi,
This forum may be of more help
http://discussions.apple.com/forum.jspa?forumID=755
5:11 PM Sunday; February 25, 2007

Similar Messages

  • Portal Installation from behind the Firewall

    Hi
    I'm tryin to install portal but my db is behind the firewall , how to aolve this problem ???? i cant use tns connect string
    here is what i have in my tnsnames.ora
    IDB =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = tcp)(PORT = 1610)(HOST = 192.168.0.2))
    (ADDRESS = (PROTOCOL = tcp)(PORT = 1521)(HOST = 172.16.10.49))
    (CONNECT_DATA =
    (SID = dolphin)
    (SOURCE_ROUTE = yes)
    )

    Hi
    My firewall support SQL , because I can connect to my database from 9ias server outside the firewall but my problem is only with Portal Installation , because I cant use tns connect string , I can only use the server name and the port , and I can only connect using tns connect string because
    I have added to entries one for my firewall
    and the other one is for db ...
    any help please

  • Can't access locally hosted website from behind the router, but can outside

    Hi, I recently had to be moved from ATT DSL to U-verse. At home I host a small non-commercial website with a domain name registered, listening on port 80.  I can access the website if signed in to my employer's VPN at home, but not from any machine in my home network.  This worked for a few days after switching, but then suddenly stopped working. Any idea what's going on and if it can be fixed? Since I can get to it from VPN, I assume folks outside of U-verse can see it.  How about folks with U-verse as their ISP?  The web site is http://www.jtlanguage.com. Thanks. -John 

    I suspect that the U-Verse RG is smart enough to see that the IP address you are attempting to route to is itself, and it is not applying the port forwarding to traffic coming from internal addresses as it is from external traffic arriving (since the traffic is coming from behind the firewall, not outside it).  If this is the case, you could put a hosts file entry on your local machines to identify the internal IP address rather than the external IP address for the web server, so that the computers go directly to the machine behind the firewall.

  • Essbase-behind-the-firewall problem

    The essbase server (6.2) is behind the firewall. All the needed ports are open (according to support recomendations). I can log on, start and use the first application, but after i start the second one (no matter which) and try to save the outline or retrive the data in SS Add-In essbasey displays consecutive error messages:1) Invalid login id - please login again2) Invalid login id - request [EssGetClientSettings] failes3) Invalid login id - request [adListObjs] faied.Thus i can only use 1 application at a time %((.Please help.Alex

    The Excel Essbase addin was not designed to work nice with firewalls.. The new Essbase Spreadsheet Services was, however, designed to work through a firewall. Additionally, our product, ActiveOLAP for Essbase 2.0, was also designed to work through a firewall as well (and features a nearly exact Excel interface w/o using any Excel components (and without any Microsoft licensing issues).Tim TowApplied OLAP, Inc

  • Download site points to behind-the-firewall site

    On page http://www.oracle.com/technology/software/products/ias/htdocs/wls_main.html we find at least one link (displaying "see this document") which points to a site behind the firewall (http://fmwdocs.us.oracle.com/)
    Amusingly, that protected link is the one that tells us what to do when we get the software.
    QA reigns supreme!

    Thanks Hans - it will be updated to point to:
    http://download.oracle.com/docs/cd/E14571_01/doc.1111/e14142/guimode.htm#BABHJJEG

  • How to prevent one application from touching the in use Environment?

    Hi, all,
    I have an application opening an Environment and using it well. However, this application may have multiple instance in our system. Once another instance touches the environment it will destroy the former's environment.
    My question is how to detect one environment which located in a fixed directory is being in use? If we could detect this, we can prevent the latter instance from touching the environment then.
    Thanks in advance.

    There are DB_CREATE and DB_EXCL flags for DB_ENV->open function, if you specify the OR of them both, you will get what you want: only create the environment if it is not created.
    On the other hand, multiple applications can join the same db environment if their configuration to the environment is compatible; if you are sharing an environment handle, use DB_THREAD in DB_ENV->open, see this for using Berkeley DB in multi-threads: http://www.oracle.com/technology/documentation/berkeley-db/db/ref/program/mt.html

  • Sub menu going behind the BOL using HTML object in IE

    when i am implementing PDFs bol object in my webpage using simple html object, it is displaying well in both chrome and Explorer( IE
    11). The main problem is the sub menu's of main navigation(sub menu) is going behind of PDFs viewer in Explorer (IE) . And one more thing all the position attributes and z-index values are fine . This is a problem with object . please show me solution. I am
    not able to create fiddle for this. for more details see my below code and run in your Internet Explorer browser and hover
    the "step 2" navigation menu.
    <!DOCTYPE html>
    <html>
    <head>
    <style>
    body{margin:0 auto;width:500px;}
    header{height:60px;background:#ccc;}
    ul#mainnav{list-style:none;display:block;}
    ul#mainnav li{float:left;width:80px;}
    ul#mainnav li#step2 ul#submenu{display:none;list-style:none;margin-margin-}
    ul#mainnav li#step2:hover ul#submenu{display:block;}
    ul#mainnav li#step2 ul#submenu li{float:none;height:30px;border-bottom:1px solid #fff;background:#000;color:#fff;display:block;}
    </style>
    </head>
    <body>
    <header>
    <ul id="mainnav">
    <li>step1</li>
    <li id="step2">step2
    <ul id="submenu">
    <li>step2 1</li>
    <li>step2 2</li>
    <li>step2 3</li>
    <li>step2 4</li>
    </ul>
    </li>
    <li>step3</li>
    <li>step4</li>
    <li>step5</li>
    <li style="clear:both;"></li>
    </ul>
    </header>
    <div style="width:300px;height:400px;border:2px sild #fff;float:left;">
    <object data="http://www.pdf995.com/samples/pdf.pdf" style="width:94%;height:94%;padding:5px;" type="application/pdf" wmode="transparent" >
    <param name="wMode" value="transparent"/>
    </object>
    </div>
    </body>
    </html>
    COPY THE ABOVE CODE TO YOUR NOTEPAD++, AND SAVE AS INDEX.HTML, AND RUN THIS CODE IN YOUR INTERNET EXPLORER BROWSER, AND MOUSE OVER ON "STEP 2", AND OBSERVE THE SUB MENU IS GOING BEHIND THE OBJECT LAYER. THIS IS HAPPENING ONLY IN INTERNET
    EXPLORER.
    please install adobe reader in your system and check
    PLEASE HELP ME TO FIX THIS PROBLEM

    Hi Vallabha,
    Thanks for posting in MSDN forum.
    I have ran your code and understood your issue. But I cannot find a standard answer. z-index property cannot work with such a object tag. After some search on the web, I find this may be a workaround for this problem.
    http://stackoverflow.com/questions/25760079/jquery-combobox-behind-embedded-object-ie-only
    Best regards,
    Shu Hu
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Lync Director behind the firewall

    Hi,
    Has anybody deployed the Lync director behind of the firewall? Does anybody have a list of the required ports, flow direction and destination which need to open for the Director? These I found between Director and rest of the Lync infrastructure (two ways):
    TCP / 80
    TCP / 443
    TCP / 444
    TCP / 5060
    TCP / 5061
    And for the CMS:
    TCP / 1433
    TCP / 1434
    But do I miss something?
    Petri

    Check port requirement for single director at:
    http://technet.microsoft.com/en-us/library/jj204648.aspx
    Check port requirement for scaled director pool with DNS and HLB Load Balancer at
    http://technet.microsoft.com/en-us/library/jj205179.aspx
    Check port requirement for scaled director pool with Hardware Load Balancer at
    http://technet.microsoft.com/en-us/library/jj204983.aspx
    Lisa Zheng
    TechNet Community Support

  • What add on lets you automatically set tabs to go from one the next using the F8 key?

    I am looking to use tabbed browsing and be able to automatically have tabs go from one to the next using the F 8 key
    == doesn't apply ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 3.0.30618; Media Center PC 5.0; SLCC1)

    Tab Mix Plus: https://addons.mozilla.org/firefox/addon/1122

  • Getting wsdl file from behind a firewall

    Hi All,
    I need to create a webservice using a WSDL file. The client is behind a proxy/firewall which requires authentication.
    I am using a service factory:
    ServiceFactory factory = createServiceFactoryInstance();
    factory.createService(wsdlLocation, serviceName);
    The call is made through the proxy, because i set the http.proxyHost and http.proxyPort properties.
    Now, the proxy server does not allow the client to get this WSDL without authorization. I have the username and password, but I don't know how to insert them to the request for the wsdl file.
    Does anyone know how to do it?
    Thanks!

    hi,
    Please ensure that u can go through firewall to port 3306.
    Try telnet mysql.server_ip 3306. I no response contact fw admin to allow your ip to go thru.
    daniel

  • Playing videos from within the application using Phonegap.

    I am trying to get videos to play videos from within a PhoneGap app across IOS/Android/WP8 that will play videos contained within the phonegap app.  I have accomplished getting videos on Android and IOS but getting it working on WP8 has left me stumped
    as I have not been able to find anyone even attempting to getting videos to play from within a phonegap application on WP8.   So if anyone knows how to do this, or any suggestions of what direction I should look for a solution (I'm assuming it doesn't
    work as because of how IE treats videos on WP8 and will not load off the device)
    (Yes I know this is probably not the first place to look for solutions,and its not I've been looking elsewhere as well, but there is very few people supporting phone gap on WP8 elsewhere so this seems like the best place to maybe get some help/ideas)

    Hi Mwengil,
    You are asking questions about third-party library. It’s out of our support range.
    Please refer to check the API documentation.
    http://docs.phonegap.com/en/4.0.0/index.html or try to contact library official site.
    http://phonegap.com/about/contact/.
    Thank you for understanding. If you have any questions about windows phone development, you are always welcome posting here.
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. Click HERE to participate
    the survey.

  • ALCS server behind the firewall/on-premise?

    I was wondering if there were any plans to offer the capabilities of ALCS as an on-premise solution?    

    Hi Rick,
    Not at this time.  However, we are always looking to shape our roadmap based on feedback.  Any reason why this is a must for your business case?  Or why a single-tenant or a hybrid deployment (on-prem edge to handle auditing, auth, etc., but the core service is still in the cloud) won't suffice?
    Thanks,
    Fang

  • Is there a way to keep the cursor from disappearing behind the keyboard when composing an email in iOS 8?

    When composing an email the cursor disappears behind the keyboard using iOS 8.  Is there a way to have it scroll up so that I can see what I am typing?  Was not a problem with iOS 7

    u can slide the message viewer all the way over to the RIGHT, thus hiding the message from view, and then delete at will from the expanded left column.
    Message was edited by: coocooforcocoapuffs: can't tell my left from right yet.

  • An application on both sides of the firewall

    Hi,
    we are building an Apex application that is mainly to be used in-house (behind the firewall). However, some reports and forms need to be available to users outside the firewall. These users will log in, there are no public users.
    Keeping the "outside" forms/reports up to date with changes can be made manually, but the outside users should be created on the inside and mirrored out.
    The outside users will enter small amount of data and this must be lifted inside.
    We have been looking at Streams. Would a full schema replication work? For instance sessions and things...
    Or would it be better to just replicate the user tables to the outside?
    We plan to use the same database link Streams use to have the inside database fetch any updates made by the outside users.
    Has anyone done anything similar?
    Kind regards
    Tomas Albinsson
    Stockholm, Sweden

    While holding down your shift key you can click on the dock's divider and drag it to either side of your screen. From an Apple Pro Tip-of-the-Week found here.
    Best regards, Andrew99
    iMac 1 GHz Flat Panel 15" PPC 768 MB RAM   Mac OS X (10.4.9)  

  • Internet Edge Router and the Firewall

    What is the best way to monitor an Internet Edge router from the Internal network behind the Firewall?
    We want to pull more information from the edge router like netflow.  We can use SNMPv3 and ACLs to keep the router secure.
    But I am looking for the best config to keep both the router and firewall as secure as possible while still allowing us to monitor performance and faults.
    I am running an ASA and a 2821.

    I'd start with locking down the router configuration if you haven't already. Cisco Configuration Professional (free) offers a nice GUI for analyzing and delivering all the necessary commands to secure the router.
    Getting Netflow from your router doesn't add much more than getting it from your ASA.
    If you're querying through the firewall to the routers using SNMPv3 (and have deleted the v1/v2 communities) that's one good step. The only other thing I might suggest is sending syslogs to your management system from the router. To do that you'll need to add an access-list and probably a NAT entry to your firewall to allow the incoming syslog traffic.
    Most important beyond all the technology is to make sure that your people follow a process to regularly analyze and act upon the information being reported and gathered. Without that all the rest isn't worth the time it take to implement it.

Maybe you are looking for

  • Will my new desktop for christmas run starcraft 2?

    heres my new desktop im getting: http://www.bestbuy.com/site/Gateway+-+Desktop+/+AMD+A-Series+Processor+/+4GB+Memory+/+1TB+Hard+Drive... will it be able to run starcraft 2 on atleast low? Solved! Go to Solution.

  • N97 alarm is messed up

    My Nokia N97 has got a problem with alarm as it's always late. When I put alarm for like after 1 minute e.g. now 19.30 and alarm set to 19.35 it works fine. But when I set alarm for next day it's always late for at least 4 minutes. If you have any so

  • BUS4101:- Next dynamic approver get method.

    Hi All, I have a question. We are having a weared problem. We have srm 5.0 workflow which workd thorough a customised matrix. We found situations where approver determination was failing. We finally found out the situation when approval fails. Its in

  • Flash Pro drop target instance during authoring on the artboard

    Developing custom components within Flash Professional CS5.5, I am attempting to implement functionality similar to the way a UIScrollBar can be dropped on a TextArea to bind functionally. Place a TextArea on the artboard. Drop a UIScrollBar on to th

  • Unique UserID(urgent)

    For Example: Emp_m: Kwok Fu Sing Company Code: KTZ USERID generated: KTZKFS The user enter the EMP_NUMBER into the form, after which, he will click exec then the database will retrieve EMP_NUMBER, COMPANY CODE and other information from the database