Search found 40 matches

by ngillet
Thu Apr 28, 2022 10:58 am
Forum: General
Topic: Document History
Replies: 28
Views: 294416

Re: Document History

I have drag and drop a pdf file but no hit comes to the package. Initially I have installed vs2015 then Select client then the SDK .Is there any important thing which I missed out and because of that I am facing this problem?
by ngillet
Thu Apr 21, 2022 10:42 am
Forum: General
Topic: Document History
Replies: 28
Views: 294416

Re: Document History

when I run this package and then drag and drop a document in SoftPro for this event hit does not come to any break point which I have put into the package and shows unloaded logs for some dlls. But when I build this package no unloaded logs are showing for dlls. When I open the SoftPro it shows a er...
by ngillet
Wed Apr 20, 2022 10:03 am
Forum: General
Topic: Document History
Replies: 28
Views: 294416

Re: Document History

I have resolve that error but while running this package softpro opened then I drag and drop a document in Attachment->buyer folder .I have put break point in package but hit do not goes to break point.In the output console I find many logs. These logs are: Select.exe' (CLR v4.0.30319: Domain 2): Un...
by ngillet
Tue Apr 19, 2022 10:01 am
Forum: General
Topic: Document History
Replies: 28
Views: 294416

Re: Document History

I have solve the error of GetService <> but I am not able to run this package its shows the popup box.
I am sharing image of this popup box.
by ngillet
Fri Apr 15, 2022 1:33 am
Forum: General
Topic: Document History
Replies: 28
Views: 294416

Re: Document History

I am not able to run the package because it shows error in GetService<> that it is not exist in the current context and according to me I have added all the required dlls to reference ,here I send image of all dlls which I added in my package. Suppose if this error is removed then I will run my pack...
by ngillet
Thu Apr 14, 2022 11:14 am
Forum: General
Topic: Document History
Replies: 28
Views: 294416

Re: Document History

Please review the below code to verfiy that I write correct code for ordernumber : private void Order_AttachmentAdded(object sender, AttachmentItemEventArgs e) { if (e.Item is IAttachmentFile) { IAttachmentFile file = (IAttachmentFile)e.Item; string extension = file.Extension; // i.e. ".xml&quo...
by ngillet
Wed Apr 13, 2022 10:03 am
Forum: General
Topic: Document History
Replies: 28
Views: 294416

Re: Document History

In the below code I want ordernumber of a order in which document are drag and drop in attachment folder and title of that document using SoftPro.Accounting.Client; using SoftPro.ClientModel; using SoftPro.EntityModel.Packaging; using SoftPro.OrderTracking.Client; using SoftPro.OrderTracking.Client....
by ngillet
Tue Apr 12, 2022 10:36 am
Forum: General
Topic: Document History
Replies: 28
Views: 294416

Re: Document History

Please provide solution for above post also Normally in .net we put database connection strings and urls in web.config file and gets its value by using "ConfigurationManager.AppSettings["BaseAddress"];" how could I achieve this in package also because I have added config file but...
by ngillet
Mon Apr 11, 2022 10:06 am
Forum: General
Topic: Document History
Replies: 28
Views: 294416

Re: Document History

In the below code I want ordernumber of a order in which document are drag and drop in attachment folder and title of that document .I will send these two in parameter as payload in api call when attachmentadded event trigger. And it show red line in "GetService<>()" with message that it i...
by ngillet
Mon Apr 11, 2022 8:37 am
Forum: General
Topic: Issue with SoftPro server
Replies: 7
Views: 9118

Re: Issue with SoftPro server

I have checked the event logs but I find no error in it. private static NetworkCredential creds = new NetworkCredential(username, password, "[SERVER]");------This is the line when I run the application which is in Visual Studio through local host it give me documents in the output successf...