Jump to content

L8V2L

Members
  • Posts

    788
  • Joined

  • Last visited

Posts posted by L8V2L

  1. I have a process thinking. That is causing debugger to not connect. The message is: Failed ru open socket on port 15454, waiting 1000 ms before retrying.A wizard solve it for me. But if anyone would still like to comment, please do so.

  2. A daemon is a process, or program that runs in the background, like web socket or Ajax calls--correct me if I'm wrong there--. And a proxy is a Server... Or better yet a middle server--man-- that act as a... Massager to and from the client/server.

  3. Seem you don't have schema ref element should start similar to <?xml version="1.0" encoding="utf-8"?><xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> <xsd:element name="product">.... rest which binds this ref xmlns:xsdto these<xsd:element name="product">

    Can't believe I missed that!!!You should IMO start over with one element and test against that...
  4. Notepad++ for almost every language.mIRC program for mIRC.Microsoft Visual C++ for c++.Apache, PHP & MySQL installed individually, starts when my computer turns on, I didn't compile them though.phpmyadmin for database gui.FileZilla for FTP client.google chrome / opera for browser tools. My server-side language for the web is PHP. Although I don't know any others, but PHP is enough for me.

    I have notepad++ too. C++ can be use as a server side language.
  5. linking to xsd from xml, link can be url address or link to file on computer by adding to product root element

    xsd:noNamespaceSchemaLocation="file location on computer"
    Note: I cant add file link example directly as example as it is removed where 'YourProfileName' is your specific profile name where your documents are stored
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?><product xsd:noNamespaceSchemaLocation="file location on computer or url" xmlns:xsd="http://www.w3.org/2001/XMLSchema-instance">    <asin>B003Y3E55G</asin>    <brand>Hydrofarm</brand>    <title>Hydrofarm CK64081 7-Inch Vented Dome</title>    <category>Patio, Lawn &amp; Garden</category>    <description>Hydrofarm ck64081 7-inch vented humidity dome</description>    <wordcount>6</wordcount>    <rating>3.7</rating>    <review>87</review>    <listprice>0</listprice>    <price>12.88</price>    <discount>0%</discount>    <shipping>0</shipping>    <totalprice>0</totalprice>    <parentasin>B003Y3E55G</parentasin>    <available>True</available>    <fulfilled>False</fulfilled>    <thumbnail>http://ecx.images-am...VIL._AA160_.jpg</thumbnail>    <url>http://www.amazon.co...#38;amp;sr=1-24</url>    <imageurl>http://ecx.images-am...VIL._SS500_.jpg</imageurl>
    With this you just open it like any other document, and .xsd file is found instantly without the need to map to it. http://www.herongyang.com/XML-Schema/XMLPad-Assign-XML-Schema-to-XML-Document.html
    You took my like!!!!
  6. I have changed all the tags I created to lower case and I took out the 2nd Description tag.  I'm still getting these error messages: XMLspy:Character 'p' following the text '<' does not fulfill production 'Misc'. Excel:Only one top level element is allowed in an xml document XMLValidationThe markup in the document following the root element must be well-formed. http://www.freeformatter.com/xml-validator-xsd.htmlThe Markup In The Document Following The Root Element Must Be Well-formed. The latest version is below: <?xml version="1.0"?><xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"><xsd:include schemaLocation="amzn-base.xsd"/><xsd:element name="product"><xsd:complexType><xsd:sequence>  <xsd:element name="asin" type="xsd:string"/>    <xsd:element name="brand" type="xsd:string"/>    <xsd:element name="title" type="xsd:string"/>    <xsd:element name="category" type="xsd:string"/>  <xsd:element name="description" type="xsd:string"/>  <xsd:element name="wordcount" type="xsd:string"/>  <xsd:element name="rating" type="xsd:string"/>  <xsd:element name="review" type="xsd:string"/>  <xsd:element name="listprice" type="xsd:string"/>  <xsd:element name="price" type="xsd:string"/>  <xsd:element name="discount" type="xsd:string"/>  <xsd:element name="shipping" type="xsd:string"/>  <xsd:element name="totalprice" type="xsd:string"/>  <xsd:element name="parentasin" type="xsd:string"/>  <xsd:element name="available" type="xsd:string"/>  <xsd:element name="fulfilled" type="xsd:string"/>  <xsd:element name="thumbnail" type="xsd:string"/>  <xsd:element name="url" type="xsd:string"/>  <xsd:element name="imageurl" type="xsd:string"/>  <xsd:element name="salesrank" type="xsd:string"/></xsd:sequence></xsd:complexType></xsd:element></xsd:schema>

    You still have this p in capital. Change it.

    <Product>  <asin>B003Y3E55G</asin>  <brand>Hydrofarm</brand>  <title>Hydrofarm CK64081 7-Inch Vented Dome</title>  <category>Patio, Lawn &amp; Garden</Category>  <description>Hydrofarm ck64081 7-inch vented humidity dome</description>  <wordcount>6</wordcount>  <rating>3.7</rating>  <review>87</review>  <listprice>0</listprice>  <price>12.88</price>  <discount>0%</discount>  <shipping>0</shipping>  <totalprice>0</totalprice>  <parentasin>B003Y3E55G</parentasin>  <available>True</available>  <fulfilled>False</fulfilled>  <thumbnail>http://ecx.images-am...VIL._AA160_.jpg</thumbnail>  <url>http://www.amazon.co...#38;amp;sr=1-24</URL>  <imageurl>http://ecx.images-am...VIL._SS500_.jpg</imageurl>  <salesrank>2917</salesrank></product> 

    The two product root element tags does not match. Lower case. <product></product>
  7. There are a couple of jsss program out there. I'm going that route. I want to master ECMAScript language. Since there's ES-Server Side support out there, I rather go that route. Working closely with the kernel seem to be one of the... Ability but not a need to do so. But still, I would like to know all I can of what I'm using.My plan in the beginning was to learn; js, php, html, css. But ones I star becoming knowledgeable of the language and other language I change it.I'll probable go with Joynet for a server provider. I see that you are very knowledgable in the world of programming. I aim to be just that, knowledgeable.... A knowledgable wizard. A while back I gain the ability to see the code in mid air.... But just faintly.... Need to keep studying.Right now I'm just working on ES, XHTML, CSS, APIs. --the reason why I refer to the language as the spec name is cause that what it is, js is the language as it is defined in the browser. Since the language can be imported to other environment, I go by the spec name.-- What about database? Relational? Tubular? Object Oriented? ...need to do more studying... Wish I could read to books at the same time.... --if I had that head key from Locke & Key--

  8. You do realise you have two descriptions elements, and the last one throws it out of sequence to read salesrank

    <?xml version="1.0"?><product>    <asin>B003Y3E55G</asin>    <brand>Hydrofarm</brand>    <title>Hydrofarm CK64081 7-Inch Vented Dome</title>    <category>Patio, Lawn &amp; Garden</category><description>Hydrofarm ck64081 7-inch vented humidity dome</description>   <wordcount>6</wordcount>    <rating>3.7</rating>    <review>87</review>    <listprice>0</listprice>    <price>12.88</price>    <discount>0%</discount>    <shipping>0</shipping>    <totalprice>0</totalprice>    <parentasin>B003Y3E55G</parentasin>    <available>True</available>    <fulfilled>False</fulfilled>    <thumbnail>http://ecx.images-am...VIL._AA160_.jpg</thumbnail>    <url>http://www.amazon.co...#38;amp;sr=1-24</url>    <imageurl>http://ecx.images-am...VIL._SS500_.jpg</imageurl>
    and this
    <?xml version="1.0"?><xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
    validates at http://www.freeformatter.com/xml-validator-xsd.html , change description to correct one.
    AWWWW!!!! You're taking my likes!!!!
  9. I took out these two lines:<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"><xsd:include schemaLocation="amzn-base.xsd"/>and</xsd:schema> Now XMLValidation.com says:The prefix "xsd" for element "xsd:element" is not bound. XMLSpy still says:Character 'P' following the text '<' does not fulfill production 'Misc'. And when I try to open it in Excel I get:Strict Parse Error

    Do me a favor. Change all capitals letters to lower case, and re-paste both of them files here.Cause it tell you that you have a capital P, which doesn't match up to the schema rule or you have a mismatch tag. So I would like to see the correction you made.Like I said, these things can be as simple as a typo. That's the world of programming.
×
×
  • Create New...