0
votes
1answer
43 views
How to avoid username clashing with a large number of users in django?
I have an application that will handle a big number of users. The users are divided into 2 types: public and private. Furthermore the private users are comprised of two different companies (maybe …
0
votes
2answers
21 views
Adding multiple namespace declarations in XmlWriter
I am trying to write out the following element using XmlWriter
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" …
0
votes
8answers
283 views
C++ error C2065: ‘cout’ : undeclared identifier
!!!!solved!!! - VS2010 has a bug, works fine with eclipse Galileo
I am working on the 'driver' part of my programing assignment and i keep getting this absurd error - error C2065: 'cout' : …
2
votes
2answers
208 views
Alter namespace prefixing with ElementTree in Python
By default, when you call ElementTree.parse(someXMLfile) the Python ElementTree library prefixes every parsed node with it's namespace URI in Clark's Notation:
…
1
vote
6answers
78 views
How can I group functions in an ASP.NET class?
I currently have a VB.NET class named "Customers" and it's been steadily growing in size and I now have a couple dozen functions in it. Is there a way of maintaining the functions in the same class? …
3
votes
3answers
879 views
jQuery XML parsing with namespaces
I'm new to jQuery and would like to parse an xml document.
I'm able to parse regular XML with the default namespaces but with xml such as:
<xml xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882" …
1
vote
2answers
116 views
The difference between namespaces in Visual Basic.NET vs in C# and how to deal with them
In C#, if you do this, it will compile:
namespace Name
{
public class Test
{
}
public class TestUse
{
private global::Name.Test test;
}
}
If you try the same in …
3
votes
2answers
2k views
Creating an XML document using namespaces in Java
I am looking for example Java code that can construct an XML document that uses namespaces. I cannot seem to find anything using my normal favourite tool so was hoping someone may be able to help me …
0
votes
2answers
32 views
RESTFUL WCF Remove all xmlns
I set my DataContracts namespace to "" which removed one namespace but I have to remove the other:
xmlns:i="http://www.w3.org/2001/XMLSchema-instance"
If theres no other way, how can I serialize …
1
vote
1answer
64 views
Manipulating namespace prefixes in SAAJ / raw xml access within SAAJ
My SAAJ-based client generates the following XML and sends it to a .NET web service:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header>
…
2
votes
2answers
98 views
why is python reusing a class instance inside in function
I'm running a for loop inside a function which is creating instances of a class to test them. instead of making new classes it appears to be reusing the same two over and over.
Is there something I'm …
0
votes
1answer
18 views
How to deserialize xml when root declare namespaces?
I have xml:
<?xml version="1.0" encoding="UTF-8"?>
<wnio:Dokument xmlns:wnio="http://crd.gov.pl/wzor/2009/03/31/119/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ... >
…
0
votes
1answer
44 views
In Python, how do I refer to an identifier by its absolute fully-qualified name?
I have a project with a directory structure that looks like:
/foo/baz/__init__.py
/bar/foo.py
/bar/splat.py
Problem is, /bar/splat.py refers to the foo.baz module. This fails with the error No …
2
votes
3answers
63 views
How to eliminate xmlns=”” entries produced by XSLT transform of one XML doc to another XML doc.
Ok, I've seen numerous variations on this question, but none exactly answer what I'm trying to solve and perhaps I'm just too dense to see how to apply one of the other answers to what I'm trying to …
1
vote
3answers
46 views
Why so many individual System.Web.* DLLs?
I've been thinking about ways to refactor a fairly expansive class/utility library I have, and one thing I think I want to do is split off any higher-level helper utilities that introduce new …
