Telnet local connection

Is this code right - well it compiles but throws an error saying that "ConnectException:Connection refused" - how do I get round this, all I want to do is connect to Telnet on my computer (local). Surely it cant be that hard!!!
public static void main (String args[]) throws IOException {
{ try
{InetAddress ina = InetAddress.getLocalHost();
System.out.println(ina);
Socket s = new Socket(ina, 23);
BufferedReader in = new BufferedReader(new InputStreamReader(s.getInputStream()));
boolean more = true;
while (more)
{ String line = in.readLine();
if (line == null) more = false;
else
System.out.println(line);
catch (IOException e)
{ System.out.println("Error" + e);
}

� tried connecting to my computer ip address through telnet and it wouldn't allow a connection - oh no, what can I do now!!!! I have to capture streaming GPS information being passed to telnet and then use this data on an external university server and do something with the data there. I really need some help on this now!

Similar Messages

  • EPM Error while creating a local connection

    Hello everyone,
    I am a Dashboards designer and am new to BPC 10 MS. I am working on a dashboard that connects to BPC 10 MS to retrieve data via the EPM Connector. For this a 'Local' connection type must be used when creating the report in the Excel sheet using the EPM Add-In. I tried to create one but am facing a curious error which does not seem to be a known issue. I have installed the ODBO Client and therefore can create a local connection of type 'SAP BusinessObjects Planning and Consolidation'. Once I select this provider I entered my application server name and chose Windows Authentication for BPC MS as I have the service account credentials. I encountered an EPM - General error with the following text: Error while communicating with the server. Details: Framework message: Authorization failed. This error shows even if I'm using Excel and not Dashboards. If I use a different connector, I am able to access all the BPC data just fine. However, with local type (which is needed for the dashboard connector) it just doesn't work. I tried reinstalling the EPM Add-In as well as the EPM Connector without any change to the error.
    I am using Win7 32-bit, Excel 2010 32-bit, ODBO Client SP12, EPM Excel Client SP16 Patch 1, BPC 10 MS server SP08, Dashboards 4.1 SP1.
    Has anyone come across this before? Any help would be great as I'm very much stuck at this point.

    Hi Deena,
    This error:
    "[2012-07-10T14:50:30.005+05:30] [wls_ods1] [ERROR] [] [oracle.adfinternal.view.faces.config.rich.RegistrationConfigurator] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000JXkC9dU3FClqwsJb6G1FyhO000003D,0] [APP: odsm#11.1.1.2.0] Server Exception during PPR, #7[[
    javax.servlet.ServletException: Could not initialize class com.octetstring.vde.admin.services.client.VDEAdminServiceSoapBindingStub"
    is known issue
    Go to metalink, article: Unable To Connect To OVD 11g Webinterface Using ODSM. [ID 1282757.1]
    You need to apply that patch.
    I hope this helps,
    Thiago Leoncio.

  • How to access local connection factory created within Foreign Server in OSB

    Hi All
    I am facing an issue in my config plan. We have a RIB Foreign server with the following local connection factory:
    jms/RibAqJmsXATopicConnectionFactory
    I am using the below in my configuration plan:
    <cus:envValueAssignments>
    <xt:envValueType>Service URI</xt:envValueType>
    <xt:location xsi:nil="true"/>
    <xt:owner>
    <xt:type>ProxyService</xt:type>
    <xt:path>RLTPReturnToWarehouse/ProxyServices/ConsumeRIBRTWMessages</xt:path>
    </xt:owner>
    <xt:value xsi:type="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema">jms://localhost:7001/jms.RibAqJmsXATopicConnectionFactory/jms.etASNInFromRIBToWH1</xt:value>
    </cus:envValueAssignments>
    and i am getting the below error:
    [java]
    [java] Loading customization File ./dev/OSBCustomizationFile.xml
    [java] Customization applied to the created resources only []
    [java] com.bea.wli.config.customization.EnvValueCustomization@553c13
    [java] Unexpected error: com.bea.wli.sb.transports.TransportException
    [java] Problem invoking WLST - Traceback (innermost last):
    [java] File "D:\VFUKScripts\DeploymentScripts\osb\import.py", line 200, in ?
    [java] File "D:\VFUKScripts\DeploymentScripts\osb\import.py", line 122, in importToALSBDomain
    [java] com.bea.wli.sb.transports.TransportException: Failed to lookup connection factory jms.RibAqJmsXATopicConnectionFactory
    what am i missing here?

    [java] com.bea.wli.sb.transports.TransportException: Failed to lookup connection factory jms.RibAqJmsXATopicConnectionFactory
    Looks like the JNDI that you created for the ConnectionFactory is not reflected in the server.
    Login to WLS Console> Summary of Servers > server_name > View JNDI Tree
    Browse to the JNDI tree and see if your JNDI is visible there. If it is not then, please restart the server and recheck.
    Once you are able to find it in the JNDI tree, then execute the customization file.
    If you have modified the existing JNDI properties (that have a small exclamatory symbol) then any changes to those are not reflected till all the servers in the cluster are restarted.
    If it still does not work, then recreate a new Connection with a different name and then retry. It should work then.
    Thanks,
    Patrick

  • Cross domain scripting at run time using local connection flash AS2

    Hi
         I want to do live video streaming using FMS and FMLE in Flash As2. Suppose 100 users watching video online and I want to show message to  all 100 users using the Local connection.
    If I am sending message using different browser in same pc then I can get the message which was send from another swf file but I am checking from another pc then message not coming in receiver swf file.
    Please find the code below. 
    receievemovie.swf
    // Code in the receiving SWF file
    this.createTextField("result_txt", 1, 10, 10, 100, 22);
    System.security.allowDomain("*")
    System.security.allowInsecureDomain("*")
    var my_lc:LocalConnection = new LocalConnection();
    my_lc.allowDomain = function(sendingDomain:String) {
    domain_txt.text = sendingDomain;
    return true;
    my_lc.allowDomain = function(sendingDomain:String) {
    return (sendingDomain == "*");
    my_lc.allowInsecureDomain = function(sendingDomain:String) {
    return (sendingDomain == "*");
    my_lc.methodToExecute = function(param1:String) {
        result_txt.text = param1
    myResult.text=param1
    my_lc.connect("lc_name");
    sendmovie.swf
    System.security.allowDomain("*")
    System.security.allowInsecureDomain("*")
    var sending_lc:LocalConnection;
    var sending_lc:LocalConnection = new LocalConnection();
    sending_lc.allowDomain = function(sendingDomain:String) {
    return (sendingDomain == "*");
    sending_lc.allowInsecureDomain = function(sendingDomain:String) {
    return (sendingDomain == "*");
    myButton.onRelease = function(){
    sending_lc = new LocalConnection();
    sending_lc.send("lc_name", "methodToExecute", sendMsg.text);
    sendMsg.text="Message has been sent"
    If you have any other way to do it please suggest me to do that.
    Thanks & regards
    Sunil Kumar

    Hi, go to
    Flash Resources , you can
    find a java application that can serve policy files to resolve this
    problem.

  • Change local connection string on remote server

    Hello,
     I have searched every post and tried every connection string there but can't figure out how to connect to my database on my  remote server. I am using Visual Developer 2005 Express Edition in C# and uploading it to a Windows server running asp.net 2.0. The domain has not resolved yet.
    I am so new to this and have followed many tutorials step by step but none of them address this issue. They just show how to upload it to the server.
    Do I need to use the SQL server provided by my host or can the database stay in the App_Data folder?
    My local connection string works locally:
      <add name="ConnectionString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\add_newSQL.mdf;Integrated Security=True;User Instance=True"
       providerName="System.Data.SqlClient" />
    When I uploaded to my server I changed \SQLEXPRESS  to (local) as advised in the forum.
    <add name="ConnectionString" connectionString="Data Source=(local);AttachDbFilename=|DataDirectory|\add_newSQL.mdf;Integrated Security=True;User Instance=True"
    providerName="System.Data.SqlClient" />
    When I debug a page I get the <customErrors mode="Off"/>
    error message even thought I have already set it in my remote web.config file which may be causing problems itself:
    <configuration>
    <appSettings/>
    <connectionStrings>
    <add name="ConnectionString" connectionString="Data Source=(local);AttachDbFilename=|DataDirectory|\add_newSQL.mdf;Integrated Security=True;User Instance=True"
    providerName="System.Data.SqlClient" />
    </connectionStrings>
    <system.web>
    <customErrors mode="Off" />
    <compilation debug="false" />
    <authentication mode="Windows" />
    </system.web>
    </configuration>
    Thanks for any help you can offer. I wish I could find someone to hire to do this part for me or teach me how over the phone. Any suggestions?

    Is this still an issue?
    Thanks!
    Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Lose WiFi connection keep local connection

    Several times now I have lost internet connection but am able to keep the local connection part. Yellow triangle states on WiFi signal icon that I have lost internet portion of connection. I run Network troubleshooter and it says its resetting the Wireless device but my internet connection does not return. Its only after I turn off the WiFi and back on that my connection to the internet is avaialable.  I have run HP support and have all the driver updates and Windows updates.
    So far none of my other devices experience this issue. I know this notebook has a Realtek WiFi card which I know is not the greatest for reliability. Realtek and me go back many notebooks with connection issues. Its like they work only when they feel like it.  Guess this Stream probably has a WiFi card soldered to the motherboard. So I guess replacing it is out of the question. Hope someone has some other ideals or maybe Windows 8.1 is to blame?
    This question was solved.
    View Solution.

    After doing more digging I found several other people user this same WiFi card having similar issues. One person even went so far as to say its a on chip firmware issue and others claim a Windows 8.1 issues which they are working to resolve.
    In any case I go days without issue and use my Stream 11 a lot for business. So I guess the issue is not affecting me too bad.

  • [ons-connect] Local connection 127.0.0.1,6100 invalid form factor

    Hi All,
    I have a two node installation of EBS R12.0.4 running on HP-UX Itanium.
    Last night we were having maintenance in our server room so we stopped the application and the database.
    Afterwards, on restarting, the database came up without a problem.
    On starting the application using adstrtal.sh script, the exits with status 5.
    On checking the opmn logs, i found the following the folowing errors:
    10/01/30 08:13:35 [ons-internal] ONS server initiated
    10/01/30 08:13:35 [pm-internal] PM state directory exists: /oracle/inst/apps/PROD_erpapps/ora/10.1.3/opmn/logs/states
    10/01/30 08:13:35 [pm-internal] OPMN server ready. Request handling enabled.
    10/01/30 08:13:36 [ons-listener] 127.0.0.1,6100: BIND (Address already in use)
    10/01/30 08:14:06 [ons-connect] Local connection 127.0.0.1,6100 invalid form factor
    <unknown>
    10/01/30 08:14:06 [ons-connect] Local connection 127.0.0.1,6100 invalid form factor
    <unknown>
    10/01/30 08:14:06 [ons-connect] Local connection 127.0.0.1,6100 invalid form factor
    <unknown>
    10/01/30 08:14:06 [ons-connect] Local connection 127.0.0.1,6100 invalid form factor
    <unknown>
    10/01/30 08:14:06 [ons-connect] Local connection 127.0.0.1,6100 invalid form factor
    <unknown>
    10/01/30 08:14:06 [ons-connect] Local connection 127.0.0.1,6100 invalid form factor
    <unknown>
    10/01/30 08:15:11 [ons-connect] Local connection 127.0.0.1,6100 invalid form factor
    <unknown>
    10/01/30 08:15:11 [ons-connect] Local connection 127.0.0.1,6100 invalid form factor
    <unknown>
    10/01/30 08:15:11 [ons-connect] Local connection 127.0.0.1,6100 invalid form factor
    <unknown>
    10/01/30 08:15:11 [ons-connect] Local connection 127.0.0.1,6100 invalid form factor
    <unknown>
    10/01/30 08:15:11 [ons-connect] Local connection 127.0.0.1,6100 invalid form factor
    <unknown>
    10/01/30 08:15:11 [ons-connect] Local connection 127.0.0.1,6100 invalid form factor
    <unknown>
    The Apache Logs have:-
    opmnctl: opmn start failed.
    01/30/10-08:30:58 :: adapcctl.sh version 120.6.12000000.4
    01/30/10-08:30:58 :: adapcctl.sh: stopping OPMN managed OHS instance
    Communication error with the OPMN server local port.
    Check the OPMN log files
    Communication error with the OPMN server local port.
    Check the OPMN log files
    Communication error with the OPMN server local port.
    Check the OPMN log files
    Communication error with the OPMN server local port.
    Check the OPMN log files
    Communication error with the OPMN server local port.
    Check the OPMN log files
    Communication error with the OPMN server local port.
    Check the OPMN log files
    opmnctl: opmn is not running.
    01/30/10-08:31:48 :: adapcctl.sh: exiting with status 0
    I searched on google and found :-
    Edit opmn.xml
    Replace
    <port local="6100" remote="6200" request="6500"/>
    As
    <port local="6202" remote="6302" request="6105"/>
    But this too hasnt helped.
    Kindly assist.
    Thanks in advance.

    Guys,
    This has been fixed.the issue was caused because of exceeded limit of log file.

  • How do I call a function using local connection?

    I have 3 Flash banners on 1 page that run through a synched animation together. At the end of the animation, there is a replay button in each of the 3 banners. I want the replay button when clicked in any of the banners to call a replay function in all 3 banners. Is there any easy way to do this? Using localconnection?
    The banners are already using a local connection for the syching of the animation, if that helps.
    Thanks!
    Elliott

    I take it back... I figured it out. I just needed to paste the function below into each of the other banners...
    Thanks! :-P

  • SAP BPC NW version with SAP Dashboard Design (No Local Connection)

    Dear ALL,
    I'm working on SAP BPC NW version 10.0 and I'm trying to build some dashboards on it using SAP Dashboard Design.
    So, I follow some links online and I failed to proceed at the very beginning stage:
    To create a "Local" connection in Excel EPM Add-in.
    From the drop down box for the available connection types, I can just see Planning and Consolidation versions for both MS and NW, but nothing called "Local" as referred in those web.
    Any ideas?
    BR,
    Antony

    Hi Antony,
    Go through the SAP Note 1730125.
    Check the attached doc "SAP Business Planning and Consolidation 10.0, version for SAP NetWeaver" in the note
    for more details.
    Regards,
    Javed

  • Cannot get Local Connection, No available resource, Wait-time expired

    Hi Friends,
    Please answer my queries below.
    Thanks and Regards
    Busincess Requirement
    I have to display a particular set of rows in a dashboard or screen, and it is being refreshed every 1 minute, also user can update from that screen displayed values.
    The below program extracts some data from database and passes to the front end through a collection where it is being displayed.
    Code Logic Flow
    1. CockpitAction calls CockpitOraDAO for database results
    2. CockpitOraDAO is a singleton class.
    3. After getting the CockpitOraDAO object, the action will then call the getLabAreaCockpitDetails() method.
    getLabAreaCockpitDetails will
         - Get the Connetion from the OracleConnectionManager class (It is a plain class with getPooledConnection() and releaseConnection() methods).
         - Execute the query and put the result to a collection
         - close the connection
         - return result to the calling action.
    This getLabAreaCockpitDetails() are called around once in every 1 minute
    So, I believe everytime a call is made to action for cockpit display, it will take the existing object of the CockpitOraDAO class and make a call to database. i.e there will be only one object of CockpitOraDAO reside in application server at any particular interval of time.
    My Understandings
    1. Only 1 object of CockpitOraDAO will reside in application server (provided it is not user longer and garbage collected) at a particular instance.
    2. Many objects of Connection will be created and destroyed.(Each time the getLabAreaCockpitDetails() method is called, we will get one connection from connection pool and in finally the Connection will be released to connection pool).
    My Problems
    It is showing the "Cannot get Local Connection, No available resource, Wait-time expired"
    after running around 1 full day.
    My doubts
    1. Can anybody say why I get this error ?
    2. There may be some connections are not closed. But I have checked at finally block, the status of the connection is closed after calling this method.
    3. There may be some problem due to the singleton instane of CockpitOraDAO, Is it affecting performance ?
    4. Is it valid that I have to make CockpitOraDAO as Singleton ?
    public class CockpitOraDAO extends DAOAdaptor //implements BISample
         private static CockpitOraDAO instance=null;
         private static boolean debug = true;
         * The below method will be used to provide the singleton intance of the CockpitOraDAO object.
         public static CockpitOraDAO getInstance()
              if (instance == null)
                   synchronized (CockpitOraDAO.class)
                        if (instance == null)
                             instance = new CockpitOraDAO();
              return instance;
         * The below method will be used to get the cockpit details of the lab area.
         * This will return collecton of sample details for the specific lab.
         public Collection getLabAreaCockpitDetails(Collection prevCockpitDetailList,Collection filterCriteria) throws Exception
         if(debug)
              System.out.println("Inside CockpitOraDAO::getLabAreaCockpitDetails() method");
              Connection conn = null;
              boolean sampleExists = false;
              PreparedStatement pstmt=null;
              ResultSet rs=null;
              String returnStr=null;
              StringBuffer sqlQuery = null;
              String tempComment1=null, tempComment2=null;
              LabCockpitDO labc=null;
              LabCockpitDO labc2=null;
              Collection resultList=null, manCommentList=null, labCommentList=null, labCompCommentList=null;
              ArrayList result1List=null, prevCockpitDetail1List=null,filterList = null;
              OracleConnectionManager manager = null;
              boolean flag = false;
              try
                   labc2 = new LabCockpitDO();
                   prevCockpitDetail1List = (ArrayList) prevCockpitDetailList;
                   sqlQuery = new StringBuffer();
                   sqlQuery.append("select s.sample_sample_no sample_no, s.sample_inspection_lot_no inspection_lot_no,");
                   manager = new OracleConnectionManager();
                   conn = manager.getPooledConnection("myDS");
                   pstmt = conn.prepareStatement(sqlQuery.toString());
                   if(debug)
                   System.out.println("Query********"+sqlQuery.toString());
                   rs = pstmt.executeQuery();
              catch(Exception e)
                   //System.out.println(e);
                   throw e;
              finally
                        try
                             manager.releaseConnection("myDS");
    if(debug)
    System.out.println("Connection Status Closed=true/ Open=false=["+conn.isClosed()+"]");
    if(conn!=null || !conn.isClosed())
    conn.close();
    if(debug)
    System.out.println("Connection Status After Closing Connection Closed=true/ Open=false=["+conn.isClosed()+"]");
                             if(rs != null)
                                  rs.close();
                             if(pstmt != null)
                                  pstmt.close();
                             conn = null;
                             pstmt=null;
                             rs = null;
                             sqlQuery=null;
                             returnStr=null;
                             labc=null;
                             labc2=null;
                             manCommentList=null;
                             labCommentList=null;
                             labCompCommentList=null;
                             tempComment1=null;
                             tempComment2=null;
                             resultList=null;
                             prevCockpitDetailList=null;
                             prevCockpitDetail1List=null;
                        catch(Exception e)
                             //System.out.println("Unable to Release Connection ="+e);
                             throw e;
              //if(debug)     
              //System.out.println(resultList);
              return result1List;
         }

    Hi,
    As you can see from other posts, this is a very common problem. Until now the cause always ends up pointing to a connection not being close.
    I suggest you try to run through a full single cycle of you app, while using the CLI monitoting to check that the connections created/closed matches the expected created/closed connections. Also that the number of free connections at the end is correct.

  • OPMN: Error "Local connection 127.0.0.1,6100 invalid form factor"

    When starting opmn, the following error is reported.
    08/04/08 10:29:15 [ons-internal] ONS server initiated
    08/04/08 10:29:15 [pm-internal] PM state directory exists: F:\oracle\product\10.2.0\db_1\inst\apps\DBS7_r12srvr\ora\10.1.3\opmn\logs\states
    08/04/08 10:29:15 [pm-internal] OPMN server ready. Request handling enabled.
    08/04/08 10:29:15 [ons-listener] 127.0.0.1,6100: BIND (No error)
    08/04/08 10:29:19 [ons-connect] Local connection 127.0.0.1,6100 invalid form factor
    <unknown>
    08/04/08 10:29:24 [ons-connect] Local connection 127.0.0.1,6100 invalid form factor
    <unknown>
    08/04/08 10:29:29 [ons-connect] Local connection 127.0.0.1,6100 invalid form factor
    <unknown>
    08/04/08 10:29:34 [ons-connect] Local connection 127.0.0.1,6100 invalid form factor
    <unknown>
    08/04/08 10:29:39 [ons-connect] Local connection 127.0.0.1,6100 invalid form factor
    <unknown>
    08/04/08 10:29:44 [ons-connect] Local connection 127.0.0.1,6100 invalid form factor
    <unknown>
    Hosts file
    #127.0.0.1 localhost
    128.1.5.148 r12srvr.pasi.om r12srvr
    ONS.CONF is empty
    F:\>ls -l echo %ORACLE_HOME%/opmn/ons.conf
    ls: File or directory "echo" is not found
    -rwxrwxrwa 1 Administrators None 0 Apr 8 10:31 F:/oracle/product/10.2.0/db_1/apps/tech_st/10.1.3/opmn/ons.conf

    Found the solution ...
    Source: http://surachart.blogspot.com/2007/05/oracle-asons-connect-local-connection.html
    Edit opmn.xml
    Replace
    <port local="6100" remote="6200" request="6500"/>
    As
    <port local="6202" remote="6302" request="6105"/>

  • Error in local connection

    I am setting up a local connection between 2 swf files
    embedded on a single jsp. if i run the application in a single
    window it works fine. but i open 2 concurrent windows, it throws me
    an error stating - Can't connect...the connection name is already
    being used by another SWF .. can anybody tell how can i fix this
    issue

    In Flex multiple connection are not allowed, that is at a
    time only one connection is active. If you try to connect the same
    connection name it will defiantly through an error.
    To understand the how location works, please go through the
    link below -
    LocalConnection

  • AS2: Local Connection - Pause and Play Videos

    I have two exe's, they are a mock-up of a control system....one is the controler that sends commands through LocalConnection to the other which simply plays video of what would be happening when certain buttons are pushed on the controler. I got it working with this code (with help I got here):
    sending_lc = new LocalConnection();
    pmvopen1.onRelease = function() {
    this._parent.gotoAndStop(3);
    trace(this+" clicked");
    sending_lc.send("my_lc_as2", "gotoF", 2);
    pwvopen1.onRelease = function() {
    this._parent.gotoAndStop(6);
    trace(this+" clicked");
    sending_lc.send("my_lc_as2", "gotoF", 4);
    chokeclose4.onRelease = function() {
    this._parent.gotoAndStop(25);
    trace(this+" clicked");
    sending_lc.send("my_lc_as2", "gotoF", 15);
    forward1.onRelease = function() {
    this._parent.gotoAndStop(3);
    trace(this+" clicked");
    sending_lc.send("my_lc_as2", "gotoF", 2);
    reverse1.onRelease = function() {
    this._parent.gotoAndStop(1);
    trace(this+" clicked");
    sending_lc.send("my_lc_as2", "gotoF", 0);
    reset.onRelease = function() {
    this._parent.gotoAndStop(1);
    trace(this+" clicked");
    sending_lc.send("my_lc_as2", "gotoF", 0);
    pause1.onRelease = function() {
    this._parent.pmvOpen.pause; (parent needs to pause flv movie pmvOpen as well as 2 object movies)
    trace(this+" clicked");
    sending_lc.send("my_lc_as2", "gotoF", 1); (this need to send a command to pause one flv movie)
    What I need to do is add a function to the above code that will pause all flv movies in both the sender and reciever (one flv movie each) and pause all object movies on the sender when the pause1 button is pressed.
    The parent needs to pause 1 flv movie and 2 object movies and I need to SEND a command to the other exe to pause one flv movie.
    I started the code but, of course, it doesnt work...the button is active as I get a trace...My attempt to start this is in red at the end of the code above. 'pmvOpen' is the name of the flv movie on the parent and I don't know HOW to begin pausing the other movie called 'pmvOpen1' through LocalConnection or to pause the 2 object movies called 'Chart1' and 'Chart2' on the sender.
    on(press)
    chart1.stop();
    on(press)
    chart2.stop();
    on(press)
    pmvOpen.pause();
    ^^ this is how I had it doing the pause before the requirement to have a second screen. This was simply attached to the pause button...I still need to pause all of the above but also I need to pause a movie through local connection at the same time.
    This is my last step before I finish and if I can get help on the pause I think I can do the play button without any additional help. Just not sure where to start with this.
    Thanks

    I forgot about the recieving end code.
    so my controler end code would look like this:
    pause1.onRelease = function() {
    this._parent.pmvOpen.pause();
    this._parent.chart1.stop();
    this._parent.chart2.stop();
      trace(this+" clicked");
    sending_lc.send("my_lc_as2", "pauseF");
    My recieving code as it is right now is:
    receiving_lc = new LocalConnection();
    receiving_lc.gotoF = function(n:Number){
    trace("received "+n);
        gotoAndPlay(n);
    receiving_lc.connect("my_lc_as2");
    This is recieving for my frame forwarding. So I would need to put a new function in this that calls out the video. To call out the video to be controled would it look something like:
    receiving_lc = new LocalConnection();
    receiving_lc.gotoF = function(n:Number){
    trace("received "+n);
        gotoAndPlay(n);
    receiving_lc.pauseF = function(pause){
         pmvOpenl.pause(n);
    receiving_lc.connect("my_lc_as2");
    This seems to work...I will try to do it with another video on another frame and see what happens. Thanks a bunch man. If this works down the line I think I might have this.

  • Mission Control - local connect error

    Hello
    We're running jrockit-R27.4.0-jdk1.5.0_12 on W2003 Servers. When launching a Java program, Mission Control (v.3..0.1) discovers a new Local but displays only the process number and not the name. When right-click on "start console" we get the message :
    Local connect not supported.
    The in memory agent can not be started on this JVM, since attach is not supported! Try a more recent JVM, JDK 5.0 and above!
    I have veryfied Path, Java_Home ... it's Okay and I'm sure the Java task i want to monitor is running under Jrockit and not another JVM ...
    The same install on others servers is running well so ... I someone can help !
    Thanks

    Hi there,
    Just to be precise, you are trying to:
    * Connect locally to a locally discovered JVM with Mission Control 3.0.
    * The process you are trying to connect to is a different process than the JRMC process.
    Is that correct?
    If so, my questions are:
    * What user is the process you are trying to attach to running as? Does the user running the JRMC process has the appropriate rights to list processes and attach to that particular process?
    * What happens if you start the process you wish to monitor with -Xmanagement:port=7091,ssl=false,authenticate=false and try to establish a connection manually?
    * Make sure you start up JRMC using the JROCKIT_HOME\bin\jrmc launcher.
    Kind regards,
    Marcus
    Edited by hirt at 10/22/2007 11:18 PM
    Edited by hirt at 10/22/2007 11:18 PM
    Edited by hirt at 10/22/2007 11:19 PM

  • Flash Local Connection Issue

    Im fairly new to flash and am building a web page in
    Dreamweaver using two frames that contains flash movies on several
    pages. I have a movie on one page that contains buttons that link
    to another page, my problem is that I have another Flash movie in
    the new web page that needs to start at different frames depending
    on which button is pressed in the links section from the previous
    page.
    I have already set up a local connection from the links
    section to update the movie in the header (Top Frame) and this
    works fine, is the Local Connection method the way to go to achieve
    this or is there another way that im missing?
    Please help!
    If it helps the site im building is:
    www.ubeats.com
    and the movies im referring to are the 'Links' section (that
    appears on the right of the screen on all pages but the Buy Our
    Music page) and the 'Choose Retailer' movie on the 'Buy Our Music'
    page...one more thing, i have also set up a local connection
    between the 'Choose Retailer' buttons and the 'Retailer Display
    Area' above the table.

    I just set up 7 web pages with different swf files that start
    at different points. It leads to more files but it works, Hope this
    helps you arkhon13. Check out my site again to see it.
    Ive got a another problem now. My local connections seem to
    not work properly in IE on the PC! They work fine with Safari (Mac)
    and Firefox (PC) however which is the strange thing! Anybody heard
    of this before? Could it be something to do with the updates that
    have been made to IE 6 and would there be a quick fix for this?
    PLEASE HELP! Ive been trying to sort this out for ages!!
    Many thanks
    Jonny

Maybe you are looking for

  • When I connect my iPad3 to my TV I can see the movie but there is no sound?

    When I connect my iPad to my television the movie appears and plays but I get no sound?  What am I doing incorrectly?

  • Anchor tag in txt file

    is there any way that i could include a link that has punctuation characters inside of an anchor tag of an externally loaded txt file. something like this <a href=' http://www.dailymotion.com/relevance/search/leah%2Bdizon/video/x18dj1_leah-dizon'>cli

  • Is it possible to always limit searches to iTunes Plus music?

    I can't find a way to do this, but I may be doing something dumb. Is there a global setting in iTunes to say "Only ever show me music released as iTunes+ tracks?" (i.e. un-DRM-ed AAC) Alternatively, is there a way to add a "Kind" field to iTunes musi

  • T61p won't sleep with Windows 7 beta.

    Any ideas, guys? Might be a fun mystery to solve. Model: ThinkPad T61p OS: Windows 7 Build 7000 (Beta) Processor: 2.5Ghz C2D T9300 RAM: 3GB DDR2 HDD: 160GB 7200rpm Fujitsu Screen: 1920x1200 15.4" LCD Graphics: Nvidia Quadro FX 570m Battery: 9-cell I

  • Preview Version 7.0 missing sidebar

    The sidebar in Preview is no longer available...  there is an expand or collapse option but nothing happens.  I am trying to create a document using several scanned files but without the Sidebar it's impossible.  In the past I have had the sidebar on