Search Result

Collapse
163 results in 0.0024 seconds.
Keywords
Members
Tags
xml
  •  

  • driftingprogram
    started a topic Default length of the String data type
    in XML

    Default length of the String data type

    Hi,

    http://www.w3.org/2001/XMLSchema schema defines String data type, and provides the option of specifying its max length min length and length.

    If i do not specify any value for these properties of the String data type what will be the default maximum length of the String data type.

    Is this default platform specific, if so is there any way to know it's value in java.

    Thanks in advance,...
    See more | Go to post

  • sachtech
    started a topic Filtering the XML Nodes bound with dropdownlist
    in XML

    Filtering the XML Nodes bound with dropdownlist

    Hello Friends, I have two DropDownList: 1) CollegeDDL which contains Four static names of the colleges. : Homeopathic Medical College,Physiot herapy College,Institu te of Ayurveda,Instit ute of Business Administration


    2) CourseDDL which is bind to CourseDetail.XM L.
    Code:
                
            <Institutes>  
            <Institute>
            <InstituteName>  Homoeopathic Medical College  </InstituteName>
    ...
    See more | Go to post

  • James Josh
    started a topic xml parsing and show in browser
    in Java

    xml parsing and show in browser

    Hi

    I want some idea or information.I have to parse xml files through java sockets and display the content of xml file in the browser/UI in real time.

    I can parse the xml file using Jaxb but i dont know how to display it in browser in real time.should i use Xslt to display them in browser.

    Can someone tell me the whole procedure/logic to do this? your help is much appreciated.
    See more | Go to post

  • bogusbonafide
    started a topic XML generation using TinyXML
    in XML

    XML generation using TinyXML

    I have written the following classes to generate an XML which is as below:

    Code:
    <JBEToOverseerRequest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:///c:/Share/resquest.xsd">
        <ConfigParams>        
               <Param Name="OverseerConfJBEPortNum">1025</Param>
               <Param Name="OverseerConfHctHostname">10.31.225.163</Param>
    ...
    See more | Go to post
    Last edited by Dormilich; Apr 24 '12, 02:38 PM. Reason: Please use [CODE] [/CODE] tags when posting code.

  • raekhan
    started a topic Twitter xml value not loading into FOR loop (AS2)

    Twitter xml value not loading into FOR loop (AS2)

    This is my first post on your site, so let me begin by thanking all you geniuses who so thoughtfully and effectively answer frequently asked questions that until now I have been able to find solutions to my Actionscript quarries without having needed to ask a question myself. Kudos! The problem I’m having is quite specific to my context but I will try to make it as general as I can to make it relevant to other users scenarios as well. Right of...
    See more | Go to post

  • AngelBladeVII
    started a topic Problem with parsing XML file
    in Perl

    Problem with parsing XML file

    So I'm working on a program where I need to parse multiple XML files and return their attributes in a readable format. Currently the script parses all of the files and stores all the details for each file at each position of an array. An example of the desired output for each line would be:

    J MIG-49 at location "85,20,0.1" is moving to "0.5,-0.5,-300"

    Below is the XML code for reference.

    ...
    See more | Go to post

  • Joukoik
    started a topic XML Schema validation problem
    in XML

    XML Schema validation problem

    Hey, I have a little problem in my XML Schema that ive been thinking for some time but as a beginner I think it would be better that I ask opinions from experts.

    So I have this simple xsd file
    Code:
    <?xml version="1.0"  encoding="utf-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    
    <xs:complexType name="Henkilokunta">
    <xs:sequence>
    ...
    See more | Go to post
    Last edited by Joukoik; Mar 23 '12, 03:25 PM. Reason: I worked it a little bit after posting the original and now I have a new problem

  • emilyQ
    started a topic xsd problem
    in XML

    xsd problem

    I am new in learning XML. I have to create a XSD for my XML file.
    Below is my XSD file. But I got an error like this:
    s4s-elt-must-match.1: The content of 'Album' must match (annotation?, (simpleType | complexType)?, (unique | key | keyref)*)). A problem was found starting at: element. music.xsd

    I cannot figured it out. Could anyone help me? Thanks a lot!

    my xml file
    Code:
    <?xml version="1.0"
    ...
    See more | Go to post

  • kapik
    started a topic Changing values in XML with non standard structure

    Changing values in XML with non standard structure

    Hi guys!
    I am currently writing a small project and I have to deal with xml file. The file has got following structure:

    Code:
    <project>
        <configurations>
          <configuration description>
           <graph>
            <filter id ="xx" alias="Twin">
             <settings>
    
               <property value="C:\temp" name="Temp
    ...
    See more | Go to post

  • rytlaw
    started a topic ASMX web service function reads incomplete XML
    in XML

    ASMX web service function reads incomplete XML

    I wrote a simple web service function using ASMX:

    Code:
    	Public Function processMessage(ByVal Messages as XMLElement) As String	 	
            Dim strS as string
            strS = Messages.outerXML
            Return strS
        End Function
    This should is used to handle SOAP request like the following:
    Code:
    <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope"
    ...
    See more | Go to post

  • narinas
    started a topic how to display records from multiple tables
    in PHP

    how to display records from multiple tables

    Hello
    im having 2 tables
    1.tbla_can_type s(containing type_id,type_na me,fac_id)
    2.tbla_canteen_ rates(containin g fac_id,cat_id,t ype_id,from_tim e,to_time...)
    this table is empty.

    in the load page i display records using existing database

    now i want only typenames row to be displayed and rest of the rows should be empty.

    i have left join method but its not working when im inserting...
    See more | Go to post

  • PHP/forms: refreshing page with new results after submit

    I am using PHP to edit the contents of an XML file based on user input in a form..the contents of the XML file are dynamically displayed on the page using XMLHttpRequest

    In my PHP I use "header('Locati on:abc.html');" to reload the page after the form is submitted and PHP script runs

    The problem I am running into is that the first time I load the page in a session (and ONLY the first time), the data displayed...
    See more | Go to post

  • using a variable to get the node number in simpleXML

    how does one refer to a node in XML when the node number is a variable?

    name[0] will return the value of first node with the name "name"

    how would I refer to the value of n-th node?

    or is it not possible to make a variable reference to a node in xml in php?

    thanks much
    See more | Go to post

  • akristof
    started a topic trouble with php/xml edit via form
    in PHP

    trouble with php/xml edit via form

    Hello
    I am trying to use php to add nodes to an xml file based on user input
    The problem is that the xml ends up having data inserted into it in addition to the data I asked the php to insert

    Here are the codes:

    for SAMPLE.XML
    Code:
    <?xml version="1.0"?>
    <list>
        <activity><name>swimming</name><votes>2</votes></activity>
    ...
    See more | Go to post

  • BALLS
    started a topic RE: Visual Studio NOOB question - XML -

    RE: Visual Studio NOOB question - XML -

    RE: Visual Studio NOOB question - XML -

    I need to find/extract XML output from a VS 2010 "web project". I've inherited the project from somebody who vacated it without notice. I DO NOT KNOW WHAT I'M DOING IN VS... but have been told by my boss that I must figure it out. My understanding is that when a VS "project" is "Run" it will generate XML output. I'M A TOTAL NOOB. How do I "open" and "run"...
    See more | Go to post
Working...