Thanks, sorry I did not mention, I have looked into that file but it does not give me a clue how to solve:

 

*** Recovery started at Thu Nov 16 19:23:55 2017
     Current default directory: c:\intersystems\cache\mgr
     Log file directory: .\
     WIJ file spec: c:\intersystems\cache\mgr\CACHE.WIJ
Recovering local (c:\intersystems\cache\mgr\CACHE.WIJ) image journal file...
Starting WIJ recovery for 'c:\intersystems\cache\mgr\CACHE.WIJ'.
WIJ file not found.
Exiting with status 3 (Success)
11/16/17-19:24:05:505 (9024) 2 cache.ids file was created by node 139407LINOLP, and this machine is W1064PRO1511
11/16/17-19:24:11:537 ( 8496) 3 cctrl.dll (error during startup):(289) Opstarten cache mislukt: besturingsproces van cache is abnormaal beëindigd (afsluitcode = 0).

Hi Vitaliy,

Thanks for you're response and code sample!

However I still have the behavior.

Could I be the issue that I am using a datacontroller / datamodel?

I am interested in the solution for reason that I do use a lot of similar forms.

see code:

Could the issue be something with the dataBinding?

Sorry I do not know how to present the sample code as you do!

Thanks Michael and Stephen for you're response:

I am using 2016.2.0 windows x86-64

I did try to 'simplify ' and exclude fields in the sql statement without results:

 

this is the sql statement:

Maybe accessing the data with objectscript instead of sql is an alternative to retrieve the data?

My goal is to examine what went wrong to prevent loosing lots of data in future.

Thanks,

Hi, I am building an Email client in Cache, and succeeded to send out emails (smpt)

On downloading emails I have tested the pop3 sample from the InterSystems documentation:

ClassMethod YPOPsAsPOP3() As %Net.POP3
{
  //Sample from InterSystems
  Set server=##class(%Net.POP3).%New()
  
  //YPOPs uses the default port
  //but let's set it anyway
  Set server.port=110

  //just in case we plan to fetch any messages
  //that have attachments
  //Set server.StoreAttachToFile=1
  //Set server.StoreInlineToFile=1
  //Set server.AttachDir="c:\DOWNLOADS\"
  
  //local host acts as the server
  Set servername="mail.xxxxxxxx.nl"
  //YPOPs works with a Yahoo email account
  Set user="marco@xxxx.nl"
  Set pass="XXXXXXXX"
  
  Set status=server.Connect(servername,user,pass)
  
  If $$$ISERR(status)
  {

    Do $System.Status.DisplayError(status)
    Quit $$$ERROR()
    }
    
    Do ##class(ZenMail.MailFunctions).ShowMailbox(server)
    Do ##class(ZenMail.MailFunctions).FetchMailbox(server)
    Do ##class(ZenMail.MailFunctions).ShowMsgInfo(1)
    
  Quit server
}

I succeed to get information out of my mailbox however with the following error(s):

and at the end:

has anybody an idea how to solve this? for me this error is a bit a flurry....

I would like to invite people to work on a working example with complete working code base rather than open answers

which do not contribute to a completed working topic.

Thanks in advance!