Posts by Renan Serrão Nogueira • 329 points
21 posts
-
0
votes1
answer506
viewsA: Webservice REST with authentication [ID, CPF, User, Password]
To register my solution, I created a "Login" model that contained all the information needed for the call in my Controller with the Frombody parameter. public HttpResponseMessage…
-
0
votes1
answer506
viewsQ: Webservice REST with authentication [ID, CPF, User, Password]
Hello, I’ve been searching the web for a while but I can’t find clear answers.. I want to implement a webservice Rest, with tokens and etc for security, and the webservice consists of only GET for…
-
1
votes1
answer58
viewsQ: Transforming a content into an image
I’m creating a project in Windows Forms to help my company generate automated email signatures for our employees. I have in the case a single windows Forms that contains a Tab Control, with Data and…
-
2
votes1
answer140
viewsQ: Swap rows for columns
Hi, I have the following query: set NOCOUNT on; declare @_mes int = 2 declare @_ano int = 2016 declare @_dataini datetime = CONVERT(DATETIME, '01/' + REPLICATE('0', 2 - LEN(@_MES)) + CAST(@_MES AS…
-
2
votes1
answer6289
viewsQ: Centralize div in Bootstrap
Hello, I have a PHP page on which I am using Bootstrap to make a simple search screen. <div class="container"> <img src="/img/logoSuivi.png" class="img-responsive center-block"> <div…
-
0
votes1
answer126
viewsA: Dynamic listbox with value range
I replied as follows: protected void btnAdicionarGastos_Click(object sender, EventArgs e) { if (Tratar.Int(txtGastosDe.Value) <= Tratar.Int(txtGastosAte.Value)) { string gasto = txtGastosDe.Value…
-
0
votes1
answer126
viewsQ: Dynamic listbox with value range
My problem is that I can treat my listbox where I am doing a "value range" in my system. I need it not to let codebehind add a value that is contained in the value range.. Ex: 0-10 has been added,…
-
0
votes3
answers105
viewsQ: Usercontrol to control Logon Schedules
How could I do in a user control of Visual Studio a screen similar to this image below, in a ASCX(HTML,CSS,JS): I tried with several <div>, but I think it would be a very long processing,…
-
-1
votes1
answer79
viewsQ: Filter Longlistselector [CATEGORIES]
Hello, I have a webservice that returns me a list of "categories" with their sub-categories . I need help to "filter this", for example: Category 1 has sub-category 1 and 2; Category 2 has…
-
1
votes1
answer213
viewsQ: Select City and Status [Filter]
I would like to create two ListPicker or even a LongListSelector, so that when the user selects an "x" state, cities in another ListPicker or enter another window with another LongListSelector, the…
-
1
votes2
answers125
viewsQ: Longlistselector on Windows Phone 8
I would like to make a screen with a LongListSelector this way, taking results of a webservice of mine and riding in this style. How could I develop this? I am layman in this part of XAML, it is…
-
0
votes1
answer94
viewsQ: Accessing different Webservices on Android
I have an app that I am developing for my company, that the first part, is to login, going through the webservices, after login, it automatically makes another connection to the webservice that…
-
0
votes2
answers1208
viewsQ: How to save variables to be used in the next . Java?
My main (parser) code is this way: public class pFormasDePagamento { public static void parseXML(String xml) throws ParserConfigurationException, SAXException, IOException { InputSource is = new…
-
1
votes1
answer92
viewsQ: Use the data obtained in the parse of my Web Service to turn into a chart on Android
I have a web service that returns me some values, for example now is this way the answer of my parse: The parse I did to get the filtered values was this: String valFormaOutros =…
-
1
votes1
answer679
viewsA: How to Parse a Web Service XML Response
I’ve used part of a response from another post that I had not found: Parsing the XML file The code edited by me is like this and working 100%: package com.getway.infovendas.Parsers; import…
-
2
votes1
answer679
viewsQ: How to Parse a Web Service XML Response
Hello, I would like to know how I parse a reply in xml that I get from my web service.. In this case, I am doing on Android, and wanted to transform the values and names that display in xml, in…
-
1
votes1
answer271
viewsA: Making web service calls separately
I ended up answering my question myself.. I just don’t know if it’s correct yet, if one is only running after the other.. Can anyone comment by checking my code? Thank you! // Classe…
-
1
votes1
answer271
viewsQ: Making web service calls separately
I need to finish an application I’m doing on Android, in the login step I’m doing, and for that, I have two webservices to perform it, one is the Identifier and the second is the Loginsamba. I’d…
-
2
votes1
answer1933
viewsA: Accessing Webservice by Android - KSOAP2
After several attempts, I ended up solving the problem myself.. Follow the before and after source: Before: package com.testes.infovendas; //Imports import android.support.v7.app.ActionBarActivity;…
-
4
votes1
answer1933
viewsQ: Accessing Webservice by Android - KSOAP2
I am creating an Android APP and have to connect with the web service of my company to make the login system, I am using the lib KSOAP2 3.3.0. The path of my WS is for example as:…
-
1
votes3
answers17687
viewsQ: Get HTML and JS database connection
How to get the connection to the database via SOAP using HTML and Javascript? I use Jquery Mobile. I am Making a login system, and I need to transport the input information to the Worklight Adapter…