Is it possible to call API over http(not on ssl) from inside a secure page which is on HTTPS

Hi Guys
We are running a httplistner on localhost exposing http based end point. can we call this url from a website which is exposed over https when it opens from the same machine.
Note: the site is being opened in browser is using HTTPS and is on SSL.
if possible can some one please help.
regards
Mukesh V

hjuarez wrote:
Please re-read my first post. I think it is clear.I disagree.
I want to import a dll It is not clear if you are aware that .dll files are a windows thing.
but I have to run the java code on a solaris box
in order to use its methods in java, It is not clear if you are aware using .dll files in a Solaris environment has nothing to do with Java.
My question was if there is a solution -or not- that faces this kind of issues.It is not clear if you are talking about Sun Solaris or x86 Solaris.
I don't know if it makes any difference, but it might.
Maybe your question is: why this guy wants to do something like this?No. I am not concerned with that.
Just trying to help you ask the right questions.
And maybe you will find the answers yourself once you have the right questions.
I'm integrating some biometric solutions on Sun Access Manager. But the biometrics vendor only provides windows ocx's and DLL's. And Access Manager is running in a Solaris box.
I want to know if I can do something by myself or just tell the biometrics vendor that they must provide a Java solution.
I have been trying to find something on the web, but I asked this forum because maybe someone has tried to do something similar.The suggestion by jschell is probably your most promising option.
Integrating the .dll files with Java on a Windows box
and communicating between Access Manager / Java on the Solaris box and your Java code on the Windows box
(possibly using RMI).

