cppisking / ffrk-inspector

Issues tracker for FFRK Inspector
10 stars 8 forks source link

Occasionally an encounter does not get recorded. #49

Closed SkyfireX closed 9 years ago

SkyfireX commented 9 years ago

Just did Legendary Plunder elite Figaro Castle

As the data got updated, I noticed that the times run is 3 instead of 1, whereas the drops are exactly what mine are reported to be.

As such everything is a 1/3 of it's current drop %.

I believe it's not likely for 2 other people to be doing the run at exactly the same time and getting totally 0 drops.

cppisking commented 9 years ago

Can you try exiting the dungeon and going back in? Let me know what it says then On Tue, Jun 2, 2015 at 9:43 AM SkyfireX notifications@github.com wrote:

Just did Legendary Plunder elite Figaro Castle

As the data got updated, I noticed that the times run is 3 instead of 1, whereas the drops are exactly what mine are reported to be.

As such everything is a 1/3 of it's current drop %.

I believe it's not likely for 2 other people to be doing the run at exactly the same time and getting totally 0 drops.

— Reply to this email directly or view it on GitHub https://github.com/cppisking/ffrk-inspector/issues/49.

cppisking commented 9 years ago

If I look directly in the database I'm showing that there are 3, 3, and 2 runs of 1st floor, Throne Room, and Exterior (respectively). So you must have done one of the first two stages. And for both of those first two stages, I'm showing that on more than one of those 3 occasions at least 1 items dropped. So it looks to me like a UI bug (which are usually resolved by exiting and re-entering the dungeon).

On Tue, Jun 2, 2015 at 9:44 AM cpp king cppisking@gmail.com wrote:

Can you try exiting the dungeon and going back in? Let me know what it says then On Tue, Jun 2, 2015 at 9:43 AM SkyfireX notifications@github.com wrote:

Just did Legendary Plunder elite Figaro Castle

As the data got updated, I noticed that the times run is 3 instead of 1, whereas the drops are exactly what mine are reported to be.

As such everything is a 1/3 of it's current drop %.

I believe it's not likely for 2 other people to be doing the run at exactly the same time and getting totally 0 drops.

— Reply to this email directly or view it on GitHub https://github.com/cppisking/ffrk-inspector/issues/49.

SkyfireX commented 9 years ago

I actually did the entire dungeon (before I wrote the opening post)

I restarted fiddler and opened the dungeon, and I'm very sure that the current data entry is wrong. I dropped 2 ff IX dagger on stage 2, and got a greater non-elemental orb on stage 3

I'm sorry I didn't take a screen shot when it happened though. :( Will remember if this thing occurs again

cppisking commented 9 years ago

Actually when I look more closely, for 1st Floor my data doesn't show either way whether all the drops occurred in 1 run or multiple runes. But for the 2nd stage, it's definitely multiple runs. Which stage were you doing?

For the first stage I show a total of 1 Cat Claws (III), 1 Silver Blow (V), 1 White Orb, 1 Lesser Ice Orb, 2 Lesser Lightning Orbs, and 1 Lightning Orb. It certainly seems unlikely to me that you got all that on 1 run, but I suppose it's possible.

For the second stage I show a total of 5 Lesser White Orbs (on one run 2 dropped, on another run 3 dropped) and 1 Lesser Lightning Orb.

Which stage were you doing and what dropped exactly?

It's worth noting that when I update the # of times a battle has been run, and the drops that were encountered for that battle, I do it inside a database transaction, so in theory it should be impossible for inconsistent data to get actually written to the database. But it might be possible for inconsistent data to be read from the database due to the isolation level I'm using (https://dev.mysql.com/doc/refman/5.0/en/set-transaction.html).

Of course it might be something else entirely, like just a UI bug (i know there are some weird edge cases in the way I update that list view). If it is the isolation level, I can consider changing it in in the future to guarantee more consistent results, but first let me know which exact stage it was, what exactly dropped, and what you saw in the list.

On Tue, Jun 2, 2015 at 9:55 AM cpp king cppisking@gmail.com wrote:

If I look directly in the database I'm showing that there are 3, 3, and 2 runs of 1st floor, Throne Room, and Exterior (respectively). So you must have done one of the first two stages. And for both of those first two stages, I'm showing that on more than one of those 3 occasions at least 1 items dropped. So it looks to me like a UI bug (which are usually resolved by exiting and re-entering the dungeon).

On Tue, Jun 2, 2015 at 9:44 AM cpp king cppisking@gmail.com wrote:

Can you try exiting the dungeon and going back in? Let me know what it says then On Tue, Jun 2, 2015 at 9:43 AM SkyfireX notifications@github.com wrote:

Just did Legendary Plunder elite Figaro Castle

As the data got updated, I noticed that the times run is 3 instead of 1, whereas the drops are exactly what mine are reported to be.

As such everything is a 1/3 of it's current drop %.

I believe it's not likely for 2 other people to be doing the run at exactly the same time and getting totally 0 drops.

— Reply to this email directly or view it on GitHub https://github.com/cppisking/ffrk-inspector/issues/49.

SkyfireX commented 9 years ago

Alright, I don't remember exactly everything, but after doing stage 1, I noticed that there were 3 times run, and that the drops was exactly what I was supposed to have obtained. I was thinking oh there's 2 guys who got really unlucky? (btw I don't remember dropping silver bow and cat claws)

So I paid a little bit more attention in stage 2. I noticed that I was predicted to drop 2 daggers, and some orbs (definitely not 5 lesser white)

Again after completing the run, I saw that the update was times run 3, and drops were all mine again.

And same for stage 3, in which I remember dropping a greater non-elemental orb.

After that, I came here to write a bug report lol

cppisking commented 9 years ago

Can you go back in to the dungeon (don't actually have to do any battles). I'm guessing when you go back in you'll see everything, but the times run will be the same.

I'm guessing the other 2 people actually were doing at the same time as you, and they dropped the silver bow and cat claws while you dropped other stuff. But since Silver Bow and Cat Claws weren't already in the list when you started, it didn't know to add them to the list because it didn't actually fetch from the database again. Instaed it just looked for rows already in the list that matched the item id of the stuff you dropped, and it didn't find any so it just added your items to the list.

But when you enter a dungeon for the first time, it fetches everything fresh from the database. I should think of a better way to handle this, because other people have reported similar issues, and I think they're all the same underlying cause of me not fetching everything fresh from the database every time.

On Tue, Jun 2, 2015 at 10:07 AM SkyfireX notifications@github.com wrote:

Alright, I don't remember exactly everything, but after doing stage 1, I noticed that there were 3 times run, and that the drops was exactly what I was supposed to have obtained. I was thinking oh there's 2 guys who got really unlucky? (btw I don't remember dropping silver bow and cat claws)

So I paid a little bit more attention in stage 2. I noticed that I was predicted to drop 2 daggers, and some orbs (definitely not 5 lesser white)

Again after completing the run, I saw that the update was times run 3, and drops were all mine again.

And same for stage 3, in which I remember dropping a greater non-elemental orb.

— Reply to this email directly or view it on GitHub https://github.com/cppisking/ffrk-inspector/issues/49#issuecomment-108019299 .

SkyfireX commented 9 years ago

yeah I entered the dungeon again, but I don't see (some of at least) the drops that I obtained.

I know for sure I got 2 ffXI dagger from stage 2 and a greater non-ele orb from the boss. And some other orbs here and there.

Edit: FF IX I mean.

cppisking commented 9 years ago

Can you look in the Log tab of Fiddler and see if there are any messages about database errors or anything else that looks suspicious? It should be right next to the FFRKInspector tab.

On Tue, Jun 2, 2015 at 10:13 AM SkyfireX notifications@github.com wrote:

yeah I entered the dungeon again, but I don't see (some of at least) the drops that I obtained.

I know for sure I got 2 ffXI dagger from stage 2 and a greater non-ele orb from the boss. And some other orbs here and there.

— Reply to this email directly or view it on GitHub https://github.com/cppisking/ffrk-inspector/issues/49#issuecomment-108021026 .

SkyfireX commented 9 years ago

Hmm I did restart fiddler just now, do they save a log on my computer?

Right now though I see this which might be an issue: 01:17:05:2962 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com).

cppisking commented 9 years ago

No it doesn't save the log :(

That might be related, it's not a Fiddler error I've seen before. I was expecting something more like a database error. You'd probably have to ask on the Fiddler support forum to see exactly what that error message means.

One thing I think is fairly certain though. Either it recorded everything about your encounter, or it recorded nothing. Since I don't see anything about Non-Elemental Orbs, I think it probably recorded nothing. Someone reported a simialr issue on reddit, but still no clues as to what it might be. If the proxy temporarily had a hiccup that caused me to not see when you completed a battle, then that would definitely explain why I wouldn't write it to the database.

On Tue, Jun 2, 2015 at 10:17 AM SkyfireX notifications@github.com wrote:

Hmm I did restart fiddler just now, do they save a log on my computer?

Right now though I see this which might be an issue: 01:17:05:2962 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com).

— Reply to this email directly or view it on GitHub https://github.com/cppisking/ffrk-inspector/issues/49#issuecomment-108021794 .

cppisking commented 9 years ago

In the bottom left of Fiddler, there is a little box that says [Quick Exec]. Can you run type two commands into there?

prefs set fiddler.debug.extensions.verbose True

prefs set fiddler.debug.extensions.showerrors True

This way should you see anything like this again, there will be more information in the Fiddler log tab.

SkyfireX commented 9 years ago

Alright, I did that and I will keep a closer look if this case happens again. Sorry against I wasn't really prepared to capture the bug as it occurred with screenshots and better explaination lol (I did a stint as QA some time ago

cppisking commented 9 years ago

No worries, this has already been helpful, if nothing else because it confirms what user @karryt reported in http://www.reddit.com/r/FFRecordKeeper/comments/381z2g/ffrk_inspector_is_ready_go_easy_on_me/crsj334

So there's definitely something going on, but on the bright side I'm pretty confident now that it's only a bug with some runs not being recorded, rather than being recorded multiple times, or partially recorded. Random encounters not being recorded is much less serious, because it means the data is all still statistically accurate since the samples that get missed are presumably random.

On Tue, Jun 2, 2015 at 10:28 AM SkyfireX notifications@github.com wrote:

Alright, I did that and I will keep a closer look if this case happens again. Sorry against I wasn't really prepared to capture the bug as it occurred with screenshots and better explaination lol (I did a stint as QA some time ago

— Reply to this email directly or view it on GitHub https://github.com/cppisking/ffrk-inspector/issues/49#issuecomment-108023818 .

cppisking commented 9 years ago

Yea like I mentioned before, I'm thinking it just didn't record your runs at all. I'm still not sure why though, but those Fiddler errors are kind of concerning. Short of that maybe do some more runs and if you see anything like that again, check the Log tab of fiddler.

On Tue, Jun 2, 2015 at 10:34 AM SkyfireX notifications@github.com wrote:

I actually did the entire dungeon (before I wrote the opening post)

I restarted fiddler and opened the dungeon, and I'm very sure that the current data entry is wrong. I dropped 2 ff IX dagger on stage 2, and got a greater non-elemental orb on stage 3

— Reply to this email directly or view it on GitHub https://github.com/cppisking/ffrk-inspector/issues/49#issuecomment-108016732 .

SkyfireX commented 9 years ago

yup no problem. I'm hoping it's not screwing up some setting up. :) will let you know if anything happens again

karryt commented 9 years ago

I've done quite a few random stages since yesterday and looks like everything has recorded correctly so far. One thing I did notice that may show in the early stage is that I did have a couple of rounds where I had no drops and there was no existing data in the system. Since the item and level views are of specific drops it kind of looks like that area was never run before, but in reality it may have been run, just nothing is showing. So the next person that runs it might get a drop and see that it was run twice, I could see that be confusing (they'd think they were doing the first/only run), although I don't think that's the issue you had since you said you saw other drops in the data.

cppisking commented 9 years ago

One way to fix that confusion might be to have a Times Run column on the upper left pane.

Another might be to filter the lower list view to whatever is selected in the upper left list view.

On the other hand, this is mostly only an issue due to the fact that these are new dungeons people are running. Eventually, once at least one item has been obtained for a particular battle, they'll never see the problem again for that battle.

On Tue, Jun 2, 2015 at 11:02 AM karryt notifications@github.com wrote:

I've done quite a few random stages since yesterday and looks like everything has recorded correctly so far. One thing I did notice that may show in the early stage is that I did have a couple of rounds where I had no drops and there was no existing data in the system. Since the item and level views are of specific drops it kind of looks like that area was never run before, but in reality it may have been run, just nothing is showing. So the next person that runs it might get a drop and see that it was run twice, I could see that be confusing (they'd think they were doing the first/only run), although I don't think that's the issue you had since you said you saw other drops in the data.

