Search found 25 matches

by HariK
Fri Dec 16, 2016 9:13 pm
Forum: Integration Development
Topic: Override Attachment Source
Replies: 5
Views: 1020

Re: Override Attachment Source

Ok, I have a related question In couple of posts, see links below, it is mentioned that we can change the default print job hander to save the attachment data in custom DMS instead of using softpro blob storage http://www.softprocorp.com/devforum/viewtopic.php?f=6&t=89&p=525&hilit=IDocum...
by HariK
Fri Dec 16, 2016 1:21 pm
Forum: General
Topic: Changing SoftPro Document Storage
Replies: 8
Views: 1462

Re: Changing SoftPro Document Storage

What is the process to change softpro document storage to use a custom DMS, in softpro 4.1
I don't see IDocumentStorage interface in softpro 4.1

Can you point me to any documentation which does this

Thanks
Hari
by HariK
Thu Dec 15, 2016 2:21 pm
Forum: Integration Development
Topic: Override Attachment Source
Replies: 5
Views: 1020

Re: Override Attachment Source

Thanks for looking into this Mike.

Can the attachment section (see attached screenshot), read data from more than one data sources
It can continue to pull attachments from the Order-Attachment system, can we add more custom sources where it can pull data from
by HariK
Wed Dec 14, 2016 3:51 pm
Forum: Integration Development
Topic: Override Attachment Source
Replies: 5
Views: 1020

Override Attachment Source

Hi All - We use a custom document management system instead of using built in softpro document management system We have a registered a new print job hander, so that whenever user publishes a document from softpro it will end up in our custom DMS. Currently when a user goes to attachment section wit...
by HariK
Wed May 13, 2015 6:23 pm
Forum: Integration Development
Topic: License error when adding Server-side Packages
Replies: 1
Views: 492

License error when adding Server-side Packages

Hi, I am looking at adding a server side package and seeing this error "Package license validation failed." in the eventlogs. Can you confirm if we need to have a license for adding these packages If yes how do we add one to the serverside package. Here are the steps: Using softpro templat...
by HariK
Mon May 19, 2014 3:36 pm
Forum: Integration Development
Topic: Error adding Attorney contact
Replies: 1
Views: 485

Re: Error adding Attorney contact

Interesting, it works when I use ((IList)spOrder["Contacts"]).Add(attorneyContact); Question is: do you know why it fails when I use "spDynamicOrder.Contacts.Add(attorneyContact);" Here is the complete code snippet which works IOrder spOrder = GetOrderFromSomeWhere(); dynamic att...
by HariK
Mon May 19, 2014 3:26 pm
Forum: Integration Development
Topic: Error adding Attorney contact
Replies: 1
Views: 485

Error adding Attorney contact

Hi, We are seeing following error when adding Attorney or Appraiser contact The best overloaded method match for 'SoftPro.EntityModel.Collections.SnapshotCollection<Contact>.Add(Contact)' has some invalid arguments Can you look into this and suggest. IOrder spOrder = GetOrderFromSomeWhere(); dynamic...
by HariK
Thu May 15, 2014 4:00 pm
Forum: Integration Development
Topic: Is CreatedBy Propery on Note object readonly?
Replies: 2
Views: 624

Re: Is CreatedBy Propery on Note object readonly?

Thanks for the confirmation Joni, looks like its a change in 3.0 In 2.6 we were able to set the user our self var newNote = order.Note.CreateNew(); newNote.Content = note.Details; newNote.CreateDate = note.Date; newNote.Trustee = order.AllUsers.FirstOrDefault(t => string.Equals(t.FullName, "Use...
by HariK
Thu May 15, 2014 3:56 pm
Forum: Integration Development
Topic: Order History
Replies: 2
Views: 658

Re: Order History

Thanks Graham, this should help.
Will ping back if I have more questions in this area
by HariK
Thu May 15, 2014 3:55 pm
Forum: Integration Development
Topic: ValidationMessage
Replies: 1
Views: 591

ValidationMessage

In 2.6, if there are warnings and/or errors, they were returned in the ValidationMessage[] parameter //Softpro 2.6 ValidationMessage[] messages; orderTracking.SaveOrder(order, out messages); How are warning messages returned to the caller in 3.0? please confirm