Questions tagged [two-way]

Refers to a procedure, a function, or a case where the data has two sides.

Refers to a procedure, a function, or a case where the data has two sides. Often these are referred to as input and output, and sometimes they are referred to as beginning and end. In some contexts, two-way might mean information that flows into two separate directions, or a simultaneous execution of two processes.

165 questions
0
votes
1 answer

Change background color on both of two ids when either is hovered?

I want a hover over either of two divs to effect a background color change in both divs. I wrote a two-column table in which to show two different versions of the same text so that people could easily see differences from one version of the text to…
rdc
  • 1
0
votes
1 answer

In Two way SSL it is necessary that both certificates(client/server) built using same tool

I need a clarity for two-way SSL, if I Create Client self-sign certificate, using OpenSSL then save it in Pkcs12 file and Server self-sign certificate using Java keytool then save it in Jks file. Can both certificate work for two-way SSL? Which TLS…
Muhammad Hassan
  • 235
  • 1
  • 2
  • 7
0
votes
2 answers

Databinding with ViewModel and Model

(French here, sorry for potential misunderstandings) I am new to databinding on Android and I am struggling with a rather simple issue. Let's say I have this POJO which we will consider as part of my Model public class User { public String…
Charly Lafon
  • 562
  • 1
  • 3
  • 18
0
votes
1 answer

Calling SOAP web-service using SSL Proxy Http [Java]

I'm calling a SOAP web service for two way SSL authentication, passing through a proxy. I'm getting the following error while calling the soap-webservice. com.sun.xml.ws.client.ClientTransportException: HTTP transport error: java.io.IOException:…
fmp
  • 19
  • 5
0
votes
3 answers

Angular two-way binding for select with object

Actually, i'm trying to bind the array of object to select input. I'm trying in this way, [(ngModel)]="users[i].roles", where 'users' is outer array and 'roles' is another array inside users. Here, roles is array of key value pairs like, roles =…
Mangesh Daundkar
  • 1,026
  • 1
  • 15
  • 20
0
votes
1 answer

WCF two-way call: unexpected recursion

Our Winforms module is a WCF client and while processing WM_PAINT it calls two-way method of a WCF service. I was expecting it to wait for a reply; however a recursion occurs, resulting in a nested WM_PAINT, with all sorts of problems following…
alexk
  • 143
  • 1
  • 11
0
votes
1 answer

php two-way encryption for passing variables through URL

OK... to the point... I have a e-mailshot program that sends out thousands of emails - each with str_replace() merge fields (fields that get replaced by a row value in a recordset). One of the important parts is my ability to track those mails on…
Richard Owens
  • 155
  • 16
0
votes
1 answer

Two-way frequency distribution table for a quantitive data in R

I'm having difficult time to crate a two-way frequency distribution table for a tree diameter-height data. I have a dataset like below dbh(cm) tht(m) 3 53.35 19 13.37 27 16.53 22 17.8 9 8.33 10 8.76 24 15.62 44 30.3 17 14.91 10 8.93 I…
Onur Alkan
  • 83
  • 2
  • 9
0
votes
1 answer

Stata regression with conditions on dummies and variable values

I'm trying to create a regression that would include a polynomial (let's say 2nd order) of year on a certain interval of year (say 1 to 70) and a number of dummies for certain values of year (say for every year between 45 and 60). If I didn't have…
0
votes
1 answer

Spring Integration two way communication with gps devices

We are using spring integration application for data receiption from gps devices. For current configuration we are able to receive data from device also respose sent back to device through same connection current configuration is as…
0
votes
1 answer

Bind ComboBox WPF custom object

I've been wracking my brain for the past several hours with a problem that probably is quite easy to solve. I hope someone can point me in the right direction :) I have a WPF project where the user can edit an xml file. I serialize the xml file to…
0
votes
0 answers

AngularJs 1.2 Two way binding vs Factory service

I'm trying to find a way that I can share data between directives within a page. Like: Parent --Child ----GrandChild --Child ----GrandChild Child is same directive being reused and Grandchild might have smaller directives inside. My first attempt…
concuagia
  • 5
  • 1
0
votes
0 answers

two-way bridge using twisted

I'm playing a little bit with "twisted" to learn it.. I wanted to make a two-way bridge using twisted. My purpose is to analyze the communication between two machines with wireshark on my pc ... I wrote this, but it does not work : May be someone…
Harvey
  • 135
  • 1
  • 10
0
votes
1 answer

Two-way table with tables producing 1's

I'm trying to make a simple two-way table with tabluar(), but all I'm getting is 1's in the output. Why are my estimates not showing up and I get 1's instead? Sample Code pred.table <- structure(list(temp = structure(c(1L, 2L, 3L, 4L, 5L, 1L, 2L,…
Vedda
  • 7,066
  • 6
  • 42
  • 77
0
votes
2 answers

vuejs: object type of computed value can't support two-way data binding

In my Vuejs(2.x version), I came across as following: Vue.component('service',{ template: '
' + '
{{serviceData.serviceName}}
' + '' + '
', …
Chris Bao
  • 2,418
  • 8
  • 35
  • 62