A problem connecting to AS running on HyperV using a simple workgroup

Hi,
Please help, I am baffled by this.
I have created a Windows Server 2012 R2 virtual server on Hyper V. The host machine is Windows 8.1. I have then installed SQL Server 2014 on the server and patched up to date. I have correctly enabled the TCP/IP networking and have configured the Firewall
ports as outlined in the Technet Guide.
I can connect to the SQL Server Database from host/remote using the sa account but not my <Host>\<UserName> windows account. Acceptable but not ideal.
When it comes to connecting to AS from host\remote I only get a windows log in and then when manually typing in the name of the client server I get the following message.
TITLE: Connect to Server
Cannot connect to SQLServer1.
ADDITIONAL INFORMATION:
A connection cannot be made. Ensure that the server is running. (Microsoft.AnalysisServices.AdomdClient)
Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. (System)
An existing connection was forcibly closed by the remote host (System)
This looks to me as though the <host>\<user> log in isn't recognised by the client even though the user is set up on both. I believe this is a Domain issue. I guess the correct fix is to set up an virtual Active Directory but at this stage I
don't want to do this. Both host and client are on the same workgroup and this is configured correctly so why are the domain issues cropping up. I'm sure this didn't use to happen a couple of years ago when I tried this has some security issue changed?
Any advice welcomed - many thanks in advance
Regards
Nick

Hi Nick,
In Analysis Services, client application to an Analysis Services instance require Windows authentication (integrated). The Analysis Services client libraries only work with Windows security principles. As you mention you have connected AS properly, I think
you may under this scenario: You are using NTLM authentication. Then you have an account on both machine which has same username and password. But we don't suggest you do this due to security issue. If each machine within the workgroup has this same account,
each client can access the SQL Server.
Reference:
Understanding Kerberos and NTLM authentication in SQL Server Connections
If you have any question, please feel free to ask.
Regards, 
Simon Hou
TechNet Community Support

