Questions tagged [subject]

394 questions
0
votes
3 answers

select on change angular implementation?

angularjs has a built in directive called onchanges which would listen to changes in a select or whatever and allow you to execute a function upon a change. How I wish this was so in angular. Currently I am better understanding ngmodel and seeing…
user6781560
0
votes
1 answer

Angular and RxJS Subject headache with canActivate

I got an example Angular2 project using firebase. The authService is using a method isAuthentificated with a subject, which returns the subject.asObserveable. The method is called twice: in the header component constructor with subscribe and it…
Quwax
  • 1
  • 1
0
votes
1 answer

Mule 3.8 POP3 Connector Filter based on Subject

I'm trying to only pick up emails from a shared mailbox that meet the Subject criteria. Here is my flow at the moment. It should grab the email, set the attachment as a payload, then save that payload to a file in the resources folder with the…
0
votes
0 answers

x509 certificate subject DN

I need to create a self signed certificate with my own the Subject DN. Example: I want to set username in Subject DN. I will retrieve this information using X509Certificate.getSubjectDN().getName(). I was able to set the IssuserDN using -dname…
Raj
  • 359
  • 1
  • 3
  • 12
0
votes
1 answer

phpMailer/mail function returns true yet mail is not being received due to Subject

I set subject to "Your Order" while sending email. I tried both phpMailer and php mail function and both returns true yet mail is not being received in my gmail inbox. But after changing the subject to "Order {number}", it started receiving…
Vishu7
  • 113
  • 1
  • 2
  • 6
0
votes
1 answer

Does .NET web service client support SSL cert with IP in Alternate Subject Name

I have an application where many of our endpoints do not support DNS lookups so for those endpoints they cannot use a URL to hit our servers. Our application gives out a list of IPs of our servers they need to hit and this works fine for http. I am…
Richard
  • 116
  • 2
  • 7
0
votes
3 answers

Angular 2 typing issue when using subject

I've have a problem when using subjects in Angular 2. I get the following error when running the app: Type '{}' is not assignable to type 'UserDevice[]'.) I have a component with a list of userDevices. And a service which provides the…
RSSD
  • 63
  • 1
  • 13
0
votes
1 answer

Angular2 local storage Subject()

I will explain you my (probably little) problem :) I'm trying to make a localStorage which set and get some data (array of object). I have one component which add object in my local storage array and one other which get this data. I'm on ionic2 tabs…
ValSouche
  • 128
  • 8
0
votes
1 answer

Call another Retrofit call on Subject emission

I have a following class: public class SessionStore { Subject subject; public SessionStore() { subject = new SerializedSubject<>(BehaviorSubject.create(new Session()); } public void set(Session session) { …
bakua
  • 13,704
  • 7
  • 43
  • 62
0
votes
1 answer

buffering multiple subscribers to rx.js observable

I have var subject = new rx.Subject(); var stream = rx.Observable.fromEvent(blah, 'event') .filter(blah) .map(blah) .subscribe(subject); return subject; then I pass…
Raif
  • 8,641
  • 13
  • 45
  • 56
0
votes
2 answers

PHP subject email seems to break up the receiving of contact form

I've written a contact form and when I type in 'name, email, and message' I receive the email. However, when I type in the subject it takes me to the 'Thank you' page but I never seem to receive the email. I've tried changing the different variables…
clearyb123
  • 17
  • 6
0
votes
0 answers

How to add extensions to an existing certificate using Bouncy Castle

Now I have a certificate without extensions such as 'authority key identifier' and 'subject key identifier'. How can I add these extensions to the existing certificate using Bouncy Castle or other jars? If impossible, how can I create a certificate…
DOWTIA
  • 105
  • 2
  • 9
0
votes
0 answers

RxJS5 - How can I cache the last value of a aggregate stream, without using Subjects and whilst excluding those that have completed?

I want a pubsub system, with producers and consumers of streams, via a dataplane layer but without Subjects. Many producers can multicast to the same stream name (e.g, 'filters.add'), and multiple consumers can subscribe to the stream. Producers…
brokenalarms
  • 305
  • 3
  • 9
0
votes
0 answers

Rx-js. Buffering, caching, etc. in a subject

I have a subject that wraps a WebSocket (https://github.com/Reactive-Extensions/RxJS-DOM/blob/master/doc/operators/fromwebsocket.md) and I want to buffer messages received by the WebSocket. I've looked at…
vicaba
  • 2,836
  • 1
  • 27
  • 45
0
votes
0 answers

C# AE.Net.Mail Random Carriage Returns in Subject

I have a problem with the email Subject. I always get an email when there is an error somewhere. So when I look at the email, everything seems fine. But when I watch the characteristics off it, I can see a few errors. For example: Subject: Text:…
Tobe
  • 93
  • 1
  • 12