Posts by Rodrigo Rodrigues • 573 points
19 posts
-
2
votes1
answer1677
viewsQ: Error 500 when consuming Nfedistribuicaodfe webservice
All services are working in my component, only that error service while trying to consume, follows my XML soap that I’m sending <?xml version="1.0" encoding="utf-8"?> <soap:Envelope…
nfeasked Rodrigo Rodrigues 573 -
1
votes1
answer806
viewsQ: How to implement "Foreign key" using Micro Services architecture? Django
I’m trying to build a system using micro services architecture, I came across the problem about dependency, in case how to implement chave estrangeira using this architecture? I’m using Django…
-
1
votes1
answer91
viewsQ: Amazon S3 / Route 53 routing configuration
Could I set a route on Amazon Route 53 ou/e S3 as I do in the nodejs with express ? goes below. app.get('/', function (req, res) { res.sendFile(path.join(__dirname + '/website/index.html')); });…
awsasked Rodrigo Rodrigues 573 -
5
votes1
answer2258
viewsQ: NFE Digital Signature(Electronic Invoice)
I am developing NFE in the Python language, I already Gero the XML, I can send it to Webservice and I get the answer, what I need now is the digital signature The signature is an xml tag with some…
-
0
votes1
answer381
viewsQ: Working with multiple databases from the same class model
I am new in Python and I need to implement a solution that every system user should have a separate database, briefly what I need is something like db1 = Persistencia('mysql',…
-
3
votes1
answer380
viewsQ: Nodejs socket client - callback for each request
I have the following code var net = require('net'); var client = new net.Socket(); client.connect(1337, '127.0.0.1', function() { console.log('Connected'); client.write('Hello, server! Love,…
-
4
votes2
answers24209
viewsQ: Bootstrap input width using form-inline
I have a form-inline in bootstrap, as I control the width of input without losing responsiveness? Example w3schools form-inline bootstrap <form class="form-inline" role="form"> <div…
-
1
votes1
answer480
viewsQ: Ubuntu linux deployment environment creation
I’m testing a Digital Ocean machine, it comes with Ubuntu linux (I chose), I need to create the following environment Firewall Java Tomcat7 Jenkins git MySQL MySqlAdmin Groovy Gradle Well, as you…
-
3
votes1
answer1204
viewsQ: Hibernate with multiple databases in the same application
A system uses for each client a separate database, let’s say I will have 500 clients, in which case my database server would have 500 data bases, example: cliente1 cliente2 cliente3 In the Hibernate…
-
1
votes0
answers78
viewsQ: How to get the type (class) of a groovy list
I have the code below: Set<String> list How to know the type of this list? In case it would be java.lang.String
-
3
votes1
answer181
viewsQ: Java class for Builder and dependency management
I have projects using Gradle as a dependency and build manager, I know the power of Gradle, but not the domino, this issue of being a dynamic language(groovy) forces you to know 100% of the commands…
javaasked Rodrigo Rodrigues 573 -
1
votes1
answer210
viewsA: Two-way bind does not work if the model is something like ng-model="record.name" for Kendo UI Controls
The solution is just to add the attribute k-rebind <input type="text" ng-model="record.name" k-rebind="record.name" kendo-numeric-text-box />
-
0
votes1
answer210
viewsQ: Two-way bind does not work if the model is something like ng-model="record.name" for Kendo UI Controls
I have a problem with Kendo UI Controls my HTML <input type="text" ng-model="record.name" kendo-numeric-text-box /> <input type="text" ng-model="record.name"> </input> <button…
-
3
votes1
answer1036
viewsA: Translate datepicker Kendo UI with Angularjs
Manage to solve, just set Culture in your scope that the components that will be on the page will be translated example : var app = angular.module('teste', [ 'kendo.directives' ]);…
-
5
votes1
answer1036
viewsQ: Translate datepicker Kendo UI with Angularjs
I need to translate the Kendo date Picker for English, I already insert the i18n file into my html but it didn’t work, I did the same at angular and it worked with angular my html <head>…
-
2
votes1
answer187
viewsQ: Modularization without OSGI in Web project
I have a project that will be fairly large, so it would be very interesting to modularize, I know, there is Osgi, but I found it very complex and had difficulty adapting my application, the…
tomcatasked Rodrigo Rodrigues 573 -
2
votes1
answer1821
viewsQ: Take all classes of a given Package that is in the classpath
I’m needing to take all the classes of a certain package, I’ve seen some codes that do this, but it only takes the classes that are part of the project itself, basically doesn’t use Reflection and…
-
6
votes1
answer1120
viewsQ: How to prevent the List.size() method from running lazyload with Hibernate and JPA
When I make a query in the bank and an object is returned, in this object has a collection, which by default is Lazyload, if I do object.getColecao().size() ai is run the lazyload to bring the…
-
1
votes1
answer693
viewsQ: Client REST process JSON replay without knowing domain objects
I am making a Restfull server with Spring MVC, the controller only returns JSON, until ai blz, would my client know nothing of the domain classes and still process the requests? I was thinking of…