Flex mobile connect to remote secure server!!

Hi guys
I'm a beginner with flex mobile.
i'm trying to create an appllication flex mobile. and i have to connect to remote secured server (apache) to get some services deployed.
i did it and when i try with emulator from flash builderit's worked, a pop up window started to enter a login and password for connect to the remote server. it's okay, i get a result.
but now when i try this application with my mobile phone, application launched correctly but i can't connect to remte server ( i dont have anythig like a popup to enter the login and pssword).
i need your help.
thanks

Did you ever figure this out? I'm having the same issue.

Similar Messages

  • Oracle 10.2 on AIX -- need to connect to remote SQL server by dblink

    oracle 10.2 on AIX -- need to connect to remote SQL server by dblink
    i didn't see a odbc diectory in our oracle home path. how do i know odbc driver is installed in the oracle on our AIX server.
    If it is there, do i just need to modify the odbc.ini and then the inithsodbc.ora, linster.ora, tnsnammes.ora files, or am I missing something
    Appreciate your response
    Edited by: user10876711 on May 12, 2011 9:18 AM
    Edited by: user10876711 on May 12, 2011 9:18 AM

    when you want to connect from Oracle to a SQl Server you need the Oracle Gateway (HSODBC or even better Dg4ODBC) and a FOREIGN ODBC DRIVER for your foreign database - a SQL Server ODBC driver. You have to get this driver from a 3rd party vendor - Oracle does not offer any foreign ODBC drivers.
    So before being able to use DG4ODBC/HSODBC you need to install from a 3rd paryt vendor a SQL Server ODBC driver. Commercial vendrs are for example Data Direct, Openlink or Easysoft.
    On Unix ODBC drivers commonly also require a driver manager. If the ODBC driver vendor does not ship one with the ODBC driver you can get it from www.unixodbc.org

  • Php connection to remote mysql server

    Hi,
    I've stragne problem using php 4.3.10 with Sun One 6.1 on Solaris 9. The connection to a remote mysql server fail. I've correct grants in both servers and the php.ini is setting to permit no limit connection to databases. the code:
    $host='my-remote-server.com';
    $link1=mysql_connect($host,"bla","blabla");
    if$db1 = mysql_select_db("LOGIN",$link1);
    $link = mysql_connect("localhost","bla","blabla");
    $db = mysql_select_db("LOGIN",$link);
    The remote connection fail but the local one works. When i work with another server Sun One 6 in Solaris 8 , everthing work wonderfull with the same deffinitions, it can connect the remote databases but the others machines can't connect the solaris 8 machine. i think there is something wrong in the solaris 9 or/and sun one 6.1 deffinition it avoid remote connection. The problem i don't know what may be wrong, which setting may affect tcp connections from web application in solaris 9/sun one 6.1 plataform.

    we found the problem finally and may be useful for someone. Using the solaris 9 network snifer (snoop) we found that the default php timeout connection for mysql doesn't work ,this value is 60 in the php.ini . After 4 or 5 miliseconds php application closes the connection when it runs from the webserver , running from the shell it doesn't happen.The answer from the other server arrived after 20 or 30 milisecods then the connection to the databases fails. The solution is to put unlimited tiemout , mysql_connection_timeout=-1 then it success to connect the remote mysql server correctly. May be problem without timeout connection in case the other server doesn't answer, then application may wait forever or untill the system or webserver take out the application. I didn't check this posibilty, mainly i'm interesting the applications can work and write in the remote databases. If this definition cause problem as application waiting connection we always can try with another value greater than 60.

  • Flex 3 and connection to remote ubuntu server

    Good morning,
    I'm trying to retrieve the result from a SQL query to populate a datagrid.
    My server is a Ubuntu server on a virtual machine. I created the tables I want to extract information from using MySQLWorkbench and put them on my ubuntu server. Flex is running on my Mac.
    I have the following code in the mxml file of my Flex project:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="rest_service.send()">
        <mx:HTTPService id="rest_service" url="http://192.168.56.101/testhtml.php"/>
        <mx:DataGrid left="0" right="0" top="0" bottom="0"
            dataProvider="{rest_service.lastResult.people.person}">
            <mx:columns>
               <mx:DataGridColumn headerText="Test ID" dataField="userid"/>
               <mx:DataGridColumn headerText="Name" dataField="username"/>
               <mx:DataGridColumn headerText="Email" dataField="emailaddress"/> 
            </mx:columns>
        </mx:DataGrid>
    </mx:Application>
    The testhtml.php file is on the server (in the /var/www/ folder) and looks like this:
    <?php
       require ("Connection.php");
    $db_handle = mysql_connect($server, $user_name, $password);
    $db_found = mysql_select_db($database, $db_handle);
    if ($db_found) {
    $Query = "SELECT * from users";
    $Result = mysql_query( $Query );
    //print "allo?" . "<br/>";
    echo htmlspecialchars('<?xml version="1.0" encoding="utf-8"?>')."<br/>";
    echo htmlspecialchars('<people>')."<br/>";
    //print '<people>';
    // Iterate through the rows, printing XML nodes for each
    while( $Row = mysql_fetch_object( $Result ) )
      echo "      ";
      echo htmlspecialchars('<person>') . "<br/>" ;
      echo "            ";
      echo htmlspecialchars('<userid>'.$Row->userid.'') ;
      echo htmlspecialchars('</userid>') . "<br/>";
      echo "            ";
      echo htmlspecialchars('<username>'.$Row->username.'');
      echo htmlspecialchars('</username>') . "<br/>";
      echo "            ";
      echo htmlspecialchars('<emailaddress>'.$Row->emailaddress.'');
      // echo htmlspecialchars('<emailaddress>"'.$Row->emailaddress.'"');
      echo htmlspecialchars('</emailaddress>') . "<br/>";
      echo "      ";
      echo htmlspecialchars('</person>') . "<br/>" ;
    echo htmlspecialchars('</people>');
    mysql_close($db_handle);
    else {
    print "Database NOT Found ";
    mysql_close($db_handle);
    ?>
    I tested the php file by typing http://192.168.56.101/testhtml.php in my web browser and I get the xml code expected. The problem is that I don't think Flex is actually connecting to the server.... I have noticed that when you create a new project you can select an application server type but I have no idea what to put for the web root and the root url (I picked php in the list of options for the server type).
    My server is not hosted on my machine but on a virtual machine. Is there something I need to install on my server, and if yes, on which folder?
    Your help would be greatly appreciated. I'm a newbie and have lots to learn and I have been stuck on this for a while now.
    Thank you again,
    supernous

    Forget it. I'm an idiot.
    I forgot to active the "Allow remote admin" setting again

  • Can't connect to remote SQL Server 2014 Standard with VS 2012

    Hi all,
    I am trying to create a development environment using SQL Server 2014 (not Express).  The SQL server instance is on a Windows 8.1 Pro machine in a non-domain environment.  I have Visual Studio 2012 installed on the same machine which can connect
    to the SQL server instance without problems.  I have another machine with VS 2012 that cannot connect.  SQL server is configured for mixed authentication.  The SSDT on the remote machine can see the SQL server networked instance, but will not
    connect with SQL authentication. 
    I have rounded up all the usual suspects;
    - The SQL server service is running
    - Remote connections are enabled on SQL server and the relevant firewall ports are open.
    - TCP/IP and named pipes are enabled
    - Remote connections are enabled in Management Studio
    - SQL Server Browser service in enabled and running
    What am I missing?  I have been out of developer mode for a few years and all of the tools have changed, but I seem to be missing something obvious.
    Many thanks in advance,
    Tim
    Tim in Dublin

    Hello,
    Have you configured the Windows Firewall on the Visual Studio computer too? Is there any other security software on those
    2 computers?
    Can you ping between both computers by computer name? If not, try connecting using the IP address. For example:
    10.0.0.10,1433
    1433 is the default SQL Server port number.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Unable to start connection on remote JMS server

              HI
              I have a setup in which I try to connect to a remote JMS Server (running on a
              remote WLS 8.1 SP1). It is able to get the named QueueConnectionFactory, fails
              to start the connection. The stack trace is
              weblogic.jms.common.JMSException: Connection not found
                   at weblogic.jms.dispatcher.InvocableManager.invocableFind(InvocableManager.java:136)
                   at weblogic.jms.dispatcher.Request.wrappedFiniteStateMachine(Request.java:596)
                   at weblogic.jms.dispatcher.DispatcherImpl.dispatchSync(DispatcherImpl.java:153)
                   at weblogic.jms.client.JMSConnection.start(JMSConnection.java:567)
                   at uk.co.concise.payments.event.EventProcessorServiceAsynchBD.(EventProcessorServiceAsynchBD.java:82)
                   at uk.co.concise.payments.state.ejb.ObjectStateServiceXDBean.ejbCreate(ObjectStateServiceXDBean.java:213)
                   at uk.co.concise.payments.state.ejb.ObjectStateService_1th3um_Impl.ejbCreate(ObjectStateService_1th3um_Impl.java:135)
                   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                   at java.lang.reflect.Method.invoke(Method.java:324)
                   at weblogic.ejb20.pool.StatelessSessionPool.createBean(StatelessSessionPool.java:172)
                   at weblogic.ejb20.pool.StatelessSessionPool.getBean(StatelessSessionPool.java:110)
                   at weblogic.ejb20.manager.StatelessManager.preInvoke(StatelessManager.java:140)
                   at weblogic.ejb20.internal.BaseEJBLocalObject.preInvoke(BaseEJBLocalObject.java:229)
                   at weblogic.ejb20.internal.StatelessEJBLocalObject.preInvoke(StatelessEJBLocalObject.java:54)
                   at uk.co.concise.payments.state.ejb.ObjectStateService_1th3um_ELOImpl.createAndGetStateForObject(ObjectStateService_1th3um_ELOImpl.java:273)
                   at uk.co.concise.payments.state.ObjectStateServiceBD.createAndGetStateForObject(ObjectStateServiceBD.java:123)
                   at uk.co.concise.payments.submission.ejb.SubmissionServiceXDBean.createSubmission(SubmissionServiceXDBean.java:92)
                   at uk.co.concise.payments.submission.ejb.SubmissionService_o0dxp8_ELOImpl.createSubmission(SubmissionService_o0dxp8_ELOImpl.java:162)
                   at uk.co.concise.payments.submission.SubmissionServiceBD.createSubmission(SubmissionServiceBD.java:42)
                   at uk.co.concise.payments.submission.webapp.SubmitPaymentFileAction.execute(SubmitPaymentFileAction.java:216)
                   at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:446)
                   at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:266)
                   at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1292)
                   at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:510)
                   at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
                   at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
                   at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
                   at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
                   at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
                   at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
                   at uk.co.concise.payments.logon.filter.LogonFilter.doFilter(LogonFilter.java:38)
                   at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
                   at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6316)
                   at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
                   at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
                   at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3622)
                   at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2569)
                   at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
              Any ideas on what could be wrong
              thanks
              jaz
              

              Thanks Tom
              It fixed the problem.
              Jaz
              Tom Barnes <[email protected]> wrote:
              >Hi,
              >
              >I think "Connection not found" may be a symptom of a name
              >conflict. Make sure:
              > All JMS servers are named differently
              > All WL servers are named differently
              > All JMS stores are named differently
              >All three above are needed for various reasons, although I think
              >it is only first that fixes your particular problem.
              >
              >A google search of this newsgroup would likely have yielded this
              >same answer.
              >
              >Tom
              >
              >jasmeet wrote:
              >
              >> HI
              >>
              >> I have a setup in which I try to connect to a remote JMS Server (running
              >on a
              >> remote WLS 8.1 SP1). It is able to get the named QueueConnectionFactory,
              >fails
              >> to start the connection. The stack trace is
              >>
              >> weblogic.jms.common.JMSException: Connection not found
              >>      at weblogic.jms.dispatcher.InvocableManager.invocableFind(InvocableManager.java:136)
              >>      at weblogic.jms.dispatcher.Request.wrappedFiniteStateMachine(Request.java:596)
              >>      at weblogic.jms.dispatcher.DispatcherImpl.dispatchSync(DispatcherImpl.java:153)
              >>      at weblogic.jms.client.JMSConnection.start(JMSConnection.java:567)
              >>      at uk.co.concise.payments.event.EventProcessorServiceAsynchBD.(EventProcessorServiceAsynchBD.java:82)
              >>      at uk.co.concise.payments.state.ejb.ObjectStateServiceXDBean.ejbCreate(ObjectStateServiceXDBean.java:213)
              >>      at uk.co.concise.payments.state.ejb.ObjectStateService_1th3um_Impl.ejbCreate(ObjectStateService_1th3um_Impl.java:135)
              >>      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
              >>      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
              >>      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
              >>      at java.lang.reflect.Method.invoke(Method.java:324)
              >>      at weblogic.ejb20.pool.StatelessSessionPool.createBean(StatelessSessionPool.java:172)
              >>      at weblogic.ejb20.pool.StatelessSessionPool.getBean(StatelessSessionPool.java:110)
              >>      at weblogic.ejb20.manager.StatelessManager.preInvoke(StatelessManager.java:140)
              >>      at weblogic.ejb20.internal.BaseEJBLocalObject.preInvoke(BaseEJBLocalObject.java:229)
              >>      at weblogic.ejb20.internal.StatelessEJBLocalObject.preInvoke(StatelessEJBLocalObject.java:54)
              >>      at uk.co.concise.payments.state.ejb.ObjectStateService_1th3um_ELOImpl.createAndGetStateForObject(ObjectStateService_1th3um_ELOImpl.java:273)
              >>      at uk.co.concise.payments.state.ObjectStateServiceBD.createAndGetStateForObject(ObjectStateServiceBD.java:123)
              >>      at uk.co.concise.payments.submission.ejb.SubmissionServiceXDBean.createSubmission(SubmissionServiceXDBean.java:92)
              >>      at uk.co.concise.payments.submission.ejb.SubmissionService_o0dxp8_ELOImpl.createSubmission(SubmissionService_o0dxp8_ELOImpl.java:162)
              >>      at uk.co.concise.payments.submission.SubmissionServiceBD.createSubmission(SubmissionServiceBD.java:42)
              >>      at uk.co.concise.payments.submission.webapp.SubmitPaymentFileAction.execute(SubmitPaymentFileAction.java:216)
              >>      at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:446)
              >>      at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:266)
              >>      at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1292)
              >>      at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:510)
              >>      at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
              >>      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
              >>      at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
              >>      at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
              >>      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
              >>      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
              >>      at uk.co.concise.payments.logon.filter.LogonFilter.doFilter(LogonFilter.java:38)
              >>      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
              >>      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6316)
              >>      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
              >>      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
              >>      at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3622)
              >>      at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2569)
              >>      at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
              >>      at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
              >>
              >>
              >> Any ideas on what could be wrong
              >> thanks
              >> jaz
              >
              

  • MDBs failed to connect to remote JMS server

    Hi,
              We currently have 2 clusters: one is a regular cluster (cluster1) and the other is JMS cluster (cluster2). Our JMS server and filestore are targeted to a migratable server in JMS cluster.
              In our weblogic-ejb-jar.xml, we added element <provider-url> to the <message-driven-descriptor> to allow JMS remote connection as follows:
              <weblogic-enterprise-bean>
                   <ejb-name>MyBean</ejb-name>
                   <message-driven-descriptor>
                        <destination-jndi-name>MyTopic</destination-jndi-name>
              <provider-url>t3://myhost:19009,myhost:19011</provider-url>
              <connection-factory-jndi-name>MyConnectionFactory</connection-factory-jn
              di-name>
                   </message-driven-descriptor>
              </weblogic-enterprise-bean>
              When we deployed our application, the Connection Status of MyBean showed "disconnected". I have tried different values (t3://myhost:19009;t3://myhost:19011) and
              (t3://myhost:19009) but got the same result.
              When I re-targeted the JMS server and filestore to a regular server (instead of migratable server), I was able to connect remotely. But because we want to be able to migrate our JMS server (auto and manually), I have to target it to a migratable server.
              I could not figure out why my MDBs failed to connect to a remote JMS server when it is targeted to a migratable server? Is there a restriction that we have to target to a regular server in order to connect remotely or I'm doing something wrong?
              Any help would be greatly appreciated.
              Thanks,
              Thao

    I'm using WL9.2 and my migratable server is actually up and running (is that what you mean about booted?).                    I meant checking your log files to make sure that the JMS server itself actually booted, not checking that the host WL server was up. (For example you should see INFO messages indicating that the JMS server has loaded "X" records from its persistent store).
              >>> Could you elaborate on the known problem?
              9.x MDBs have special code for enhanced handling of remote distributed destinations. I'm guessing that this code is somehow causing problems when the remote JMS server is migratable. I don't have enough information to elaborate further than that.
              >>> What else I can try?
              Beyond contacting customer support, I'm not sure.
              Tom

  • How to connect to remote sql server database?

    Hallo,
    I am a new member, so please excuse me if my questions are dummy.
    I am using CR2008 SP2 to make reports from sql server 2005 databases.
    Localy there is no connection problem and everything works perfect.
    I would like to establish a connection with a remote sql server 2005,
    but i am not familiar with remote data retriving. which driver should i use? static ip? vpn? server ports?
    Any answer will be really appreciated

    Hello,
    This is more a question for Microsoft to see what and how they support remote connections to databases. As long as you have the connection made CR will not have any problems. You may find it is slow so optimizing your queries is highly recommended. Passing a million records through your web connector is going to take time.....
    I've personally used a VPN connection and then set the ODBC or OLE DB connection info to my test server here at work and it worked fine. But they were small data sets.
    Thank you
    Don

  • Connecting to remote oracle server from asp

    Hi All
    How can I access remote oracle server from asp?. I'm using the following connection string.
    " Provider=MS Remote;Remote Provider=MSDAORA;Data Source=XYZ;Remote Server=http://DBServersIP;User Id=id;Password=pw"
    Both the web server and DB server has oracle client. I can tnsping, connect using sql * plus from the webserver.
    But when I try to do simple connection & query , I get the following error.
    " Microsoft ADO/RDS(0x80072EFD)
    Internet Client Error: Cannot Connect to Server.
    All the permission settings are given correctly (after referring Microsoft & Oracle websites)
    Can someone throw some links or help.?
    Your replies much appreciated.
    Thank you
    Arum

    why do you have http://DBServersIP as the remote server?
    Your connection string should look like:
    "Driver={Microsoft ODBC for Oracle};Server=MY_SID;Uid=my_user;Pwd=my_pwd;"
    There are other variations, but none of them should include HTTP anywhere.

  • Cannot connect to Remote SQL server

    Hi,
    I was able to connect to remote server before and it was working but since couple of days when I tried to connect it generates error.
    "The Target PrincipalCannot  name is incorrect.Cannot Generate SSPI context."
    Jibran Ishtiaq

    See
    [ForumFAQ]How to troubleshoot error "SSPI handshake
    failed with error code 0x80090324
    A simple reason can be, that your local clock differens more then 5 min from the Server clock.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Connection to remote archive server fails!

    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-qformat:yes;
    mso-style-parent:"";
    mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
    mso-para-margin-top:0cm;
    mso-para-margin-right:0cm;
    mso-para-margin-bottom:10.0pt;
    mso-para-margin-left:0cm;
    line-height:115%;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-fareast-font-family:"Times New Roman";
    mso-fareast-theme-font:minor-fareast;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;}
    Hello.
    Sometimes, I receive this message from archiver.mars...
    CS-MARS appliance cannot connect to the remote archive server that is set up for archiving the configuration and event data.
    Please verify that the connection of the archive server at IP: 'X.X.X.X' to the CS-MARS appliance is OK and CS-MARS appliance has the write permission to the exported path: '/' on the archive server!
    CS-MARS is running software version 6.0.6 and data archiving via SFTP.
    From GUI, data archiving status is running, archiving service enabled and remote server available.
    SFTP server log shows, at the same time, this entry
    02/16/2010 04:00:44 PM: [FAIL] Unknown global request [email protected] received
    02/16/2010 04:00:44 PM: [NOTE] Connection from X.X.X.X disconnected
    All suggestions are appreciated.
    Regards.
    Andrea

    If you are getting connection refused, either the server isn't listening on the port you have specified or there is a firewall intervening.
    Can you connect to the database using any other MSSQL client tools (query analyzer for instance?) If so, make sure the setting you have there are the same in sqldeveloper.

  • Connect to Remote Oracle Server?

    Hi all,
    What is the recommended method for connecting a Windows 2000 web server to a remote Oracle database? Ideally, a driver could add the remote Oracle database to our local list of ODBC datasources.
    We're using ColdFusion (web application development package) to connect to local ODBC datasources. A prospective client of ours would like to use our ColdFusion web server, but with their own Oracle server providing the back-end database, rather than use our native Access or SQL databases. I'm happy to do this, provided a simple, secure and free solution is available.
    The ColdFusion support forums talk about an "Oracle Client" though I can find no reference to it -- let alone, a download page -- on Oracle.com.
    Any help is greatly appreciated.
    Dave

    The general procedure for connecting a web server to an Oracle database via ODBC is as follows:
    1) Install the Oracle client on the web server machine. You can download the Oracle client from OTN by going to "Software" and choosing "Oracle 8i EE". If you have an Oracle CD, "client-only" is an installation option. Note that the 8.1.7.0 ODBC driver will be installed automatically when the Oracle client is installed. You may want to download and install the updated 8.1.7.2 ODBC driver.
    2) Use the Net8 Configuration Assistant to provide the Oracle client with the connection information for the remote Oracle database.
    3) Create a new ODBC DSN for the Oracle database (alternately, your application can make a DSN-less connection)
    4) Now, your application should be able to connect with the Oracle database.
    Justin

  • I can't get Flashbuilder 4.6 to connect to remote Linux server on port 80

    I'm using Flashbuilder 4.6 on a Mac (Snow Leopard). I have a new CentOS 6.2 Linux server with Apache webserver 2.2.21 on it, then installed GlassFish 3.1.1 application server on it, then installed mod_jk to connect Apache and Glassfish. Everything is installed on the same server. I verified that I can deploy an example war file (web application) in Glassfish and access it fine using either,
        mydomain.com:8080/mywebapp  (uses port 8080, which is direct connection to GlassFish)
        mydomain.com/mywebapp   (uses port 80, which enters Apache and passes through mod_jk to get to Glassfish)
    This works well (no errors in any logs files).
    Then I download BlazeDS from Adobe website, create a hello world application with it and deploy it in GlassFish. I next try to setup a new Flex Project in Flashbuilder 4.5. Using the wizard, I come to the section (under Server location) where I need to input a Root Folder and Root URL. Everything works fine when using a Root URL of http://mydomain.com:8080/mywebapp, meaning, I can click on the Validate Configuration button and Flashbuilder connects to the server.
    But if I enter in the Root URL input field http://mydomain.com/mywebapp, then Flashbuilder cannot connect to the server. I need to eventually close port 8080, so I need this solution, which uses port 80, to work.
    I made sure that the httpd.conf file VirtualHost section does include a `JkMount /mywebapp worker1` statement, and I can even look at the mod_jk.log file and see that Apache correctly opens a socket for mod_jk to communicate via AJP between Apache and GlassFish (with no errors or warnings) when the address `mydomain.com/mywebapp` appears on port 80. The GlassFish server.log file also shows no problems.
    I'm stumped what to do next. Does anyone have experience connecting GlassFish, mod_jk, Apache, and Blazeds (or LCDS, should be similar)? If so, do you see any differences in my setup compared to yours? I'm only trying to use RemoteObject (not messaging, or streaming, etc.) with Java POJOs.

    Hi!
    Thanks for the reply. No, my ISP isn't providing me with three IP addresses, just one static address. And the VDSL modem...not a router, but beyond that, don't know much about it. Do have a switching hub, however, a gigabit thing that so far is working great.
    Managed, somehow, to get everything working, however. Really don't know what I did. But I can now take the MBP off the wire and connect to the other Macs without turning on Airpot on those machines. Next step now is to take the MBP to another location and try to establish a connection to the home network via Desktop Transporter or Vine. That's the Holy Grail that will allow me to sever the cords that keep me from straying too far from home during working hours. Love to sit at that coffee shop across the park and do my work from there!

  • Error Connecting to remote sql server database

    The sql server database is hosted on Godaddy hosting service.
    I am able to connect with many other remote computers so the issue resides on the remote computer.
    The remote computer is windows 7 32 bit 2009 service pack 1
    using the ODBC administrator we add a user DSN select SQL Server Version 6.01.7601.17514
    For the server we put in the server from godaddy somthing like   XYZDatabase.db.1110002.hostedresource.com
    Once enter the login id and password we get the following error.
    Any help would much appreciated.
    Remember, we have multiple other remote computers connecting with no issues.

    Hello,
    If connection works for several machines, but fails on others then may because the access is blocked by firewall. You have to unblock IP port 1433 for in- and outbound.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • WebDB 2.1 Listener connecting to remote WebDB server

    Any pointers on connecting a dedicated WebDB listener to a WebDB server on a remote system. Directions are a bit obtuse.
    Frank

    We have solved this problem by using "Remote Link" to tables on Server and creating views on Listener system to tables on Server.
    You have to copy/create your WEBDB forms to/on Listener System (as far as I know).
    But be carefull some "standard buttons" like "Add New" does not perform/show at all.
    Please let me know if you find a better solution.

Maybe you are looking for

  • Exception creating new Poolable object

    Hi All I have installed jdeveloper 12.1.2 and when running the hello world page iam getting this error....pls advice *500 Internal Server Error* oracle.apps.fnd.common.AppsException: oracle.apps.fnd.common.PoolException: Exception creating new Poolab

  • Fogot id and password

    PLEASE someone help - i bought a blackberry playbook and now i have forgotton the password and id, also i cannot get onto my emails as i have forgot that password too!! what do i do now???

  • WMI - Output result

    Hi  Am trying to fetch information from my client computers, that they have installed Skye or not  on there computers. I was able to write a WMI script,  works well, but the output result is written on cmd. How can i get the output result to excel or

  • Cats Approval through MSS WD

    Hi My Client needs Cats Approval like this,We are implementing cProjects with CATS, we want approvals through MSS. Scenario is Approver for the time sheet entries of particular project is respective project manager not immediate supervisor. Inorder t

  • Selective Reverse Issue on Changed Table

    Hi, hoping I can get some help here. We have a SQL Server source table that has had 3 new columns added to it. We now want to get those 3 columns into the existing model for use in a mapping. I have tried going into the model, picking the selective r