Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. whitesox99

    Apache directive Configurations

    I am have multiple apache installs running it's own virtual host. I am getting Cannot open TEMP post file '/tmp/_wl_proxy/_post_17020_6' for POST of 72775 bytes So want to have each apache have it's own /tmp/_wl_proxy and for that need to probably set the directive to specify the path of...
  2. whitesox99

    Apache directive Configurations

    Hi, I have multiple Apache Http Servers running on the same HP-UX machine and am running into following issue in deploying applications to the Application server. deploy/sca_AIAErrorTaskAdministrationProcess_rev1.0.jar [deployComposite] INFO: Creating HTTPS connection to host:soaa.eprod.com...
  3. whitesox99

    Create a tree from a resultset

    Hi, I need to create a tree structure from a resultset and show them into my JSP. Here is my table sql (grup). CREATE TABLE GRUP ( ID_GRUP int(11) NOT NULL default '0', ID_GRUP_PARENT int(11) NOT NULL default '0', ORDER_BY int(11) NOT NULL default '1', DESCRP varchar(100) default NULL...
  4. whitesox99

    How to insert a BLOB

    Hi, Can someone please provide a sample on how to insert into a BLOB column. I have stored procedure with an input parameter of type BLOB now how do I insert this BLOB into a table. Thanks
  5. whitesox99

    How to pass BLOB to a PL/SQL Stored Procedure

    Hi, Can someone please provide a small sample on how to call a PL/SQL stored Procedure and pass in a parameter of type BLOB. I need to call a PL/SQL Stored Procedure and pass BLOB as a parameter. I have table that stores different types of files and the datatype of the column is BLOB so from...
  6. whitesox99

    Steps to install ALUI 6.5

    Hi, I am new to BEA can someoneplease provide steps to install AquaLogic User Interaction i.e ALUI 6.5 on windows xp. Thanks
  7. whitesox99

    How to upgrade WSS 2001 to WSS 3.0

    Hi, I have Microsoft Sharepoint Team Services 2001 installed on Windows Server 2003. I need to upgrade it to WSS 3.0. Can someone please provide some steps and info on how to upgrade Microsoft Sharepoint Team Services 2001 to WSS 3.0. After the upgrade will all the sites and content on WSS...
  8. whitesox99

    Upgrade SharePoint Team Services 2001 to Windows SharePoint Services 3

    Hi, Can someone please provide steps to Upgrade SharePoint Team Services 2001 to Windows SharePoint Services 3.0. Thanks
  9. whitesox99

    How to find out which Sharepoint Products are being used

    Hi, I am very very new to this MS Sharepoint and have a question. How do we find out what Sharepoint products are being used. Actually a client needs to upgrade there Sharepoint to the lates version but don't know what current version and product is being used today. It can be one of the...
  10. whitesox99

    Web Service deployed on Tomcat stops responding after sometime

    Hi, I haven't used Tomcat before and is the first time I am using it. I have Web Service that is deployed on Tomcat 5 installed on my local system. Web Service I am using Spring, Hibernate. The issue I am facing is after deploying a service all works fine. As soon as I leave the service idle...
  11. whitesox99

    How to re-arrange xml content

    Hi, How can I rearrange contents of xml. For example in the following sample under <details> I have several <body> tags and each body tag contains <linenume> tag that shows the sequence of <body> tags. In the following sample I have <linenume>2</linenume> then <linenume>1</linenume> then...
  12. whitesox99

    How to create a Dynamic Datatable with sorting functioanlity

    Hi, I am new to JSF and need some help can some one please tell me how to create a dynamic datatable with sorting functionality. I am reading data data from a database table and wants to build the datatable dynamically based on the columns returned. I know how to created a datatble with a fixed...
  13. whitesox99

    XSL transformation Error

    it's fixed no problem with xml
  14. whitesox99

    XSL transformation Error

    Hi, Have the following sample xml, xsl and the jave code. But getting the following error: Compiler warnings: line 18: Illegal attribute 'expr'. ERROR: 'Syntax error in ''.' FATAL ERROR: 'Could not compile stylesheet' javax.xml.transform.TransformerConfigurationException: Could not compile...
  15. whitesox99

    Help in fixing the hierarchical xml generation code with missing end t

    Hi, I have the following sample data for my tree menu in a database table. It's just a sample data and the menu hierarchy can go x-levels i.e. 10 to 15 levels deep. I am having issues with the </menu> tag if the structure goes deep. Need this code to be generic regardless of the depth of the...
  16. whitesox99

    Parse XML Sequentially

    Hi, The final output is not coming correctly as am not able to keep track of the hierarchy of menus. As <Menu> may contain multiple <Menu> tags i.e. hierarchy. So am facing problem on final output not coming up right. As in the above sample xml I need the final output like follows: File...
  17. whitesox99

    Parse XML Sequentially

    Here is the sample out I am looking for: <ul id="pcTLMgeneral" class="pcTLMenu"> <li class="TLMopen"> <a title="Design and development tools">Menu 1</a> <ul> <li class="doc"> <a href="javascript:showData('<%=urlLink%>Sub Menu 1.1');">Sub Menu 1.1</a>...
  18. whitesox99

    Parse XML Sequentially

    Hi, Need some help in parsing the following xml. I am trying build an hierarchical menu from the xml. Thr hierarchy can go to x-level deep. <?xml version="1.0" encoding="windows-1252" ?> <Menus> <Menu> <MenuID>1</MenuID> <MenuName>File</MenuName> <ParentID/>...
  19. whitesox99

    Show HashMap in JSF Datatable. UIColumn with embedded Datatable

    Hi, I am trying to display a HashMap in a datatable where the values for each key is an ArrayList e.g. ArrayList al = new ArrayList(); al.add("AA"); al.add("BB"); al.add("CC"); HashMap hm = new HashMap(); hm.put("ONE", al); ArrayList al2...
  20. whitesox99

    How to simultaneously do Insert/Update/Delete on one Table

    The problem is I am not able to do insert simultaneously on the same table. SO wondering if Paradox does allow to do simultaneous inserts on the same table. Thanks

Part and Inventory Search

Back
Top