SQLServer datasource declaration in WebAS on Linux

Hi everybody,
I've got problem defining a datasource (SQLServer) in Viual Administrator of my Web AS which is installed on Linux.
I think that all my parameters are correct for a connection but when I try, in DB initialisation tab, to test my connection by resquesting something in my database, I got the folloowing error :
Caused by: com.sap.engine.services.ejb.exceptions.BaseEJBException: Can not obtain a JDBC connection
     at com.sap.engine.services.ejb.entity.pm.TransactionContext.simpleGetConnection(TransactionContext.java:198)
     at com.sap.engine.services.ejb.entity.pm.TransactionContext.getConnection(TransactionContext.java:278)
     at com.sap.engine.services.ejb.entity.pm.PersistenceManager.getConnectionForFindMethod(PersistenceManager.java:345)
     at com.twomoro.reso.op.ps.FamilleMoteurBean0PM.ejbFindAll(FamilleMoteurBean0PM.java:195)
     at com.twomoro.reso.op.ps.FamilleMoteurLocalHomeImpl0.findAll(FamilleMoteurLocalHomeImpl0.java:522)
     ... 47 more
Caused by: com.sap.engine.services.dbpool.exceptions.BaseSQLException: ResourceException in method ConnectionFactoryImpl.getConnection(): com.sap.engine.services.dbpool.exceptions.BaseResourceException: SQLException thrown by the physical connection: java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Error establishing socket.
     at com.sap.engine.services.dbpool.cci.ConnectionFactoryImpl.getConnection(ConnectionFactoryImpl.java:59)
     at com.sap.engine.services.ejb.entity.pm.PersistenceManager.getConnection(PersistenceManager.java:261)
     at com.sap.engine.services.ejb.entity.pm.TransactionContext.simpleGetConnection(TransactionContext.java:191)
     ... 51 more
Caused by: com.sap.engine.services.dbpool.exceptions.BaseResourceException: SQLException thrown by the physical connection: java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Error establishing socket.
     at com.sap.engine.services.dbpool.spi.ManagedConnectionFactoryImpl.createManagedConnection(ManagedConnectionFactoryImpl.java:188)
     at com.sap.engine.services.connector.jca.ConnectionHashSet.match(ConnectionHashSet.java:286)
     at com.sap.engine.services.connector.jca.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:231)
     at com.sap.engine.services.dbpool.cci.ConnectionFactoryImpl.getConnection(ConnectionFactoryImpl.java:51)
     ... 53 more
Caused by: java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Error establishing socket.
     at com.microsoft.jdbc.base.BaseExceptions.createException(Unknown Source)
     at com.microsoft.jdbc.base.BaseExceptions.getException(Unknown Source)
     at com.microsoft.jdbc.base.BaseExceptions.getException(Unknown Source)
     at com.microsoft.jdbc.sqlserver.tds.TDSConnection.<init>(Unknown Source)
     at com.microsoft.jdbc.sqlserver.SQLServerImplConnection.open(Unknown Source)
     at com.microsoft.jdbc.base.BaseConnection.getNewImplConnection(Unknown Source)
     at com.microsoft.jdbc.base.BaseConnection.open(Unknown Source)
     at com.microsoft.jdbc.base.BaseDriver.connect(Unknown Source)
     at com.sap.engine.services.dbpool.spi.ManagedConnectionFactoryImpl.createManagedConnection(ManagedConnectionFactoryImpl.java:159)
I was wondering if this is possible to declare an external datasource SQLServer on Windows, on a SAP Web Application Server which is installed on Linux ?
Thanx a lot,
Marc

Okay I solved my problem,
it wasn't a platform problem, but simply my windows firewall which was forbidding the connection.
After desactivation, it works fine.