Similar Messages

  • Is it possible to call custom designed RFC function module, apart from BAPI

    Hi Friends,
    1.     Is it possible to call custom designed RFC function module, apart from BAPI.
    2.     Why we call it Adaptive RFC layer, Since every time the JCO layer updated with SAP, Why can’t be dynamic.
    Thanx for Ur time.
    Cheers,
    Sam

    Also check <a href="http://help.sap.com/saphelp_nw04/helpdata/en/41/38bc8f813719488ddc9d9b21251ec3/frameset.htm">here</a> for more information on aRFC. Here you can find why it is called adaptive.
    Regards,
    Christophe

  • Is it possible to call a class in a jar file from JNI environment?

    Hi
    Is it possible to call a class in a jar file from JNI environment?
    Thanks in advance.

    Could you explain a bit more what you are trying to do? (In other words, your question is vague.)
    o If your main program is written in C, you can use JNI to start a JVM, load classes from the jar of your choice, and call constructors and methods of the objects defined in the jar.
    o If your main program is java, and has been laoded from a jar, a JNI routine can call back into java to use the constructors and methods of classes defined in the jar(s).

  • Is it possible to call a custom method in App Module from a backing bean?

    I would like to know if a custom method in App Module can be called from inside a backing bean.
    I am not sure if it is logically right to call, from a backing bean, a custom method in App Module. But would like to know if that makes sense or if it is possible.

    Hi..
    Yes it is possible.You have to add that method for client interface of AppModule.Now you can see that method in Data Controls(Refresh the data control). To call this method using bean it should add as method action to bindings(Click Bindings>+>methodAction>and Create action binding).
    Now you can call this method in bean class.
    Check following example use this concept to execute view criteria
    http://adf-lk.blogspot.com/2011/05/oracle-adf-create-view-criteria-and_4727.html

  • Is it possible to call the members of the CFMapping dimension from a EVDRE?

    Hello experts,
    I am working with the application Cashflow. This application uses the dimension CFMapping to match the dimension CFAccount with the dimension Account, when the package "Cash Flow Recalculation" is run. I would like to know how could I call the members of the CFMapping dimension from a report. When I try to do this,the EVDRE shows the following error message: #ERR: Invalid  CFMAPPING, col# 1.
    Thanks in advance,
    Álvaro

    Hi Mehul,
    I have already checked this but it still doesn't work. The dimension CFMapping is not contained in any application,  in BPC administration I checked this in the application folders. I think that the CFMapping dimension is only used to support the execution of the package I mentioned in the first message, and that is why I have problems to call it's members from a report using the normal procedure.
    Regards,
    Álvaro

  • Is it possible to call an executable of compiled c code from within LabVIEW?

    I can compile 'genesis' (the name of the code we are planning to use) under unix: it produces an executable which can be
    linked to user-constructed c files which contain specific crossover and/or
    mutation strategies, so once a user has the executable, it is not
    neccesary to re-compile the main GA everytime a user mucks around with the
    combination rules. I think that a question is, can you call the (or any)
    executable from within LabView?
    Thanks
    Alan Homer

    You can call executables using the System Exec VI, which can be found in the Communications palette.
    Try to take over the world!

  • Is it possible to call a function in a parent component from a child component in Flex 3?

    This is probably a very basic question but have been wondering this for a while.
    I need to call a function located in a parent component and make the call from its child component in Flex 3. Is there a way to access functions in a parent component from the child component? I know I can dispatch an event in the child and add a listener in the parent to call the function, but just wanted to know if could also directly call a parent function from a child (similar to how you can call a function in the main mxml file using Application.application). Thanks

    There are no performance issues, but it is ok if you are using the child component in only one class. Suppose if you want to use the same component as a child to some bunch of parents then i would do like the following
    public interface IParentImplementation{
         function callParentMethod();
    and the parent class should implement this 'IParentImplementation'
    usually like the following line
    public class parentClass extends Canvas implements IParentImplementation{
              public function callParentMethod():void{
         //code
    in the child  you should do something like this.
    (this.parent as IParentImplementation).callParentMethod();
    Here using the Interfaces, we re decoupling the parent and the child
    If this post answers your question or helps, please mark it as such.

  • Is it possible to call a function with the same name from 2 different dll's at the same time.

    I'm trying to call a function ( F ) form 2 different libraries ( A.dll and B.dll ) at the same time. The first lib loaded determines the function F. A->F and B->F have same interface and name but different implementation.

    Hi,
    I tried it with two dll's, both with the same interface, and at the same
    time, in the same VI. The popups even appear at the same time.
    But now I understand the problem... Both dll's are created by LabVIEW! If
    they are not (or one is not, and the other is), this is no problem.
    And VI's in memory cannot have the same name. LabVIEW doesn't care if VI's
    are in a dll or not.
    This might not help, but if you want to make some sort of "plug in" system,
    you might consider using llb's. By loading VI's dynamically, you can select
    the path from which they are loaded. You must unload (close all references)
    one before the loading the other, or the same problem will occur. If you go
    this way, I consider a different approach. Make on
    e library (or even a dll)
    that has the interface you like, this is the "loader". Now make several
    "plug in"'s, with the same interfaces. The name of each function in a plug
    in is a concatenation of the library name and the function name. The loader
    has one extra function, that loads (and unloads, when done) references to
    all desired libraries to use (the names of the functions can be figured out
    easily). All that the loader functions do is dynamically call the library
    functions. You can use a call by reference node for this (you can use the
    connector pane or the loader vi, since the interface must be the same!).
    If you go this way, I guess the loader library can be converted to a dll...
    Hope this helps.
    Wiebe.
    "rsam" wrote in message
    news:[email protected]..
    > Thx Wiebe,
    >
    > did you load both dll at the same time? For example in 1 vi. Somehow
    > the first loaded function keeps to overrule the second. Notice that
    > the interface is
    exactly the same.
    >
    > I loaded 2 dll created in Labview with results described above.
    >
    > Regards Ruud

  • AD RMS 2.1 - API Server is not Syncing templates from server

    Hello, I couldn't find any information on this before, apologies if this is a duplicate response.
    We have a server running AD RMS 2.1, it's currently set up in production mode. We have an API that runs on IIS in that box which protects documents, among other things. IIS is running using the ADRMSSVC user, our AD RMS install is running with the ADRMSAdmin
    user.
    We have created 4 templates that we wish for the API to make use of when protecting documents, however those templates do not appear to be available to the application. In doing a SafeNativeMethods.IpcGetTemplateList call, we're only actually seeing one
    of them. The ADRMSAdmin user, while running powershell Get-RMSTemplates only sees the same template.
    I have turned off every caching option I can find, but it appears that neither of these users "knows" about the templates that we have created through the server. I have even renamed the template which is showing up, and that name change is not
    being reflected through the API or powershell. If I displace the %allusersprofile%/Microsoft/MSIPC/Server/Templates directory,  I get an error through both those means that "The operation being requested was not performed because the user has not
    been authenticated."
    The machine is running in AWS - is it possible that resizing the machine has somehow voided the Machine Certificate, and therefore the machine cannot connect to ADRMS to get the new templates?
    If it helps at all, I have exported the templates to a shared directory, and all 4 XML files that we have created show up there just fine.
    Any help would be much appreciated.

    i've been having this kind of problem as well. after so many troubleshooting, the problem is in the actual ADRMS webservices (/_wmcs/*). 
    microsoft's ADRMS werbservices is maintaining an internal cache instead of querying for the list of templates from its SQL database. This cache doesn't get sync'd with its ADRMS database even when we change CacheMonitorTimeInterval and other cache related
    policies in DRMS_ClusterPolicies!
    I've also changed all the web.config of /_wmcs/ webservices so that cache is disabled but this doesn't work as well.
    The only way to make the sync happen is to perform an IISRESET. Only then will the new and updated templates are returned by ADRMS webservices. now, that's just really retarded! Should I write a piece of functionality to recycle the app pool after every
    request from client applications including Excel.exe? wow!

  • My phone doesn't receive incoming call as well as not receiving texts from some number.  Anyone have any idea why?

    It's a new replacement phone that had a number ported from T-Mobile.

    You ported in and replaced the phone a couple days ago?  Is the replacement phone a Verizon branded phone?  Is it FULLY compatible or partially compatible with Verizon?  Did you get a new SIM card?  Did the store not offer to make sure the phone worked before you left or was this just a do it yourself carrier change?

  • Is it possible to call a subscreen/modal dialog box from the global class

    Hi,
    Is it possible to call a subscreen or modal dialog box from the global class ..
    or is there any option to display a pop screen or subscreen in order to get the values from user which as to be implemented
    in the global class..
    thanks and regards,
    Poornima.

    Hi Poornima,
    you should follow Uwe's suggestion. The only alternative I can imagine is dynamic document in a dialog container. But I don't know any standardized classes to make use with minimum effort. Have a look at report DD_ADD_FORM_INPUT. Here they put the input field in a container control in a screen; you can put the container control on a dialog container (CL_GUI_DIALOGBOX_CONTAINER).
    We will not get rid of any screen for the time being, but if your application is started from any screen, the DIALOGBOX_CONTAINER can start from there.
    Regards,
    Clemens

  • How can we call a task in process definition A from Process definition B

    Hi,
    Is that possible to call a task in process definition A from Process definition B?
    Thanks.

    Sure, as long as you can come up with the correct query to lookup the task key for the task you want to run.
    provIntf.addProcessTaskInstance(taskKey, processInstanceKey);
    -Kevin

  • Call XI over plain-http without calling a receirver system

    Hi,
    I´m trying to call XI over http only to cheque whether xi is still alive. So I dont need a system to call. Anybody knows how?
    Thanks in advance,
    Frank

    Hi Frank,
    Create a scenario in XI, for an HTTP sender (that means no Sender Agreement).
    Create a HTTP client, which uses a xmlhttp object from msxml2 API. Use the .send() method to send a payload.
    You can see the response in your front-end itself.
    You can use other APIs also for this.
    A SOAP client is also available in sdn, so that you can create a SOAP scenario, and test connectivity through that.
    Regards,
    Puloma.

  • Is it possible to call a SOAP webservice using HTTP POST adapter

    Hello Experts,
    Is it possible to call a webservice using a HTTP adapter with POST method? If yes, how?
    Regards,
    Diptee

    No this will not work since you have additional SOAP information (i.e. SOAP envelope, security information) in addition to the payload. If you need a simple HTTP-Post for example, then you don't need SOAP, you can use the more simple http protocol without the additional features of SOAP.
    Also refer to this link for differences: Difference b/w SOAP and HTTP

  • Is it possible that Exchange UM could be configure with two call managers over the same sip?

    Hi,
    I have Cisco call manager 8.2 integrated with Microsoft Exchange Server 2010 Unified Messaging.
    Call manager has primary and secondary server. I created a sip trunk and linked primary CUCM with Exchange. Users can leave and get voice mails.
    Problem: In case that primary server is down (WAN is down) the users registered on secondary server but they cannot contact to Exchange Unified Messaging.
    I added  new UM Dial Plan with the same pilot and associated it to the secondary CUCM server. UM answered but do not recognize the extension number "is not a valid mailbox extension".
    Is it possible that Exchange UM could be configure with two call managers over the same sip, the same pilot number, different associated UM servers and get access to the same voice mail boxes?
    If not:
    Does exist a way to configure Exchange UM that will work if one CUCM server is down?
    Thank you,
    Peter

    Hi,
    I have Cisco call manager 8.2 integrated with Microsoft Exchange Server 2010 Unified Messaging.
    Call manager has primary and secondary server. I created a sip trunk and linked primary CUCM with Exchange. Users can leave and get voice mails.
    Problem: In case that primary server is down (WAN is down) the users registered on secondary server but they cannot contact to Exchange Unified Messaging.
    I added  new UM Dial Plan with the same pilot and associated it to the secondary CUCM server. UM answered but do not recognize the extension number "is not a valid mailbox extension".
    Is it possible that Exchange UM could be configure with two call managers over the same sip, the same pilot number, different associated UM servers and get access to the same voice mail boxes?
    If not:
    Does exist a way to configure Exchange UM that will work if one CUCM server is down?
    Thank you,
    Peter

Maybe you are looking for

  • Report server name issue

    Dear All, I am stucking with the following problem, I have deployed my ERP apllication (developed in oracle forms & reports 10g) on oracle apllication server 10g forms & report services. my apllication server has two LAN card. out of two one has been

  • Mail won't stop downloading messages... and won't quit either...

    It just started a few days ago. It has been working just fine, even after I upgraded to Tiger (which was several months ago, finally). Over the last few days, when I launch Mail.app, it downloads all the same messages that have been on the server sin

  • Having issues with iTunes.

    Well, I'm having issues uploading existing music from my iPhone 4s to my iTunes library. Once I hit sync, it tells me I have to erase and then sync. I don't understand and I've been trying everything to get around it. Side note-my mac did crash and h

  • Dashboard Widget Error in SAP B1 8.81 PL-08

    Hi Experts, I have installed the SAP B1 integration component and establish the connection of B1D1 and JDBC connection with company database and clicked on Test connection and it runs successfully.But when clicked on Dashboard Widget  from General Se

  • Use of Metro ethernet switches

    Folks, I have looking at a sample config for EWS. The senario has 3550's at the enge and 6500 at the core. 6500's were doing the Q-IN-Q functionaility to carry customer vlan over provider vlan. My question is where would a 3750 series metro switch be