— Reply to this email directly or view it on GitHub https://github.com/cppisking/ffrk-inspector/issues/49#issuecomment-108034569 .

karryt commented 9 years ago

Yeah, but as data is filled in it becomes less of an issue, that particular case would only happen if the first 1-2 runs through a stage ended up with zero drops, which I didn't really notice happening until last night, so I don't think it happens all that often. As soon as one item drops you should be able to see the full amount of runs in the "item drops" view.

cppisking commented 9 years ago

It just occurred to me that one situation in which an encounter will not get recorded is if you start the battle while not FFRKI is not running, and then you run FFRKI after that. Basically FFRKI needs to see you begin the battle, and it needs to see you finish the battle.

It's likely that's not what happened in your case, but figured I'd mention it just in case.

Another thing you can do if this happens again (in addition to looking at the Log tab of Fiddler) is to look at the Debugging tab of FFRK Inspector. You should see something ending with /get_battle_init_data, and shortly after that you should see something ending with /win_battle or /battle_win or something similar to that. Those are the two triggers. The first one causes the tool to save in memory a copy of the drops, and the second one causes it to write those drops to the database.

In the future I could probably do something like correlate log messages with the request that caused the log message, so that when you look in the debugging tab you could see which messages generated the different log statements. That might help narrow it down.

SkyfireX commented 9 years ago

I think I might have it occured to me again. I just did a full run of the weapon foundy, doing each level once. image

From the image, I can tell you for sure that all those drops are mine. My rewards when I did my run was Stage 1 : 2 4, 1 3 Stage 2 : 1 4, 3 3 Stage 3 : 1 4_, 2 3_s

However the Times run as you can see from the image is 2 times for part 1, 2 times for part 2, and 6!! times for part 3.

I will do a copy and paste of the logging (which is a lot of lines cause I left fiddler running over night lol) There's too many lines that it went over the character limit so I will try to copy and paste the past hour's logging It's mainly the same line though ... so I think that's most likely the cause?