Similar Messages

  • Problem connecting (read only) to Sybase Server using Crystal XI

    Hi,
    I'm having a very similar problem to Renuha in the thread 'Problem connecting to Sybase Server using Crystal XI-Version-11.0.0.1994'
    The thread is marked as assumed answered but I suspect not!
    I am experiencing this issue in Crystal XI R1 11.0.0.2495, post SP4 install.
    Though the issue was exactly the same pre SP4 install, when it was a vanilla install @ version 11.0.0.1282.
    I am trying to connect to a Sybase database via Crystal > Start Page > Standard Report Wizard > Standard Report Creation Wizard > Sybase Server > Make New Connection
    I enter the details, of my read only user account, and select my desired database, from the (successfully) populated 'Database' drop down.
    After some time, in the 'Standard Report Creation Wizard' window I get the server listed under the Sybase Server branch, but, on expanding the server I only get '...no items found...'. However ,if I use the sa account, after selecting a particular database, I can see all the available database objects under the Sybase Server > [server] node.
    I am on Windows XP Pro SP3, with Sybase Open Client v12.5.2
    I assume my Sybase Open client is correctly installed as I am able to successfully connect using the sa account.
    I am trying to connect to a Solaris 10 (5.10) system running Sybase @@version= Adaptive Server Enterprise/15.0.3/EBF 16548 ESD#1/P/Sun_svr4/OS 5.8/ase1503/268
    Our database vendor/supplier has said:
    "...Crystal reports is not handling the granularity of the Sybase revoke permissions and assuming we've revoked all access to any table where we have revoked only write access.
    Is anyone able to assist?
    Thanks,
    Matt

    Don,
    Thanks again for the response and my apologies for the delay in reply - they keep giving me other work to do!!
    Anyway.
    CR XI R2 SP6 successfully installed.
    Same outcome on Sybase connect, with a full read/write sa account
    i.e. successfull connect and sight of all database objects within my chosen database.
    Same outcome on my restricted read only account
    i.e. I am able to successfully authenticate and choose which database I wish to select but subsequently, still, 'no items found' is displayed when I expand my database node.
    I believe it is a problem with the read only account as both accounts are able to connect, as shown by the availablilty of the dropdown, listing the available databases within the specified Sybase instance.
    The reasons for going down this path are as you suspect - I've been asked to provide access which is not full!
    As far as the testing via test tbl creation.
    I know very little of Sybase (?!) and all our Sybase DBA activities are carried out by our system/dB vendor/supplier.
    To do further testing I would have to go back to our dB vendor/supplier but, as mentioned, (I get the impression) they already beleive they have carried out all required of them by providing locked down read only access.
    I ought to mention that the database trying to be accessed is a restored copy of "the previous days" live data, on an MIS server. The read-only account comes over as with full privileges, and it is a script, subsequent to database restore, which knocks down the accounts privs, to read-only. Given this scenario what would I have to ask of them re further testing/troubleshooting?
    Thanks,
    Matt

  • Problem connecting oracle database to jsp pages using Apache Tomcat server 8.0

    Well...I tried too many things..googled so many times..but still could not find solution to my problem.
    I use windows 8 Enterprise Edition(if this has to do something with the problem)
    Oracle 11.2.0
    Apache Tomcat server 8.0
    JDK 1.7
    My oracle is installed in the D: drive and tomcat in c:. i copied the ojdbc6.jar file from oracle to lib directory of tomcat server.
    Then i set  CLASSPATH in environment variables as "C:\Program Files\Apache Software Foundation\Tomcat 8.0\lib\ojdbc6.jar" in system variables
    My path variable is set as "C:\Program Files\Java\jdk1.7.0_02\bin".
    My program is as follows in notepad:
    <%@ page import="java.sql.*" %>
    <html>
    <body>
    <%
    Connection conn;
    Statement st;
    ResultSet rs;
    try{
    new oracle.jdbc.driver.OracleDriver();
    String dbURL="jdbc:odbc:oracle:thin:@localhost:1521:XE";
    String userId="system";
    String pwd="moon";
    conn=DriverManager.getConnection(dbURL,userId,pwd);
    st=conn.createStatement();
    rs= st.executeQuery("SELECT * FROM login");
    while(rs.next())
    System.out.println(rs.getString(1)+""+rs.getString(2));
    catch(Exception e){}
    %>
    </body>
    </html>
    I get too many errors then
    eroors
    org.apache.jasper.JasperException: An exception occurred processing JSP page /page2.jsp at line 14
    11: String userId="system";
    12: String pwd="moon";
    13:
    14: conn=DriverManager.getConnection(dbURL,userId,pwd);
    15: st=conn.createStatement();
    16:
    17: rs= st.executeQuery("SELECT * FROM login");
    Stacktrace:
    org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:568)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:455)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:403)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:347)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:725)
    org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
    root cause
    javax.servlet.ServletException: java.sql.SQLException: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:905)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:834)
         org.apache.jsp.page2_jsp._jspService(page2_jsp.java:102)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:725)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:432)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:403)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:347)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:725)
         org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
    Nothing solved this problem.

    >> Nothing solved this problem.
    Can't fix a problem 'till an actual problem is identified.
    >> ODBC Driver Manager ... Data source name not found
    That appears to be ODBC drivers looking for a DSN (Data Set Name). If it wants a DSN, the DSN has to be specified in the code, and the DSN has to be configured in the windows host ODBC applet. So that is at least two squirrels to get in the right tree before moving forward. A ...host:...[port:]SID|service name are some of the bits needed in a jdbc connect string, and that is in no way related to DSNs. A Whole Different Animal. If it wants a DSN that might be what needs to go in the URL bit.
    And ODBC setups can be confusing, especially if an x64 OS is in the mix- if that is the case there are two different ODBC configuration applets, one for x64 the other for x86, and if one gets as far as talking to an actual database it might toss an architecture error. Only way to fix that "problem" is *delete* the ODBC DSN and then run the correct (maybe the x86) ODBC config utility, and set up the DSN. Again.

  • Problem connecting two trunks to sip provider using same CUBE

    We need to connect two SIP trunks from service provider to Cisco CUCM 7.1 using CUBE “Cisco 2821”, SP using the following configuration:
    First SIP PSTN Link Configuration(In-Out DID/DOD 218 7700 – 218 7799)
    Customer IP Address =   10.196.191.158/30
    SP IP Address =  10.196.191.157/30
    Protocol= SIP
    SIP Port = 5060
    Transport Protocol=UDP
    Voice Codec= G711 A-Law
    DTMF = IN-Band DTMF without RFC2833
    Signaling IP address = 10.201.20.49
    IP Address 10.201.20.10 (Media IP) must be visible from IP PABX
    Second SIP PSTN Link Configuration( Inbound Only 920009999)
    Customer IP Address =   10.196.192.94/30
    SP IP Address =  10.196.192.93/30
    Protocol= SIP
    SIP Port = 5060
    Transport Protocol=UDP
    Voice Codec= G711 A-Law
    DTMF = IN-Band DTMF without RFC2833
    SIP server IP address = 10.201.20.49
    IP Address 10.201.20.10 (Media IP) must be visible from IP PABX
    When we tried to configure both links on the same CUBE we faced two problems:
    -          Routing issue, as we can’t route traffic using single CUBE through two different interfaces to the same destination “ i.e we have to configure static route commend (ip route 10.201.20.49 255.255.255.255 10.196.191.157 & ip route 10.201.20.49 255.255.255.255 10.196.192.93), sip traffic coming from one link can’t be sure to send it back to the same link.
    -          SIP media & signaling control binding issue, as CUBE support sip binding using one interface only “one IP Address”, if we not using binding commands on the CUBE we can’t receive any calls though any link.
    We have two options:
    SP to send both traffic on the same trunk link
    Or
    Have another CUBE for the second link.
    Attached network diagram.
    Any solution?????
    Regards,
    Ahmed Rizk

    I didn't mean NAT CUCM, I meant the interface towards it. But since you're using a single interface then yes that is what you NAT. You have a lot going on in that config. Probably a lot more than you need. Like I said you should work on this in two legs. CUBE to ITSP, and then CUCM to CUBE. You're trying to make the whole thing work in one shot which is going to cause you some headaches.
    Install XLite free version. In the account settings set your UserID to a generic 10 digit phone number, domain to something generic, then at the bottom set the Proxy Address to the IP of your CUBE. The media ports will be negotiated dynamically between the CUBE and the ITSP. Since you said you're not registering you will also need to give the ITSP YOUR peer IP (this is how they secure the trunk) which is whatever IP you're sourcing from when you leave your network (what you're NAT'ing the CUBE to).
    For testing, reduce your config to something like this:
    voice service voip
     allow-connections sip to sip
     allow-connections h323 to sip
     no supplementary-service sip moved-temporarily
     no supplementary-service sip refer
     signaling forward none
     sip
    dial-peer voice 10 voip
    description CUBE_TO_ITSP
    session protocol sipv2
    session target ipv4:SIGNALING IP PROVIDED BY ITSP
    destination-pattern [2-9].........
    codec g711ulaw
    dtmf-relay rtp-nte sip-notify
    no vad
    dial-peer voice 20 voip
    description ITSP_TO_CUBE
    destination-pattern .
    session protocol sipv2
    session target ipv4:Eventually your CUCM IP...for now set it to your computers IP.
    codec g711ulaw
    dtmf-relay rtp-nte sip-notify
    no vad
    Use XLite to place a phone call from your PC (if you have a mic and speakers you can have audio if the call connects). This should come pretty close to getting your outward leg established. Once you get this part working you can add in more codecs and translation profiles if you want. Let me know what happens. Include any debug or packet cap results if you can.  

  • Running Connected Query with Run Control Parameters using App Engine

    Hello,
    I created a connected query that has 1 parent query and 1 child query, and use this as DataSource for the report that I am going to generate. I created an app engine that willl be called to generate this report. However, I encounter the error "Error occurred while processing the request. (228,101) PT_CONQRS.CONQRSMGR.OnExecute Name:GetXMLData PCPC:59072 Statement:1309". What could be causing this issue? One cause I am thinking is that the Connected Query not returning any data since I am not able to pass / map the values to the CQ's prompt fields. How is this done in CQ? I've done it in PS Query by using the function SetPSQueryPromptRecord+. I'm trying to search for this function's equivalent in CQ. I was able to search for a workaround (http://mfinchps.blogspot.com/2011/05/how-to-launch-connected-query-xml.html), but I still prefer to have a CQ data source.
    Below is the code that should handle mapping of CQ prompt fields:
    &oConQrsInst = create PT_CONQRS:CONQRSMGR(&OperId, &ReportName);
    &result = &oConQrsInst.Open(&oConQrsInst.Const.InitExisting);
    &CQPromptsArray = &oConQrsInst.QueriesPromptsArray;
    &rcdQryRunParms = CreateRecord(@&PromptRec);
    &sqlSelectQryParms = CreateSQL("%Selectall(:1) WHERE OPRID = :2 AND RUN_CNTL_ID = :3");
    &sqlSelectQryParms.Execute(&rcdQryRunParms, &OperId, &RunControlId);
    /*Loop through the Connected Query "Queries" and fill in each query's prompts as needed*/
    For &arrCtr = 1 To &CQPromptsArray.Len
    &rcdQryPrompts = &CQPromptsArray.Get(&arrCtr).QueryPromptRecord;
    For &i = 1 To &rcdQryPrompts.FieldCount
    While &sqlSelectQryParms.Fetch(&rcdQryRunParms)
    If &rcdQryPrompts.GetField(&i).Name = &rcdQryRunParms.GetField(Field.BNDNAME).Value Then
    &rcdQryPrompts.GetField(&i).Value = &rcdQryRunParms.GetField(Field.BNDVALUE).Value;
    Break;
    End-If;
    End-While;
    End-For;
    &sqlSelectQryParms.Close();
    End-For;
    rem &oRptDefn.SetPSQueryPromptRecord(&rcdQryPrompts);  -> need to have equivalent of this+
    &oConQrsInst.Close();
    Thanks!
    Janet

    i think you have run the code to generate the XML file from your connected query...
    check the following things
    1. Check the Report definition is defined or not for the file that you want generate.
    2. if its defined check the RTF template is present or not.
    3.Check your code in Appengine whether you have mentioned the Report Definition and template name,

  • Problems Connecting Apple Bluetooth Devices in Windows using BootCamp

    People are having trouble connecting bluetooth devices in windows 7 while using bootcamp. I solved the problem by clicking on bluetooth>ADD A DEVICE once windows has detected the bluetooth device you want to add. Now, right click on the device you are adding (make sure it's  "inside the add bluetooth
    Device window "see below" ) it will say "select your device". Then tick the box beside "drivers for Keyboard, Mice etc.," under "Bluetooth Services" (see below) and it will search the internet for your drivers and automatically install them. If you have any problems post a message. Good Luck

    Not sure if you can help me, but I can't add my phone or some bt speakers to my MBA2011 in bootcamp.  Drivers can't be found...and this is usually a problem of the bt controller drivers, not the device.
    It does seem the apple bt drivers are gimped in bootcamp.

  • Problem connect with 2.1.0.63 using a SSH Tunnel from a MAC

    When I hit the Test button on the properties it says "Successful" When I try and connect I get this error:
    java.lang.NullPointerException
         at java.util.TimeZone.parseCustomTimeZone(TimeZone.java:767)
         at java.util.TimeZone.getTimeZone(TimeZone.java:471)
         at java.util.TimeZone.getTimeZone(TimeZone.java:465)
         at oracle.jdbc.driver.PhysicalConnection.setDbTzCalendar(PhysicalConnection.java:7339)
         at oracle.jdbc.driver.PhysicalConnection.setSessionTimeZone(PhysicalConnection.java:7275)
         at oracle.javatools.db.ora.Oracle8i.initOC(Oracle8i.java:245)
         at oracle.javatools.db.ora.Oracle8i.<init>(Oracle8i.java:49)
         at oracle.javatools.db.ora.Oracle9i.<init>(Oracle9i.java:154)
         at oracle.javatools.db.ora.Oracle9iR2.<init>(Oracle9iR2.java:43)
         at oracle.javatools.db.ora.Oracle10g.<init>(Oracle10g.java:29)
         at oracle.javatools.db.ora.Oracle10gR2.<init>(Oracle10gR2.java:21)
         at oracle.javatools.db.ora.Oracle11g.<init>(Oracle11g.java:23)
         at oracle.javatools.db.ora.OracleDatabaseFactory.createDatabaseImpl(OracleDatabaseFactory.java:133)
         at oracle.javatools.db.DatabaseFactory.createDatabaseImpl(DatabaseFactory.java:231)
         at oracle.javatools.db.DatabaseFactory.createDatabase(DatabaseFactory.java:212)
         at oracle.jdeveloper.db.DatabaseConnections.getDatabase(DatabaseConnections.java:607)
         at oracle.jdeveloper.db.DatabaseConnections.getDatabase(DatabaseConnections.java:562)
         at oracle.dbtools.raptor.utils.Connections$ConnectionInfo.getDatabase(Connections.java:145)
         at oracle.dbtools.raptor.utils.Connections.getConnection(Connections.java:874)
         at oracle.dbtools.raptor.utils.Connections.getConnection(Connections.java:855)
         at oracle.dbtools.raptor.navigator.DatabaseConnection.openConnectionImpl(DatabaseConnection.java:117)
         at oracle.dbtools.raptor.navigator.AbstractConnectionNode.getConnection(AbstractConnectionNode.java:30)
         at oracle.dbtools.raptor.navigator.DatabaseNavigatorController.connect(DatabaseNavigatorController.java:667)
         at oracle.dbtools.raptor.navigator.DatabaseNavigatorController.handleEvent(DatabaseNavigatorController.java:279)
         at oracle.ide.controller.IdeAction.performAction(IdeAction.java:531)
         at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:886)
         at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:503)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2028)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2351)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:389)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1223)
         at com.apple.laf.AquaMenuItemUI.doClick(AquaMenuItemUI.java:137)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1264)
         at java.awt.Component.processMouseEvent(Component.java:6348)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
         at java.awt.Component.processEvent(Component.java:6113)
         at java.awt.Container.processEvent(Container.java:2085)
         at java.awt.Component.dispatchEventImpl(Component.java:4714)
         at java.awt.Container.dispatchEventImpl(Container.java:2143)
         at java.awt.Component.dispatchEvent(Component.java:4544)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4618)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4282)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4212)
         at java.awt.Container.dispatchEventImpl(Container.java:2129)
         at java.awt.Window.dispatchEventImpl(Window.java:2478)
         at java.awt.Component.dispatchEvent(Component.java:4544)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:635)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:296)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:211)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:196)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:188)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)

    I've seen this on systems with an unsupported OS locale. Can you change your settings to America and try again?
    K.

  • Problems connecting to nighthawk r7000 router openvpn using macbook

    Just got an r7000 and turned on the vpn service. Windows clients connect fine and work as expected. On Mavericks I have used both tunnelblick and viscosity with the same results. They both connect, but my system is not issued an IP and I cannot connect to any of my home systems. Has any got this to work properly? If so what did you do? Thanks.

    You might want to post this question to the Tunnelblick Discussion Group [1] -- following the instructions at https://code.google.com/p/tunnelblick/wiki/cBeforeYouPost.
    [1] https://groups.google.com/forum/#!forum/tunnelblick-discuss

  • Problems connecting to Reality 9 on solaris using Oracle 9i HS

    Has anyone had experience of connecting from Oracle 9i (release 2) on Windows 2000 to Reality 9 on unix?
    I cannot get this to work as it hangs at login stage according to the trace file. On the same 2000 server, I have a fully functioning connection to a Reality 9 database on NT. Both the unix and NT connection through reality DSN/ODBC work fine outside of Oracle.
    The Solaris server has Gateways on it but we have been tracing heavily on this box and can't see anything obvious.
    HELP!

    Mark,
    This could be caused by incorrect logon credentials.
    Please pay attention to the 'CREATE DATABASE LINK' statement for the 'CONNECT TO ... IDENTIFIED BY' clause. If the ODBC trace ends with SQLDriverConnect then it is most likely that something is wrong with the logon credentials used in the database link.

  • Problem connecting to hosted sharepoint site using hotspot connection with Telstra 3G

    I have problems connecting to a hosted sharepoint website using hotspot conection - either the page doesnt load (IE) or I get repeated sharepoint authentication prompts (Firefox). The problem is specific to this hosted site, we can successfully load other webpages, and can access another companes sharepoint extranet using iPhone hotsot connection. I have tried changing the cellular data APN settings on the iPhone from telstra.iph to telstra.internet but this did not solve the problem.

    Look at the JSSE examples. You need to setup a key store, add the jsse jars to your classpath, yadda, yadda, yadda....

  • Problem connecting using opmn

    Hi all,
    i have some problems connecting remotely to an ejb application using
    opmn.
    I use OAS 10.1.2 installed on a linux redhat, on my machine (windows
    xp) i have j2ee application deployed in a oc4j stand alone 10.1.2 ,
    whose services must connect via rmi to an ejb application deployed in
    the application server on the server. I have defined a file of
    properties on the local machine, where i have set the paramters to
    connect to the server, the content of this file is like this:
    java.naming.factory.initial=com.evermind.server.rmi.RMIInitialContextFactory
    java.naming.provider.url=opmn:ormi://deploy:6004:S3/EjbApp
    java.naming.security.principal=userlogin
    java.naming.security.credentials=userpassword
    dedicated.rmicontext=true
    where S3 is the name of the instance in the oas.
    Trying to connect to the application EjbApp, as described in the
    properties i have the error:
    javax.naming.NamingException: Lookup error: java.io.EOFException:
    Disconnected; nested exception is:
    java.io.EOFException: Disconnected [Root exception is
    java.io.EOFException: Disconnected]
    at com.evermind.server.rmi.RMIContext.lookup(RMIContext.java:168)
    at javax.naming.InitialContext.lookup(InitialContext.java:347)
    There are not problems if i decide to connect to the ejb application
    directly using the rmi port, when i try to use the opmn there is the
    error reported above.
    Moreover connecting using opmn to another ejb application, deployed in
    to another instance of the same application server, all works fine.
    It seem to be the particular instance S3 has some problems, but i don't
    know what.
    Thanks for your help
    Message was edited by:
    user487637

    The firewall was blocking TNSLSNR.exe!

  • Problems with capturing and printing-to-tape using FCP4

    Having trouble logging footage and printing to video using FCP4.
    1) When we log-in footage (capture) it constantly stops and says, "dropped frames". This usually happens after 10-15 minutes of logging-in footage. Why is this happening??
    2) When we Print-To-Tape, it will suddenly stop! Sometimes it will continue Printing-To-Tape, but without audio!
    Is this a common problem? Should we re-install FCP4?
    We've done all the software updates, but we're still experiencing these problems. We've also cleared up our computer by deleting old FCP4 projects.
    We have a G4 with three internal Hard Drives with approx 180GB each. We're using the Sony DSR-11 as our Mini-DV deck.
    Help!!!!

    We don't have Virex or Norton software in the machine. We have Disk Warrior which was helpful in the past with other problems. Should I run another check using Disk Warrior?
    We only have one machine which has three internal drives. We've experienced the same problems using each of the drives.
    We do have some video stored in the system drive, but normally we don't use that drive. The system drive currently has 70GB availble, as do each of the other internal drives.
    We have updated our FCP to 4.5, but should we trying re-installing it?

  • Can not connect to company web based intranet using Citrix.

    I have problems connecting to my companies web site using Citrix. I get an error message
    **Error in ICA File:**
    **The line'<script language = javescript>' was encounter before a section was found.**
    **Please contact your Meta Frame administrator.**
    Sometimes it works and sometimes it doesn't . Would appreciate any help or solutions

    Citrix support is available here:
    http://www.citrix.com/lang/English/support.asp

  • Having problems connecting iMac(late 2006) running 10.7.5 to a Samsung Flat Screen TV using separate audio/speaker cable and HDMI standard cable, mini-DVI to HDMI video converter.  TV displays generic Apple galaxy background and "some" windows (e.g. scree

    Not sure that I have selected the correct forum.  Hope my questions are clearly stated.
    Having problems connecting iMac(late 2006) running 10.7.5 to a Samsung Flat Screen TV using separate audio/speaker cable and HDMI standard cable, mini-DVI to HDMI video converter.  TV displays generic Apple galaxy background and "some" windows (e.g. screen resolution choices).   It does not show Mail or Safari menus.  System preferences'  display "gathered" the Samsung and chose its resolution.  I did not find a way to select the Samsung as my display.
    In addition to having old hardware, we have Verizon FIOS providing internet and TV access.  Is there any way to make this work for us?  We would like to stream video (Netflix) and view shows from the Web.  Do we need Apple TV to do this?  Or is it not possible with our old iMac?  My husband thinks that our Airport could be a factor. 
    Thank you

    Lately, I have been seeing a lot of posts with users trying to use their Macs/iMacs to mirror their streaming video from their Macs to an HDTV.
    There are, actually, many alternatives to choose from than just from a Mac.
    You need to have or invest in a WiFi capable router for all of these examples.
    Apple TV only integrates with WiFi and newer Mac hardware. So, if you want to have total integrated experience, if you have a 2011 Mac or newer, you might as well pay the $100 for the AppleTV box.
    If you have a older Mac, like I have noticed many users do, then you have other options.
    If you want to elimate long cable clutter and having your Mac at the mercy of your TV all of the time,  you can still use the AppleTV box independently or purchase cheaper alternative media streaming boxes from Roku, Sony, Boxee or any number of electronics manufacturers that now have media streaming boxes and media streaming capability built into DVD/Blu-ray players.
    These eliminate long cable clutter by being close to the HDTV where shorter, less expensive cables can be used.
    Another alternative for iPad users is to use an iPad with the USB/HDMI video adapter and use your iPad as the streaming box. This ties up your iPad in much the same way as it does with your Mac, but again the iPad can be close to the TV and use minimal cables to the TV.
    Another alternative to is to use a combination of an iPad and your Mac to stream content that is only available to stream online from a computer. In this case, you can use a desktop remote app on your iPad and Mac. A good and cheap Desktop Remote app is Splashtop Remote. This allows you to completely connect your iPad remotely, over Wifi, to your iMac desktop. The app streams both video and sound to the iPad which is still connected to your HDTV. The resultant stream video picture will be smaller than the size of your HDTV, but it will still be plenty large enough to watch. Again, if you own a iPad and an Intel Mac, this method also allows minimal cabling to the TV.

  • Hi i am having problems connecting to internet using ethernet,in the network diagnostics i get all green,except network settings which is orange.i am running mountain lion on intel imac

    hi i am having problems connecting to internet using ethernet,in the network diagnostics i get all green,except network settings which is orange.i am running mountain lion on intel imac

    hi have done as you said plug ethernet straight into computer and into back of router,and worked straight off,i had the the powerline on extention when imac was up stairs,when i had computer down stairs it still would not work with powerlines even on main wall sockets,so they are getting binned,looks like i will have to move router upstairs,just wondering if i got extention wire from back of openreach box to router upstairs```,would it be ok,,the openreach box is next to my only phone socket in house,which is in back kitchen..any advice would be great,

Maybe you are looking for