Connection Manager for our Pre-Paid USB

After trying for hours to set up a 4G pre paid broadband internet.  I was told by telstra to downland Connection Manager and run that.  Will try that the file will not run  on windows 8 but have try it on windows 7 and it run perfecctly. What else can I do 

Hi Elise, What prepaid device did you purchase, so we can assist you better with that? What happens when you plugged the device into your computer? Did anything auto-run? Are you able to read the device's contents? There should be a file in it which you should be able to load as well.

Similar Messages

  • Connection Manager for our Post-Paid USB Mobile Broadband devices

    Windows and Mac users can download the Telstra Post-Paid Mobile Broadband Connection Manager for USB devices.
    Download for the Telstra Post-Paid Mobile Broadband Connection Manager:
    Bigpond Mobile Broadband Users:
    For Windows users (ZIP, 33.9 MB) - Version 3.17.30227
    For Mac users (DMG, 11.4 MB) - Version 3.15.20905
    Telstra Mobile Broadband Users:
    For Windows users (ZIP, 33.9 MB) - Version 3.17.30227
    For Mac users (DMG, 11.4 MB) - Version 3.15.20905
    When downloading this update, your data allowance will not be affected. The Telstra Post-Paid Mobile Broadband Connection Manager can send and receive SMS. Just open your Connection Manager and click on the My Messages button to get started.

    Hi Elise, What prepaid device did you purchase, so we can assist you better with that? What happens when you plugged the device into your computer? Did anything auto-run? Are you able to read the device's contents? There should be a file in it which you should be able to load as well.

  • Certificates in lieu of Oracle connection Manager for our Applets -- Help!!

    I support an application named IDEA out of New York. The IDEA application is an INTRANET application for use within our company Firewall.
    Currently, the IDEA application's front end resides on a Windows 2000 Server running IIS 5 and JRun 3.0. The back-end runs on Oracle 8.1.7 database on a UNIX Database Hosting Utility (DHU). Our applets communicate with the back-end database using Oracle Connection Manager that is installed on the Web Host.
    We are trying to migrate to the DWeb environment (Linux cluster). The linux cluster is running Apache Tomcat. We have been told that installing Oracle connection manager is not a viable solution (our company does not support it). Because of this our applets cannot communicate with our database. Below is a brief description of this limitation and also the work-around.
    ====================================================================================================================================================
    Connecting to the Database through the Applet
    The most common task of an applet using the JDBC driver is to connect to and query a database. Because of applet security restrictions, unless particular steps are taken an applet can open TCP/IP sockets only to the host from which it was downloaded (this is the host on which the Web server is running). This means that without these steps, your applet can connect only to a database that is running on the same host as the Web server.
    If your database and Web server are running on the same host, then there is no issue and no special steps are required. You can connect to the database as you would from an application.
    As with connecting from an application, there are two ways in which you can specify the connection information to the driver. You can provide it in the form of host:port:sid or in the form of a TNS keyword-value syntax.
    For example, if the database to which you want to connect resides on host prodHost, at port 1521, and SID ORCL, and you want to connect with user name scott with password tiger, then use either of the two following connect strings:
    using host:port:sid syntax:
    String connString="jdbc:oracle:thin:@prodHost:1521:ORCL";
    conn = DriverManager.getConnection(connString, "scott", "tiger");
    using TNS keyword-value syntax:
    String connString = "jdbc:oracle:thin:@(description=(address_list=
    (address=(protocol=tcp)(port=1521)(host=prodHost)))
    (connect_data=(sid=ORCL)))";
    conn = DriverManager.getConnection(connString, "scott", "tiger");
    If you use the TNS keyword-value pair to specify the connection information to the JDBC Thin driver, then you must declare the protocol as TCP.
    However, a Web server and an Oracle database server both require many resources; you seldom find both servers running on the same machine. Usually, your applet connects to a database on a host other than the one on which the Web server runs. There are two possible ways in which you can work around the security restriction:
    You can connect to the database by using the Oracle8 Connection Manager.
    or:
    You can use a signed applet to connect to the database directly.
    These options are discussed in the next section, "Connecting to a Database on a Different Host Than the Web Server".
    Connecting to a Database on a Different Host Than the Web Server
    If you are connecting to a database on a host other than the one on which the Web server is running, then you must overcome applet security restrictions. You can do this by using either the Oracle8 Connection Manager or signed applets. ====================================================================================================================================================
    It was suggested that we implement signed applets (it is our only alternative at this time). This is where, hopefully, you can help me. We are unfamiliar with using certificates and signing applets. We need to obtain certificates that will allow our applets to connect to our oracle database on the DHU. What kind of certificates do we use? Are their coding examples of how to use these certificates? We have a CA within our company but they cannot tell us what kind of certificates we need. How many certificates do we need? Do we install any certificates on the backend database server? Any information would be greatly appreciated. We are basically trying to get our applet to work outside the sandbox by establishing a connection to the database server.Thanks in advance for your time.

    or:
    You can use a signed applet to connect to the database directly.
    These options are discussed in the next section, "Connecting to a Database on a Different Host Than the Web Server".
    If you want to connect to the database from the applet there is a third option.
    Since this is an intranet application you have control over the desktops using this
    application. In our company the jre ignores signed applets (as it should) because
    it gives control to the user to run potentially harmfull applets from the Internet.
    The way to dish out special privileges to applets is the policy, put a policy file on
    you intranet and have the jre use it by specifying its URL in the java.security.
    Here is some more info about security configuration of the jre:
    http://forum.java.sun.com/thread.jspa?threadID=646161&tstart=45
    reply 3
    We use Oracle jinitiator to run Oracle forms but I am not involved in that project
    and do not know a lot about it. It does perform quite good though.

  • Certificates in lieu of Oracle connection Manager for our Applets

    I support an application named IDEA out of New York. The IDEA application is an INTRANET application for use within our company Firewall.
    Currently, the IDEA application's front end resides on a Windows 2000 Server running IIS 5 and JRun 3.0. The back-end runs on Oracle 8.1.7 database on a UNIX Database Hosting Utility (DHU). Our applets communicate with the back-end database using Oracle Connection Manager that is installed on the Web Host.
    We are trying to migrate to the DWeb environment (Linux cluster). The linux cluster is running Apache Tomcat. We have been told that installing Oracle connection manager is not a viable solution (our company does not support it). Because of this our applets cannot communicate with our database. Below is a brief description of this limitation and also the work-around.
    ====================================================================================================================================================
    [i][i][i]Connecting to the Database through the Applet
    The most common task of an applet using the JDBC driver is to connect to and query a database. Because of applet security restrictions, unless particular steps are taken an applet can open TCP/IP sockets only to the host from which it was downloaded (this is the host on which the Web server is running). This means that without these steps, your applet can connect only to a database that is running on the same host as the Web server.
    If your database and Web server are running on the same host, then there is no issue and no special steps are required. You can connect to the database as you would from an application.
    As with connecting from an application, there are two ways in which you can specify the connection information to the driver. You can provide it in the form of host:port:sid or in the form of a TNS keyword-value syntax.
    For example, if the database to which you want to connect resides on host prodHost, at port 1521, and SID ORCL, and you want to connect with user name scott with password tiger, then use either of the two following connect strings:
    using host:port:sid syntax:
    String connString="jdbc:oracle:thin:@prodHost:1521:ORCL";
    conn = DriverManager.getConnection(connString, "scott", "tiger");
    using TNS keyword-value syntax:
    String connString = "jdbc:oracle:thin:@(description=(address_list=
    (address=(protocol=tcp)(port=1521)(host=prodHost)))
    (connect_data=(sid=ORCL)))";
    conn = DriverManager.getConnection(connString, "scott", "tiger");
    If you use the TNS keyword-value pair to specify the connection information to the JDBC Thin driver, then you must declare the protocol as TCP.
    However, a Web server and an Oracle database server both require many resources; you seldom find both servers running on the same machine. Usually, your applet connects to a database on a host other than the one on which the Web server runs. There are two possible ways in which you can work around the security restriction:
    You can connect to the database by using the Oracle8 Connection Manager.
    or:
    You can use a signed applet to connect to the database directly.
    These options are discussed in the next section, "Connecting to a Database on a Different Host Than the Web Server".
    Connecting to a Database on a Different Host Than the Web Server
    If you are connecting to a database on a host other than the one on which the Web server is running, then you must overcome applet security restrictions. You can do this by using either the Oracle8 Connection Manager or signed applets. ====================================================================================================================================================
    It was suggested that we implement signed applets (it is our only alternative at this time). This is where, hopefully, you can help me. We are unfamiliar with using certificates and signing applets. We need to obtain certificates that will allow our applets to connect to our oracle database on the DHU. What kind of certificates do we use? Are their coding examples of how to use these certificates? We have a CA within our company but they cannot tell us what kind of certificates we need. How many certificates do we need? Do we install any certificates on the backend database server? Any information would be greatly appreciated. We are basically trying to get our applet to work outside the sandbox by establishing a connection to the database server.
    Thanks in advance for your time.

    Eston,
    Have you searched SUN's java Web site? Maybe this article will help:
    http://java.sun.com/developer/technicalArticles/Security/Signed/index.html
    Good Luck,
    Avi.

  • Cannot find the Novell Connection Manager for LDAP

    Novell Connection Manger for Java/LDAP
    Cannot find the Novell Connection Manager for LDAP in download
    I am trying to connect through a Java client to the Apache Directory Studio, LDAP server....I have downloaded the classes from the download page...see link below...but I can't see the NovellConnectionManager Class anywhere in this download when I use the open freely application to view the jar details.
    LDAP Classes for Java
    Environment: Windows 7

    Hi MentalSuplex, and a warm welcome to the forums!
    Don't know about Airport cards for it, but other options...
    http://eshop.macsales.com/item/Sonnet%20Technology/N80211PCI/
    Maybe this one, ask them...
    http://eshop.macsales.com/item/Newer%20Technology/MXP802NPCI/
    I use these...
    http://eshop.macsales.com/item/Newer%20Technology/MXP2802NU2C/
    http://eshop.macsales.com/item/Edimax/EW7711UMN/

  • Lenovo Mobile Broadband Connection Manager for Windows 7 - ThinkPad

    Hello
    i want to ask a Question , why Lenovo Still did not make
    (Lenovo Mobile Broadband Connection Manager for Windows 7 - ThinkPad ) ??!!!
    i look at the Drivers PageAnd i only found this : For windows VISTA and XP :
    http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-70946
    BUT , Where is WINDOWS 7 VERSION ????!!!!!!!!, What are they doing all this time ??? 
    is this the Support which Lenoveo Give to there Customers? , i hope not .
    I am asking lenovo to give me as  a Customers , the software i need as fast as possible .
    Greeting,
    Al-allan Alaa
    Solved!
    Go to Solution.

    Try this URL:
    http://support.lenovo.com/en_US/downloads/detail.page?DocID=HT037696#broadband
    -gan

  • Purchased ExportPDF for one of our end using depts.  It is under my account I manage for our institution.  How does the dept get the application to download.

    Purchased ExportPDF for one of our end using depts.  It is under my account I manage for our institution.  How does the dept get the application to download.

    Hi Cassi,
    If you are ordering subscriptions for various people in your office, it would be best to sign up under their Adobe IDs, so they can log in and use the subscription with their own credentials. As for moving the current subscription, the easiest route is to cancel the current subscription (see Cancel your membership or subscription | Acrobat, Acrobat.com online services--or I can help), and then reorder as necessary.
    Best,
    Sara

  • Can we create an overarching Apple ID for discovery/managing/playing content for our pre-K kid?

    I own several for work—and personal Apple devices and have been using one Apple ID to discover, manage and play content. This content consists of items that are (1) work based (2) personal based (3) family/child based (e.g. Monsters Ink).
    I purchased an iPad Mini for my husband at Christmas, and he purchased an Apple TV for the family— and now we are perplexed at how to manage assets that are "family" based without purchasing them twice. Essentially want apps, movies and music related to our pre-K son on both of our devices. Otherwise managing this will quickly become a nightmare of who owns what on which decive.
    Can anyone recommend how to do this?
    Devices Self
    MacBook Pro
    iPhone 4S
    iPad 2
    MacBook Pro Retina
    iPhone 5
    iPad 2
    Devices Shared
    iPod
    Apple TV
    iPhone 3
    Devices Husband
    iPad Mini (husband)

    An iDevce can containt content for multiple Apple ID's, there is no reason to purchase content multiple times.
    There is no such thing as "sub" accounts.
    Simply manage the content on the devices.

  • Mini iPad USA connection to 4g network pre paid card

    I am not able to load pre paid AT & T on a mini IPad purchased some weeks ago in the Apple Store at Chadstone Melbourne Australia.  The Imei number for mini i pad 99 000239 853187 9 I have been to AT&T store and a Apple store in San Diego after 3 hours we all gave up   Can you please explain why the llatest IPad in Melbourne will not work on the US 4g network with a pre paid card

    If you mean LTE, AT&T uses different bands for LTE than does the carrier in Australia, so you will not be able to connect to AT&T's LTE network with your Australian iPad.
    As to a "prepaid SIM", I'm not aware of AT&T offering a prepaid SIM that works in an iPad. Their prepaid solution is set up from the iPad itself and requires a US credit card. But perhaps I've just missed something, though I can find no mention of any other prepaid plan on the AT&T web site.
    Regards.

  • Free Will to Purchase a Samsung S5 mobile at Telstra for any Pre-Paid Telstra customer

    Why have Telstra decided not to offer the Samsung S5 mobile as a prepaid phone. I am a very long time customer and think Telstra is behaving like a dictatorship in refusing to allow me to purchase a Samsing S5 mobile outright in their Hornsby NSW store. So now my question for the Telstra community is if I go to a competitor and buy this phone outright as I just simply want to do, will I be able to keep my same number and go back to a Telstra store to have the phone activated and my current number carried over once I purchase a new sim card? Again, I am a very unhappy Telstra customer. Telstra shoujld not be able to make these sorts of decisions about shortlisting and shortchanging the range of phones available to loyal customers wish simply to have a pre paid account.

    Telstra do allow outright purchases of phones from Telstra stores, however some stores are franchisees/licensees and may not always follow the company standard... however it is usually only not allowed when they are having issue with stock (for example just after the release of a device while stock levels are limited and demand is high).
    Having a look at the store in Westfield Hornsby, that looks like it is a licenced store, so that is disappointing that they will not but it is their loss, however there is a JB Hi-Fi in that same shopping centre listed - JB Hi-Fi are both a Telstra Dealer and a Samsung Partner, so they would be able to sell you the phone outright and arrange a replacement SIM card for you for your Telstra service if needed as well.

  • What is the latetest iPhone I can use for a pre paid phone plan

    I want to buy a phone and pre-pay month to month. Everyone says I can't but my X-wife, my daughter and my granddaughter all have that type of service.

    That depends on where you are and what carrier you want to use.
    In the US, there are no supported GSM carriers that offer pre-paid service for the iPhone. There are a number of CDMA carriers that do, but you must purchase a phone specifically for their network.

  • Will a new S3 purchased on ebay work for Verizon pre-paid?

    I am considering a new Samsung S3 for use on the Verizon pre-paid plan.  Verizon lists the phone fo $269 in the listing of pre-paid phones.  However, I can buy a a brand new S3 labeled for verizon for half this price on ebay.  Will this ebay phone work on Verizon pre-paid?

    The phone would fit under a Verizon plan and there are many good buys to be had. However be careful of sellers and Verizon would not back this under a warranty. So there is some trade off here to think about.

  • My ipod says the connection passcode for our internet is incorrect when the same passcode connects to the internet with our other electronic devices.

    my ipod has always been able to connect to the internet until this past month. i have the passcode for our internet written down but it says the passcode is incorrect. our other electronic devices work and connect to the internet with the same passcode. what should i do?

    Try the following:
    - Reset the iPOd. Nothing will be lost.
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on your router
    - Reset network settings: Settings>General>Reset>Reset Network Settings
    - iPhone and iPod touch: Troubleshooting Wi-Fi networks and connections

  • Documentation to connection-manager for the XSQLServlet

    Hi there,
    I'm looking for detailed information about custom connection-managers in the XSQLServlet. I can't find anything about it in the XDK documentation (only the javadoc). Is there an other document where I can find informations?
    Thank you

    I too would like to see more documentation and a simple working example of this ever so useful functionality ;}

  • Pc connectivity steps for nokia 3100 using usb port

    hi
    i am using dku5 driver and pcsuite to connect
    my mobile to pc do i need to select getconnected button
    every time i start the computer
    please give the connectivity steps
    i am new to j2me

    I am also having this problem with my mp3 player. When I plug it in by USB to my mac, the icon does not appear on the desktop and I can't find it at all in system preferences. I have tried it on a couple of different imacs and the icon pops up immediately. So I am thinking it is a problem with my computer....does anybody have any advice??