07:49:03:0053 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:49:03:7613 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:49:14:2709 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:49:15:4690 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:49:19:5012 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:49:28:6228 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:49:29:5558 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:49:43:4106 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:49:44:3117 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:49:50:2850 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:49:58:1755 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:49:59:0805 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:50:17:9116 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:50:18:8066 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:50:36:6937 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:50:37:5957 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:50:51:0895 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:50:55:4197 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:50:56:2038 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:51:10:0096 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:51:10:8036 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:51:25:5915 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:51:26:6535 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:51:42:6924 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:51:43:7535 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:52:00:7975 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:52:01:8775 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:52:14:8713 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:52:15:9273 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:52:35:0124 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:52:36:0945 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:52:51:1373 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:52:51:9144 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:52:52:1384 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:53:09:2094 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:53:10:2474 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:53:29:3885 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:53:30:5166 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:53:46:5805 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:53:47:6806 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:54:06:8207 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:54:07:9667 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:54:23:0636 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:54:23:9267 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:54:36:8024 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:54:37:7074 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:54:55:5525 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:54:56:4685 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:55:11:3254 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:55:12:2514 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:55:26:0922 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:55:27:2633 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:55:44:3603 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:55:45:5103 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:56:02:6413 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:56:03:7414 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:56:20:8253 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:56:21:9354 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:56:35:1272 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:56:36:2532 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:56:52:6852 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:56:54:4103 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:56:55:5333 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:57:11:6942 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:57:12:7753 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:57:29:9163 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:57:31:1044 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:57:50:2115 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:57:51:3165 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:58:10:4636 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:58:11:6057 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:58:27:7396 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:58:28:6246 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:58:45:5766 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:58:46:6917 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:58:59:7534 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:59:00:9035 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:59:13:9562 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:59:15:0473 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:59:28:2081 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:59:29:3411 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:59:47:4282 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 07:59:48:3662 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:00:01:2139 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:00:02:1200 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:00:14:9987 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:00:15:8698 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:00:33:7588 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:00:34:8649 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:00:50:9688 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:00:52:0809 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:01:11:2259 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:01:12:3360 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:01:28:5089 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:01:29:6460 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:01:47:8160 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:01:48:7621 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:01:53:4174 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:02:05:5831 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:02:06:4661 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:02:20:3549 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:02:21:2360 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:02:34:1467 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:02:35:1007 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:02:52:0107 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:02:52:8458 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:03:09:6887 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:03:10:5728 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:03:29:4839 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:03:30:6629 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:03:44:8077 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:03:45:9458 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:04:05:0669 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:04:06:2340 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:04:23:3299 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:04:24:4600 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:04:41:5760 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:04:42:6420 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:04:56:7658 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:04:57:9019 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:05:11:0267 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:05:12:1137 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:05:28:2156 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:05:29:3757 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:05:43:4955 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:05:44:3876 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:06:01:2775 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:06:02:1556 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:06:17:0384 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:06:17:9025 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:06:36:7256 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:06:37:5216 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:06:48:8823 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:06:48:9203 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:06:48:9513 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:06:49:8913 fiddler.network.readresponse.failure> Session #8659 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:06:50:7154 fiddler.network.readresponse.failure> Session #8659 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:06:51:5344 FFRKInspector: ffrk.denagames.com:443 08:06:51:7354 fiddler.network.readresponse.failure> Session #8668 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:06:51:7564 fiddler.network.readresponse.failure> Session #8670 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:06:51:7864 fiddler.network.readresponse.failure> Session #8672 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:06:52:5365 fiddler.network.readresponse.failure> Session #8670 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:06:52:5625 fiddler.network.readresponse.failure> Session #8672 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:06:52:5875 fiddler.network.readresponse.failure> Session #8668 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:06:52:6225 FFRKInspector: /dff/battle/begin_session 08:06:53:2045 FFRKInspector: /dff/battle/begin_battle 08:06:53:5325 fiddler.network.readresponse.failure> Session #8680 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:06:54:2386 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:06:54:3036 FFRKInspector: /dff/battle/?timestamp=1433290018&battle_id=306050 08:06:54:3526 fiddler.network.readresponse.failure> Session #8680 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:06:55:8897 FFRKInspector: /dff/battle/get_battle_init_data 08:06:56:3137 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:06:57:1117 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:07:15:9328 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:07:16:7479 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:07:30:5346 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:07:31:3817 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:07:50:2518 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:07:51:0198 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:08:03:6115 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:08:03:6475 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:08:03:6725 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:08:04:3116 fiddler.network.readresponse.failure> Session #8717 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:08:04:3236 fiddler.network.readresponse.failure> Session #8718 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:08:04:5686 fiddler.network.readresponse.failure> Session #8717 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:08:04:5846 fiddler.network.readresponse.failure> Session #8718 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:08:05:3876 fiddler.network.readresponse.failure> Session #8718 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:08:05:4206 fiddler.network.readresponse.failure> Session #8717 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:08:05:5226 fiddler.network.readresponse.failure> Session #8719 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:08:05:5396 fiddler.network.readresponse.failure> Session #8724 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:08:06:3217 fiddler.network.readresponse.failure> Session #8724 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:08:06:3537 fiddler.network.readresponse.failure> Session #8728 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:08:07:1897 fiddler.network.readresponse.failure> Session #8728 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:08:09:8389 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:08:10:6399 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:08:25:4618 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:08:26:1938 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:08:42:9938 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:08:43:8258 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:08:56:6076 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:08:57:4746 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:09:15:2876 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:09:16:0967 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:09:30:5325 FFRKInspector: ffrk.denagames.com:443 08:09:31:3526 FFRKInspector: /dff/battle/win 08:09:32:8756 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:09:33:9367 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:09:40:2551 FFRKInspector: /dff/?timestamp=1433290183 08:09:41:7011 FFRKInspector: /dff/update_user_session 08:09:42:2132 FFRKInspector: /dff/world/battles 08:09:45:9404 FFRKInspector: /dff/battle/begin_session 08:09:46:5564 FFRKInspector: /dff/battle/begin_battle 08:09:47:5195 FFRKInspector: /dff/battle/?timestamp=1433290191&battle_id=306050 08:09:48:0365 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:09:48:8586 FFRKInspector: /dff/battle/get_battle_init_data 08:09:48:8886 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:10:03:6764 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:10:04:4544 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:10:19:2913 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:10:20:0733 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:10:21:8814 fiddler.network.readresponse.failure> Session #8679 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:10:23:0255 fiddler.network.readresponse.failure> Session #8679 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:10:32:9361 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:10:33:9881 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:10:48:0349 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:10:49:0800 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:11:06:1000 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:11:06:7690 FFRKInspector: ffrk.denagames.com:443 08:11:07:1240 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:11:07:6571 FFRKInspector: /dff/battle/win 08:11:17:3256 FFRKInspector: /dff/?timestamp=1433290281 08:11:18:8847 FFRKInspector: /dff/update_user_session 08:11:19:4777 FFRKInspector: /dff/world/battles 08:11:23:1519 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:11:23:3030 FFRKInspector: /dff/world/leave_dungeon 08:11:23:7810 FFRKInspector: /dff/world/fail?dungeon_id=206011&tip_id=&kind=leave 08:11:24:2210 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:11:26:5261 FFRKInspector: /dff/world/dungeons?world_id=106001 08:11:39:2859 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:11:40:0039 FFRKInspector: /dff/world/enter_dungeon 08:11:40:3249 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:11:41:7170 FFRKInspector: /dff/world/battles 08:11:44:2742 FFRKInspector: /dff/battle/begin_session 08:11:44:9602 FFRKInspector: /dff/battle/begin_battle 08:11:46:0033 FFRKInspector: /dff/battle/?timestamp=1433290310&battle_id=306080 08:11:47:4453 FFRKInspector: /dff/battle/get_battle_init_data 08:11:54:9868 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:11:55:7708 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:11:56:5179 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:11:59:4760 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:12:00:5861 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:12:12:3338 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:12:15:7150 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:12:16:8590 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:12:22:3003 FFRKInspector: ffrk.denagames.com:443 08:12:22:9384 FFRKInspector: /dff/battle/win 08:12:29:1487 FFRKInspector: /dff/?timestamp=1433290352 08:12:30:4518 FFRKInspector: /dff/update_user_session 08:12:30:7978 FFRKInspector: /dff/world/battles 08:12:33:4450 FFRKInspector: /dff/battle/begin_session 08:12:33:8110 FFRKInspector: /dff/battle/begin_battle 08:12:34:7010 FFRKInspector: /dff/battle/?timestamp=1433290358&battle_id=306081 08:12:35:8301 FFRKInspector: /dff/battle/get_battle_init_data 08:12:35:9781 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:12:37:1442 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:12:43:2155 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:12:51:3270 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:12:52:4341 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:13:07:5549 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:13:08:7230 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:13:17:6815 FFRKInspector: ffrk.denagames.com:443 08:13:18:2545 FFRKInspector: /dff/battle/win 08:13:24:8649 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:13:26:0440 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:13:30:3692 FFRKInspector: /dff/?timestamp=1433290414 08:13:31:6463 FFRKInspector: /dff/update_user_session 08:13:32:0473 FFRKInspector: /dff/world/battles 08:13:34:8855 FFRKInspector: /dff/battle/begin_session 08:13:35:2955 FFRKInspector: /dff/battle/begin_battle 08:13:36:2516 FFRKInspector: /dff/battle/?timestamp=1433290420&battle_id=306080 08:13:37:3046 FFRKInspector: /dff/battle/get_battle_init_data 08:13:42:1829 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:13:43:3310 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:13:44:0500 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:14:01:4530 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:14:02:5551 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:14:14:5838 FFRKInspector: ffrk.denagames.com:443 08:14:15:1188 FFRKInspector: /dff/battle/win 08:14:21:5302 FFRKInspector: /dff/?timestamp=1433290465 08:14:21:6752 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:14:22:7902 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:14:22:8872 FFRKInspector: /dff/update_user_session 08:14:23:2312 FFRKInspector: /dff/world/battles 08:14:27:2815 FFRKInspector: /dff/world/leave_dungeon 08:14:27:6105 FFRKInspector: /dff/world/fail?dungeon_id=206019&tip_id=&kind=leave 08:14:29:1276 FFRKInspector: /dff/world/dungeons?world_id=106001 08:14:31:8227 FFRKInspector: /dff/party/list 08:14:37:8511 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:14:38:6791 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:14:49:5438 FFRKInspector: /dff/party/save 08:14:53:7500 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:14:54:8231 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:15:00:9944 FFRKInspector: /dff/buddy/save_equipment 08:15:04:5036 FFRKInspector: /dff/buddy/save_equipment 08:15:07:7128 FFRKInspector: /dff/buddy/save_equipment 08:15:10:9080 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:15:11:9670 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:15:20:3575 FFRKInspector: /dff/buddy/save_equipment 08:15:24:8198 FFRKInspector: /dff/buddy/save_equipment 08:15:26:0148 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:15:27:0309 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:15:29:3590 FFRKInspector: /dff/event/coliseum/11/get_data 08:15:29:6991 FFRKInspector: /dff/world/dungeons?world_id=113002 08:15:35:0294 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:15:36:4244 FFRKInspector: /dff/world/battles 08:15:39:9016 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:15:40:2777 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:15:42:0288 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:15:42:8118 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:15:44:2659 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:15:44:9079 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:15:45:6850 FFRKInspector: /dff/world/battles 08:15:48:5981 FFRKInspector: /dff/event/coliseum/11/begin_battle_session 08:15:49:0372 FFRKInspector: /dff/event/coliseum/11/begin_battle 08:15:50:0032 FFRKInspector: /dff/battle/?timestamp=1433290554&battle_id=713011 08:15:51:4913 FFRKInspector: /dff/event/coliseum/11/get_battle_init_data 08:15:55:6215 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:15:56:4626 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:16:09:2513 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:16:10:0554 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:16:22:8701 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:16:23:6761 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:16:31:3276 FFRKInspector: ffrk.denagames.com:443 08:16:31:8796 FFRKInspector: /dff/event/coliseum/11/win_battle 08:16:36:4969 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:16:37:6039 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:16:42:8242 FFRKInspector: /dff/?timestamp=1433290606 08:16:44:2423 FFRKInspector: /dff/update_user_session 08:16:44:5613 FFRKInspector: /dff/event/coliseum/11/get_data 08:16:44:9164 FFRKInspector: /dff/world/battles 08:16:49:9446 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:16:50:8997 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:16:51:7017 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:16:52:1298 FFRKInspector: /dff/world/dungeons?world_id=113002 08:16:52:5158 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:16:55:2069 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:16:56:6780 FFRKInspector: /dff/world/battles 08:16:59:9462 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:17:00:3562 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:17:04:2615 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:17:05:6825 FFRKInspector: /dff/world/battles 08:17:07:2956 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=client-cf.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:17:07:5476 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=client-lb.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:17:09:3508 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:17:09:3858 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:17:09:7788 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:17:10:1348 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:17:13:5310 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:17:14:8871 FFRKInspector: /dff/world/battles 08:17:18:3623 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:17:18:7863 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:17:22:2195 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:17:23:6296 FFRKInspector: /dff/world/battles 08:17:26:6297 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:17:26:9748 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:17:28:9539 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:17:29:7909 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:17:30:7880 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:17:32:1931 FFRKInspector: /dff/world/battles 08:17:34:8372 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:17:35:1322 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:17:38:3824 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=client-lb.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:17:38:9764 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:17:40:4255 FFRKInspector: /dff/world/battles 08:17:43:5567 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:17:43:7767 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:17:44:1877 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:17:44:4108 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:17:53:6333 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:17:55:0984 FFRKInspector: /dff/world/battles 08:17:57:2095 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:17:58:2335 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:17:59:2156 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:17:59:5526 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:18:04:3819 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:18:05:8080 FFRKInspector: /dff/world/battles 08:18:08:8672 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:18:09:2702 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:18:11:2763 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:18:12:3234 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:18:15:7445 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:18:17:0676 FFRKInspector: /dff/world/battles 08:18:20:9378 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:18:21:2569 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:18:25:5901 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:18:26:3622 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:18:26:9432 FFRKInspector: /dff/world/battles 08:18:27:3472 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:18:30:1324 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:18:30:5774 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:18:35:5957 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:18:36:9748 FFRKInspector: /dff/world/battles 08:18:39:1829 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=client-lb.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:18:40:7310 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:18:41:1290 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:18:42:3311 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:18:43:3661 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:18:50:4685 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:18:51:7896 FFRKInspector: /dff/world/battles 08:18:55:7288 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:18:56:1639 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:18:57:4079 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:18:58:4360 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:19:01:1751 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:19:02:6092 FFRKInspector: /dff/world/battles 08:19:06:6615 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:19:07:0215 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:19:10:6377 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:19:11:9298 FFRKInspector: /dff/world/battles 08:19:14:9349 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:19:15:3150 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:19:17:5071 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:19:18:4481 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:19:18:5421 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:19:19:8052 FFRKInspector: /dff/world/battles 08:19:22:8114 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:19:23:2114 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:19:27:7977 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:19:29:1777 FFRKInspector: /dff/world/battles 08:19:33:1150 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:19:33:5400 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:19:37:5742 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:19:37:7912 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:19:38:5863 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:19:39:1443 FFRKInspector: /dff/world/battles 08:19:42:5565 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:19:42:9415 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:19:45:7147 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:19:46:3297 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:19:47:7118 FFRKInspector: /dff/world/battles 08:19:50:4210 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:19:50:8420 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:19:54:4352 FFRKInspector: /dff/party/list 08:19:57:6024 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:19:58:3704 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:20:02:6357 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:20:04:0187 FFRKInspector: /dff/world/battles 08:20:07:2489 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:20:07:6489 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:20:12:6092 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:20:13:2253 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:20:13:9593 FFRKInspector: /dff/world/battles 08:20:13:9973 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:20:17:8215 FFRKInspector: /dff/event/coliseum/11/begin_battle_session 08:20:18:2226 FFRKInspector: /dff/event/coliseum/11/begin_battle 08:20:19:1316 FFRKInspector: /dff/battle/?timestamp=1433290823&battle_id=713011 08:20:20:5667 FFRKInspector: /dff/event/coliseum/11/get_battle_init_data 08:20:30:8273 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:20:31:5913 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:20:45:6611 FFRKInspector: /dff/event/coliseum/11/win_battle 08:20:46:3832 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:20:47:4562 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:20:57:4288 FFRKInspector: /dff/?timestamp=1433290861 08:20:59:0069 FFRKInspector: /dff/update_user_session 08:20:59:5359 FFRKInspector: /dff/event/coliseum/11/get_data 08:21:00:1009 FFRKInspector: /dff/world/battles 08:21:00:5420 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:21:01:5890 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:21:05:3743 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:21:06:8233 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:21:08:5574 FFRKInspector: /dff/world/dungeons?world_id=113002 08:21:20:6301 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:21:21:2542 FFRKInspector: /dff/event/wday/9/get_data 08:21:21:6502 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:21:21:8482 FFRKInspector: /dff/world/dungeons?world_id=800001 08:21:27:4415 FFRKInspector: /dff/event/wday/9/enter_dungeon 08:21:29:1116 FFRKInspector: /dff/world/battles 08:21:37:7171 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:21:38:7942 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:21:39:3012 FFRKInspector: /dff/event/wday/9/leave_dungeon 08:21:39:8422 FFRKInspector: /dff/world/fail?dungeon_id=620031&tip_id=&kind=leave 08:21:46:8886 FFRKInspector: /dff/event/coliseum/11/enter_dungeon 08:21:48:5007 FFRKInspector: /dff/world/battles 08:21:52:2099 FFRKInspector: /dff/event/coliseum/11/begin_battle_session 08:21:52:8260 FFRKInspector: /dff/event/coliseum/11/begin_battle 08:21:53:7970 FFRKInspector: /dff/battle/?timestamp=1433290917&battle_id=713011 08:21:55:3781 FFRKInspector: /dff/event/coliseum/11/get_battle_init_data 08:21:57:8133 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:21:58:6093 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:22:12:3671 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:22:13:1491 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:22:22:7177 FFRKInspector: /dff/event/coliseum/11/win_battle 08:22:28:0000 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:22:28:8230 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:22:35:5354 FFRKInspector: /dff/?timestamp=1433290958 08:22:37:0795 FFRKInspector: /dff/update_user_session 08:22:37:6885 FFRKInspector: /dff/event/coliseum/11/get_data 08:22:38:2676 FFRKInspector: /dff/world/battles 08:22:42:6168 FFRKInspector: /dff/event/coliseum/11/leave_dungeon 08:22:44:0309 FFRKInspector: /dff/world/fail?dungeon_id=613003&tip_id=&kind=leave 08:22:45:5610 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:22:45:7610 FFRKInspector: /dff/world/dungeons?world_id=113002 08:22:46:3680 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:22:48:5902 FFRKInspector: /dff/party/list 08:23:01:1609 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:23:01:9209 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:23:03:4230 FFRKInspector: /dff/party/save 08:23:15:6957 FFRKInspector: /dff/party/save 08:23:19:7369 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:23:20:5620 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:23:21:4590 FFRKInspector: /dff/buddy/save_equipment 08:23:25:9113 FFRKInspector: /dff/buddy/save_equipment 08:23:29:8565 FFRKInspector: /dff/buddy/save_equipment 08:23:34:4158 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:23:35:2088 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:23:42:3112 FFRKInspector: /dff/buddy/save_equipment 08:23:47:0545 FFRKInspector: /dff/buddy/save_equipment 08:23:51:0147 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:23:51:8158 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:23:51:8168 FFRKInspector: /dff/buddy/save_equipment 08:24:09:6388 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:24:10:4868 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:24:26:2417 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:24:27:0118 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:24:27:3398 FFRKInspector: ffrk.denagames.com:443 08:24:28:1138 FFRKInspector: /dff/buddy/save_ability 08:24:33:0751 FFRKInspector: /dff/buddy/save_ability 08:24:39:0825 FFRKInspector: /dff/event/wday/9/get_data 08:24:39:5175 FFRKInspector: /dff/world/dungeons?world_id=800001 08:24:43:8547 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:24:44:9598 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:24:46:5359 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:24:51:8032 FFRKInspector: /dff/event/wday/9/enter_dungeon 08:24:53:2993 FFRKInspector: /dff/world/battles 08:24:58:9156 FFRKInspector: /dff/buddy/save_row 08:24:59:0726 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:25:00:1777 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:25:13:2984 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:25:14:2465 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:25:18:7097 FFRKInspector: /dff/event/wday/9/begin_battle_session 08:25:19:1928 FFRKInspector: /dff/event/wday/9/begin_battle 08:25:20:2868 FFRKInspector: /dff/battle/?timestamp=1433291124&battle_id=720094 08:25:21:7709 FFRKInspector: /dff/event/wday/9/get_battle_init_data 08:25:31:1875 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:25:32:0785 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:25:46:9064 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:25:47:7814 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:02:4012 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:02:7463 FFRKInspector: ffrk.denagames.com:443 08:26:03:0493 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:03:0783 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:03:1103 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:03:1913 FFRKInspector: /dff/_api_create_session 08:26:03:1983 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:03:2303 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:03:2623 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:03:4353 FFRKInspector: ffrk.denagames.com:443 08:26:03:8943 FFRKInspector: /dff/splash 08:26:05:6974 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:06:4845 FFRKInspector: /dff/ 08:26:06:6015 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:06:7385 fiddler.network.readresponse.failure> Session #9319 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:26:08:2746 FFRKInspector: /dff/update_user_session 08:26:08:2936 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:08:5986 FFRKInspector: /dff/google_play_achievement/get_achievements 08:26:12:0108 FFRKInspector: /dff/battle/?timestamp=1433291176&battle_id=720094 08:26:12:4278 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:13:8949 FFRKInspector: /dff/event/wday/9/get_battle_init_data 08:26:19:4782 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:20:3613 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:26:0656 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:27:6467 FFRKInspector: ffrk.denagames.com:443 08:26:28:0247 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:28:0567 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:28:0787 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:28:1577 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:28:1777 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:28:2067 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:28:4857 FFRKInspector: /dff/_api_create_session 08:26:28:7907 FFRKInspector: ffrk.denagames.com:443 08:26:29:2188 FFRKInspector: /dff/splash 08:26:33:7100 FFRKInspector: /dff/ 08:26:35:5101 FFRKInspector: /dff/update_user_session 08:26:35:8442 FFRKInspector: /dff/google_play_achievement/get_achievements 08:26:36:3002 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:37:1922 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:38:4823 fiddler.network.readresponse.failure> Session #9393 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:26:38:7153 FFRKInspector: /dff/battle/?timestamp=1433291202&battle_id=720094 08:26:40:5804 FFRKInspector: /dff/event/wday/9/get_battle_init_data 08:26:45:8047 fiddler.network.readresponse.failure> Session #9393 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:26:47:0268 fiddler.network.readresponse.failure> Session #9406 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:26:47:0878 fiddler.network.readresponse.failure> Session #9407 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:26:47:9578 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:54:0952 fiddler.network.readresponse.failure> Session #9408 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:26:56:1153 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:56:6153 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:56:9704 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:57:4514 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:58:0284 FFRKInspector: ffrk.denagames.com:443 08:26:58:6375 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:58:6705 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:58:6935 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:58:7655 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:58:7935 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:58:8145 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:26:59:0275 FFRKInspector: /dff/_api_create_session 08:26:59:1265 FFRKInspector: ffrk.denagames.com:443 08:26:59:9465 FFRKInspector: /dff/splash 08:27:04:7388 FFRKInspector: /dff/ 08:27:06:6879 FFRKInspector: /dff/update_user_session 08:27:07:2860 FFRKInspector: /dff/google_play_achievement/get_achievements 08:27:09:3311 fiddler.network.readresponse.failure> Session #9470 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:27:10:3921 FFRKInspector: /dff/battle/?timestamp=1433291234&battle_id=720094 08:27:12:4262 FFRKInspector: /dff/event/wday/9/get_battle_init_data 08:27:12:8793 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:27:13:7753 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:27:31:5973 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:27:32:1294 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:27:32:4154 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:27:33:5255 FFRKInspector: ffrk.denagames.com:443 08:27:34:2285 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:27:34:2525 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:27:34:2745 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:27:34:3145 FFRKInspector: /dff/_api_create_session 08:27:34:3365 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:27:34:3615 FFRKInspector: ffrk.denagames.com:443 08:27:34:3755 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:27:34:3955 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:27:35:1195 FFRKInspector: /dff/splash 08:27:39:8898 FFRKInspector: /dff/ 08:27:41:8769 FFRKInspector: /dff/update_user_session 08:27:42:4940 FFRKInspector: /dff/google_play_achievement/get_achievements 08:27:44:1581 fiddler.network.readresponse.failure> Session #9531 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:27:44:8521 fiddler.network.readresponse.failure> Session #9533 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:27:45:0101 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:27:45:3781 FFRKInspector: /dff/battle/?timestamp=1433291269&battle_id=720094 08:27:45:7121 fiddler.network.readresponse.failure> Session #9533 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:27:47:3692 FFRKInspector: /dff/event/wday/9/get_battle_init_data 08:27:48:2223 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:27:49:0423 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:28:07:8474 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:28:08:6925 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:28:11:3016 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:28:12:7727 FFRKInspector: ffrk.denagames.com:443 08:28:13:3827 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:28:13:4167 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:28:13:4397 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:28:13:4997 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:28:13:5017 FFRKInspector: /dff/_api_create_session 08:28:13:5417 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:28:13:5497 FFRKInspector: ffrk.denagames.com:443 08:28:13:5737 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:28:14:4078 FFRKInspector: /dff/splash 08:28:18:7400 FFRKInspector: /dff/ 08:28:20:5841 fiddler.network.readresponse.failure> Session #9335 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:28:20:7942 FFRKInspector: /dff/update_user_session 08:28:21:4322 FFRKInspector: /dff/google_play_achievement/get_achievements 08:28:22:8583 fiddler.network.readresponse.failure> Session #9600 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:28:23:4483 fiddler.network.readresponse.failure> Session #9335 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:28:23:5153 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:28:24:2054 FFRKInspector: /dff/battle/?timestamp=1433291308&battle_id=720094 08:28:24:3534 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:28:26:3095 FFRKInspector: /dff/event/wday/9/get_battle_init_data 08:28:30:4777 fiddler.network.readresponse.failure> Session #9602 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:28:30:7087 fiddler.network.readresponse.failure> Session #9600 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:28:33:2319 fiddler.network.readresponse.failure> Session #9611 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:28:34:0639 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:28:41:2113 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:28:41:9774 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:28:46:6416 fiddler.network.readresponse.failure> Session #9625 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:28:46:6716 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:28:47:4127 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:28:48:5777 FFRKInspector: ffrk.denagames.com:443 08:28:49:2498 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:28:49:3318 FFRKInspector: /dff/_api_create_session 08:28:49:4248 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:28:49:6348 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:28:49:6358 FFRKInspector: ffrk.denagames.com:443 08:28:50:4769 FFRKInspector: /dff/splash 08:28:54:7301 FFRKInspector: /dff/ 08:28:56:6952 FFRKInspector: /dff/update_user_session 08:28:56:8852 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:28:57:3332 FFRKInspector: /dff/google_play_achievement/get_achievements 08:28:58:4633 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:29:00:0294 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:29:01:0635 FFRKInspector: /dff/battle/?timestamp=1433291345&battle_id=720094 08:29:03:1376 FFRKInspector: /dff/event/wday/9/get_battle_init_data 08:29:13:3092 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:29:14:1542 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:29:19:8945 fiddler.network.readresponse.failure> Session #9691 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:29:20:1496 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:29:20:6986 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:29:21:1206 FFRKInspector: ffrk.denagames.com:443 08:29:21:7126 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:29:21:7426 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:29:21:7706 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:29:21:8236 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:29:21:8526 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:29:21:8636 FFRKInspector: /dff/_api_create_session 08:29:21:8806 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:29:21:9117 FFRKInspector: ffrk.denagames.com:443 08:29:22:6697 FFRKInspector: /dff/splash 08:29:26:8249 FFRKInspector: /dff/ 08:29:28:8570 FFRKInspector: /dff/update_user_session 08:29:28:9961 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:29:29:3811 FFRKInspector: /dff/google_play_achievement/get_achievements 08:29:29:8261 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:29:32:3662 FFRKInspector: /dff/battle/?timestamp=1433291376&battle_id=720094 08:29:34:3794 FFRKInspector: /dff/event/wday/9/get_battle_init_data 08:29:46:1630 fiddler.network.readresponse.failure> Session #9734 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:29:46:3640 fiddler.network.readresponse.failure> Session #9757 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:29:46:4431 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:29:47:3611 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:29:47:6061 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:29:48:4372 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:30:07:3463 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:30:08:4703 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:30:26:9194 fiddler.network.readresponse.failure> Session #9470 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:30:27:6194 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:30:27:8514 fiddler.network.readresponse.failure> Session #9798 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:30:27:9264 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:30:28:1224 fiddler.network.readresponse.failure> Session #9798 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:30:28:4745 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:30:28:7055 FFRKInspector: ffrk.denagames.com:443 08:30:28:7135 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:30:29:2845 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:30:29:3155 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:30:29:3395 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:30:29:3995 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:30:29:4155 FFRKInspector: /dff/_api_create_session 08:30:29:4265 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:30:29:4475 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:30:29:4675 FFRKInspector: ffrk.denagames.com:443 08:30:30:3316 FFRKInspector: /dff/splash 08:30:34:5928 FFRKInspector: /dff/ 08:30:36:5749 FFRKInspector: /dff/update_user_session 08:30:37:2470 FFRKInspector: /dff/google_play_achievement/get_achievements 08:30:37:6390 fiddler.network.readresponse.failure> Session #9831 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:30:37:9240 fiddler.network.readresponse.failure> Session #9831 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:30:39:2421 fiddler.network.readresponse.failure> Session #9835 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:30:40:1531 FFRKInspector: /dff/battle/?timestamp=1433291444&battle_id=720094 08:30:40:5241 fiddler.network.readresponse.failure> Session #9835 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:30:42:3983 FFRKInspector: /dff/event/wday/9/get_battle_init_data 08:30:43:8243 fiddler.network.readresponse.failure> Session #9835 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:30:44:8114 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:30:47:8506 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:30:48:7696 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:30:56:6781 fiddler.network.readresponse.failure> Session #9534 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:30:56:9451 fiddler.network.readresponse.failure> Session #9534 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:31:01:6554 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:31:02:5614 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:31:15:4631 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:31:16:3032 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:31:24:5367 fiddler.network.readresponse.failure> Session #9565 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:31:24:8167 fiddler.network.readresponse.failure> Session #9565 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:31:28:7929 FFRKInspector: ffrk.denagames.com:443 08:31:29:7530 FFRKInspector: /dff/event/wday/9/win_battle 08:31:30:2260 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=client-cf.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:31:30:4870 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=client-lb.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:31:32:1531 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:31:33:0111 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:31:44:8248 FFRKInspector: /dff/?timestamp=1433291508 08:31:46:3179 FFRKInspector: /dff/update_user_session 08:31:46:8949 FFRKInspector: /dff/world/battles 08:31:50:9582 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:31:52:0762 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:31:56:4485 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:31:56:6065 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:31:56:6875 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:31:56:7695 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:31:56:9595 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:31:56:9905 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:31:57:0195 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:32:09:5362 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:32:10:7093 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:32:29:8164 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:32:30:7054 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:32:49:4705 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:32:50:2916 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:33:04:1374 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:33:05:2014 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:33:23:2075 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:33:24:2745 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:33:41:3555 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:33:42:4096 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:33:58:4185 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:33:59:4075 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:34:18:4286 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:34:19:2657 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:34:37:0287 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:34:37:8257 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:34:48:1813 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:34:48:9884 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:34:49:7984 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:34:50:5965 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:34:51:4115 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:35:04:3062 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:35:05:0773 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:35:05:5383 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:35:17:8690 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:35:18:6731 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:35:34:5520 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:35:35:6310 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:35:36:3731 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:35:49:7538 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:35:50:8739 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:36:04:9517 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:36:05:9098 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:36:23:7898 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:36:24:7358 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:36:37:1625 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:36:39:5927 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:36:40:4707 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:36:56:3356 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:36:57:1737 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:37:14:0947 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:37:14:9967 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:37:32:1527 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:37:32:2437 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:37:32:2847 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:37:32:8447 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:37:33:6788 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:37:34:1958 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:37:34:2308 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:37:34:2618 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:37:35:4689 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:37:37:8850 FFRKInspector: ffrk.denagames.com:443 08:37:38:9091 FFRKInspector: /dff/event/wday/9/begin_battle_session 08:37:39:5361 FFRKInspector: /dff/event/wday/9/begin_battle 08:37:40:5782 FFRKInspector: /dff/battle/?timestamp=1433291864&battle_id=720095 08:37:42:2703 FFRKInspector: /dff/event/wday/9/get_battle_init_data 08:37:49:9907 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:37:51:3108 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:37:55:1270 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:37:55:1530 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:37:55:1800 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:37:55:3480 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:37:55:3770 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:37:55:3990 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:38:01:9494 [Fiddler] No HTTPS request was received from (chrome:7528) new client socket, port 49267. 08:38:04:4415 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:38:05:5966 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:38:18:7004 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:38:19:8314 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:38:32:9392 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:38:34:0782 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:38:35:3783 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:38:36:2674 FFRKInspector: ffrk.denagames.com:443 08:38:37:0134 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:38:37:0444 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:38:37:0684 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:38:37:0714 FFRKInspector: /dff/_api_create_session 08:38:37:1274 FFRKInspector: ffrk.denagames.com:443 08:38:37:1284 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:38:37:1574 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:38:37:1794 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:38:37:9565 FFRKInspector: /dff/splash 08:38:37:9965 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:38:42:9617 FFRKInspector: /dff/ 08:38:45:0049 FFRKInspector: /dff/update_user_session 08:38:45:5589 FFRKInspector: /dff/google_play_achievement/get_achievements 08:38:48:4971 FFRKInspector: /dff/battle/?timestamp=1433291932&battle_id=720095 08:38:49:5231 fiddler.network.readresponse.failure> Session #10223 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:38:49:5441 fiddler.network.readresponse.failure> Session #10225 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:38:49:8731 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:38:50:5222 FFRKInspector: /dff/event/wday/9/get_battle_init_data 08:38:52:1633 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:38:53:0623 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:39:07:9462 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:39:08:8562 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:39:23:6971 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:39:24:5841 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:39:30:8235 fiddler.network.readresponse.failure> Session #10267 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:39:31:0925 fiddler.network.readresponse.failure> Session #10267 raised exception System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host 08:39:31:4585 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:39:35:1317 FFRKInspector: ffrk.denagames.com:443 08:39:35:6568 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:39:35:6898 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:39:35:7188 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:39:35:7898 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:39:35:8208 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:39:35:8428 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:39:35:8808 FFRKInspector: /dff/_api_create_session 08:39:36:7608 FFRKInspector: ffrk.denagames.com:443 08:39:37:4399 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:39:37:5729 FFRKInspector: /dff/splash 08:39:38:6589 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:39:39:6540 FFRKInspector: /dff/ 08:39:41:6321 FFRKInspector: /dff/update_user_session 08:39:42:2661 FFRKInspector: /dff/google_play_achievement/get_achievements 08:39:45:0123 FFRKInspector: /dff/battle/?timestamp=1433291989&battle_id=720095 08:39:45:9053 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:39:47:0324 FFRKInspector: /dff/event/wday/9/get_battle_init_data 08:39:56:5740 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:39:57:4730 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:40:05:2394 FFRKInspector: /dff/event/wday/9/win_battle 08:40:15:3900 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:40:16:5351 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:40:24:2875 FFRKInspector: /dff/?timestamp=1433292027 08:40:25:8806 FFRKInspector: /dff/update_user_session 08:40:26:4637 FFRKInspector: /dff/world/battles 08:40:32:0260 FFRKInspector: /dff/party/list 08:40:35:6612 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:40:36:7743 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:40:55:9303 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:40:57:0494 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:41:12:1993 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:41:13:0743 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:41:26:9761 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:41:28:2422 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:41:28:9222 FFRKInspector: ffrk.denagames.com:443 08:41:29:6773 FFRKInspector: /dff/equipment/enhance 08:41:29:7983 FFRKInspector: ffrk.denagames.com:443 08:41:29:7993 FFRKInspector: ffrk.denagames.com:443 08:41:29:8153 FFRKInspector: ffrk.denagames.com:443 08:41:29:8233 FFRKInspector: ffrk.denagames.com:443 08:41:29:9673 FFRKInspector: /dff/static/lang/image/equipment/21008006/21008006_03_112.png 08:41:30:1783 FFRKInspector: /dff/static/lang/image/equipment/22051002/22051002_01_112.png 08:41:30:5693 FFRKInspector: /dff/static/lang/image/equipment/22055002/22055002_01_112.png 08:41:30:5863 FFRKInspector: /dff/static/lang/image/equipment/24098003/24098003_03_112.png 08:41:30:6123 FFRKInspector: /dff/static/lang/image/equipment/21008002/21008002_01_112.png 08:41:30:6453 FFRKInspector: /dff/static/lang/image/equipment/21013002/21013002_01_112.png 08:41:31:7514 FFRKInspector: /dff/equipment/enhance 08:41:40:5679 FFRKInspector: /dff/equipment/evolve 08:41:42:3470 FFRKInspector: /dff/equipment/evolve 08:41:46:1022 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:41:47:2843 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:42:03:4472 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:42:04:5503 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:42:11:0116 FFRKInspector: /dff/event/wday/9/begin_battle_session 08:42:11:6527 FFRKInspector: /dff/event/wday/9/begin_battle 08:42:12:9138 FFRKInspector: /dff/battle/?timestamp=1433292136&battle_id=720096 08:42:14:4538 FFRKInspector: /dff/event/wday/9/get_battle_init_data 08:42:19:7031 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:42:20:6142 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:42:37:4842 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:42:38:3502 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:42:38:7622 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:42:55:2962 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:42:56:1772 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:43:13:9852 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:43:14:7813 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:43:29:3031 FFRKInspector: ffrk.denagames.com:443 08:43:29:5931 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:43:30:3832 FFRKInspector: /dff/event/wday/9/win_battle 08:43:30:6302 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:43:48:2742 FFRKInspector: /dff/?timestamp=1433292231 08:43:49:6493 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:43:49:7983 FFRKInspector: /dff/update_user_session 08:43:50:2803 FFRKInspector: /dff/event/wday/9/get_data 08:43:50:7333 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:43:50:8614 FFRKInspector: /dff/world/dungeons?world_id=800001 08:43:53:9225 FFRKInspector: /dff/party/list 08:44:03:7841 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:44:04:7981 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:44:21:8061 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:44:22:6572 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:44:41:4162 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:44:42:2003 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:44:54:9850 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:44:55:8461 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:45:14:6751 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:45:15:7362 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:45:30:7361 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:45:31:7431 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:45:49:8702 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:45:51:0402 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:45:56:8606 FFRKInspector: ffrk.denagames.com:443 08:45:57:5706 FFRKInspector: /dff/equipment/enhance 08:45:57:8296 FFRKInspector: ffrk.denagames.com:443 08:45:57:8356 FFRKInspector: /dff/static/lang/image/equipment/21002007/21002007_03_112.png 08:45:58:2146 FFRKInspector: /dff/static/lang/image/equipment/24098003/24098003_03_112.png 08:45:58:8337 FFRKInspector: /dff/equipment/enhance 08:46:04:2170 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:46:05:3040 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:46:08:5152 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:46:22:4580 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:46:23:5811 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:46:42:7392 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:46:43:7102 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:46:58:5751 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:46:59:5321 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:47:18:4612 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:47:19:3603 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:47:36:2532 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:47:37:1953 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:47:39:5194 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:47:55:1303 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:47:56:2964 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:48:14:4474 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:48:15:6125 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:48:32:7065 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:48:33:8625 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:48:41:9860 [Fiddler] No HTTPS request was received from (chrome:7528) new client socket, port 49612. 08:48:49:9885 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:48:51:1775 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:49:10:2496 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:49:11:3687 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:49:22:5293 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:49:22:5603 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:49:22:5853 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The context has expired and can no longer be used on pipe to (CN=init.itunes.apple.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:49:27:5166 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:49:28:6677 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:49:31:9189 FFRKInspector: ffrk.denagames.com:443 08:49:32:4549 FFRKInspector: /dff/event/wday/9/enter_dungeon 08:49:33:9770 FFRKInspector: /dff/world/battles 08:49:42:8305 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:49:44:0566 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:50:01:2055 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:50:02:3386 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:50:21:5027 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:50:22:6288 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:50:38:8117 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:50:39:9277 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:50:54:0646 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:50:55:0276 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:51:13:8687 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:51:14:6627 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:51:29:5026 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:51:30:3326 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:51:48:1737 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:51:49:2107 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:52:04:2926 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:52:05:3396 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:52:24:4097 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:52:25:4528 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:52:40:3106 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:52:44:5619 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:52:45:6509 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:53:03:7500 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:53:04:8020 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:53:20:9000 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:53:21:7600 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:53:39:5810 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:53:40:3371 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:53:56:1660 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:53:56:9630 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:54:11:7919 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:54:12:8239 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:54:27:9268 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:54:28:9699 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:54:45:0018 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:54:46:0608 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:55:02:1617 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:55:02:9658 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:55:18:8047 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:55:19:6107 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:55:38:4488 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:55:39:2139 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:55:52:0726 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:55:53:1757 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:56:07:2465 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:56:08:2935 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:56:23:3394 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:56:24:1304 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:56:37:9462 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:56:38:7643 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:56:54:6612 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:56:55:7742 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:57:12:8372 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:57:13:8633 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:57:32:8884 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:57:33:7524 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:57:41:1208 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:57:41:9619 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:57:42:7659 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:57:49:5623 [Fiddler] No HTTPS request was received from (chrome:7528) new client socket, port 49912. 08:57:50:5874 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:57:51:3634 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:57:58:5578 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:58:09:1644 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:58:09:9945 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:58:28:7986 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:58:29:3546 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=d.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:58:29:6346 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:58:46:5166 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:58:47:6146 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:59:04:7006 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com). 08:59:05:7807 !SecureClientPipeDirect failed: System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The certificate chain was issued by an authority that is not trusted on pipe to (CN=notify9.dropbox.com, O=DO_NOT_TRUST_BC, OU=Created by http://www.fiddler2.com).

