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 strongm 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: *

  • Users: munnanext
  • Order by date
  1. munnanext

    looping inside child nodes instead of xsl:for-each

    Hi Everyone, I am generating a pdf document from the xml. The xml is dynamically generated and i am using this xml tree to generate pdf documents using xslt and xpath. Here is my xml document. <Details> <Date>Today's Date</Date> <YearlyAmount> <DATES> <DATE ID="03-JUN"...
  2. munnanext

    Date Function to get System Date using XSLT

    Hi Everyone, I have an xml file. and i need to generate the html page out of it. I am using XSLT to achieve this. But When ever the page is rendered the user should get the current date. Can any one please explain how Can i achieve this using XSLT. Thanks in Advance
  3. munnanext

    need to refresh a lot to see the generated pdf document

    Hi Everyone, I am generating a pdf document from xml using XSL-FO. When i execute my code, i am able to get the output, but i need to click on the refresh button many times. I don't understand why this is happening. Can any one Pl explain me what might be the problem Thanks in Advance.
  4. munnanext

    Question reg XSL-FO

    Hi Everyone, I am new to XML, XSLT and XSL-FO and i am learning it. I need to generate a pdf document for an xml. I have written xsl file for my xml document, and i have used<fo:table> tags in my xsl file. When i am executing the code through java, i am able to generate the pdf document...
  5. munnanext

    Converting xml file to String

    Hi Everyone, I have an xml file in the file system. From Java code, if i want to print this xml file to get the contents of it in the console, How can i achieve this. Can any one pl explain how can i get the String output of xml file Thanks in Advance
  6. munnanext

    using xsl:for-each tag in xsl file

    Hi Everyone, Is there any other way that i can get the output as name age gender children ---------------------------- Suresh 30 Male Sruthi Sraavya Sravanthi Nitin 38 Male shanthi sheetal vidya...
  7. munnanext

    using xsl:for-each tag in xsl file

    Thank you CubeE101 for your reply. I modified my code as you said, but it does not solve my problem either. All the children names are coming in the same line. Thanks
  8. munnanext

    using xsl:for-each tag in xsl file

    Jon thanks for your reply. I tried to execute the way you have written. What is happening is the children names are coming in the next row completely.But I don't want the children's name to be coming in the next row. what i wanted to have is to display children's name in the same row as you...
  9. munnanext

    using xsl:for-each tag in xsl file

    Hi Everyone, I am new to XML and XSLT and I am learing them. If for a particular column we have sub rows then how can we get to show them in an html page For example, consider these four columns.. name age gender children in my xml i have tags as <Family> <name>Suresh</name> <age>30</age>...
  10. munnanext

    Wireless Network Soloution Questions

    Hi, I have some Home Wireless Network problem. I have Wireless Router and Adapter. I have Windows XP Home on my home computer. The Problem I am having is my Adapter is catching another Wireless Signal also (For some body else signal. This is non Secured and not WEB Enabled) and switching every...
  11. munnanext

    JAVA Source file name and Public Modifier

    I read that Java Source Fiel can have any number of classes and the Surce File name shoul be having a match to at least one Publci Class in the Source. For Eg: my Java Source file name is Example.java. here is the source class Example{} class SomeotherClass{} When I compile this it is not...
  12. munnanext

    public in main method

    Hi i am writing a mock exam, and the output they are saying is not the same when i am compiling the program. The program is as follows: class XTC { static void main ( String [ ] args ) { // ---line 1 int x = true ? 10 : 20 ; // ---> line 2 System . out . println ( x ) ; // ---line 3 }...
  13. munnanext

    While

    I have a question when I have a program like below claa MyHelloWorld{ public static void main(String args[]){ While(false){ System.out.println("This is in False statement);} } } When I execute the above Program it is giving the Compilation Error Unreachable statement. but when I slightly...
  14. munnanext

    &quot;this&quot; and with out &quot;this&quot; Keyword

    I understnad this thanks.
  15. munnanext

    &quot;this&quot; and with out &quot;this&quot; Keyword

    package p2; public class Test1 { boolean temp; int i; /** Creates a new instance of Test1 */ public Test1(int i) { System.out.println(i); this.i = i; } public static void main(String args[]){ Test1 objTest1 = new Test1(5)...
  16. munnanext

    JAVA Certification

    Can anybody tell me whether The Certification Exam Sun Certified Programmer for JAVA2 Platform 1.4 (310-035) having AWT and Events for the Exam ? Thanks
  17. munnanext

    Bitwise LeftShift and RightShift

    I am learning Bitwise Shift operators, and my question is (Pl see below commented lines in the Program) Thanks public class Bitwise { int i =1; int j = 1; public static void main(String args[]) { Bitwise obj = new Bitwise(); Bitwise obj1 = new Bitwise()...
  18. munnanext

    ArrayList

    My Question is that I am not able to access like below at Line20. System.out.println(myObjectArray.i); In the above statement i is having Default access. So according to my inderstanding I should be able to access from main method.
  19. munnanext

    ArrayList

    I am learning ArrayList. The following program is very well Working. But my question is that in Line20 below why can't I access the variable i ? like below System.out.println(myObjectArray.i); Since i is having Default access and which we suppose to be able to access in the Objects. Thanks for...
  20. munnanext

    EvenLog Reading from VB

    Hi, I need to read EventLog from my VB application. Any help ? Thanks

Part and Inventory Search

Back
Top