CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: khp

Page 1 of 56 1 2 3 4

Search: Search took 0.28 seconds.

  1. Replies
    1
    Views
    1,050

    Re: XML Protocol Question

    Could you perhaps explain the purpose of this ?
  2. Replies
    1
    Views
    1,200

    Re: Xerces binaries for windows

    Yes you should be able to find it at

    http://xerces.apache.org/
  3. Replies
    9
    Views
    51,760

    Re: How to create XSLT for my XML doc?

    There is no 'the solution'

    As jkmyoung hints. There is an infinete number of possible solutions. But you have to put in at least some work to get one that is usfull to you.

    If you want to learn...
  4. Replies
    7
    Views
    3,654

    Re: insert Image into my XML

    Well I'am not an ASP kind of guy, So I can't really help you much execpt to note that the your ASP code does not support embedding images into the XML.

    I'am guessing this line ...
  5. Replies
    7
    Views
    3,654

    Re: insert Image into my XML

    It's quite impossible to give you a definete answer with what little information you have provided.

    You say you apply it into asp.net ?

    So presumably you are using a webbrowser to view the quiz...
  6. Replies
    1
    Views
    2,404

    Re: How to display data from xml file

    yes http://www.google.com/search?q=displaying+xml+with+jsp
  7. Thread: What's wrong??

    by khp
    Replies
    16
    Views
    3,014

    Re: What's wrong??

    Don't have time to check everything right now, but from a quick check I think all you need to change is



    <xsl:apply-templates select="artikel">

    to


    <xsl:apply-templates...
  8. Replies
    6
    Views
    16,263

    Re: xml to csv conversion

    One could use an XSL stylesheet.
  9. Replies
    2
    Views
    1,857

    Re: XSL increment in loop

    This is a little difficult because you can't have true variables in XSL, the xsl:variables you can declare, can only be used as constants, they cannot be updated.
    You could get around this by using...
  10. Replies
    8
    Views
    1,134

    Re: PHP, help, print text to div

    Well most PHP scripts work sequentially, printing the html code line by line in one pass so to speak, so to print something in a specific div element, you would usually add a print statement between...
  11. Replies
    4
    Views
    1,552

    Re: calling mysql stored procedure from php

    As far as I recall, when you call a stored procedure from PHP, you can't retrive a result returned directly from the call.
    So to retrive data from the database using a stored procedure your stored...
  12. Thread: Polymorphism

    by khp
    Replies
    1
    Views
    1,393

    Re: Polymorphism

    I suppose it would be nice if you would explain exactly what you understand polymorphism to be.
    If you mean the ability to call different function dependant on the runtime type of an object, not...
  13. Replies
    5
    Views
    2,847

    Re: Why doesn't my xalan react ?

    Ah sorry, I saw your message several days ago while at work, but did not have time to respond, and then forgot about it.

    However you really should be able to work on this on your own, if you...
  14. Replies
    14
    Views
    2,828

    Re: An Apache webserver problem

    I would suspect the problem is that on computer1 you are tunneling all requests from computer2 directly onto the internet connection. But I'am not really too familliar with Windows network connection...
  15. Replies
    14
    Views
    2,828

    Re: An Apache webserver problem

    What IP addresses are you using on your network cards ?.
    Preforably you should be using addresses reserved for local area networks ie. in the range 192.168.x.x
  16. Replies
    1
    Views
    945

    Re: tomcat problem- very urgent

    Well Tomcat runs Java, and Java is a bit of a memory hog. So there is not a lot you can do aside from buying more RAM :(

    I suppose you could set the java process running tomcat, to use no more...
  17. Re: PHP drives me nuts -> Call to a member function on a non-object

    You need something like the line

    require(DIR_WS_CLASSES . 'PriceFormatter.php');
    At the top of your php file to include the priceformatter class.
    If you just copy this it will most likely fail...
  18. Re: PHP drives me nuts -> Call to a member function on a non-object

    I don't have nearly enough information to give you a definite answer. But I would tend to suspect you need to add the line


    $pf = new PriceFormatter;

    before

    ...
  19. Thread: the > in UNIX

    by khp
    Replies
    6
    Views
    2,267

    Re: the > in UNIX

    There is nothing wrong with the command itself I think, at least I can't reproduce your problems when I set things up correctly. More likely it's a permissions or settings problem. How are you...
  20. Re: PHP drives me nuts -> Call to a member function on a non-object

    I would suspect it's because $pf has not been properly set. That's about as detailed an answer I can give you, given what you have posted.
  21. Thread: help in perl code

    by khp
    Replies
    3
    Views
    1,355

    Re: help in perl code

    Well first of you need to reset your d variable when you increment your c, variable, and you need to reset your c and d variable when you increment your b variable, and so on. Then you need to modify...
  22. Replies
    5
    Views
    2,847

    Re: Why doesn't my xalan react ?

    This kind of begs the question, how do you compile the XSL file ?, and what errors do you get ?


    Try running a transform from the commandline as described on...
  23. Thread: Http

    by khp
    Replies
    11
    Views
    2,846

    Re: Http

    This is true if the file is sent from the server to the client. As I stated above

    The client always have to send a request to the server, before the server can send a response to the client.

    ...
  24. Thread: Http

    by khp
    Replies
    11
    Views
    2,846

    Re: Http

    Sure if you know how to construct a http_post request in a script, this is somewhat difficult in PHP (but possible), in Perl it should be quite easy.



    Exactly what do you mean by the server had...
  25. Thread: Http

    by khp
    Replies
    11
    Views
    2,846

    Re: Http

    NO, http is a protocol, by which a http client (usually in the form of a web browser) can communicate with a http server (usually in the form of a webserver). Files may be sent in both directions....
Results 1 to 25 of 1398
Page 1 of 56 1 2 3 4





Click Here to Expand Forum to Full Width

Featured