SkyfireX commented 9 years ago

Interestingly, now I restarted fiddle I see this in the dungeon instead

image

I guess it's more likely that somehow when I entered the dungeon, I didn't pull a fresh database or something?

cppisking commented 9 years ago

Hmm, are you putting your computer to sleep and waking up? Or just idling for a long time and coming back? You could be getting a broken connection or something, which could possibly explain your results.

SkyfireX commented 9 years ago

yeah It was left overnight while I used it to run other stuff.

so for this case that could be it, not sure about the previous case though. :P

karryt commented 9 years ago

Yeah, in the first screenshot you can see it says disconnected in the fiddler plugin window (bottom left of the right pane). I have that happen often since it's installed on my laptop and it is set to sleep. Only way I know to get it reconnected is to restart Fiddler.

I did a bunch of runs in today's daily on heroic to level up some gear so 3-4 full runs were probably from me earlier this morning.

cppisking commented 9 years ago

I can try to go over the reconnect logic, maybe that's it On Tue, Jun 2, 2015 at 6:58 PM karryt notifications@github.com wrote:

Yeah, in the first screenshot you can see it says disconnected in the fiddler plugin window (bottom left of the right pane). I have that happen often since it's installed on my laptop, only way I know to get it reconnected is to restart Fiddler.

I did a bunch of runs in today's daily on heroic to level up some gear so 3-4 full runs were probably from me earlier this morning.

