SSO of custom web app and ALBPM

Hi
Recently we have to integrate a custom app and ALBPM on weblogic server,
we want to implement Single Sign On between the custom app and ALBPM workspace,
hopefully on application level
(our custom application is using acegi security backed by LDAP right now)
but seems the authentication of ALBPM is quite proprietary and tends to be container-managed.
could anyone can kindly tell me how should we get start on this?
Thanks

Hello guys,
someone knows how to implements "fuego.workspace.security.SSOWorkspaceLoginInterface" or find some API documentation, javadoc about this interface?
for now, Im try to find some help or documentation about SSO in workspace, So when I did decompilation to find more answers.
package fuego.workspace.security;
import fuego.sso.SSOLoginException;
import fuego.web.SSOUserLoginInterface;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public interface SSOWorkspaceLoginInterface extends SSOUserLoginInterface {
     public abstract void setupAuthenticatedSession(
               HttpServletRequest httpservletrequest,
               HttpServletResponse httpservletresponse) throws SSOLoginException;
     public abstract void processRequest(HttpServletRequest httpservletrequest,
               HttpServletResponse httpservletresponse) throws SSOLoginException;
package fuego.web;
public interface SSOUserLoginInterface extends fuego.sso.SSOUserLoginInterface {
package fuego.sso;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
// Referenced classes of package fuego.sso:
//            SSOLoginException
public interface SSOUserLoginInterface {
     public abstract String getUser(HttpServletRequest httpservletrequest,
               HttpServletResponse httpservletresponse) throws SSOLoginException;
     public abstract String getPassword(HttpServletRequest httpservletrequest,
               HttpServletResponse httpservletresponse) throws SSOLoginException;
     public abstract boolean skipFDIAuthentication();
     public abstract String getLogoutURL();
     public abstract String getLogoutRelativePath();
}And I decompile fuego.workspace.security.SSOWorkspaceLogin to see the logic inside this classe
package fuego.workspace.security;
import fuego.sso.SSOLoginException;
import fuego.web.SSOUserLogin;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
// Referenced classes of package fuego.workspace.security:
//            SSOWorkspaceLoginInterface
public class SSOWorkspaceLogin extends SSOUserLogin implements
          SSOWorkspaceLoginInterface {
     public SSOWorkspaceLogin() {
     public void setupAuthenticatedSession(
               HttpServletRequest httpservletrequest,
               HttpServletResponse httpservletresponse) throws SSOLoginException {
     public void processRequest(HttpServletRequest httpservletrequest,
               HttpServletResponse httpservletresponse) throws SSOLoginException {
package fuego.web;
// Referenced classes of package fuego.web:
//            SSOUserLoginInterface
public class SSOUserLogin extends fuego.sso.SSOUserLogin implements
          SSOUserLoginInterface {
     public SSOUserLogin() {
}And here i think he uses some obfuscator, cause i cant decompile implementation method :(
package fuego.sso;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
// Referenced classes of package fuego.sso:
//            SSOUserLoginInterface, SSOLoginException
public class SSOUserLogin implements SSOUserLoginInterface {
     public SSOUserLogin() {
     public String getUser(HttpServletRequest request,
               HttpServletResponse response) throws SSOLoginException {
          /*  25*/return request.getRemoteUser();
     public String getPassword(HttpServletRequest request,
               HttpServletResponse response) throws SSOLoginException {
          /*  31*/return null;
     public boolean skipFDIAuthentication() {
          /*  36*/return true;
     public String getLogoutURL() {
          /*  41*/return null;
     public String getLogoutRelativePath() {
          /*  46*/return null;
}Thanks for any help or indication of source..
regards.

Similar Messages

  • Is it possible to leverage InDesign Server templates in a custom web app?

    Hi there,
    I am building a custom web app and was hoping to leverage our existing InDesign Server templates within our web app. What I would like to do, is based on user input, show my template with the user's input in the browser. I have looked through the API guides for InDesign Server CS6, but I haven't been able to conclusively find anything that will allow me to use the APIs to call the server, send the data points the template requires, and then get an image back from the server.
    I believe this is possible, I am just not sure how to achieve it! Any ideas or articles that help push me in the right direction would be extremely helpful!
    Thank you!
    Marshall

    Yes it's completely possible. There are two parts to making something like this work:
    1. The scripts themselves. You can generally script InDesign Server and desktop InDesign exactly the way using ExtendScript. So that's the part of the process where your script receives variables and passes them into the template and replaces something you've identified as variable, whether text or an image or something else (perhaps a color theme, etc.). You should get your scripts running on desktop before playing around with server.
    2. The messaging between your web app and the server. Whatever language you are using (i.e. PHP, .Net, Java, Ruby…) there is a way to make a SOAP call to InDesign Server to tell it basically "run this script with these parameters". You should get the "hello world" script running from a SOAP call on the server before using your real variable-driven document.
    The documentation of these things is available here:
    http://www.adobe.com/devnet/indesign/sdk.html
    You need to download the InDesign Server SDK (don't worry if you're on CC and it says CS6, almost nothing changed) and the InDesign Scripting SDK. The Server SDK deals with part #2 above, the Scripting SDK with part #1.
    It really isn't that hard. I should warn you, though, that it is addictive and once you do your first one you will become all-powerful and want to do nothing else. :-)
    Good luck and don't hesitate to ask questions.
    Max
    http://blog.siliconpublishing.com

  • How do I get back my govt MS Outlook email. I mistakenly changed it to Outlook Web App and it changed everything. I want my govt. email back.

    I used to have my emails at home look exactly like my govt outlook emails. Somehow I changed it on my home computer to using Outlook Web App and I hate it. It's slower, totally foreign to me and I get many error messages. I would like to sign in with my BC govt. username/password and have it look exactly like it does at the office. I tried for weeks to get it back but I don't know how. Please help me. I log into https:\\[email protected] for my govt website.
    Thank you.
    Marlene Reichert
    [email protected]

    Microsoft Office Outlook does not run inside the browser. If you have it installed on your home computer, you should be able to find it on the Windows Start menu and run it from there. If you were previously remote controlling your work computer, you probably need to work with your IT on getting that set up again if it stopped working.

  • Communication between a web app and a desktop app

    Hi,
    I would like to know how i can make a web application communicate with a desktop application (protocols,technologies, patterns�).
    And if I'm using a jsp web app and a java se app?
    Indeed, i have a desktop app. which use some information provided by an user via a web app,and the work performed by the desktop app cannot be performed inside a web container.
    Thanks.

    you mean it the other way around I think. You have a desktop app that needs to communicate with a web application.
    There are multiple ways.
    1) use plain old XML combined with URLConnection / HttpClient
    2) use XML-RPC
    3) use SOAP
    and there are more even. You will need to decide for yourself which technology can do what you require.

  • Is it possible to create a custom web app for online quotes?

    is it possible to create a custom web app for online quotes?
    Any advise greatly appreciated.

    Hi there,
    You really need to expand a lot more on what you want to achieve. That really is nothing to go on there .

  • Can you have a DIAdem file embedded in a web app and then when you click the link to the DIAdem file it invokes DIAdem?

    Can you have a DIAdem file embedded in a web app and then when you click the link to the DIAdem file it invokes DIAdem?

    Hello JCN,
    I will keep in touch with the current Applications Engineer who will be assisting you with this issue and update the forum with the status of the problem. I personally think that your best option would be to create a link that opens DIAdem and then runs a script to load the data from a predetermined file (Rather than a link to the file itself).
    Ian M.
    National Instruments

  • Web apps and content holders after upload

    I purchased the uguru photography template from business catalyst into which I have inserted my own content worked on in dreamweaver and tested on my trail site. I transfered the whole of the new version successfully to my live site at http://www.misskikisalon.co.uk/. Have checked all files and everything is successfully there. The problem is that none of the web apps and content holders are now working and the interface tells me there are no web apps on the site although all the files have uploaded. The html pages say 'No Items Found' where the web apps should be working and the content holders should be - on product pages it says no product found or item out of stock. Please can you help?
    Also on the trial site interface under site manager there are 12 items and under web apps all the associated web apps for the template whereas in my live site in site manager there are 2 items listed under site manager - web forms and system emails and no apps - why the difference?

    I purchased the template which places it in the trial site worked on it locally using dreamweaver and then sftp site from dreamweaver to live site.
    How can I then use the template from the trial site and the version I have developed in dreamweaver and make this live on my live site. I want my currently live site to use this template and all the development I work since purchasing the template.

  • I had designed a Web App and tested on Firefox 18, 19, 20 and now when i'm checking it on 21 version it's not rendering properly. Now tell me what should i do.

    I had designed a Web App and tested on Firefox 18, 19, 20 and now when I'm checking it on 21 version it's not rendering properly. Now tell me what should i do.

    Hi charlesmoizeau, why do you want to install Firefox 18? To be compatible with a particular website or add-on? There might be a better workaround, but without the details, it's hard to say.
    See this help article: [[Install an older version of Firefox]]. And be aware that Mozilla discloses [https://www.mozilla.org/security/known-vulnerabilities/firefox.html security flaws] after each new release.

  • SSO between custom C++ application and web browser

    Hello.
    I have a bit of problems figuring out how to do SSO functionality between a Browser and a custom client (custom protocol over HTTP).
    I want it to work as follows: If the user logs in in the HTTP client, the user is already logged in in the custom client, and vice versa.
    I thought this could be implemented my reading and writing cookie values from the browser in my custom client, but it seems like the cookies set are all without expiration. IE handles these cookies private in a process, and so I can't get a hold of it.
    How do I implement SSO between clients if I can't base it on cookie values?
    Regards
    Kyrre.

    Any comment?

  • How to add a custom web apps root page?

    I saw in Jan 2013 System Update the following:
    "Render a custom page when accessing the root URL of a Web App. For example, if you have a “blog” Web App, the items can be made accessible at  /blog/my-blog-post, and you’ll have the ability to customize the /blog page"
    Could someone point me in the correct direction for instructions on how to make use of this feature. 
    Couldn't appear to find a link from the Blog release notes to anything, and also tried trawling through support and forums for a suitable post.
    Closest I found was one about using sub-folders for web app items.
    I've tried adding a page in website admin, with the same URL as the web app, but it simply throws an error as it clashes with Web App url.
    Cheers
    Mike

    Hi Mike.
    Because a folder can have a index.html Web apps in the past you could not access that ability. You had to make a page and you could not SEO call it the same as your web app.
    SO
    Your web app is called Blog.
    You can now make a folder in your root called Blog.
    In that folder you can create a page and give it a url of index.html
    Now when you access the a web app directly - www.yoursite.com/yourwebapp or www.yoursite.com/yourwebapp/index/html you will access that index page.
    You can also put other pages under that folder if you want too.

  • Web link to pass the parameter to custom web app then update the field

    Hi,
    I have created the web link in service request object to refer Account Object. I want to let user able to select the account from web link then base on the current SR no and account that have created update the record in CRMOD. My question is how to pass the parameter out to my external web app so that they can update my SR correctly?
    Thank you

    Hi Messer,
    I have put in the syntax as below :-
    https://secure-ausomxega.crmondemand.com/OnDemand/user/AssocAccountPopup?mapBC=Service+Request&OACTRL=Account&ophi=PopupNewForm.Account+Id&pfid=PopupNewForm&OMTHD=AssocPopup&OMTGT=PopupSearchList&assocInit=Y&opht=4&OAOBJ=Service+Request&mapField=Account&ophd=PopupNewForm.Account&ophpd=3&disableclear=Y&ophr=AssocAccountPopup&assocval=&ParentType=Edit
    This pop up screen wil let the user to select the account then i will pass the account and the SR to external web app to update back the CRMOD. I am not too sure the above syntax is correct or maybe can you give some example.
    I am new in CRMOD, hope that you can advice on this.
    Thank you,
    SK

  • Encrypt communication between SharePoint Web App and SSRS

    Hi
    I have SharePoint 2010 in multi server farm. The SharePoint web app has SSL enabled. The Reporting Server (SSRS) is http URL.
    So when the Report Viewer web part is used, the communication between SharePoint web server and SharePoint Reporting Server is unsecured. The existing SSL has hard coded hostnames and for business reasons we prefer not to modify it.
    Does anyone know how can I make that communication secured? Do I need to apply new SSL for SP Reporting Services? Is there any other option?

    This should get you off and running on SSL
    http://technet.microsoft.com/en-us/library/ms345223(SQL.100).aspx
    and if you haven't go SQL on SSL - ->
    http://technet.microsoft.com/en-us/library/ms189067(v=sql.100).aspx
    Stacy Anothersharepointblog.blogspot.com

  • Class library in a web app and config files

    I built some class libraries and included them in a web project. Where do I put configuration files so the class library can access them? no matter where I put it, i keep getting file not found. What I've been doing is having a JSP read the config details and pass it to the class library. Is there another way?

    I guess the question is where IT thinks the file is? What code are you using to load it?
    I guess what I'm asking is where is the default folder for FileInputStream?The default folder is your runtime working directory. More often than not thats the "bin" directory of Tomcat. Not a great place to go looking for files.
    getResource() and all that can be accessed from the JSP but those aren't available to me from within the class libraries. Are you saying you don't have access to a ClassLoader object that you can call getResource or getResourceAsStream on? You should be able to access things in the WEB-INF/classes directory in that way.
    Given a web app, my first inclination would be to use the ServletContext.getResourceAsStream method.
    Rather than passing in a file name, why not an InputStream, or byte[] ?
    cheers,
    evnafets

  • Custom Web Apps

    Hi all,
    I have a requirement like this. I have a Category of Blogs and Blog posts
    So lets say category of blog needs following fields
    Title
    Publish
    Lets assume blog posts will have the following field sets
    Title
    Category ( a list of categories from category webapp )
    Description
    Can i know how can i get the category dropdown from another webapp? Or is there any solution for this instead of creating a webapp?
    Thanks in advance

    Hi Liam Dilley,
    Thanks for helping me and i have one more query in my website. I created two web apps like JOB TYPES and JOBS
    In JOB TYPES we have list of JOB TYPES classified as " Classified" and " Direct " . So now in front end i want to display all the JOB TYPEs of " Direct"
    Lets assume job types like this
    JOB Type Fields
    Job type name
    Job type ( dropdown as " Classified" and " Direct ")
    So we can have like
    Administrative       Classified
    Automative            Direct
    Information           Classified
    Now i want to display the Classified type categories in one block and Direct categories in another block. Can you suggest any solution for this?
    Thanks

  • Confused about Web Apps and Applications in the iTune store

    I've noticed that some Apple web apps have been placed on the iTunes store (under Applications). Does this mean that eventually the iTunes store will replace the Apple Web Apps entirely or are we going to see a combo of both.
    iTunes Store seems a much better way to select, review and download/install applications for the iPhone or Touch, it's a drag to have to go to the Web Apps then to the store to see what's available, it would be great to consolidate that into one service.

    You mean it's a drag to click on the separate App Store icon on your iPod? It really just means you can't see songs AND games at the same time, if you're searching for something to buy. Doesn't seem that that should be too much of a hardship. But maybe I am misunderstanding what you are saying.
    Oooh, maybe you mean that when you search in iTunes, you are finding some applications without having to click on the "App Store" link? It looks to me like all applications are available that way. They just give the separate link so you can all of the games at once - like the TV Shows and Movies links.
    But again, I feel like I may not be getting what you're saying.

Maybe you are looking for

  • How can I save a text file to disk from Illustrator ?

    Hi, I was looking through the Javascript reference and couldn't find anything related to writing strings to a text file on disk. Is this possible ? If so where should I look ? Otherwise, can I run a bit of code in Terminal/CommandPrompt from Illustra

  • New line installation question

    I live in a house that has never had a line connected, so I am having a new line fitted. I am having phone and infinity 38Mb. Will the installation engineer just fit one master socket to be used for the phone and modem, or will they fit a seperate po

  • CS6 - Custom Cursor & Button's icon

    I am trying to display a custom cursor when mouse is moving on a button which has icon. But the button's icon is always in front of my cursor image. How to make my cursor image on top? Belows is my code. Please tell me what's wrong. Thank you! <mx:Ap

  • Captive Portal with two or more WAP321

    Hello, I plan to use the WAP321 as a WLAN Hotspot. But I need more than one AP. What is the Design for this? Do I need to configure every WAP321 with the captive portal and the user need to re-login every time they roam to another WAP321? Or can I re

  • I can't see accounts in the account manager !

    Okay, I just got this really weird bug. I hope you can help me out with it ! Basically, I have right now three sessions on my iMac : one admin, and two standard (they don't have administration rights). I want to delete those last two. When I open the