Similar Messages

  • Problem with Connection Pooling of datasources in a web service

    Hi,
    I have been driven insane trying to fix this problem, I am trying to connect to a MS SQL data source from a web service in tomcat 4.1, so I have defined the data source through tomcats server administration pages and checked that it has inserted the correct code to server.xml. I have also added the relevant information to the web.xml and added the code to the service. when I start tomcat it outputs:
    DbcpDataSourceFactory: driverClassName=com.microsoft.jdbc.sqlserver.SQLServerDriver, url=jdbc:microsoft:sqlserver://192.168.0.22:1433:databaseName=dbname, user=sa
    but then these errors occours:
    java.lang.reflect.InvocationTargetException
    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 org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    Caused by: java.lang.IllegalStateException: Context path /RegistryServer is already in use
    at org.apache.catalina.core.StandardHostDeployer.addChild(StandardHostDeployer.java:523)
    ... 42 more
    and
    [ERROR] Digester - -End event threw exception <java.lang.reflect.InvocationTargetException>
    java.lang.reflect.InvocationTargetException
         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 org.apache.commons.beanutils.MethodUtils.invokeMethod(MethodUtils.java:216)
         at org.apache.commons.digester.SetNextRule.end
    (Bootstrap.java:203)
         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 org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    Caused by: java.lang.IllegalStateException: Context path /Xindice is already in use
         at org.apache.catalina.core.StandardHostDeployer.addChild(StandardHostDeployer.java:523)
         ... 42 more
    And when I try to use the data source my code gets the context but when getting the datasource it shows the error:
    Error doing something: javax.naming.NamingException: DbcpDataSourceFactory: driverClassName is required
    My server.xml reads:
    <Resource name="jdbc/msService" scope="Shareable" type="javax.sql.DataSource"/>
    <ResourceParams name="UserDatabase">
    <parameter>
    <name>factory</name>
    <value>org.apache.catalina.users.MemoryUserDatabaseFactory</value>
    </parameter>
    <parameter>
    <name>pathname</name>
    <value>conf/tomcat-users.xml</value>
    </parameter>
    </ResourceParams>
    <ResourceParams name="jdbc/msService">
    <parameter>
    <name>validationQuery</name>
    <value></value>
    </parameter>
    <parameter>
    <name>user</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>url</name>
    <value>jdbc:microsoft:sqlserver://192.168.0.22:1433:databaseName=dbname</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>password</value>
    </parameter>
    <parameter>
    <name>maxActive</name>
    <value>4</value>
    </parameter>
    <parameter>
    <name>maxWait</name>
    <value>5000</value>
    </parameter>
    <parameter>
    <name>driverClassName</name>
    <value>com.microsoft.jdbc.sqlserver.SQLServerDriver</value>
    </parameter>
    <parameter>
    <name>maxIdle</name>
    <value>2</value>
    </parameter>
    </ResourceParams>
    and my web.xml
    <web-app>
    <display-name>User Service</display-name>
    <description>A service to perform user information orientated tasks</description>
    <session-config>
    <session-timeout>60</session-timeout>
    </session-config>
    <resource-ref>
    <description> Resource reference to java.sql.Connection factory defined in server.xml</description>
    <res-ref-name>jdbc/msService</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    </web-app>
    I have read the other posts regarding this error and most mention that the jar files need to be in <root>/common/lib but I have deinitely put all the MS jar files here!!!
    sorry this is such a long post but if any one has any idea it would be most appreciated!!!!
    cheers
    pasty

    Hi,
    I'm struggling with the same problem. One thing I noticed is that your url looks a bit different than others that I've seen:
    Yours:
    url=jdbc:microsoft:sqlserver://192.168.0.22:1433:databaeName=dbname, user=sa
    Most other folks:
    url=jdbc:microsoft:sqlserver://192.168.0.22:1433;databaseName=dbname; user=sa
    Note the semicolons.
    I don't know whether this will help you or not, but it's worth a try.
    Does anyone know where I can get documentation for the options that MS' jdbc driver for SQL Server? I've googled groups and the web and can't find anything authoritative.
    Dan
    Hi,
    I have been driven insane trying to fix this problem,
    I am trying to connect to a MS SQL data source from a
    web service in tomcat 4.1, so I have defined the data
    source through tomcats server administration pages and
    checked that it has inserted the correct code to
    server.xml. I have also added the relevant
    information to the web.xml and added the code to the
    service. when I start tomcat it outputs:
    DbcpDataSourceFactory:
    driverClassName=com.microsoft.jdbc.sqlserver.SQLServer
    river,
    url=jdbc:microsoft:sqlserver://192.168.0.22:1433:databa
    eName=dbname, user=sa
    but then these errors occours:
    java.lang.reflect.InvocationTargetException
    at
    at
    at
    t sun.reflect.NativeMethodAccessorImpl.invoke0(Native
    Method)
    at
    at
    at
    t
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMetho
    AccessorImpl.java:39)
    at
    at
    at sun.reflect.DelegatingMethodAccessorImpl.invoke
    (DelegatingMethodAccessorImpl.java:25)
    at
    at
    at java.lang.reflect.Method.invoke(Method.java:324)
    at
    at
    at
    t
    org.apache.commons.launcher.ChildMain.run(ChildMain.jav
    :269)
    Caused by: java.lang.IllegalStateException: Context
    path /RegistryServer is already in use
    at
    at
    at
    t
    org.apache.catalina.core.StandardHostDeployer.addChild(
    tandardHostDeployer.java:523)
    ... 42 more
    and
    [ERROR] Digester - -End event threw exception
    <java.lang.reflect.InvocationTargetException>
    java.lang.reflect.InvocationTargetException
    at
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native
    Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMeth
    dAccessorImpl.java:39)
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(Delega
    ingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
    at
    org.apache.commons.beanutils.MethodUtils.invokeMethod(
    ethodUtils.java:216)
         at org.apache.commons.digester.SetNextRule.end
    (Bootstrap.java:203)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native
    Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMeth
    dAccessorImpl.java:39)
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(Delega
    ingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
    at
    org.apache.commons.launcher.ChildMain.run(ChildMain.ja
    a:269)
    Caused by: java.lang.IllegalStateException: Context
    path /Xindice is already in use
    at
    org.apache.catalina.core.StandardHostDeployer.addChild
    StandardHostDeployer.java:523)
         ... 42 more
    And when I try to use the data source my code gets the
    context but when getting the datasource it shows the
    error:
    Error doing something: javax.naming.NamingException:
    DbcpDataSourceFactory: driverClassName is required
    My server.xml reads:
    <Resource name="jdbc/msService" scope="Shareable"
    le" type="javax.sql.DataSource"/>
    <ResourceParams name="UserDatabase">
    <parameter>
    <name>factory</name>
    <value>org.apache.catalina.users.MemoryUserDatabaseFac
    ory</value>
    </parameter>
    <parameter>
    <name>pathname</name>
    <value>conf/tomcat-users.xml</value>
    </parameter>
    </ResourceParams>
    <ResourceParams name="jdbc/msService">
    <parameter>
    <name>validationQuery</name>
    <value></value>
    </parameter>
    <parameter>
    <name>user</name>
    <value>sa</value>
    </parameter>
    <parameter>
    <name>url</name>
    <value>jdbc:microsoft:sqlserver://192.168.0.22:1433:da
    abaseName=dbname</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>password</value>
    </parameter>
    <parameter>
    <name>maxActive</name>
    <value>4</value>
    </parameter>
    <parameter>
    <name>maxWait</name>
    <value>5000</value>
    </parameter>
    <parameter>
    <name>driverClassName</name>
    <value>com.microsoft.jdbc.sqlserver.SQLServerDriver</v>
    </parameter>
    <parameter>
    <name>maxIdle</name>
    <value>2</value>
    </parameter>
    </ResourceParams>
    and my web.xml
    <web-app>
    <display-name>User Service</display-name>
    <description>A service to perform user information
    n orientated tasks</description>
    <session-config>
    <session-timeout>60</session-timeout>
    </session-config>
    <resource-ref>
    <description> Resource reference to
    to java.sql.Connection factory defined in
    server.xml</description>
    <res-ref-name>jdbc/msService</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    </web-app>
    I have read the other posts regarding this error and
    most mention that the jar files need to be in
    <root>/common/lib but I have deinitely put all the MS
    jar files here!!!
    sorry this is such a long post but if any one has any
    idea it would be most appreciated!!!!
    cheers
    pasty

  • Weblogic SQLServer JDBC error during Solaris to Linux migration

    We are in process of migrating our app from weblogic 92 on solaris to weblogic 92 on linux. Our app connects to a SQLServer db (SQL Server 2005) using a weblogic datasource configured with the weblogic sqlserver jdbc driver (weblogic.jdbc.sqlserver.SQLServerDriver)
    But we are getting the following error on linux, whereas the same code works fine in solaris:
    *[BEA][SQLServer JDBC Driver][SQLServer]The server failed to resume the transaction. Desc:3d00000019.*
    The <Desc:xxxx>keeps changing but rest of the error message remains the same. Any suggestions?
    I have tried searching the weblogic jdbc forums but no luck.

    Is this the same DBMS as is used in the working configuration?
    I'd like to see the whole stacktrace....

  • How to handle multiple datasources in a web application?

    I have a J2EE Web application with Servlets and Java ServerPages. Beside this I have a in-house developed API for certain services built using Hibernate and Spring with POJO's and some EJB.
    There are 8 databases which will be used by the web application. I have heard that multiple datasources with Spring is hard to design around. Considering that I have no choice not to use Spring or Hibernate as the API's are using it.
    Anyone have a good design spesification for how to handle multiple datasources. The datasource(database) will be chosen by the user in the web application.

    Let me get this straight. You have a web application that uses spring framework and hibernate to access the database. You want the user to be able to select the database that he wants to access using spring and hibernate.
    Hopefully you are using the Spring Framework Hibernate DAO. I know you can have more that one spring application context. You can then trying to load a seperate spring application context for each database. Each application context would have it's own configuration files with the connection parameters for each datasource. You could still use JNDi entries in the web.xml for each datasource.
    Then you would need a service locater so that when a user selected a datasource he would get the application context for that datasource which he would use for the rest of his session.
    I think it is doable. It means a long load time. And you'll need to keep the application contexts as small as possible to conserve resources.

  • PDF has not been configured for this web server linux 11.1.2

    Hi,
    We installed 11.1.2 Hyperion WorkforcePlanning on Linux 32 bit OS.
    When the user opens the workspace and tries to see the "Profit and Loss" and selects
    "File --> Open In --> PDF format" , it just flicks for a sec and gives following message :
    " PDF has not been configured for this web server"
    Can somebody suggest me what to do ?
    Appreciate your response.
    Edited by: user536857 on Mar 22, 2011 3:07 PM

    Check your print server service on your foundation server, sometimes I have had that just stop for whatever reason.

  • Building Portlets Declaratively tutorial (web service as data source)

    [I mistakenly posted this on the Portal Applications forum earlier.]
    I'm going through the Building Portlets Declaratively tutorial. In the Creating a Portlet Using a Web Service as a Data Source section, I enter the WSDL URL and click the Show Parameters button, and no parameters are returned, as expected. I then click the Next button to go to the Filter page. The Column dropdown list contains only the <none> and ERROR items. I returned to the previous page and clicked the Test button. This is the result:
    <ns1:getEmpXMLResponse xmlns:ns1="oracle.ws.scott.OTNDeptEmp" SOAP-ENV:encodingStyle="http://xml.apache.org/xml-soap/literalxml" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <return>
    <ERROR>
    oracle.xml.sql.OracleXMLSQLException: Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=168821760)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))
    </ERROR>
    </return>
    </ns1:getEmpXMLResponse>
    I get the same response when I use this page to test getEmpXML: http://www.oracle.com/technology/tech/webservices/hostedservices_index.html
    Is there a different service that I should now be calling (i.e., is OTNDeptEmp.getEmpXML no longer available?)?
    Thanks.
    Larry

    For database connectivity issues post in the Database Forum

  • 10g BUG?  WEB-INF vs. web-inf  LINUX

    Hello;
    I read this was fixed in 10g but it seem to exist still in linux. (Env: RH Linux 7.3, 10g Preview)
    Create a New Web App (JSP/STRUTS...).
    Create new JSP in /WEB-INF/untitled1.jsp
    At this point you can't Compile the project.
    The error below is created.
    Project:/home/a/jdevhome/mywork/ir2/ViewController/ViewController.jpr
    /home/a/jdevhome/mywork/ir2/ViewController/public_html/WEB-INF/untitled1.jsp
    Error:/home/a/jdevhome/mywork/ir2/ViewController/public_html/web-inf/untitled1.jsp (No such file or directory)
    This also happens when trying to compile Steve Muench BC4JToystore Demo
    It looks like web-inf is getting set to lower case somewhere.
    I know Linux is not the release for the 10g pre, this is just in case the bug is going to 'pop' up again in the final version
    Thanks
    A

    repost?
    Is this a know bug or am I doing something wrong?No, I also experienced the same problem under Linux. With JDev 9i, it works correctly. IMHO it's a 10g bug.
    -- Chris.

  • FRM-92100 while Running Forns10g on web in Linux

    Hi All,
    While Running forms on web FRM-92100 saying
    Connection to the server was interrupted.
    I am doing this on linux.
    I got some advices clear jinitor cache but I did'nt got those.
    Is there any patch required for this.
    Would anybody know the cause & solution of this Error.

    Hi Bhushan,
    Your problem is due to lower version of Internet Explorer. If you use IE 5.0 with JVM 5 then you will not face the problem you mentioned.
    Sudin
    null

  • Run Forms Web on Linux

    Hi,
    How do run Forms web (10g) on Linux Ubuntu 10.10 and Chrome or Firefox?
    I search in Google but don't locate a ideal solution.
    Thanks.

    Do you mean does it run in a browser on Ubuntu or do you want to run the application server on Ubuntu ?

  • Can not access web interface: Linux: permission denied

    When starting my oracle-xe on centos5 it works but i can not open the web interface. During install i have configured it on port 81 and this is the error i get when starting the db:
    30-MAY-2010 19:17:54 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=localhost.localdomain)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169869568)) * status * 0
    Error listening on: (Description=(Address=(Protocol=tcp)(Port=81)(Host=localhost))(Presentation=HTTP)(Session=RAW))
    30-MAY-2010 19:17:57 * service_update * XE * 12546
    TNS-12546: TNS:permission denied
    TNS-12560: TNS:protocol adapter error
      TNS-00516: Permission denied
       Linux Error: 13: Permission deniedFirewall and seLinux are disbled.
    I have installed oracle-xe as root and added root to the dba-group
    What could be the issue for this?
    Edited by: Yannick.O on May 30, 2010 10:35 AM

    You have to use some port higher then 1024. Ports below 1024 are reserved for root user only.

  • Web-Cam: Linux Driver Needed For T400

    Hi all,
    I have Lenovo T400 that works perfectly.  Had Win-7 Ultimate dual-booting with new install of Linux Mint 9 (Isadora).  Decided to delete Win-7 Ultimate.
    Linux Mint OS 9 fully confiqured and running nicely recognizing all hardware except FingerPrint and Webcam device.
    The Fingerprint device is cool, but would like Webcam Device Driver.
    Is there a Webcam driver available for the Lenovo T400?  If so, please reply,
    Warmest Regards,
    ~ digi

    In a terminal as your user:
    [code]
    lsusb
    [/code]
    You will see the device ID code for your camera. Here is mine on ThinkPad Edge: 04f2:b1cf
    You can then do a google search for "Linux web cam xxxx:xxxx" compatibility.  It is likely that the driver is already loaded because of the auto detect function of the kernel scripts.
    You can check that in a terminal as your user:
    [code]
    lsmod
    [/code]
    Look for modules: v4l1_compat, videodev, uvcvideo.
    Neal

  • Defining a DataSource/connectionPool for Web Application

    Is it necessary to define a DataSource and/or connectionPool in the web.xml
    file when deploying as a web application? It seems that there should be a
    <resource-ref> element for this, but if that's true, how is a transactional
    vs. non-transactional data source defined?
    The documentation on doing this using a weblogic.properties file is clear,
    but I haven't found how (or if) this is done in the web.xml and weblogic.xml
    files.
    Thanks,
    David Bryan
    Perot Systems

    That does sound weird BUT the good news is I was able to figure it out. And for the sake of those struggling souls who happen upon this post allow me to share.
    I only ran into this problem to begin with because my root site is
    https://root.company.com and my host named site collections are all
    https://something.qa.company.com ... well, that and the fact that I'm not good with regex.
    The solution was two rules. The first checked that https is off (condition input is {HTTPS} and Pattern is ^OFF$)
    The second rule has the condition input of {HTTPS_HOST} and the patterns is [^HTTP://].*.qa.company.com
    My Redirect URL is simply https://{C:0}
    Then the problem was the http bindings on the web application. I couldn't bind an empty host name to port 80 and all IP addresses because that was already being done by the default web app. So I bound it to a single IP, which in the case of my QA environment
    isn't a problem. I'm guessing that if I had multiple WFEs I could add additional site bindings on Port 80 for each of the IP addresses.
    At any rate all is well in LaLa Land once again.
    Thanks for walking through this with me David!
    Love them all...regardless. - Buddha

  • SSRS XML DataSource in SSRS Web Edition

    Hi All,
    I have a little (stupid) question : is it possible to have  XML as a data source on a SSRS Web Edition ? 
    I can't seem to find any detailed information about this on the documentation...
    Thanks in advance!
    Greetings,
    Nicky

    Hi Katherine,
    I have the following in the config file :
    <Data>
    <Extension Name="SQL" Type="Microsoft.ReportingServices.DataExtensions.SqlConnectionWrapper,Microsoft.ReportingServices.DataExtensions"/>
    <Extension Name="SQLAZURE" Type="Microsoft.ReportingServices.DataExtensions.SqlAzureConnectionWrapper,Microsoft.ReportingServices.DataExtensions"/>
    <Extension Name="SQLPDW" Type="Microsoft.ReportingServices.DataExtensions.SqlDwConnectionWrapper,Microsoft.ReportingServices.DataExtensions"/>
    <Extension Name="OLEDB" Type="Microsoft.ReportingServices.DataExtensions.OleDbConnectionWrapper,Microsoft.ReportingServices.DataExtensions"/>
    <Extension Name="OLEDB-MD" Type="Microsoft.ReportingServices.DataExtensions.AdoMdConnection,Microsoft.ReportingServices.DataExtensions"/>
    <Extension Name="ORACLE" Type="Microsoft.ReportingServices.DataExtensions.OracleClientConnectionWrapper,Microsoft.ReportingServices.DataExtensions"/>
    <Extension Name="ODBC" Type="Microsoft.ReportingServices.DataExtensions.OdbcConnectionWrapper,Microsoft.ReportingServices.DataExtensions"/>
    <Extension Name="XML" Type="Microsoft.ReportingServices.DataExtensions.XmlDPConnection,Microsoft.ReportingServices.DataExtensions"/>
    <Extension Name="SHAREPOINTLIST" Type="Microsoft.ReportingServices.DataExtensions.SharePointList.SPListConnection,Microsoft.ReportingServices.DataExtensions"/>
    <Extension Name="SAPBW" Type="Microsoft.ReportingServices.DataExtensions.SapBw.SapBwConnection,Microsoft.ReportingServices.DataExtensions.SapBw"/>
    <Extension Name="ESSBASE" Type="Microsoft.ReportingServices.DataExtensions.Essbase.EssbaseConnection,Microsoft.ReportingServices.DataExtensions.Essbase"/>
    <Extension Name="TERADATA" Type="Microsoft.ReportingServices.DataExtensions.TeradataConnectionWrapper,Microsoft.ReportingServices.DataExtensions"/>
    </Data>
    So it was in the config file ... 

  • Quicktime Web Content - Linux

    I run a website with lots of Quicktime VR content.
    I recently noticed that visitors whose browser is Mozzila on Linux always leave after viewing a single page and realised that there is no Quicktime for Linux.
    Is there:
    a) any plug-in that I could recommend to Linux users or
    b) an alternative format that I could offer them
    that would solve their problem of accessing Quicktime VR content using Mozzila on Linux.
    Thanks.
    George
    PS the website, if you want to see what I am talking about, is http://veryDerry.com

    You can save the screenshot as a JPG or PNG file and attach it to your answer via the "Add images" form just below the Post A Reply form where you type the response.
    * [http://en.wikipedia.org/wiki/Screenshot]?
    Use a compressed image type like PNG or JPG to save the screenshot and make sure that you do not exceed the maximum file size (1 MB).

  • Error activating a web service based datasource ( BI 7.3)

    Hi,
    While activating a datasource based on web services i get the below error:
          "Internal error while deleting web service"
           "Error when activating datasource"
    As per one of the posts, we need to activate the services listed under "bc" ( path : virtualhost->sap->bc ) in tcode: SCIF.
    There are many services listed under the "bc" node that are inactive. Please let me know which are the services that needs to be activated under this node.
    Alternatively pls also suggest if there is any other way to solve this issue.
    Thanks.

    Hi Jayanthi,
    Please get help from Basis Team.
    Regards,
    Kuldeep Jain

Maybe you are looking for

  • Hard Drive Has Vanished

    Today I used Carbon Copy Cloner to make a copy of my G5 iMac to an external Firewire drive. Once that was done I began to install Leopard onto the iMac. I've already installed Leopard onto my Macbook and it runs great. But the installer just stuck. I

  • Agent Determination for Service Entry (BO-BUS2091)

    HI, I am new to workflow and facing below issue. I have created a workflow for Service entry sheet approval (BO- BUS2901) and I am having an issue with the agent determination. I am using my own Ztable to determine the possible agents. I am using the

  • Why i cannot open my skype account

    Why tell me

  • Where I find the connector for UNIX Telnet 9.0.4.4...?

    I am configuring the connector for UNIX Telnet 9.0.4.4 and in the documentation I requested this connector. On the home page of the Oracle connector exists only for UNIX Telnet 9.0.4.2.0 Any suggestions

  • New Subscription Troubles

    I just bought a monthly subscription and I go to make call and I cannot.. It comes up that I need to buy credit or a subscription...... help