Maybe you are looking for

  • Report text element as selection option

    Hi,   I encounter a performance problem in a report program that include a self define fields in the selection option.  I use the FM READ_TEXT to read those fields and compare with the user input.Then, eliminates those unmatched records with if else

  • Multiple Report print out on Check box click

    Hi, I am using version apex_3.2. I have created Report and define check box in report. i want to give print functionality on check box. As i tick multiple invoices from report and click on print link defined below to the report, Selected Invoices sho

  • How to get image filename in indesign cs3

    Hi,     I want to get a filename of a selected rectangle frame graphic child item like tiff image or pdf file. Please help me with a code snippet. Thanks, K.Saravanan.

  • Compatibility of monitor & Apple g4

    Hi every one Some one recommended to post my issue in this forum discussion. I hope I am in the right place & be able to get a more concrete solution. 1. My old Ultra scan 1 600 HS series Dell Trinitron Monitor (Model D1 626HT D1 626 HT & the serial

  • Master-Detail-Form; Hide/Show columns in detail form depending on column

    Hi, i have a master detail form. In the detail form i have the columns: ID, MASTER_ID_FK, PC_SOURCE, A_C1, A_C2, A_C3, B_C1, B_C2, B_C3 The Column PC_SOURCE should be a LOV with values NULL A B So if i choose or enter a master record the detail form