Dbms_xslprocessor package problems in PL/SQL

Hi all :)
I was wondering if anyone has any ideas about this problem I'm having:
When using the dbms_xslprocessor in PL/SQL, I consistently get dropped connections when trying to either transform a document, or search a document via XPath. So, for instance, if I call dbms_xslprocessor.selectSingleNode('XPATH'), the connection will drop out with the following error (I'm calling a stored procedure here):
ERROR at line 1:
ORA-03113: end-of-file on communication channel
Similar problems happen on XMLType.transform(stylesheet).
I've only managed to have this happen when transforming or searching documents that are not in the default (i.e., xmlns="") namespace, but I can't get rid of the namespace (too much other code is relying on it being there).
What's even stranger is that the XSLPROCESSOR package works, but DBMS_XSLPROCESSOR package does not. Unfortunately, the XSLPROCESSOR package doesn't seem to handle namespaces well, and inserts seemingly random namespace declarations in the transformation results (for instance, on the root element, it puts in "xmlns:xmlns='http://www.w3.org/2000/xmlns/'") or redeclares namespaces on nodes that already have that namespace defined for them by their parents. Namespace prefixes, too.
Does anybody have any ideas as to what this might be?
Thanks in advance,
Constantine

I should also mention that I'm ABSOLUTELY sure that the stylesheets I'm using for transformation are correct as of XSLT ver. 1.0 -- multiple external processors (Xalan and MSXML, specifically) give the correct result on the same stylesheet.

Similar Messages

  • Dbms_xslprocessor problems in PL/SQL

    Hi all :)
    -- This is a cross-posting of a question I placed on the XMLDB forum, but there seems to be more activity here
    -- Sorry about the duplicate
    I was wondering if anyone has any ideas about this problem I'm having:
    When using the dbms_xslprocessor in PL/SQL, I consistently get dropped connections when trying to either transform a document, or search a document via XPath. So, for instance, if I call dbms_xslprocessor.selectSingleNode('XPATH'), the connection will drop out with the following error (I'm calling a stored procedure here):
    ERROR at line 1:
    ORA-03113: end-of-file on communication channel
    Similar problems happen on XMLType.transform(stylesheet).
    I've only managed to have this happen when transforming or searching documents that are not in the default (i.e., xmlns="") namespace, but I can't get rid of the namespace (too much other code is relying on it being there).
    What's even stranger is that the XSLPROCESSOR package works, but DBMS_XSLPROCESSOR package does not. Unfortunately, the XSLPROCESSOR package doesn't seem to handle namespaces well, and inserts seemingly random namespace declarations in the transformation results (for instance, on the root element, it puts in "xmlns:xmlns='http://www.w3.org/2000/xmlns/'") or redeclares namespaces on nodes that already have that namespace defined for them by their parents. Namespace prefixes, too.
    I should mention that I'm absolutely sure the stylesheet is correct. External processors like MSXML and Xalan produce correct results.
    Does anybody have any ideas as to what this might be?
    Thanks in advance,
    Constantine

    what version of the XDK are you using ?
    Version of the javaparser ?

  • Problems with PL/SQL packages

    Hello,
    I face the following problem with PL/SQL stored procedures. The Oracle
    version is 8.0.5 on Windows NT 4. The PL/SQL package has a set of procedures and functions.
    The main procedure of the PL/SQL package is triggered from VC++ executable. If for some reason,
    an exception is caught in the stored procedure (like no_data_found
    exception), then the following problem occurs.
    If we try to trigger the stored procedure again through the VC++ executable,
    the variables in the stored procedures have the values as in the previous
    execution. They are not getting initialised. (The same database connection
    is used in VC++ executable).
    Currently, only if a new connection to the database is used , the problem is
    solved.
    Also, change in the input parameters of the procedure is not reflected, once the procedure fails because of any exception. Only the input which was given during the time of execution when the procedure failed,is considered.
    What could be the reason for this problem and how can this be corrected?
    Please send in your suggestions.
    Thanks and Regards,
    Ramya Priya
    null

    Hi Keith,
    I am connecting to the database as the package owner..
    I have noticed earlier that I have problems when capturing triggers also.. The content of one large trigger contains 36371 characters and when capturing it from DB, the content was truncated to 28020 characters in Designer.
    Our ideas with capturing the DB packages/procedures were to use the Designer as version control system.
    We wanted to have all objects used in a project in Designer.. entities, tables, triggers, packages, procedures, Forms files, etc. in order to make a configuration for a project release.
    Thank you,
    Claudia

  • How to avoid performance problems in PL/SQL?

    How to avoid performance problems in PL/SQL?
    As per my knowledge, below some points to avoid performance proble in PL/SQL.
    Is there other point to avoid performance problems?
    1. Use FORALL instead of FOR, and use BULK COLLECT to avoid looping many times.
    2. EXECUTE IMMEDIATE is faster than DBMS_SQL
    3. Use NOCOPY for OUT and IN OUT if the original value need not be retained. Overhead of keeping a copy of OUT is avoided.

    Susil Kumar Nagarajan wrote:
    1. Group no of functions or procedures into a PACKAGEPutting related functions and procedures into packages is useful from a code organization standpoint. It has nothing whatsoever to do with performance.
    2. Good to use collections in place of cursors that do DML operations on large set of recordsBut using SQL is more efficient than using PL/SQL with bulk collects.
    4. Optimize SQL statements if they need to
    -> Avoid using IN, NOT IN conditions or those cause full table scans in queriesThat is not true.
    -> See to queries they use Indexes properly , sometimes Leading index column is missed out that cause performance overheadAssuming "properly" implies that it is entirely possible that a table scan is more efficient than using an index.
    5. use Oracle HINTS if query can't be further tuned and hints can considerably help youHints should be used only as a last resort. It is almost certainly the case that if you can use a hint that forces a particular plan to improve performance that there is some problem in the underlying statistics that should be fixed in order to resolve issues with many queries rather than just the one you're looking at.
    Justin

  • Help!! package problem in jsp

    hello,
    i have problem that all class is packaged in test folder. and the test folder is located inside the C:\Tomcat_5.0\webapps\BB2004\WEB-INF\class.
    the problem is two class is stored in the test. and two class include (package test);
    one class is dbConnect.java (it is used to connect database.)
    next class is user.java.
    during compile the two class, dbConnect can compile, but user.java cannot compile.
    the following is error:
    C:\xyz>javac user.java
    user.java:8: cannot resolve symbol
    symbol : class dbConnect
    location: class xyz.user
    dbConnect dbconn;
    ^
    user.java:16: cannot resolve symbol
    symbol : class dbConnect
    location: class xyz.user
    dbconn=new dbConnect();
    please help to solve that.....

    (dbConnect.java)
    package test;
    import java.sql.*;
    public class dbConnect {
    String sConnStr = "jdbc:oracle:thin:system/[email protected]:1521:goh";
    Connection conn = null ;
    ResultSet rs = null;
    public String sql;
    public dbConnect() {
    try {
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    catch (SQLException e) {
    System.err.println("dbConnect():"+e.getMessage());
    e.printStackTrace();
    public ResultSet executeQuery(String sql)
    rs = null ;
    try {
    conn= DriverManager.getConnection(sConnStr);
    Statement stmt = conn.createStatement();
    rs = stmt.executeQuery(sql);
    catch(SQLException ex)
    System.err.println("aq.executeQuery: " + ex.getMessage());
    System.err.println("aq.executeQuerystrSQL:"+sql);
    return rs ;
    public void executeUpdate(String sql)
    try {
    conn = DriverManager.getConnection(sConnStr);
    Statement stmt= conn.createStatement();
    stmt.executeQuery(sql);
    stmt.close();
    conn.close();
    catch(SQLException ex)
    System.err.println("aq.executeUpdate: " + ex.getMessage()) ;
    System.err.println("aq.executeUpdatestrSQL:"+sql);
    user.java
    package test;
    import java.io.PrintStream;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.util.Date;
    public class user
         dbConnect dbconn;
         ResultSet rs;
         String strSQL,userID,userName,userPwd,userEmail,userWebpage,userHobby,userCountry,userSex,userTypeID,webpageName;
         int postedNo,i;
         Date userBirthday, registerDate;
         public user()
              dbconn=new dbConnect();
              rs=null;
              userID="M0";
              userName=null;
              userPwd=null;
              userEmail=null;
              userWebpage=null;
              webpageName=null;
              userSex=null;
              userCountry=null;
              userBirthday=new Date();
              registerDate=new Date();
              userHobby=null;
              postedNo=0;
              userTypeID="member";
         public void changeUserTypeID(String name, String type)
              strSQL="update user set userTypeID='"+type+"' where userName='"+name+"'";
              dbconn.executeUpdate(strSQL);
         public void changeUserPwd(String name, String pwd)
              strSQL="update user set userPwd='"+pwd+"' where userName='"+name+"'";
              dbconn.executeUpdate(strSQL);
         public boolean checkUserPwd(String name, String pwd)
              rs=null;
              boolean isUser=false;
              strSQL="select * from user where userName='"+name+"' and userpwd='"+pwd+"'";
              try
                   rs=dbconn.executeQuery(strSQL);
                   if(rs.next())
                        isUser=true;
                        getUserInfo(name);
                   rs.close();
              catch(SQLException sqlexception)
                   System.err.println("aq.executeQuery:"+sqlexception.getMessage());
                   System.err.println("checkuserpwd.STRSQL:"+strSQL);
              return isUser;
         public int countUser()
              strSQL="Select count(*) as aa from user";
              i=0;
              try
                   rs=dbconn.executeQuery(strSQL);
                   if(rs.next())
                        i=rs.getInt("aa");
                   rs.close();
              catch(SQLException sqlexception)
                   System.err.println("aq.executeQuery:"+sqlexception.getMessage());
                   System.err.println("countuser.STRSQL:"+strSQL);
              return i;
         public void delUser(String name)
              strSQL="delete from user where userName='"+name+"'";
              dbconn.executeUpdate(strSQL);
         public Date getUserBirthday()
         {     return userBirthday;     }
         public Date getRegisterDate()
         {          return registerDate;     }
         public String getUserTypeID()
         {          return userTypeID;     }
         public String getUserName()
         {          return userName;     }
         public String getUserPwd()
         {          return userPwd;          }
         public String getUserSex()
         {          return userSex;     }
         public String getUserCountry()
         {          return userCountry;     }     
         public String getwebpageName()
         {          return webpageName;     }
         public String getUserWebpage()
         {          return userWebpage;     }
         public String getUserEmail()
         {          return userEmail;     }
         public int getPostedNo()
         {          return postedNo;     }          
         public String getUserHobby()
         {          return userHobby;     }
         public String getUserID()
         {          return userID;           }
         public boolean getUserInfo(String name)
              rs=null;
              boolean isUser=false;
              strSQL="select * from user where userName='"+name+"'";
              try
                   rs=dbconn.executeQuery(strSQL);
                   if(rs.next())
                        isUser=true;
                        userID=rs.getString("userID");
                        userName=rs.getString("userName");
                        userPwd=rs.getString("userPwd");
                        userSex=rs.getString("userSex");
                        userWebpage=rs.getString("userWebpage");
                        userCountry=rs.getString("userCountry");
                        userBirthday=rs.getDate("userBirthday");
                        registerDate=rs.getDate("registerDate");
                        webpageName=rs.getString("webpageName");
                        postedNo=Integer.parseInt(rs.getString("postedNo"));
                        userHobby=rs.getString("userHobby");
                        userEmail=rs.getString("userEmail");
                        userTypeID=rs.getString("userTypeID");
                   rs.close();
              catch(SQLException sqlexception)
                   System.err.println("aq.executeQuery:"+sqlexception.getMessage());
                   System.err.println("aq.STRSQL:"+strSQL);
              return isUser;
         public ResultSet listUser(int choice)
              rs=null;
              switch(choice)
              case 1:
                   strSQL="select * from user order by userID desc";
                   break;
              case 2:
                   strSQL="select * from user order by userName desc";
                   break;
              case 3:
                   strSQL="select * from user order by userTypeID desc";
                   break;
              default:
                   strSQL="select * from user order by userID desc";
                   break;
              rs=dbconn.executeQuery(strSQL);
              return rs;
         public void registryNewUser()
         {/add new member to the tableTo_Date('"+updateValue[i]+"','"+ addDate[i]+"')"
              strSQL="insert into user(userID, userName,userPwd, userSex, userWebpage, webpageName, userEmail, userCountry, userHobby, postedNo, userTypeID, userBirthday, registerDate) values('M"+String.valueOf((countUser()+1))+"','"+userName+"','"+userPwd+"','"+userSex+"','"+userWebpage+"','"+webpageName+"','"+userEmail+"','"+userCountry+"','"+userHobby+"','0','"+userTypeID+"',To_Date('"+userBirthday+"','YYYYMMDD'), To_Date('"+registerDate+"','YYYYMMDDhh24mi'))";
              dbconn.executeUpdate(strSQL);
         public void setUserID(String userId)
         {     userID=userId;     }
         public void setUserName(String name)
         {     userName=name;     }
         public void setUserPwd(String pwd)
         {     userPwd=pwd;     }
         public void setUserEmail(String eMail)
         {     userEmail=eMail;     }
         public void setWebpageName(String webpagename)
         {     webpageName=webpagename;     }
         public void setUserWebpage(String userwebpage)
         {     userWebpage=userwebpage;     }
         public void setUserSex(String usersex)
         {     userSex=usersex;     }
         public void setUserCountry(String usercountry)
         {     userCountry=usercountry;     }
         public void setUserHobby(String hobby)
         {     userHobby=hobby;     }
         public void setPostedNo(int postedno)
         {     postedNo=postedno;     }
         public void setUserBirthday(Date birth)
         {     userBirthday=birth;     }
         public void setRegisterDate(Date register)
         {     registerDate=register;     }
         public void setUserTypeID(String usertypeid)
         {     userTypeID=usertypeid;     }
         public void updateUserInfo(String userid)
         {//update user info to the table when something member info change
              strSQL="update user set userEmail='"+userEmail+"',userPwd='"+userPwd+"',userName='"+userName+"',userHobby='"+userHobby+"',userWebpage='"+userWebpage+"',userSex='"+userSex+"',webpageName='"+webpageName+"',userCountry='"+userCountry+"',userBirthday=To_Date('"+userBirthday+"','YYYYMMDD'),registerDate=To_Date('"+registerDate+"','YYYYMMDDhh24mi') where userName='"+userid+"'";
              dbconn.executeUpdate(strSQL);
    thank you to solve.

  • Problem in starting SQL*PLUS in oracle database 10g

    Hi
    Well I am facing one problem while starting SQL*PLUS in oracle database 10g
    ERROR - "Procedure entry point longjmp could not be located in dynamic link library orauts.dll"
    This has happened when I installed Oracle Database 11g on same machine and when I deinstalled Oracle 11g then SQL*PLUS is started...no error came
    Can anybody tell me the reason please...

    hi
    pls im having the same problem but in my own case i installed oracle apex using 11g.
    im env variable is:
    C:\Oracle\product\10.1.0\Client_1\bin;C:\Oracle\product\10.1.0\Client_1\jre\1.4.2\bin\client;C:\Oracle\product\10.1.0\Client_1\jre\1.4.2\bin;C:\app\Xty\product\11.2.0\dbhome_1\bin;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PrivateAssemblies\
    pls which is my apex_home so i can interchange it?
    i also have oracle 10g client installed

  • How to open a package body in Oracle sql developer

    How to open a package body in Oracle sql developer..any shortcut for that

    I need another way to get to my package body. I'm on a locked down system, so the only way I can reference anything is if I already know the name of it. I accidentally overwrote my text document that I was using to work on it and I closed out of the package body in sqldeveloper. There must be a command, like an alter or some such. Anyone know the old fashioned way of looking at a package?

  • TS3074 im can u please help me out this issue im trying to install iTunes  in windows 7 some error showing " windows installer package problem DLL require to complete this installation" this message showing.

    im can u please help me out this issue im trying to install iTunes  in windows 7 some error showing " windows installer package problem DLL require to complete this installation" this message showing.

    Try the following user tip:
    " ... A DLL required for this installation to complete could not be run ..." error messages when installing iTunes for Windows

  • Accessing package CONSTANT in a SQL query

    Hi,
    Can anybody explain why I cannot access the package constant in a SQL but can use it in dbms_output.put_line:
    SQL> create package scott.xx_test_const_pkg
    2 as
    3 a constant varchar2(1) :='A';
    4 end;
    5 /
    Package created.
    SQL> begin
    2 dbms_output.put_line( scott.xx_test_const_pkg.a);
    3 end;
    4 /
    A <------------------THIS WORKS
    PL/SQL procedure successfully completed.
    SQL> select * from scott.emp where ename=scott.xx_test_const_pkg.a;
    select * from scott.emp where ename=scott.xx_test_const_pkg.a <------------------THIS DOES NOT WORK
    ERROR at line 1:
    ORA-06553: PLS-221: 'A' is not a procedure or is undefined
    Thanks

    You can't refer to a pl/sql package constant in a sql statement.
    Create a function that returns the constant value and then refer to the function in a sql statement.

  • Create or Replace Package syntax different in SQL Navigator?

    Hi,
    I compared the same piece of code in both toad and sql navigator.
    In toad, the syntax for Package was as follows:
    CREATE OR REPLACE package body name_of_package
    but in SQL Navigator, the same code is displayed as follows:
    package body name_of_package
    does SQL navigator hide the "Create or replace" keywords? or does it automatically know that they belong there?

    Is Sql navigator an Oracle product? IIRC Larry spent already all his pocket money on buying Sun.
    Kindly do not clutter up this forum with questions on products not developed by Oracle.
    Sybrand Bakker
    Senior Oracle DBA

  • Run Multiple SSIS Packages in parallel using SQL job

    Hi ,
    We have a File Watcher process to determine the load of some files in a particular location. If files are arrived then another package has to be kick-started.
    There are around 10 such File Watcher Processes to look for 10 different categories of files. All 10 File Watcher have to be started at the same time.
    Now these can be automated by creating 10 different SQL jobs which is a safer option. But if a different category file arrives then another job has to be created. Somehow I feel this is not the right approach.
    Another option is to create one more package and execute all the 10 file watcher packages as 10 different execute packages in parallel.
    But incase if they don’t execute in parallel, i.e., if any of the package waits for some resources, then it does not satisfy our functional requirement . I have to be 100% sure that all 10 are getting executed in parallel.
    NOTE: There are 8 logical processors in this server.
    (SELECT cpu_count FROM sys.dm_os_sys_info
    i.e., 10 tasks can run in parallel, but somehow I got a doubt that only 2 are running exactly in parallel and other tasks are waiting. So I just don’t want to try this  option.
    Can someone please help me in giving the better way to automate these 10 file watcher process in a single job.
    Thanks in advance,
    Raksha
    Raksha

    Hi Jim,
    For Each File Type there are separate packages which needs to be run.
    For example package-A, processes FileType-A and package-B processes FileType-B. All these are independent processes which run in parrallel as of now. 
    The current requirement is to have File Watcher process for each of these packages. So now FileWatcher-A polls for FileType-A and if any of the filetype-A is found it will kick start package-A. In the same way there is FileWatcher-B, which looks for FileType-B
    and starts Package-B when any of FileType-B is found. There are 10 such File Watcher processes.
    These File Watcher Processes are independent and needs to start daily at 7 AM and run for 3 hrs. 
    Please let me know if is possible to run multiple packages in parallel using SQL job.
    NOTE: Some how I find it as a risk, to run these packages in parallel using execute package task and call that master package in job. I feel only 2 packages are running in parallel and other packages are waiting for resources.
    Thanks,
    Raksha
    Raksha

  • How to debug a Package / function in PL SQL developer ??

    How can we debug a Package / function in PL SQL developer ??
    i want to debug a code line by line

    Karthick_Arp wrote:
    This question does not belong to this fourm. We have a {forum:id=260} forum for such question.Not even there Karthick. PL/SQL Developer is a 3rd party tool, not Oracle's SQL Developer, so it doesn't even belong on the Oracle forums.

  • How to resolve AVCHD package problem in mountain lion

    how to resolve AVCHD package problem in mountain lion

    Thanks, David. I know this workaround. And one more with creating right-click Service. That's why I've used "uncomfortable" instead of "impossible". In my opinion, Apple should leave ability to choose OS's behavior, and I hoped somebody knew where to find it .

  • Is there any known problem using Oracle SQL Developer 3.0.04 with Java 1.7?

    I'm new to Oracle. I have installed Oracle SQL Developer 3.0.04 and Java 1.7. When I run Oracle SQL Developer, I will get the window Running this product is supported with minimum Java version of 1.6.0_04 and a maximum version less than 1.7. This product will not be supported....
    Is there any known problem using Oracle SQL Developer 3.0.04 with Java 1.7?
    I have already downloaded Java 1.6 but don't know whether I need to uninstall Java 1.7 first. If don't need to uninstall Java 1.7, how can I set Oracle SQL Developer to run with Java 1.6?
    Thanks for any help.
    Edited by: 881656 on Aug 25, 2011 11:22 AM

    Hi,
    One prior post discussing the use of Java 7 is:
    SQL Developer 3.0  and Java SE 7?
    There is no need to uninstall any Java version (except if you have disk space constraints) and no problem switching between Java versions. This may be controlled in the sqldeveloper.conf file in your ...\sqldeveloper\sqldeveloper\bin directory via the SetJavaHome line. For example:
    #SetJavaHome ../../jdk
    SetJavaHome C:/Program Files/Java/jdk1.6.0_26
    #SetJavaHome C:/Program Files/Java/jdk1.7.0Regards,
    Gary Graham
    SQL Developer Team

  • Executing procedure in package problem

    Hi, i have a procedure called Newcar. i have now created a package and put the Newcar procedure inside the package body. but when i want to invoke it (to put data) by running execute packageTest.Newcar('Ferrari', 007) i get ORA-00900: invallid sql statement. what is wrong? the package spec and body gets created ok:
    CREATE OR REPLACE PACKAGE packageTest IS
    PROCEDURE Newcar(vname IN VARCHAR2, vreg IN NUMBER);
    END packageTest;
    CREATE OR REPLACE PACKAGE BODY packageTest IS
    PROCEDURE Newcar
    (vname IN VARCHAR2, vreg IN NUMBER)
    IS
    l_vreg NUMBER;
    BEGIN
    l_vreg := vreg;
    IF vreg > 999 THEN
    l_vreg := 999;
    END IF;
    INSERT INTO CARS (carname, carreg)
    VALUES
    (vname, l_vreg);
    END Newcar;
    END packageTest;
    /

    Worked for me. Are there other details that might be relevant? The table definition perhaps? Triggers? Can you post similar output from your SQL*Plus session?
    SQL> CREATE OR REPLACE PACKAGE packageTest IS
      2  PROCEDURE Newcar(vname IN VARCHAR2, vreg IN NUMBER);
      3  END packageTest;
      4  /
    Package created.
    SQL> CREATE OR REPLACE PACKAGE BODY packageTest IS
      2  PROCEDURE Newcar
      3  (vname IN VARCHAR2, vreg IN NUMBER)
      4  IS
      5  l_vreg NUMBER;
      6  BEGIN
      7  l_vreg := vreg;
      8  IF vreg > 999 THEN
      9  l_vreg := 999;
    10  END IF;
    11
    12  INSERT INTO CARS (carname, carreg)
    13  VALUES
    14  (vname, l_vreg);
    15  END Newcar;
    16  END packageTest;
    17  /
    Package body created.
    SQL> execute packageTest.Newcar('Ferrari', 007)
    PL/SQL procedure successfully completed.
    SQL> select * from cars;
    CARNAME                                                CARREG
    Ferrari                                                     7
    SQL>

Maybe you are looking for

  • LaserJet Pro 200 color MFP M276nw scan to computer file

    when we attempt to scan  we have three options on the printer 1. Scan to usb drive 2. Scan to Network folder 3. Scan to e-mail the only way we can scan is to choose #1. If we want to  attach a scan to an e mail or place it in a file the only way that

  • My iphone recently got dropped into water what do i have to do to get a new phone?

    I was running out to my car after work today, when my iPhone fell out of my pocket and landed in a puddle. I need to know what I have to do to get a new phone. I looked up my serial number to see if I am still under warranty, and i bought the Protect

  • Best way to install a photosmart 5180 on new 8.1

    What's the best way to install a Photosmart 5180 on a new 8.1 pc? I have the disc, but I don't think it'll work. Should I download the software and hook it up via USB cable or wireless. The pc is wireless, and I tried to find the printer on the netwo

  • Can you connect an Ipod (6th gen) to an Ipad2 an watch movies?

    I have a 64GB Ipad2 however thats really not that much storage if you want to have a nice selection of movies on hand. My 120GB ipod has quite a few on there so I wondered if there was a way to hook the 2 together and watch the content of the ipod on

  • Axis - NEWBIE question - arrays

    I have a basic question with arrays and Axis. Let's say I have the following interface: public ComplexObject[] testArrayMethod( ComplexObject[] arrayCO, String myString); If I use the Axis 1.3 Java2WSDL I get something that contains: <element name="t