Is it possible to call a method in dll inside OSB
I am developing a new OSB service to replace an old .NET service.
The service has Kentico CMS as a backend and it's currently calling it using a dll provided by Kentico to call -for example- GetUserProfile (i.e. the dll is included inside the old service and its methods are called directly)
Is it possible to include a dll in OSB -or refer to it- ? this will need a setup for the .NET platform as I understand -I don't have mush knowledge in .NET-
(kindly provide a reference for your answer as I didn't find)
The other alternative is to ask the backend to provide a Webservice instead that I can consume, I need to know the answer for the previous question to decide.
I am using OSB 12c
dll soa kentico osb
add a comment |
I am developing a new OSB service to replace an old .NET service.
The service has Kentico CMS as a backend and it's currently calling it using a dll provided by Kentico to call -for example- GetUserProfile (i.e. the dll is included inside the old service and its methods are called directly)
Is it possible to include a dll in OSB -or refer to it- ? this will need a setup for the .NET platform as I understand -I don't have mush knowledge in .NET-
(kindly provide a reference for your answer as I didn't find)
The other alternative is to ask the backend to provide a Webservice instead that I can consume, I need to know the answer for the previous question to decide.
I am using OSB 12c
dll soa kentico osb
add a comment |
I am developing a new OSB service to replace an old .NET service.
The service has Kentico CMS as a backend and it's currently calling it using a dll provided by Kentico to call -for example- GetUserProfile (i.e. the dll is included inside the old service and its methods are called directly)
Is it possible to include a dll in OSB -or refer to it- ? this will need a setup for the .NET platform as I understand -I don't have mush knowledge in .NET-
(kindly provide a reference for your answer as I didn't find)
The other alternative is to ask the backend to provide a Webservice instead that I can consume, I need to know the answer for the previous question to decide.
I am using OSB 12c
dll soa kentico osb
I am developing a new OSB service to replace an old .NET service.
The service has Kentico CMS as a backend and it's currently calling it using a dll provided by Kentico to call -for example- GetUserProfile (i.e. the dll is included inside the old service and its methods are called directly)
Is it possible to include a dll in OSB -or refer to it- ? this will need a setup for the .NET platform as I understand -I don't have mush knowledge in .NET-
(kindly provide a reference for your answer as I didn't find)
The other alternative is to ask the backend to provide a Webservice instead that I can consume, I need to know the answer for the previous question to decide.
I am using OSB 12c
dll soa kentico osb
dll soa kentico osb
edited Nov 20 '18 at 16:40
osama yaccoub
asked Nov 20 '18 at 16:10
osama yaccoubosama yaccoub
853823
853823
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The Kentico Documentation has information regarding connecting your external application to Kentico.
The short and sweet is:
- Connect to the Kentico database - in your web.config or app.config add a connection string element and ensure it's named
CMSConnectionString
- Integrate the Kentico API libraries - add the Kentico.Libraries NuGet package to your solution
- Initialize the Kentico application - in the
Global.asaxexecute theApplication_BeginRequestevent
but my application (OSB) is java not .NET and is not on the same network as Kentico (i.e. doesn't have direct connection to the DB) , and this is my problem !! the old system that I want to replace doesn't have this constraint
– osama yaccoub
Nov 21 '18 at 9:39
thank you for the reference, I checked the documentation, and I think this will be the appropriate solution : docs.kentico.com/k11/integrating-3rd-party-systems/… I will ask the Kentico owner to avail it as Rest Webservice
– osama yaccoub
Nov 21 '18 at 9:48
For Java application you are left either with Kentico REST or Kentico application developer could actually write a WebAPI docs.kentico.com/k11/developing-websites/… tailored to your precise needs where he would set up endpoints and those would returned serialized objects you can process in your service...
– Michal Samuhel
Nov 21 '18 at 11:11
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53397075%2fis-it-possible-to-call-a-method-in-dll-inside-osb%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The Kentico Documentation has information regarding connecting your external application to Kentico.
The short and sweet is:
- Connect to the Kentico database - in your web.config or app.config add a connection string element and ensure it's named
CMSConnectionString
- Integrate the Kentico API libraries - add the Kentico.Libraries NuGet package to your solution
- Initialize the Kentico application - in the
Global.asaxexecute theApplication_BeginRequestevent
but my application (OSB) is java not .NET and is not on the same network as Kentico (i.e. doesn't have direct connection to the DB) , and this is my problem !! the old system that I want to replace doesn't have this constraint
– osama yaccoub
Nov 21 '18 at 9:39
thank you for the reference, I checked the documentation, and I think this will be the appropriate solution : docs.kentico.com/k11/integrating-3rd-party-systems/… I will ask the Kentico owner to avail it as Rest Webservice
– osama yaccoub
Nov 21 '18 at 9:48
For Java application you are left either with Kentico REST or Kentico application developer could actually write a WebAPI docs.kentico.com/k11/developing-websites/… tailored to your precise needs where he would set up endpoints and those would returned serialized objects you can process in your service...
– Michal Samuhel
Nov 21 '18 at 11:11
add a comment |
The Kentico Documentation has information regarding connecting your external application to Kentico.
The short and sweet is:
- Connect to the Kentico database - in your web.config or app.config add a connection string element and ensure it's named
CMSConnectionString
- Integrate the Kentico API libraries - add the Kentico.Libraries NuGet package to your solution
- Initialize the Kentico application - in the
Global.asaxexecute theApplication_BeginRequestevent
but my application (OSB) is java not .NET and is not on the same network as Kentico (i.e. doesn't have direct connection to the DB) , and this is my problem !! the old system that I want to replace doesn't have this constraint
– osama yaccoub
Nov 21 '18 at 9:39
thank you for the reference, I checked the documentation, and I think this will be the appropriate solution : docs.kentico.com/k11/integrating-3rd-party-systems/… I will ask the Kentico owner to avail it as Rest Webservice
– osama yaccoub
Nov 21 '18 at 9:48
For Java application you are left either with Kentico REST or Kentico application developer could actually write a WebAPI docs.kentico.com/k11/developing-websites/… tailored to your precise needs where he would set up endpoints and those would returned serialized objects you can process in your service...
– Michal Samuhel
Nov 21 '18 at 11:11
add a comment |
The Kentico Documentation has information regarding connecting your external application to Kentico.
The short and sweet is:
- Connect to the Kentico database - in your web.config or app.config add a connection string element and ensure it's named
CMSConnectionString
- Integrate the Kentico API libraries - add the Kentico.Libraries NuGet package to your solution
- Initialize the Kentico application - in the
Global.asaxexecute theApplication_BeginRequestevent
The Kentico Documentation has information regarding connecting your external application to Kentico.
The short and sweet is:
- Connect to the Kentico database - in your web.config or app.config add a connection string element and ensure it's named
CMSConnectionString
- Integrate the Kentico API libraries - add the Kentico.Libraries NuGet package to your solution
- Initialize the Kentico application - in the
Global.asaxexecute theApplication_BeginRequestevent
answered Nov 20 '18 at 23:35
Brenden KehrenBrenden Kehren
4,312922
4,312922
but my application (OSB) is java not .NET and is not on the same network as Kentico (i.e. doesn't have direct connection to the DB) , and this is my problem !! the old system that I want to replace doesn't have this constraint
– osama yaccoub
Nov 21 '18 at 9:39
thank you for the reference, I checked the documentation, and I think this will be the appropriate solution : docs.kentico.com/k11/integrating-3rd-party-systems/… I will ask the Kentico owner to avail it as Rest Webservice
– osama yaccoub
Nov 21 '18 at 9:48
For Java application you are left either with Kentico REST or Kentico application developer could actually write a WebAPI docs.kentico.com/k11/developing-websites/… tailored to your precise needs where he would set up endpoints and those would returned serialized objects you can process in your service...
– Michal Samuhel
Nov 21 '18 at 11:11
add a comment |
but my application (OSB) is java not .NET and is not on the same network as Kentico (i.e. doesn't have direct connection to the DB) , and this is my problem !! the old system that I want to replace doesn't have this constraint
– osama yaccoub
Nov 21 '18 at 9:39
thank you for the reference, I checked the documentation, and I think this will be the appropriate solution : docs.kentico.com/k11/integrating-3rd-party-systems/… I will ask the Kentico owner to avail it as Rest Webservice
– osama yaccoub
Nov 21 '18 at 9:48
For Java application you are left either with Kentico REST or Kentico application developer could actually write a WebAPI docs.kentico.com/k11/developing-websites/… tailored to your precise needs where he would set up endpoints and those would returned serialized objects you can process in your service...
– Michal Samuhel
Nov 21 '18 at 11:11
but my application (OSB) is java not .NET and is not on the same network as Kentico (i.e. doesn't have direct connection to the DB) , and this is my problem !! the old system that I want to replace doesn't have this constraint
– osama yaccoub
Nov 21 '18 at 9:39
but my application (OSB) is java not .NET and is not on the same network as Kentico (i.e. doesn't have direct connection to the DB) , and this is my problem !! the old system that I want to replace doesn't have this constraint
– osama yaccoub
Nov 21 '18 at 9:39
thank you for the reference, I checked the documentation, and I think this will be the appropriate solution : docs.kentico.com/k11/integrating-3rd-party-systems/… I will ask the Kentico owner to avail it as Rest Webservice
– osama yaccoub
Nov 21 '18 at 9:48
thank you for the reference, I checked the documentation, and I think this will be the appropriate solution : docs.kentico.com/k11/integrating-3rd-party-systems/… I will ask the Kentico owner to avail it as Rest Webservice
– osama yaccoub
Nov 21 '18 at 9:48
For Java application you are left either with Kentico REST or Kentico application developer could actually write a WebAPI docs.kentico.com/k11/developing-websites/… tailored to your precise needs where he would set up endpoints and those would returned serialized objects you can process in your service...
– Michal Samuhel
Nov 21 '18 at 11:11
For Java application you are left either with Kentico REST or Kentico application developer could actually write a WebAPI docs.kentico.com/k11/developing-websites/… tailored to your precise needs where he would set up endpoints and those would returned serialized objects you can process in your service...
– Michal Samuhel
Nov 21 '18 at 11:11
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53397075%2fis-it-possible-to-call-a-method-in-dll-inside-osb%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
