Posts by user2913044 • 138 points
19 posts
-
0
votes1
answer76
viewsA: Unable to Retrieve Metadata for - Error creating Controller
Dude I know it’s been a while but here I had the same problem I left the "Data Context class" part blank and it worked normally. here a link from a person who did the same thing…
-
0
votes1
answer952
viewsQ: Find Relationship between Oracle Tables
I wonder if it is possible to find the tables and fields involved in an oracle relationship, a query that would return a table like: Table_name, Column Name, Table_references Funcio,id_Cargo,Cargos…
-
0
votes0
answers97
viewsQ: Apache Commons Email Base64 Image
I have software to send emails that use apache Commons email to send html emails, I also have in the database a string that represents an image Base64 example data:image/png;base64,iVBORw0K .... I…
-
1
votes1
answer22
viewsQ: Error after View is called
I have a login screen with the following call when the user clicka on the button "login" $(document).ready(function(){ $("#formLogin").on('submit', function (e) { e.preventDefault(); var form =…
-
0
votes6
answers24229
viewsA: What is the difference between padding and margin in CSS?
Complementing the answers already offered here with a little code and image, it is possible to put backgroud in elements, so I believe that will be more visible to The box Model. <div>…
-
0
votes1
answer3709
viewsQ: JSON Data format
Hello personal I have a webservice that should fetch some infections in the database and return a json object and I’m having problems with date. here is the object import…
-
3
votes2
answers9843
viewsA: Export to excel via javascript, put name in file
complementing Randrade’s response it is possible to change the lines of $("#btnExport").click(function(e) { var a = document.createElement('a'); var data_type = 'data:application/vnd.ms-excel'; var…
-
1
votes1
answer406
viewsQ: Long running period web service
I am creating a webservice that makes consult in a DW these queries for having functions of aggregations and everything else take a little more time than normal (something around 2 - 5 minutes),…
-
2
votes1
answer1041
viewsA: Maven Project Relative Path error
OK thanks staff I found a solution to my problem basically was to manually install the plugins of Weblogic 12.1.3, below a full description of how I did it in case someone goes through this same…
-
1
votes1
answer1041
viewsQ: Maven Project Relative Path error
I have to maintain a system in java with Maven. However the system has 3 projects where one refers to the other, I tried to change the build path adding projects and etc. So far nothing below…
-
0
votes3
answers119
viewsA: create java script functions after rendering all partial views
hello staff thanks for the help. in case the problem was that the functions in the partial view was inside a Tage @Section sript {} tag does not work in partial views so was just change the tag why…
-
0
votes3
answers119
viewsQ: create java script functions after rendering all partial views
I have an aspnet MVC code with a main view that can call 3 view partials depending on where the user clicks. one of these partial view was part of the main view and had a jquery sortable ui plug,…
-
0
votes2
answers113
viewsA: how to direct a page synchronously at nodejs
another way I found to do this was to run the call as follows in the route file. ( which in my case was index.js ) router.get('/solicitacoes', function(req, res, next) { if (!req.session.name) {…
-
1
votes1
answer659
viewsA: How to group by day of the month in Mysql
Basically what you need is a table pivot in MYSQL. Normally this requires some complexity in the query such as knowing all the columns that the query will return. in the link below Voce can know a…
-
0
votes2
answers113
viewsQ: how to direct a page synchronously at nodejs
good afternoon I own a page called index.js in the route folder of the express nodejs. when the pendingAprovals page is called I would like the index to call a webservice to send a JSON to the…
-
0
votes1
answer174
viewsQ: How to consume a Multipart form-data method with void method
How to consume a method Multipart/form-date of a web service made in java, by ajax or jquery? Below I leave as this the method: JAVA: @POST @Path("/aprovarCompra") @Consumes("multipart/form-data")…
-
0
votes2
answers708
viewsA: Format JSON in EJS
basically the problem I was having was with the generated json. I started using the Jackson framework and the problem was solved without change in the code. webservice is done in java with Maven, so…
-
1
votes2
answers708
viewsQ: Format JSON in EJS
hello personal I am having a problem using nodejs and express, I have never used this language and I do not have much knowledge of it so I will try to be as specific as possible here. 1 I own a…
-
2
votes2
answers93
viewsQ: Repeater for many lines
I have a problem in an application I am developing where I have a database with approximately 20 million lines. The problem is that the user wants to see all these 20 million lines on a single…