Posts by Alexander • 161 points
6 posts
-
0
votes2
answers1107
viewsA: Error returning list with Fluent Nhibernate
The error occurs because json serializer is trying to access the Logs property outside the session. You can manually access the property, inside the using block to force the loading of it. Or…
-
2
votes3
answers3926
viewsA: What is XHTML and when should it be used?
Another application of XHTML is dynamic content generation. You can, for example, interpret with Javascript an XML file that represents a part of a page. Large access web applications use this…
-
1
votes1
answer588
viewsA: Tag ns1: repeats on all other tags (XML)
Remove the :ns1 from here: Documentelement.Attributes['xmlns:ns1'] := And from here: AddChild('ns1:ReqEnvioLoteRPS'). Since you are basing your xml on a schema, it may be that your framework still…
-
1
votes1
answer17194
viewsA: Undefined object reference for an instance
It may be that in the Source Form the field has a different name than Fixed. What would make Collection["Fixed"] have null value.
-
1
votes2
answers101
viewsA: Many Relationships for Many in Restful Service
I would simplify things in the api: /Customers/{id} /Suppliers{id}? customer={idcustomer} Take care of many relationships for many. If you still don’t know, maybe you can take some advantage of some…
-
1
votes2
answers399
viewsA: Doubts about licenses
The software license has nothing to do with the programming language used to build it. The one who builds it is the one who decides which license to apply. There are exceptions to this rule, but in…