— Reply to this email directly or view it on GitHub https://github.com/cppisking/ffrk-inspector/issues/49#issuecomment-108159381 .

cppisking commented 9 years ago

I have an idea what's causing this. Or at least, I found a definite disconnect problem that there is no recovery from short of restarting Fiddler. Basically if the server drops your connection (which it could do for any number of reasons) or you lose connection to the server for any reason, then the next time you try to do something with the database I encounter an exception in the code which causes the database thread to stop processing requests forever.

I'm not sure if this is the same thing you're seeing, because if you encounter this then the status at the bottom left should change to Disconnected and stay that way until you restart.

In addition to this, I'm adding more logging so that once I release the next update, should issues continue to arise, I'll have more information to help figure out where it's going wrong.

cppisking commented 9 years ago

I have a fix for this issue locally. It will be in the next release. I'm going to leave this issue open for now, in case it turns out to be a different issue.

After this fix goes live, if the connection to the database has been severed, it will automatically re-establish the connection the next time you attempt to run a query.

In the meantime, if you feel up to it, I would suggest heading over to the Fiddler support forums and asking for advice on that annoying error that you see thousands of times.

karryt commented 9 years ago

I don't think that was the issue with the one level that didn't seem to record for me, it happened in the middle of two other runs that did record and I didn't restart Fiddler. I know about the disconnect state though because I take my laptop to and from work and almost always after waking up from sleep I need to restart fiddler. I'd love for the connection to be recovered without restarting though, but it's really not a big deal.

As for the dropbox errors above I'd hazard a guess that the client checks the cert chain to make sure they aren't getting MITM'd like the proxy is doing. Wouldn't be surprised if those apps don't work quite right when going through the proxy. Maybe excluding the domains (I think you can do that?) would get rid of them to make the log a little cleaner.

cppisking commented 9 years ago

I'm going to close this issue now that the database reconnection logic is in, and there's been no activity on this issue for a while. Feel free to re-open it though if you think you see it again.