active questions tagged namespaces - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T14:23:23Z http://stackoverflow.com/feeds/tag/namespaces http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1925620/reorder-the-wsdldefinitions-in-an-asp-net-web-service 0 Reorder the wsdl:definitions in an ASP.NET web service Jim McKeeth 2009-12-18T00:52:07Z 2009-12-18T18:54:45Z <p>I am creating an ASP.NET web service that implements a specific existing WSDL. There are a couple minor differences that are probably not a big deal, but I would like to get as close of a match as possible.</p> <p>This first difference is the wsdl:definitions are in a different order, and have one additional value. </p> <p>This is what I want it to look like:</p> <pre><code>&lt;wsdl:definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="urn:MyNamespace:Gateway" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" targetNamespace="urn:MyNamespace:Gateway" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" &gt; </code></pre> <p>and this is what I am getting:</p> <pre><code>&lt;wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="urn:MyNamespace:Gateway" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="urn:MyNamespace:Gateway" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" &gt; </code></pre> <p>Notice that they are in a different order, and I have the additional <strong><em>soap12</em></strong> namespace. How do I get them in the same order and remove the soap12 namespace?</p> http://stackoverflow.com/questions/1923315/visual-basic-and-a-namespace-issue 0 Visual Basic and a Namespace Issue tyndall 2009-12-17T17:29:07Z 2009-12-18T01:10:51Z <p>I was cleaning up a Visual Basic (.NET 2.0) solution. Splitting it into two projects. 150 classes have the Namespace RebateCalculator at the top of the file. These files are now sitting in Project with the default namespace RebateCalculator. If I were to insert a Class1.cs file and then namespace declaration that all my other files have - then the fully-qualified class name would be RebateCalculator.RebateCalculator.Class1</p> <p>Is there something I can stick on the front of the Namespace declaration to make it absolute? instead of repeating itself? I'd rather find this kind of solution versus removing the namespace declaration (in case the files get moved again)</p> <p>End Goal: to be able to do a search/replace on 'Namespace RebateCalculator' to fix the issue in 150 files.</p> http://stackoverflow.com/questions/1908667/how-to-avoid-username-clashing-with-a-large-number-of-users-in-django 0 How to avoid username clashing with a large number of users in django? Roberto Rosario 2009-12-15T16:32:41Z 2009-12-15T16:36:40Z <p>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 even more in the future) and already have established usernames from a LDAP &amp; active directories that will be used to pre-populate my application's user model. To avoid name clashes I'm thinking about implementing username namespaces by using a prefix.</p> <p>for example:</p> <ul> <li>_company1_user1</li> <li>_company2_user1</li> <li>_web_user1</li> </ul> <p>I would like to implement this if possible by using django's user model application. Perhaps by inheriting and overriding the standard methods and adding a namespace argument.</p> http://stackoverflow.com/questions/1905204/adding-multiple-namespace-declarations-in-xmlwriter 0 Adding multiple namespace declarations in XmlWriter etechpartner 2009-12-15T04:42:00Z 2009-12-15T05:07:50Z <p>I am trying to write out the following element using XmlWriter</p> <pre><code>&lt;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" xmlns:atom="http://www.w3.org/2005/Atom"&gt; </code></pre> <p>I've got the very first declaration done using</p> <pre><code>writer.WriteStartElement("kml", "http://www.opengis.net/kml/2.2"); </code></pre> <p>How can I add the remaining 3 declarations to the same element? </p> <p>TIA</p> <p>Thomas</p> http://stackoverflow.com/questions/1868603/c-error-c2065-cout-undeclared-identifier 0 C++ error C2065: 'cout' : undeclared identifier Wallter 2009-12-08T17:39:14Z 2009-12-15T03:30:26Z <p><hr></p> <h2>!!!!solved!!! - VS2010 has a bug, works fine with eclipse Galileo</h2> <p><hr></p> <p>I am working on the 'driver' part of my programing assignment and i keep getting this absurd error - <strong>error C2065: 'cout' : undeclared identifier</strong></p> <p>I have even tried using the <strong>std::cout</strong> but i get another error that says: <strong>IntelliSense: namespace "std" has no member "cout"</strong> when i have declared <strong>using namespace std, included iostream</strong> + i even tried to use <strong>ostream</strong></p> <p>I know it's a standard noob question but this has stumped me and I'm a novice (meaning: I've programed before...)</p> <pre><code>#include &lt;iostream&gt; using namespace std; int main () { cout &lt;&lt; "hey" &lt;&lt; endl; return 0; } </code></pre> <p><strong>NOTE</strong>: <em>I'm using Visual Studio 2010 - running Windows 7</em></p> <p>NOTE: all of the .h files have "using namespace std" - and include io and o streams...</p> http://stackoverflow.com/questions/1249876/alter-namespace-prefixing-with-elementtree-in-python 2 Alter namespace prefixing with ElementTree in Python Gabriel Hurley 2009-08-08T20:56:03Z 2009-12-14T23:58:28Z <p>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:</p> <pre> {http://example.org/namespace/spec}mynode </pre> <p>This makes accessing specific nodes by name a huge pain later in the code.</p> <p>I've read through the docs on ElementTree and namespaces and it looks like the <code>iterparse()</code> function should allow me to alter the way the parser prefixes namespaces, but for the life of me I can't actually make it change the prefix. It seems like that may happen in the background before the ns-start event even fires as in this example:</p> <pre><code>for event, elem in iterparse(source): if event == "start-ns": namespaces.append(elem) elif event == "end-ns": namespaces.pop() else: ... </code></pre> <p>How do I make it change the prefixing behavior and what is the proper thing to return when the function ends?</p> http://stackoverflow.com/questions/1204896/how-can-i-group-functions-in-an-asp-net-class 1 How can I group functions in an ASP.NET class? mga911 2009-07-30T07:01:40Z 2009-12-14T20:27:25Z <p>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? Since they still use common private methods, but group them by similarity.</p> <p>For example:</p> <pre><code>Class Customers -GetData ---GetCustomerObject() ---GetCustomerFieldx() -Lists ---GetSomeList() ---GetAnotherList() -Maintenance ---AddCustomer() ---DeleteCustomer() ---UpdateCustomer() </code></pre> <p><strong>UPDATE:</strong> I guess I wasn't clear on where I wanted this grouping to occur. I want the groupings to be almost like namespaces/classes in <a href="http://en.wikipedia.org/wiki/IntelliSense" rel="nofollow">IntelliSense</a> when I use my Customer class. I currently use Regions but they only help when seeing the code, not when using the class.</p> http://stackoverflow.com/questions/853740/jquery-xml-parsing-with-namespaces 4 jQuery XML parsing with namespaces Brian Liang 2009-05-12T16:46:50Z 2009-12-14T16:24:59Z <p>I'm new to jQuery and would like to parse an xml document.</p> <p>I'm able to parse regular XML with the default namespaces but with xml such as:</p> <pre><code>&lt;xml xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:rs="urn:schemas-microsoft-com:rowset" xmlns:z="#RowsetSchema"&gt; &lt;s:Schema id="RowsetSchema"&gt; &lt;s:ElementType name="row" content="eltOnly" rs:CommandTimeout="30"&gt; &lt;s:AttributeType name="ows_ID" rs:name="ID" rs:number="1"&gt; &lt;s:datatype dt:type="i4" dt:maxLength="4" /&gt; &lt;/s:AttributeType&gt; &lt;s:AttributeType name="ows_DocIcon" rs:name="Type" rs:number="2"&gt; &lt;s:datatype dt:type="string" dt:maxLength="512" /&gt; &lt;/s:AttributeType&gt; &lt;s:AttributeType name="ows_LinkTitle" rs:name="Title" rs:number="3"&gt; &lt;s:datatype dt:type="string" dt:maxLength="512" /&gt; &lt;/s:AttributeType&gt; &lt;s:AttributeType name="ows_ServiceCategory" rs:name="Service Category" rs:number="4"&gt; &lt;s:datatype dt:type="string" dt:maxLength="512" /&gt; &lt;/s:AttributeType&gt; &lt;/s:ElementType&gt; &lt;/s:Schema&gt; &lt;rs:data&gt; &lt;z:row ows_ID="2" ows_LinkTitle="Sample Data 1" /&gt; &lt;z:row ows_ID="3" ows_LinkTitle="Sample Data 2" /&gt; &lt;z:row ows_ID="4" ows_LinkTitle="Sample Data 3" /&gt; &lt;/rs:data&gt; &lt;/xml&gt; </code></pre> <p>All I really want are the <code>&lt;z:row&gt;</code>'s.</p> <p>So far, I've been doing:</p> <pre><code>$.get(xmlPath, {}, function(xml) { $("rs:data", xml).find("z:row").each(function(i) { alert("found zrow"); }); }, "xml"); </code></pre> <p>With really no luck. Any ideas? Thanks.</p> http://stackoverflow.com/questions/1894753/the-difference-between-namespaces-in-visual-basic-net-vs-in-c-and-how-to-deal-wi 1 The difference between namespaces in Visual Basic.NET vs in C# and how to deal with them Alex 2009-12-12T21:27:23Z 2009-12-12T23:13:11Z <p>In C#, if you do this, it will compile:</p> <pre><code>namespace Name { public class Test { } public class TestUse { private global::Name.Test test; } } </code></pre> <p>If you try the same in VB.NET, however, it won't:</p> <pre><code>Namespace Name Public Class Test End Class Public Class TestUse Private test As Global.Name.Test End Class End Namespace </code></pre> <p>I get (depending on the way I try to use "Test") either "'Name' is not a member of '&lt;Default&gt;'." or "Type 'Name.Test' is not defined." in my error list. I've found two ways to make it work, but neither are reasonable to expect of a user. One is to remove the "Root Namespace" from the project properties. The other is to include that namespace between "Global" and "Name".</p> <p>I have made a custom tool that uses CodeDom to generate code for both C# and VB.NET. This is the reason why neither of the two fixes above are feasible: I can't expect my users to have an empty root namespace, and I'd hate to have to do VB-specific tricks in my code generation (kind of defeats the purpose of using a language-neutral tool, doesn't it?) such as picking out the "Root Namespace" (not that I'd know how off the top of my head) and including it in my code generation.</p> <p>I don't want to leave out the global modifier either, because it protects the tool from users picking bad names for the generated output. Does anybody have a suggestion for how I should deal with this?</p> http://stackoverflow.com/questions/528312/creating-an-xml-document-using-namespaces-in-java 3 Creating an XML document using namespaces in Java adam 2009-02-09T14:22:47Z 2009-12-12T03:50:32Z <p>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 <a href="http://www.google.com" rel="nofollow">favourite tool</a> so was hoping someone may be able to help me out.</p> http://stackoverflow.com/questions/1889946/restful-wcf-remove-all-xmlns 0 RESTFUL WCF Remove all xmlns Chris Klepeis 2009-12-11T18:21:58Z 2009-12-11T20:23:08Z <p>I set my DataContracts namespace to "" which removed one namespace but I have to remove the other:</p> <blockquote> <p>xmlns:i="http://www.w3.org/2001/XMLSchema-instance"</p> </blockquote> <p>If theres no other way, how can I serialize my class prior to returning and hack out the namespace?</p> <p>I have to do this to work with another companys API.</p> http://stackoverflow.com/questions/1601294/manipulating-namespace-prefixes-in-saaj-raw-xml-access-within-saaj 1 Manipulating namespace prefixes in SAAJ / raw xml access within SAAJ Yuriy 2009-10-21T14:41:13Z 2009-12-11T11:00:03Z <p>My SAAJ-based client generates the following XML and sends it to a .NET web service:</p> <pre><code>&lt;SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"&gt; &lt;SOAP-ENV:Header&gt; &lt;AuthenticationHeader xmlns="http://www.w3.org/2001/XMLSchema-instance"&gt; &lt;Password xmlns="http://schemas.datacontract.org/2004/07/"&gt;temp123&lt;/Password&gt; &lt;UserName xmlns="http://schemas.datacontract.org/2004/07/"&gt;temp321&lt;/UserName&gt; &lt;/AuthenticationHeader&gt; &lt;/SOAP-ENV:Header&gt; &lt;SOAP-ENV:Body&gt; &lt;GetTracks xmlns="http://tempuri.org/"&gt; &lt;TrackName&gt;baby&lt;/TrackName&gt;&lt;ArtistID&gt;0&lt;/ArtistID&gt;&lt;AlbumID&gt;0&lt;/AlbumID&gt;&lt;Start&gt;0&lt;/Start&gt;&lt;Count&gt; 20&lt;/Count&gt; &lt;/GetTracks&gt;&lt;/SOAP-ENV:Body&gt;&lt;/SOAP-ENV:Envelope&gt; </code></pre> <p>The problem I am experiencing is that for the AuthenticationHeader element I must have a prefix defined but it should not be appended to the very beginning. This is exactly what I need to get generated in order not to get an error from the web service:</p> <pre><code>&lt;AuthenticationHeader xmlns:i="http://www.w3.org/2001/XMLSchema-instance"&gt; </code></pre> <p>While if I generate a prefix during the Name creation, it is automatically added after the xmlns attribute and at the very beginning of the element.</p> <p>I tried to poke around with the whole javax.xml.soap package but wasn't able to find anything that could help me to get around this. Can you give me a hint on which direction to go in order to get such an xml generated?</p> <p>On a side note, I wonder if this is even valid behavior for a web service to reject valid xml like this? What is the motivation for such an interpretation behavior?</p> <p>Thank you!</p> http://stackoverflow.com/questions/1876905/why-is-python-reusing-a-class-instance-inside-in-function 2 why is python reusing a class instance inside in function Fire Crow 2009-12-09T21:11:02Z 2009-12-09T21:28:46Z <p>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.</p> <p>Is there something I'm missing about how classes and variables are handled in python methods?</p> <p>how can I generate a new object for each iteration of the loop</p> <pre><code>class CollectionSetImages(unittest.TestCase): def test_keywordset(self): """Testing keyword queries by images equality """ for keyword in ['a','b','c','d','e','f','g']: images_by_keyword = Image.keyword_query([keyword]) collection = Collection([keyword]) class_images = collection.images print('colleciton: %s id: %s' % (collection,id(collection))) self.assertEqual(images_by_keyword, class_images,) </code></pre> <p>here is the output</p> <pre><code>colleciton: &lt;tests.fakeimages._FakeCollection object at 0xb7c656cc&gt; id: 3083228876 colleciton: &lt;tests.fakeimages._FakeCollection object at 0xb7c656ec&gt; id: 3083228908 colleciton: &lt;tests.fakeimages._FakeCollection object at 0xb7c656cc&gt; id: 3083228876 colleciton: &lt;tests.fakeimages._FakeCollection object at 0xb7c656ec&gt; id: 3083228908 colleciton: &lt;tests.fakeimages._FakeCollection object at 0xb7c656cc&gt; id: 3083228876 colleciton: &lt;tests.fakeimages._FakeCollection object at 0xb7c656ec&gt; id: 3083228908 colleciton: &lt;tests.fakeimages._FakeCollection object at 0xb7c656cc&gt; id: 3083228876 </code></pre> <p>when I use seperate variable names I get seperate ids for each instance as expected:</p> <pre><code>collectionA = Collection(['a']) print('collection: %s id: %s' % (collectionA,id(collectionA))) collectionB = Collection(['f']) print('collection: %s id: %s' % (collectionB,id(collectionB))) collectionC = Collection(['f']) print('collection: %s id: %s' % (collectionC,id(collectionC))) </code></pre> <p>outputs:</p> <pre><code>collection: &lt;tests.fakeimages._FakeCollection object at 0xb7cbc8ac&gt; id: 3083585708 collection: &lt;tests.fakeimages._FakeCollection object at 0xb7cbccec&gt; id: 3083586796 collection: &lt;tests.fakeimages._FakeCollection object at 0xb7cbcd2c&gt; id: 3083586860 </code></pre> http://stackoverflow.com/questions/1873747/how-to-deserialize-xml-when-root-declare-namespaces 0 How to deserialize xml when root declare namespaces? Rychu 2009-12-09T13:02:52Z 2009-12-09T13:05:39Z <p>I have xml:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;wnio:Dokument xmlns:wnio="http://crd.gov.pl/wzor/2009/03/31/119/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ... &gt; &lt;/wnio:Dokument&gt; </code></pre> <p>I want to deserialize it to object, for example:</p> <pre><code>[Serializable()] [XmlRoot(Namespace = "wnio")] public class Dokument { ... } </code></pre> <p>What parameter should XmlSerializer constructor has?</p> <pre><code>XmlSerializer serializer = new XmlSerializer(typeof(Dokument), 'What here?' ); </code></pre> <p><code>XmlSerializer.Deserialize</code> complains that it did not expect element <code>http://crd.gov.pl/wzor/2009/03/31/119/'></code>. Why is that?</p> http://stackoverflow.com/questions/1870718/in-python-how-do-i-refer-to-an-identifier-by-its-absolute-fully-qualified-name 0 In Python, how do I refer to an identifier by its absolute fully-qualified name? Bob Aman 2009-12-08T23:54:53Z 2009-12-08T23:57:50Z <p>I have a project with a directory structure that looks like:</p> <pre> /foo/baz/__init__.py /bar/foo.py /bar/splat.py </pre> <p>Problem is, <code>/bar/splat.py</code> refers to the <code>foo.baz</code> module. This fails with the error <code>No module named baz</code> because it's trying to search for this module within <code>/bar/foo.py</code>. I don't want Python to search the <code>bar</code> module, I want to tell it to search the root <code>foo</code> module for <code>baz</code>. How do I do that? In Ruby you'd just prefix the identifier with <code>::</code> (In this case, <code>::Foo::Baz</code>), is there a Python equivalent to this?</p> http://stackoverflow.com/questions/1844476/how-to-eliminate-xmlns-entries-produced-by-xslt-transform-of-one-xml-doc-to-an 2 How to eliminate xmlns="" entries produced by XSLT transform of one XML doc to another XML doc. AlarmTripper 2009-12-04T02:15:31Z 2009-12-07T21:46:24Z <p>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 do.</p> <p>I have some XML that looks something like the following:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;message&gt; &lt;cmd id="api_info"&gt; &lt;api-version&gt;1.0&lt;/api-version&gt; &lt;api-build&gt;1.0.0.0&lt;/api-build&gt; &lt;/cmd&gt; &lt;/message&gt; </code></pre> <p>Now I have an XSLT transform that I'm applying to this XML. The XSLT is similar to the following:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions" version="2.0"&gt; &lt;xsl:output method="xml" version="1.0" indent="yes"/&gt; &lt;xsl:template match="/"&gt; &lt;xsl:apply-templates select="message"/&gt; &lt;/xsl:template&gt; &lt;xsl:template match="message"&gt; &lt;xsl:element name="message" xmlns="http://www.companyname.com/schemas/product/Version001"&gt; &lt;xsl:apply-templates select="/message/cmd/@id"/&gt; &lt;/xsl:element&gt; &lt;/xsl:template&gt; &lt;xsl:template match="/message/cmd/@id"&gt; &lt;xsl:variable name="_commandType" select="/message/cmd/@id"/&gt; &lt;xsl:element name="messageHeader"&gt; &lt;xsl:element name="cmdType"&gt; &lt;xsl:value-of select="$_commandType"/&gt; &lt;/xsl:element&gt; &lt;/xsl:element&gt; &lt;xsl:element name="messageBody"&gt; &lt;xsl:choose&gt; &lt;xsl:when test="$_commandType = 'api_info'"&gt; &lt;xsl:element name="apiInfoBody"&gt; &lt;xsl:element name="apiVersion"&gt; &lt;xsl:value-of select="/message/cmd/api-version"/&gt; &lt;/xsl:element&gt; &lt;xsl:element name="apiBuild"&gt; &lt;xsl:value-of select="/message/cmd/api-build"/&gt; &lt;/xsl:element&gt; &lt;/xsl:element&gt; &lt;/xsl:when&gt; &lt;xsl:when test="$_commandType = 'communicationError'"&gt; &lt;xsl:element name="communicationErrorBody"&gt; &lt;xsl:element name="errorCode"&gt; &lt;xsl:value-of select="error-code"/&gt; &lt;/xsl:element&gt; &lt;xsl:element name="badCmd"&gt; &lt;xsl:value-of select="bad-cmd"/&gt; &lt;/xsl:element&gt; &lt;/xsl:element&gt; &lt;/xsl:when&gt; &lt;/xsl:choose&gt; &lt;/xsl:element&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>The output I get is basically what I want and looks like the following:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;message xmlns="http://www.companyname.com/schemas/product/Version001"&gt; &lt;messageHeader xmlns=""&gt; &lt;cmdType&gt;api_info&lt;/cmdType&gt; &lt;/messageHeader&gt; &lt;messageBody xmlns=""&gt; &lt;apiInfoBody&gt; &lt;apiVersion&gt;1.0&lt;/apiVersion&gt; &lt;apiBuild&gt;1.0.0.0&lt;/apiBuild&gt; &lt;/apiInfoBody&gt; &lt;/messageBody&gt; &lt;/message&gt; </code></pre> <p>But what I don't want are the <b>xmlns=""</b> attributes in the <b>&lt;messageHeader&gt;</b> and <b>&lt;messageBody&gt;</b> elements.</p> <p>Now I've found that if I explicitly specify the namespace in the XSLT for those elements, then the unwanted attribute gets pushed down one level to the children of those attributes.</p> <p>I could just go through my entire XSLT and explicitly add the <b>xmlns=""http://www.companyname.com/schemas/product/Version001"</b> attribute to each of my <b>xsl:element</b> definitions, but I know that there must be a more elegant way. We programmers are far too lazy to not have a shortcut for this kind of nonsense. If my XSLT didn't consist of something as simple as the shortened example, I be tempted to do it that way. But I know there must be a better way.</p> <p>Does anyone know what I'm missing here?</p> <p>Thanks,</p> <p>AlarmTripper</p> http://stackoverflow.com/questions/1860893/why-so-many-individual-system-web-dlls 1 Why so many individual System.Web.* DLLs? toasteroven 2009-12-07T15:56:25Z 2009-12-07T16:08:55Z <p>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 dependencies. I read some previous questions here, and one that I particularly noticed was a comment about how Microsoft freely uses namespaces across DLLs. The example given was <code>System.Web</code> - it's in the base framework, but there's also a <code>System.Web.dll</code> that adds more functionality to the namespace if you want it.</p> <p>I also noticed several other <code>System.Web.*</code> DLLs available, and I was wondering if there's a reason why they wouldn't be combined into a single DLL. Could it be that they have their own individual dependencies and Microsoft (like me) wanted to separate assemblies along those lines? Or is it for easier maintenance? Something else entirely?</p> http://stackoverflow.com/questions/1829425/creating-an-xml-document-with-a-namespaced-root-element-with-nokogiri-builder 2 Creating an XML document with a namespaced root element with Nokogiri builder Luke Francl 2009-12-01T22:35:26Z 2009-12-06T19:14:04Z <p>I'm implementing an exporter for an XML data format that requires namespaces. I'm using the Nokogiri XML Builder (version 1.4.0) to do this.</p> <p>However, I can't get Nokogiri to create a root node with a namespace.</p> <p>This works:</p> <pre><code>Nokogiri::XML::Builder.new { |xml| xml.root('xmlns:foobar' =&gt; 'my-ns-url') }.to_xml &lt;?xml version="1.0"?&gt; &lt;root xmlns:foobar="my-ns-url"/&gt; </code></pre> <p>As does this:</p> <pre><code>Nokogiri::XML::Builder.new do |xml| xml.root('xmlns:foobar' =&gt; 'my-ns-url') { xml['foobar'].child } end.to_xml &lt;?xml version="1.0"?&gt; &lt;root xmlns:foobar="my-ns-url"&gt; &lt;foobar:child/&gt; &lt;/root&gt; </code></pre> <p>However, I need something like <code>&lt;foo:root&gt;</code> and this doesn't work:</p> <pre><code>Nokogiri::XML::Builder.new { |xml| xml['foobar'].root('xmlns:foobar' =&gt; 'my-ns-url') }.to_xml NoMethodError: undefined method `namespace_definitions' for #&lt;Nokogiri::XML::Document:0x11bfef8 name="document"&gt; </code></pre> <p>Namespaces have to be defined before use, apparently, so there's no way to add one to the root node. </p> <p>I found <a href="http://groups.google.com/group/nokogiri-talk/browse%5Fthread/thread/25aa31b0ff5c9694/909117aa559b88f1?lnk=gst&amp;q=namespace+root#909117aa559b88f1" rel="nofollow">a question about this on the Nokogiri mailing list</a>, but it had no replies. Anyone have a solution?</p> http://stackoverflow.com/questions/1856176/how-i-should-reference-custom-control-in-c-code-behind-file-event-trigger 0 How I should reference Custom Control in C# code behind file event trigger? rem 2009-12-06T18:38:25Z 2009-12-06T18:42:39Z <p>In Xaml page I reference my custom control this way:</p> <pre><code>&lt;MyNamespace:CustControl x:Name="Cust1" /&gt; </code></pre> <p>Now I want change the property of this custom control in MouseLeftButtonDown event trigger:</p> <pre><code>private void Grid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e) { } </code></pre> <p>But when I try to write something like </p> <pre><code>CustControl.IsSelected = true; </code></pre> <p>An error says: An object reference is required ..</p> <p>I think it's all about "MyNamespace" namespace, but don't know how to reference it. </p> http://stackoverflow.com/questions/1854086/referencing-other-functions-from-name-spaced-javascript 0 Referencing Other Functions from Name Spaced JavaScript Scott 2009-12-06T00:48:50Z 2009-12-06T02:02:22Z <p>So I am trying to consolidate a bunch of code into some nice NameSpaced functions, but am having a tough time getting it to all work together. For example, I have this (edited down for clarity):</p> <pre><code>YW.FB = function() { return { init: function(fncSuc, fncFail) { FB.init(APIKey, "/services/fbconnect/xd_receiver.htm"); FB.Bootstrap.requireFeatures(["Connect"]); if(typeof fncSuc=='function') fncSuc(); }, login: function(fncSuc) { this.FB.Connect.requireSession(function() { if(typeof fncSuc=='function') fncSuc(); }); }, getUserInfo: function() { var userInfo = new Object; FB.Facebook.apiClient.users_getInfo([FB.Facebook.apiClient.get_session().uid],["name"],function(result, ex){ userInfo.name = result[0]['name']; userInfo.uid = result[0]['uid']; userInfo.url = FBName.replace(/\s+/g, '-'); return userInfo; }) } }; }(); </code></pre> <p>On a normal page I can just do:</p> <pre><code> FB.init(APIKey, "/services/fbconnect/xd_receiver.htm"); FB.Bootstrap.requireFeatures(["Connect"]); var userInfo = new Object; FB.Facebook.apiClient.users_getInfo([FB.Facebook.apiClient.get_session().uid],["name"],function(result, ex){ userInfo.name = result[0]['name']; userInfo.uid = result[0]['uid']; userInfo.url = FBName.replace(/\s+/g, '-'); return userInfo; }) </code></pre> <p>And it works. </p> <p>I have been trying to do:</p> <pre><code>YW.init(); YW.login(); YW.getUserInfo(); </code></pre> <p>But it doesn't work. I keep getting 'FB.Facebook is undefined' from YW.getUserInfo I could be doing this all wrong too. So the FB.init, FB.Facebook stuff is using the facebook connect libraries. Am I doing this all wrong?</p> http://stackoverflow.com/questions/1851559/serializing-object-with-no-namespaces-using-datacontractserializer 0 Serializing object with no namespaces using DataContractSerializer Yurik 2009-12-05T08:12:37Z 2009-12-05T09:09:20Z <p>How do I remove XML namespaces from an object's XML representation serialized using DataContractSerializer?</p> <p>That object needs to be serialized to a very simple output XML.</p> <ul> <li>Latest &amp; greatest - using .Net 4 beta 2</li> <li>The object will never need to be deserialized.</li> <li>XML should not have any xmlns:... namespace refs</li> <li>Any subtypes of Exception and ISubObject need to be supported.</li> <li>It will be very difficult to change the original object.</li> </ul> <p>Object:</p> <pre><code> [Serializable] class MyObj { string str; Exception ex; ISubObject subobj; } </code></pre> <p>Need to serialize into:</p> <pre><code>&lt;xml&gt; &lt;str&gt;...&lt;/str&gt; &lt;ex i:nil="true" /&gt; &lt;subobj i:type="Abc"&gt; &lt;AbcProp1&gt;...&lt;/AbcProp1&gt; &lt;AbcProp2&gt;...&lt;/AbcProp2&gt; &lt;/subobj&gt; &lt;/xml&gt; </code></pre> <p>I used this code:</p> <pre><code>private static string ObjectToXmlString(object obj) { if (obj == null) throw new ArgumentNullException("obj"); var serializer = new DataContractSerializer( obj.GetType(), null, Int32.MaxValue, false, false, null, new AllowAllContractResolver()); var sb = new StringBuilder(); using (var xw = XmlWriter.Create(sb, new XmlWriterSettings { OmitXmlDeclaration = true, NamespaceHandling = NamespaceHandling.OmitDuplicates, Indent = true })) { serializer.WriteObject(xw, obj); xw.Flush(); return sb.ToString(); } } </code></pre> <p>From <a href="http://blogs.msdn.com/youssefm/archive/2009/06/05/introducing-a-new-datacontractserializer-feature-the-datacontractresolver.aspx" rel="nofollow">this article</a> I adopted a DataContractResolver so that no subtypes have to be declared:</p> <pre><code>public class AllowAllContractResolver : DataContractResolver { public override bool TryResolveType(Type dataContractType, Type declaredType, DataContractResolver knownTypeResolver, out XmlDictionaryString typeName, out XmlDictionaryString typeNamespace) { if (!knownTypeResolver.TryResolveType(dataContractType, declaredType, null, out typeName, out typeNamespace)) { var dictionary = new XmlDictionary(); typeName = dictionary.Add(dataContractType.FullName); typeNamespace = dictionary.Add(dataContractType.Assembly.FullName); } return true; } public override Type ResolveName(string typeName, string typeNamespace, Type declaredType, DataContractResolver knownTypeResolver) { return knownTypeResolver.ResolveName(typeName, typeNamespace, declaredType, null) ?? Type.GetType(typeName + ", " + typeNamespace); } } </code></pre> http://stackoverflow.com/questions/55692/net-namespaces 4 .NET namespaces bigbrother82 2008-09-11T02:26:45Z 2009-12-04T14:24:01Z <p>My background is primarily as a Java Developer, but lately I have been doing some work in .NET. So I have been trying to do some simple projects at home to get better at working with .NET. I have been able to transfer much of my Java experience into working with .NET (specifically C#), but the only thing that has really perplexed me is namespaces.</p> <p>I know namespaces are similar to Java packages, but as from what I can tell the main difference is that with Java packages they use actual file folders to show the seperation, while in .NET it does not and all the files reside in a single folder and the namespace is simply declared in each class.</p> <p>I find this odd, because I always saw packages as a way to organize and group related code, making it easier to navigate and comprehend. Since in .NET it does not work this work this way, overtime, the project appears more overcrowded and not as easy to navigate.</p> <p>Am I missing something here? I have to be. Should I be breaking things into separate projects within the solution? Or is there a better way to keep the classes and files organized within a project?</p> <p>Edit: As Blair pointed out this is pretty much the same question asked <a href="http://beta.stackoverflow.com/questions/4664/should-the-folders-in-a-solution-match-the-namespace" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1836387/strategy-for-developing-namespaced-and-non-namespaced-versions-of-same-php-code 11 Strategy for developing namespaced and non-namespaced versions of same PHP code porneL 2009-12-02T22:41:35Z 2009-12-03T23:39:43Z <p>I'm maintaining library written for PHP 5.2 and I'd like to create PHP 5.3-namespaced version of it. However, I'd also keep non-namespaced version up to date until PHP 5.3 becomes so old, that even Debian stable ships it ;)</p> <p>I've got rather clean code, about 80 classes following <code>Project_Directory_Filename</code> naming scheme (I'd change them to <code>\Project\Directory\Filename</code> of course) and only few functions and constants (also prefixed with project name).</p> <p>Question is: what's the best way to develop namespaced and non-namespaced versions in parallel?</p> <ul> <li><p>Should I just create fork in repository and keep merging changes between branches? Are there cases where backslash-sprinkled code becomes hard to merge?</p></li> <li><p>Should I write script that converts 5.2 version to 5.3 or vice-versa? Should I use PHP tokenizer? <code>sed</code>? C preprocessor?</p></li> <li><p>Is there a better way to use namespaces where available and keep backwards compatibility with older PHP?</p></li> </ul> http://stackoverflow.com/questions/1843209/xsd-namespace-to-c-namespace 2 XSD Namespace to C# Namespace Tony 2009-12-03T21:55:26Z 2009-12-03T22:16:32Z <p>We are looking for a way to have C# autogenerate classes from an XSD and create C# namespaces using the namespace info in the XSD.</p> <p>Doesnt seem like you can create a structured (xxxx.yyyy.zzzz) C# namespace from the XSD?</p> <p>Is there a trick we're missing?</p> <p>Thanks</p> http://stackoverflow.com/questions/1836546/javascript-namespacing-ff-issue 0 Javascript + namespacing + FF issue Kevin 2009-12-02T23:12:03Z 2009-12-02T23:44:55Z <pre><code>var utils = function() { function getMyPrivateName() { return "Caoimhin"; } return { messages: { getMyPublicName: function getMyPublicName() { return "Kevin"; }, sayHello: function() { document.writeln("hello " + getMyPublicName() + "&lt;br/&gt;"); document.writeln("hello " + getMyPrivateName() + "&lt;br/&gt;"); } } }; } (); utils.messages.sayHello(); </code></pre> <p>I am playing around with javascript namespaces and have encountered unexpected behaviour. I develop mostly in IE as that is the target browser for our intranet application.</p> <p>In IE the above, when included on a blank page, outputs:</p> <blockquote> <p>hello Kevin<br> hello Caoimhin</p> </blockquote> <p>In FF the script encounters an error:</p> <blockquote> <p>getMyPublicName is not defined</p> </blockquote> <p>If I comment out the offending line:</p> <pre><code>//document.writeln("hello " + getMyPublicName() + "&lt;br/&gt;"); </code></pre> <p>FF outputs:</p> <blockquote> <p>hello Caoimhin</p> </blockquote> <p>So I know it can access the private function...</p> <p>Can anyone explain why this is happening? And what I need to do in order to have a cross browser solution similar to the above..</p> <p>I know I could write something like:</p> <pre><code>document.writeln("hello " + utils.messages.getMyPublicName() + "&lt;br/&gt;"); </code></pre> <p>but would prefer not to....</p> <p>Thanks in advance, Kevin</p> http://stackoverflow.com/questions/1827244/best-plugin-development-practices-to-avoid-polluting-jquery-namespace 2 Best plugin development practices to avoid polluting jQuery namespace? Mario 2009-12-01T16:20:50Z 2009-12-01T23:41:51Z <p>I have created a jQuery plugin that allows the user to interact with a tree (creating, updating, deleting nodes). There are at least a dozen methods for interacting with the tree. Ideally, I don’t want to pollute the jQuery namespace with all of these tree-specific methods as I am doing now as each methods presents an additional opportunity for a namespace collision. I just want the one method for activating the plugin itself and so I am looking to refactor.</p> <pre><code>$('ol#tree').tree(options) // just a single jQuery method for my plugin is fine… $('li#item4').moveNode('li#item6') // …however, we also have this supporting method $('ol#tree').appendNode(node) // …and this one $('li#item2').expandBranch() // …and this one, etc. </code></pre> <p>What are some practices for exposing an interface to the activated DOM element and its sub-elements that don’t pollute the jQuery namespace?</p> <p>I have toyed with saving jQuery object that comes back when I create the tree.</p> <pre><code>var tree = $('ol#tree').tree(); </code></pre> <p>This tree object itself would be extended to include the methods. Unfortunately, as the tree itself is being regularly manipulated, this runs the risk of having the state of that object fall out of sync with the state of the parent DOM element and its sub-elements. I’m not sure trying to maintain state in that object is worth it, since the DOM itself will always have the current state.</p> <p>I have also considered using a namespace (via John Resig’s <a href="http://dev.jquery.com/~john/plugins/space/" rel="nofollow">Space plugin</a>):</p> <pre><code>$('ol#tree').tree() $('ol#tree').tree.appendNode(node) $('ol#tree').tree.item('li#item2').expandBranch() </code></pre> <p>How do you handle this problem? Could you point me to some existing plugins that address this issue from whose code I could learn?</p> http://stackoverflow.com/questions/1828525/change-namespace-of-a-deployed-clickonce-application 0 Change namespace of a deployed clickonce application Tom 2009-12-01T20:04:10Z 2009-12-01T20:55:55Z <p>I made a bit of a namespace spelling mistake and I wish to correct it. My application currently uses Application.Settings to store a bulk of the user's information. If I refactor my namespace to be spelled correctly, will the application settings file essentially get wiped because it can't find the new namespace in it?</p> http://stackoverflow.com/questions/1827858/how-to-mitigate-class-declaration-being-far-from-its-owner-namespace-declaration 1 How to mitigate class declaration being far from its owner namespace declaration in a file? kidnamedlox 2009-12-01T18:05:38Z 2009-12-01T18:40:38Z <p>So, I've seen how useful namespaces can be to organize declarations into their respective groups, but now comes an issue with this.</p> <p>The difference between making a library in C and a library in C++ is in C you must prefix your declarations with what they belong to, for example a library we'll dub MyMath might have a vector class, well the name might be MM_Vector.</p> <p>In C++, you would have a namespace MyMath with a Vector class declared as a part of it.</p> <p>Now the difference here is in C, just by going to the class declaration you immediately know how to use it. In C++, you would have to check which namespace a particular class belongs to (really only a problem in files where the declaration isn't near the namespace declaration, which can be common if there are constants and enumerations declared between the two). While I prefer using a namespace for organization, in my opinion this is still a valid argument as an annoyance.</p> <p>What have people done to reduce this annoyance?</p> http://stackoverflow.com/questions/1823213/php-strategies-for-retrofitting-a-namespace-around-3rd-party-code 0 PHP strategies for retrofitting a namespace around 3rd party code MikeHerrera 2009-11-30T23:49:33Z 2009-12-01T04:56:53Z <p>I'm attempting to utilize a 3rd-party PHP library in a semi-developed web project. Unfortunately, as I am beginning to use the 3rd party code, I'm realizing that there is a number of variable and class name collisions. I was curious to know if there existed a strategy to retrofit a namespace around this new code.</p> <p><em>...and yes, there's equal blame to be passed onto myself for not utilizing namespaces, as well</em>.</p> <p>Off the top of my head I am considering editing every .php file and adding:</p> <pre><code>namespace facePalm; </code></pre> <p>But I was curious to know if there happened to be a more elegant solution. Especially as additional revisions of the code are released, I would rather not have to touch &amp; edit 30+ files.</p> http://stackoverflow.com/questions/1820353/is-there-a-well-established-naming-convention-for-php-namespaces 1 Is there a well-established naming convention for PHP namespaces? Ignas R 2009-11-30T15:05:05Z 2009-11-30T19:00:50Z <p>So far, I've seen many different naming conventions used for PHP namespaces. Some people use <code>PascalCase\Just\Like\For\Classes</code>, some use <code>underscored\lower_case\names</code>, some even use the Java convention for package names: <code>com\domain\project\package</code>.<br> The question is very simple -- can any of these (or other) conventions be called well-established? Why? Are any of them recommended by authorities like Zend or the developers of well-known PHP frameworks?</p>