JSP / SQL Server / Widows 2000

Can anyone provide a list of things to check in getting a JSP with a Database Connection to SQL Server 7 database on Windows 2000? I keep getting this error message:
javax.servlet.ServletException: Unable to load class com.microsoft.jdbc.sqlserver.SQLServerDriver
     at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:459)
     at jsp.Cycling._0002fjsp_0002fCycling_0002ftest_0002ejsptest_jsp_6._jspService(_0002fjsp_0002fCycling_0002ftest_0002ejsptest_jsp_6.java:127)
     at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
etc....
The name of the database is "cycling". The database is running on the local machine.
The JSP Code is as follows:
<% Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver"); %>
<% java.sql.Connection conn = java.sql.DriverManager.getConnection ("jdbc:microsoft:sqlserver:cycling//localhost:8080;User=cycling;Password=cycling");
Statement stmt = conn.createStatement();
etc...
Thanks.

Each of the previous replies is correct, but your immediate problem is that the JVM cannot find the database driver that you are naming in
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
I'm assuming that you have a jar file somewhere that you downloaded? I don't think it's safe to assume that the default install of SQLServer is going to have a jdbc driver included. If you haven't specifically set up your environment to include a jar file with the driver, then you need to locate that jar file. You may have to download it from Microsoft.
The steps are:
1. Find/download the jar file containing the SQLServer driver (download from: http://msdn.microsoft.com/downloads/default.asp?URL=/downloads/sample.asp?url=/MSDN-FILES/027/001/779/msdncompositedoc.xml)
2. Create an entry in your classpath naming that file.
3. Set up the connection parameters in your code ( url, uid, password ).
You have done number 3, but it's incorrect. The port number paramter is the port that SQLServer communicates on - you have 8080, which is the default port used by Tomcat for http traffic. Try 1433 as suggested above.

Similar Messages

  • JSP, Sql Server 2000 Driver, classpath

    Hello All,
    I've got a really weird problem here.
    I want to connect a JSP page to a SQL Server 2000 database.
    I downloaded the SQL Server 2000 Driver for JDBC, and it seems to have installed fine.
    Next I write a regular java program to test the connection. It works fine, I get a "Connection Successful message". Here' the code:
    import java.sql.*;
    public class MSSqlServerJDBCTest {
        public static void main( String args[] ) {
            Connection conn;
            if ( args.length != 3 ) {
                System.out.println( "Usage: java MSSqlServerJDBCTest "
                    + "<server> <username> <password>" );
            } else {
                try {
                    String serverName = args[ 0 ];
                    String userName = args[ 1 ];
                    String password = args[ 2 ];
                    String connStr = "jdbc:microsoft:sqlserver://"
                        + serverName + ":1433";
                    Class.forName( "com.microsoft.jdbc.sqlserver.SQLServerDriver" );
                    conn = DriverManager.getConnection(
                        connStr, userName, password );
                    System.out.println( "Connection successful" );
                    conn.close();
                catch ( SQLException e ) {
                    System.err.println( "SQL Exception: " + e.getMessage() );
                catch( ClassNotFoundException e ) {
                    System.err.println( "SQL Server JDBC Driver Not Found!!" );
    }Now, when I include similar into a JavaBean, which is used in a JSP, I get a classNotFound exception:
    Exception occured: java.lang.ClassNotFoundException: com.microsoft.jdbc.sqlserver.SQLServerDriverSo then I checked out the classpath a few times using echo %classpath%
    Everything seemed okay, the driver jars are in the path, but the JSP can't find the driver.
    I looked at the System.out file in the j2sdkee1.3.1\logs..... directory.
    The start of the file contains this stuff:
    Logging for J2EE Server Version: 1.3.1-b17 started at: Fri Nov 08 17:31:53 GMT 2002..
    Using the Java HotSpot(TM) Client VM and the version number 1.3.1_02 from Sun Microsystems Inc..
    VM is using the classpath: c:\j2sdkee1.3.1\lib\system\cloudscape.jar;c:\j2sdkee1.3.1\lib\system\tools.jar;c:\j2sdkee1.3.1\lib\cloudscape\RmiJdbc.jar;c:\j2sdkee1.3.1\lib\cloudscape\cloudclient.jar;c:\j2sdkee1.3.1\lib\classes;c:\j2sdkee1.3.1\classes;c:\j2sdkee1.3.1\lib\j2ee.jar;c:\j2sdkee1.3.1\lib\toolclasses;c:\j2sdkee1.3.1\lib\j2eetools.jar;c:\j2sdkee1.3.1\lib\locale;;c:\jdk1.3.1_02\lib\tools.jar;c:\j2sdkee1.3.1\lib\jhall.jar .
    J2EE Home Directory has been set to: c:\j2sdkee1.3.1.Look at the classpath - its different from when I do an echo %classpath% from the command line. Notice also it DOESN'T contain the driver jars that I need. This is probably why I can connect from a regular java program, but not from within J2EE.
    So where does this leave me? How can I change the classpath so that the changes are seen from within the J2EE container?
    Please help,
    Thanks in advance,
    Ruzer

    I modified the C:\j2sdkee1.3.1\bin\userconfig.bat file with the line:
    set J2EE_CLASSPATH=c:\sqldriver\msutil.jar;c:\sqldriver\mssqlserver.jar;c:\sqldriver\msbase.jarI had to change the location of the MS SQLServer 2000 driver cos J2EE.bat wouldn't start with the original location. I don't think it liked the spaces.
    Now I get a different exception:
    java.security.AccessControlException: access denied (java.lang.RuntimePermission modifyThreadGroup)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:272)
         at java.security.AccessController.checkPermission(AccessController.java:399)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:545)
         at com.sun.enterprise.J2EESecurityManager.checkAccess(J2EESecurityManager.java:46)
         at java.lang.ThreadGroup.checkAccess(ThreadGroup.java:279)
         at java.lang.Thread.init(Thread.java:265)
         at java.lang.Thread.(Thread.java:330)
         at com.microsoft.jdbc.base.BaseGarbageThread.(Unknown Source)
         at com.microsoft.jdbc.base.BaseGarbageThread.EnsureRunning(Unknown Source)
         at com.microsoft.jdbc.base.BaseConnection.open(Unknown Source)
         at com.microsoft.jdbc.base.BaseDriver.connect(Unknown Source)
         at java.sql.DriverManager.getConnection(DriverManager.java:517)
         at java.sql.DriverManager.getConnection(DriverManager.java:177)
         at org.apache.jsp.databaseJSP$jsp._jspService(databaseJSP$jsp.java:70)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)not sure why!
    Ruadhan

  • Database name in MS SQL server 7/2000

    Hi, Folks!!
    I have a (basic) question regarding connecting up to an MS SQL server. I know the basic syntax of connecting to the server, however, I have not seen any examples on the java.sun.com site that show where you can insert the database name in the connection statements. I have search (some) of the discussions here but have not found anything anything conclusive.
    Could someone point me in the right direction, at least?
    TIA,
    Signed: Frustrated!
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGH!!!

    Okay,
    I think I got it!
    instead of using:
    Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
    Connection con = DriverManager.getConnection("jdbc:microsoft:sqlserver://<srvrName>:<portNumber>;DatabaseName=<dbName>", UID, PWD);I used the following:
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con = DriverManager.getConnection("jdbc:odbc:<srvrName>;DatabaseName=<dbName>", UID, PWD);I don't have any of the extra Microsoft drivers installed on my computer so I had to use what was available with Java and that is the JDBC-ODBC bridge. It was just a simple matter of adding ";DatabaseName=<dbName>" to what I already had. It makes sense now that I think about it. I hope somebody stumbles accross this message someday and avoids the grief I went through.

  • SQL Server 2000 std Report Performance Issue

    Dear All,
    I have a VB based desktop application with back end MS SQL server 2000 database with server machine ibmx5650 with specs intel xeon 2.7GHz (24 CPU's) & 24GB RAM.
    There are two things i need help:
    Recently we have upgrade the SQL server from 2000 personal edition to the 2000 standard edition. There comes a problem with one of the Report in the application. The report took almost 30 mins previously in SQL 2000 personal edition.But after the upgrade
     to Standard edition we are unable to view report before 3 hours even sometimes it doesn't appear after several hours.
    Secondly for brief testing i have installed the personal edition on a simple PC rather then a server PC specs are corei5 & 4 GB of RAM. The same report is generated in only 15 mins from the application with this desktop machine as DB server.
    Please help me out i have gone through all SQL Server & system performance log of my server machine everything is normal but the report is taking too long & i can only generate that report from personal edition.
    Is there the difference due the higher corei5 processor in desktop machine or there is any other issue behind this.
    Your prompt response is highly appreciated.
    Regards,
    Rashid Ali

    Hello,
    SQL Server 2000 is not support since 2013. Please upgrade to SQL Server 2012 to get better performance and support.
    Thanks for your understanding and support.
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • (new?) performance problem using jDriver after a Sql Server 6.5 to 2000 conversion

    Hi,
    This is similar - yet different - to a few of the old postings about performance
    problems with using jdbc drivers against Sql Server 7 & 2000.
    Here's the situation:
    I am running a standalone java application on a Solaris box using BEA's jdbc driver
    to connect to a Sql Server database on another network. The application retrieves
    data from the database through joins on several tables for approximately 40,000
    unique ids. It then processes all of this data and produces a file. We tuned
    the app so that the execution time for a single run through the application was
    24 minutes running against Sql Server 6.5 with BEA's jdbc driver. After performing
    a DBMS conversion to upgrade it to Sql Server 2000 I switched the jDriver to the
    Sql Server 2000 version. I ran the app and got an alarming execution time of
    5hrs 32 min. After some research, I found the problem with unicode and nvarchar/varchar
    and set the "useVarChars" property to "true" on the driver. The execution time
    for a single run through the application is now 56 minutes.
    56 minutes compared to 5 1/2 hrs is an amazing improvement. However, it is still
    over twice the execution time that I was seeing against the 6.5 database. Theoretically,
    I should be able to switch out my jdbc driver and the DBMS conversion should be
    invisible to my application. That would also mean that I should be seeing the
    same execution times with both versions of the DBMS. Has anybody else seen a
    simlar situation? Are there any other settings or fixes that I can put into place
    to get my performance back down to what I was seeing with 6.5? I would rather
    not have to go through and perform another round of performance tuning after having
    already done this when the app was originally built.
    thanks,
    mike

    Mike wrote:
    Joe,
    This was actually my next step. I replaced the BEA driver with
    the MS driver and let it run through with out making any
    configuration changes, just to see what happened. I got an
    execution time of about 7 1/2 hrs (which was shocking). So,
    (comparing apples to apples) while leaving the default unicode
    property on, BEA ran faster than MS, 5 1/2 hrs to 7 1/2 hrs.
    I then set the 'SendStringParametersAsUnicode' to 'false' on the
    MS driver and ran another test. This time the application
    executed in just over 24 minutes. The actual runtime was 24 min
    16 sec, which is still ever so slightly above the actual runtime
    against SS 6.5 which was 23 min 35 sec, but is twice as fast as the
    56 minutes that BEA's driver was giving me.
    I think that this is very interesting. I checked to make sure that
    there were no outside factors that may have been influencing the
    runtimes in either case, and there were none. Just to make sure,
    I ran each driver again and got the same results. It sounds like
    there are no known issues regarding this?
    We have people looking into things on the DBMS side and I'm still
    looking into things on my end, but so far none of us have found
    anything. We'd like to continue using BEA's driver for the
    support and the fact that we use Weblogic Server for all of our
    online applications, but this new data might mean that I have to
    switch drivers for this particular application.Thanks. No, there is no known issue, and if you put a packet sniffer
    between the client and DBMS, you will probably not see any appreciable
    difference in the content of the SQL sent be either driver. My suspicion is
    that it involves the historical backward compatibility built in to the DBMS.
    It must still handle several iterations of older applications, speaking obsolete
    versions of the DBMS protocol, and expecting different DBMS behavior!
    Our driver presents itself as a SQL7-level application, and may well be treated
    differently than a newer one. This may include different query processing.
    Because our driver is deprecated, it is unlikely that it will be changed in
    future. We will certainly support you using the MS driver, and if you look
    in the MS JDBC newsgroup, you'll see more answers from BEA folks than
    from MS people!
    Joe
    >
    >
    Mike
    The next test you should do, to isolate the issue, is to try another
    JDBC driver.
    MS provides a type-4 driver now, for free. If it is significantly faster,
    it would be
    interesting. However, it would still not isolate the problem, because
    we still would
    need to know what query plan is created by the DBMS, and why.
    Joe Weinstein at BEA
    PS: I can only tell you that our driver has not changed in it's semantic
    function.
    It essentially send SQL to the DBMS. It doesn't alter it.

  • Resource Breaks When Upgrade from SQL Server 2000 to 2005 - Help!

    I have a resource that connects to mutiple databases:
    <ResourceAttribute name='Databases' displayName='com.waveset.adapter.RAMessages:RESATTR_DATABASES'
    description='com.waveset.adapter.RAMessages:RESATTR_DATABASES_HELP' multi='true'>
    <value>dbOne</value>
    <value>dbTwo</value>
    <value>Employee_Info</value>
    </ResourceAttribute>
    It all works fine when the backend SQL server is 2000, but since we've upgraded it to 2005, the connection fails with this error:
    Test connection failed for resource(s):MenuSQL: Required database dbOne not found.MenuSQL: Required database dbTwo not found.MenuSQL: Required database Employee_Info not found.
    I'm using the MS SQL JDBC driver for 2005 and I've verified that my connection url is good:jdbc:sqlserver://%h:%p;databaseName=%d;integratedSecurity=true; where %h and %p are the correct host and ports.
    I turned on tracing of com.waveset.adapter.MSSQLServerResourceAdapter and com.waveset.adapter.JdbcResourceAdapter and I don't see any errors or issues reported.
    If I set it back to connect to the SQL 2000 databases, it works. If I change it to only connect to one database, rather than 3 it works. However, I need this working on 2005 with all three databases. Any ideas on what I can look at or how I can further troubleshoot this?
    Thanks in advance for any help!

    Turns out the driver I'm using is fine (sqljdbc.jar). The problem is that the IdM source code executes "sp_databases" to list the databases. In SQL versions prior to 2005 this would work by default. But with 2005 a user has to be granted permissions to do so.
    To fix it you need to either grant the IdM ID you're using VIEW DEFINITION permission at an appropriate scope: object level, database level or server level or modify the stored procedure so that it executes under the credentials of the owner.
    Here's some info: http://msdn.microsoft.com/en-us/library/ms187113.aspx

  • How to connect to SQL Server (Non-SAP) in SAP R/3(Unix)?

    Hi, All..
    please, help me.
    I am ABAPer.
    I already read the text for connect DB.
    but, I am not clear.
    my system is,
    - Source : SAP R/3, Oracle DB, Unix(OS)
    - Target : Non-sap, SQL Server, Windows 2000
    I want to connect to SQL Server by EXEC SQL.
    Waht's BC(Basis) Jobs?
    Thanks, all.

    Hello,
    have a look at Note: 323151.
    Regards
    Gregor

  • SQL Server 2012 support

     Does anyone know of any official statements regarding the running of SharePoint Server 2007 over SQL Server 2012?  Or if no official statements, has anyone tried it yet?
    Actually, I have the same question with regard to Windows Server 2012, if anyone knows anything about SharePoint Server 2007 support for that as well.
    Thanks.

    I haven't heard of any news or information from Microsoft about plans for support of SQL Server 2012 or Windows Server 2012 with SharePoint 2007, so the best source that I know to look at is their official TechNet documentation on software requirements for
    the platform:
    http://technet.microsoft.com/en-us/library/cc262485(v=office.12).aspx. That article states that it is supported on SQL Server versions 2000 through 2008 R2 and Windows Server versions 2003 through 2008 R2, as long as you keep SharePoint 2007 updated to
    the proper service packs to support the given version (believe the R2 versions of the 2008 OS and Database engine both require at least SharePoint 2007 Service Pack 2).
    There's not any information on the Service Pack 3 that indicates that it includes compatibility with the 2012 releases of Windows Server and SQL Server, so I don't think that's a possibility.
    This is just my opinion, but I really don't think you're going to see compatibility with the 2012 releases happening for SharePoint 2007, for a couple of reasons. First, Microsoft's focus is on SharePoint 2010 and potential future releases for the SharePoint
    platform. There are a lot of rumblings out there right now that vNext is rapidly approaching on the horizon, and in the past at times like this Microsoft has a track record of really not paying a whole lot of attention to vCurrent -1. The other reason is that
    from a business standpoint Microsoft like to structure its software so that when a customer does an upgrade of one platform or system they often have to bring others along for the ride as well. In this case, if you want SharePoint 2007 to use those new OS
    and SQL versions you're probably going to have to also upgrade SharePoint to 2010 to get it.
    I know it can be frustrating, but that's how Microsoft approaches things and if we want to use their software those are the rules we have to abide by.
    MCITP and MCTS: SharePoint, Virtualization, Project Server 2007
    My books on Amazon: The SharePoint 2010 Disaster Recovery Guide and
    The SharePoint 2007 Disaster Recovery Guide.
    My blog: My Central Admin.

  • SQL Server access to MDB databases slow

    We had a stored procedure with one section that populates a single variable in the SP from a query to a MSAccess database MDB file via a linked server. It was running from SQL Server MSDE 2000 and it was fast on an XP system.
    We transferred to a SQL Server 2012 database on a 32bit Win 7 machine and the same SP will time out before returning a simple result.  Code calls a SP and within that SP is a call to another SP where it shows the timeout error message.  I
    can run the exact same SP in SSMS on a Win 7 box hitting the very database where the error occurs during the program code execution and it returns results in less than one second. 
    I've heard folks talk about this being a known problem.  Does anyone have a workaround to resolve this issue?
    TIA
    Harry

    Hello,
    You can capture the whole process using SQL Server Profiler and verify exactly how much time is taking every instruction. You will be able to identify which instruction
    is giving the timeout, and probably a better description of the error.
    The following article may help you use SQL Server Profiler.
    http://www.codeproject.com/Articles/21371/SQL-Server-Profiler-Step-by-Step
    Try to capture all default events and error events. Select all columns.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • SQL-Server (no Objects)

    Hello,
    if I connect to an sql-server-db, i can't see any db-objects like Tables, Views ... and so on. I use the jtds-1.2.jar and connection itself works fine.
    SQL-server version 2000
    SQL-developer version 1.1.1.25.14
    Glad for every hint,
    Wolfgang
    P.S.
    A second annoying behavior is, that sql-developer could not connect to sql-server-database without an database-password set. I have one db used by an automation-system with no password and it is not possible to connect this.

    Yes i'am connected directly to the SQL-Server.
    I can see the databases there but no table, view, function or procedure in it's folders. I have tried everything. No chance. The Database works fine because with the data-environment-wizard from visual studio i see all objects.
    Greetings Wolfgang

  • Remote portlet failing after upgrading to 6.5 and SQL Server to 2005

    we are upgrading our environment from 6.1 mp1 to 6.5 in the process we upgraded our sql server from 2000 version to 2005.After the database upgrade all our remote custom portlet developed using API's to query the database to get user properties or documents name in KD is failing at the point where it try’s to make the call to the database.
    We are getting following error on all the portlets result page “The underlying connection was closed: The server committed an HTTP protocol violation. “
    For example for user search portlet its fails at this line
    IPortalSearchRequest searchRequest = searchFactory.CreatePortalSearchRequest();
    Any Ideas??
    Edited by spinto at 06/11/2008 7:02 AM
    Edited by spinto at 06/11/2008 11:59 AM

    You had 6.1 MP1 running on SQL 2000? If you pulled off that sql magic, this issue should be peanuts. ;-)
    Seriously, though, when we went from 6.1 to 6.1 MP1, all of our apps using the native API's IPTSearchRequest broke. Notice I said 'IPT' not just 'I' - again, I'm talking about the native api, not the remote. Though come to think of it, the remote search api calls may have broken, too. That was the whole reason we put off the MP1 upgrade - it broke the search in all our tests. I don't think it was until the patch 1 for MP1 came out that we moved forward.
    Enough of my yapping, our fix for the native api apps - those using IPTSearchRequest - was to simply recompile the apps using the MP1 assemblies. Whatever the handful of assemblies you may have referenced in your project to get the native api working, just change their ref path to the newer MP1 assemblies - or in your case the new 6.5 versions. That fixed us right up.
    Edited by tjannotta at 06/12/2008 7:36 AM

  • How can i connect to a SQL Server 2000 database usgin JSP?

    I need (URGENT) to connect to SQL Server 2000 databse using JSP. I do not know how to program using JSP, so if anyone has any code snippet please let me see it. What i need is to give my site some login/password security.
    Anyone?
    Thx.

    just create an ODBC of your database from control pannel -> administrative tools -> data sources (ODBC) ,double click it .....
    go to the tab SYstem DSN , click on ADD button. select the driver for your connection. it will be the last one in the list "SQL Server".
    click Next then give ur DSN name there, description and Server Name , on next give your username and password of SQL server. when it will be connected to the server celect your database from there and hence there will be an ODBC bridge same as in case of MS Access.
    code for connecting to ODBC is
    // DSN-NAME same as in System DSN.
    // username and password are of your databse
    try
              url = "jdbc:odbc:DSN-NAME";
              Class.forName( "sun.jdbc.odbc.JdbcOdbcDriver" );
              connect = DriverManager.getConnection( url,"username","password" );
              catch ( ClassNotFoundException cnfex ) {
                        setErrorMsg( cnfex.getMessage() );
              catch ( SQLException sqlex ) {
                        setErrorMsg( sqlex.getMessage() );
              catch ( Exception ex ) {
                        setErrorMsg( ex.getMessage() );
    Now you are connected to the SQL Server ..... use connect object for further processing .........

  • Code to connect jsp with MS SQL SERVER 2000

    i have my SQL Server in my local machine and i need to conne ct my jsp page with that instance.
    please provide a sample code to accomplish the same.
    along with that can you please send me procedure to establish a DSN for SQL SERVER 2000.
    thank you
    with love
    AnushhPrabu

    http://java.sun.com/j2ee/1.4/docs/tutorial/doc/JSTL7.html
    This is a good way of achieving what you want to do. But I should mention that the approach is suitable only for smaller applications.

  • Paging in JSP using SQL SERVER 2000

    Hi!!
    How to do paging in JSP using SQL SERVER 2000.
    In my SQL we can fire query like
    ResultSet resultado = declaracao.executeQuery("Select * from tbl_livro limit 20,5 ");
    It means that it fetches 20 onwards 5 records..
    how to do same thing in SQL SERVER 2000 please help it's pretty urgent

    here is the link for paging, what i already post reg this topic
    http://forum.java.sun.com/thread.jspa?threadID=5194183try to avoid multipost next time

  • How to save and retrieve an image in JSP/Java and MS SQL/server 2000?

    Hi All,
    I am uploading an image from the JSP page and want to store it in MS SQL server. I have made a column by the name "COMPANY_LOGO" with data type as image MS SQL/server 2000. How do I save the full image in the table and how do I display the thumb nail image on the JSP page???
    Regards,
    Raj

    BEFORE YOU POST A TOPIC HERE: Please be sure your topic is related to features or functionality of this site. This forum is not for general technology questions. Not sure which forum to use? Try searching for your topic in the "Search Forums" element on the left panel.
    Post your question in
    http://forum.java.sun.com/forum.jspa?forumID=45
    or
    http://forum.java.sun.com/forum.jspa?forumID=48
    Do not reply here

Maybe you are looking for

  • Unable to see EXCEL output for xml report--browser issues?

    hi i have created and registered an xml publisher report. i want to see the out put in Excel format.When i run the report i get junk data as output. is there any profile setting or viewer profiles that i need to change to view the output in excel. i

  • 2 months of 'my' problem is a major outage at my l...

    I would like to praise the staff at the BT call centre, for doing an excellent job under extreme presure, with little or no help from other BT technicians. for the past 2 months i have been in contact with them about 'my' connection problem. the advi

  • Streaming video locks-up computer

    Every time I try to stream video it locks the the screen and the audio sounds like a broken record ( about a second repeat). It has been doing this for some time. My wife uses this computer for mostly e-mail and surfing the web. Every time she runs a

  • Non-XML payload in graphical mapping

    Experts, I have a scenario where I need to trigger a graphical map which eventually populates an IDoc (custom) structure but the Idoc is not being populated with any of the source field. My source data is a flat file. 1. I dont want the src file cont

  • Imported Images Not Showing when printed

    We are using SAP Business One and we have created reports and print layouts with pictures using Crystal Reports designer.  After we import the reports and layouts  into Business One, the pictures show up as empty boxes. Why won't my pictures show up