Accessing DMS through HTTP Request ...

Hi everyone,
I have searched almost everywhere to find a solution and to prevent duplication to my problem, but no luck!
We are having SAP DMS, and i found a way to connect to the content server through the following sentax:
http://servername:port/script?command&parameters
I am using the following Script: ContentServer.dll
and trying to get a document through the following command: docGet, so I am requesting the server with the following link:
http://servername:port/ContentServer.dll?docGet&parameters,
I have managed to prepare almost all the parameters required to retrieve a document, and when i execute the link, it is prompting a user name and password.
I don't know what shall I provide to retrieve that document.
Also, is there any good way to find the docID without having to do database tracing?
Thanks and Regards...

Thanks Rajes,
I have contacted SAP and raised an OSS with the following:
We are trying to retrieve a document from SAP eDMS, and we have figured out that the retrieving process is done through an HTTP Request. We have tried with the following URL:
http://eDMSServer01:1090/ContentServer/ContentServer.dll?docGet&pVersion=0046&contRep=Z_DMS_SPC&docId=F01F621C23CD7447B8316A3EFAEB8CB4
But it is giving the following Error Message:
401 (Unauthorized)
Security: Verify SsfEncode failed rc=3,lasterror=0, (null)
So our question is: Can we create a URL that will retrieve a document from our SAP eDMS? If so, how to create that URL?
Also, is there any standard way to retrieve docID without tracing the DB Transaction?
and they replied to me saying:
You cannot directly retrieve a document from the content server for
security reasons.
In order to create a URL (link) to a document that is available in
EasyDMS, use the function 'Copy as URL' or 'Send as URL' from the
EasyDMS context menu.
So I have installed Easy DMS, and figured out how to retrive a document from our DMS. however, I couldn't find Copy as URL or Send as URL from the Context Menu!!
Any Idea, please ....

Similar Messages

  • Creation of shopping cart through HTTP request

    Hello all, I am trying to create a shopping cart through a HTTP request.
    The URL I am managing is the same that the one that the Web Service BBPSC01 uses.
    Using the following code I cannot connect to the server in background, the error "This browser is not supported" is launched.
    In addition to this, I can open the URL successfully via R/3 when executing online.
    Help very appreciated!
    Thanks.
    data declarations
    DATA: client TYPE REF TO if_http_client.
    DATA: host      TYPE string VALUE 'host',
          host2      TYPE string,
          service   TYPE string VALUE '8000',
          path      TYPE string VALUE '/sap/bc/gui/sap/its/bbpsc01/?sap-client=020&sap-language=EN',
          errortext TYPE string. "used for error handling
    DATA: dest(13) TYPE c.
    dest = 'ZPORTAL_CESTA'.
    CALL METHOD cl_http_client=>create_by_destination
      EXPORTING
        destination              = dest
      IMPORTING
        client                   = client
      EXCEPTIONS
        destination_not_found    = 1
        internal_error           = 2
        argument_not_found       = 3
        destination_no_authority = 4
        plugin_not_active        = 5
        OTHERS                   = 6.
    IF sy-subrc NE 0.
      WRITE: / 'Create failed, subrc = ', sy-subrc.
      EXIT.
    ENDIF.
    set http method POST
    CALL METHOD client->request->set_method(
      if_http_request=>co_request_method_post ).
    client->request->set_version(
         if_http_request=>co_protocol_version_1_1 ).
    client->request->set_header_field( name = '~request_method'
    value = 'GET' ).
    set request uri (/<path>[?<querystring>])
    DATA uri TYPE string.
    uri = path.
    cl_http_utility=>set_request_uri( request = client->request
                                      uri     = uri ).
    FIN: conectamos el final de la peticion
    Send
    DATA timeout TYPE i.
    CALL METHOD client->send
      EXPORTING
        timeout                    = timeout
      EXCEPTIONS
        http_communication_failure = 1
        http_invalid_state         = 2
        http_processing_failed     = 3
        OTHERS                     = 4.
    IF sy-subrc NE 0.
      DATA: subrc TYPE sy-subrc.
      CALL METHOD client->get_last_error
        IMPORTING
          code    = subrc
          MESSAGE = errortext.
      WRITE: / 'communication_error( send )',
             / 'code: ', subrc,
             / 'message: ', errortext.
      EXIT.
    ENDIF.
    CALL METHOD client->receive
      EXCEPTIONS
        http_communication_failure = 1
        http_invalid_state         = 2
        http_processing_failed     = 3
        OTHERS                     = 4.
    IF sy-subrc NE 0.
      CALL METHOD client->get_last_error
        IMPORTING
          code    = subrc
          MESSAGE = errortext.
      WRITE: / 'communication_error( receive )',
             / 'code: ', subrc, 'message: '.
      EXIT.
    ENDIF.
    DATA return_str TYPE string.
    return_str = client->response->get_cdata( ).
    close
    CALL METHOD client->close
      EXCEPTIONS
        http_invalid_state = 1
        OTHERS             = 2.
    DATA html_control TYPE REF TO cl_gui_html_viewer.
    DATA container   TYPE REF TO cl_gui_custom_container.
    DATA html_table TYPE TABLE OF char255.
    Create container for HTML viewer
    CREATE OBJECT container
      EXPORTING
        container_name              = 'CONTAINER'
      EXCEPTIONS
        cntl_error                  = 1
        cntl_system_error           = 2
        create_error                = 3
        lifetime_error              = 4
        lifetime_dynpro_dynpro_link = 5.
    IF sy-subrc NE 0.
      MESSAGE e208(00)
         WITH 'The control HTML_CONTAINER could not be created'.
    ENDIF.
    CREATE OBJECT html_control
      EXPORTING
        parent = container.
    CALL FUNCTION 'CONVERT_STRING_TO_TABLE'
      EXPORTING
        i_string         = return_str
        i_tabline_length = 255
      TABLES
        et_table         = html_table.
    DATA: l_doc_url(255) TYPE c.
    CALL METHOD html_control->load_data
      EXPORTING
        type         = 'text'
        subtype      = 'html'
      IMPORTING
        assigned_url = l_doc_url
      CHANGING
        data_table   = html_table.
    CALL METHOD html_control->show_url
      EXPORTING
        url = l_doc_url.

    Dear Poster
    Your thread has had no response since it's creation over
    2 weeks ago, therefore, I recommend that you either:
    - Rephrase the question.
    - Provide additional Information to prompt a response.
    - Close the thread if the answer is already known.
    Thank you for your compliance in this regard.
    Jason Boggans
    SAP SRM SDN Moderator

  • Accessing codebase through http (RMI)

    Hi
    I am C prgrammer and now badly stuck wid my new found luv- java!
    I am working on RMI, where I have a simple client program, sending Hi, Hellos to my server program. Then I created a new class in my rmi client side and tried to send it through the interface to the server. Server gave unmarshelling errors.. which i guess is bcoz it doesnt know about the classes in client side. I follwed similar threads here, and could make out that i must specify a codebase visible to the server where it can see the client files..
    I created a policy file in the server as this-
    grant codeBase "file:/E:/work/java/"{
    permission java.security.AllPermission;
    permission java.net.SocketPermssion "*","accept,connect,resolve";
    My client fils are in E:/work/java ...
    I am getting errors in server side--
    Exception in thread "RMI TCP Connection(1)-127.0.0.1" java.security.AccessControlException: access denied (java.net.SocketPermission 127.0.0.1:2014 accept,resolve)
    at java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
    and client says--
    java.rmi.UnmarshalException: Error unmarshaling return header; nested exception is:
    java.io.EOFException
    at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:203)
    at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:343)
    at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
    at rmi.client.RmiClient.main(RmiClient.java:33)
    Caused by: java.io.EOFException
    i know I have done a blunder there.. I also followed from prev threads that I have to specify the codebase as a URL, but again I dont know how to make my client files accessilbe through http ? my files are in say E:/work/java/client directory.... how to access this through URL?
    also i tried this on linux where my files are in root/client/ ..
    Can you java Gurus help me in solving this, in both the windows and linux versions..
    Your help is gr8ly anticipated
    thankssss

    Thanks..
    But the thing is if I specify my policy file as
    grant { 
    permission java.security.AllPermission;
    permission java.net.SocketPermission "*","accept,connect,resolve";
    I can send simple messages from client to server..
    But when i try to put the code base as
    grant codeBase "file:///E:/client/"{
    permission java.security.AllPermission;
    permission java.net.SocketPermission "*","accept,connect,resolve";
    It always gives the error
    Exception in thread "main" java.security.AccessControlException: access denied (java.net.SocketPermission 127.0.0.1:3232 connect,resolve)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
         at java.security.AccessController.checkPermission(AccessController.java:427)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
         at java.lang.SecurityManager.checkConnect(SecurityManager.java:1034)
         at java.net.Socket.connect(Socket.java:513)
    Can you tell me what am i missing...?
    My server code looks like this-
    public static void main(String args[])
    try{
         System.setProperty("java.security.policy", "E:\\work\\java\\client\\x.policy");
         if (System.getSecurityManager()==null){
    System.setSecurityManager(new RMISecurityManager());
    Thankss

  • Accessing codebase through http in RMI

    Hi
    I am C prgrammer and now badly stuck wid my new found luv- java!
    I am working on RMI, where I have a simple client program, sending Hi, Hellos to my server program. Then I created a new class in my rmi client side and tried to send it through the interface to the server. Server gave unmarshelling errors.. which i guess is bcoz it doesnt know about the classes in client side. I follwed similar threads here, and could make out that i must specify a codebase visible to the server where it can see the client files..
    I created a policy file in the server as this-
    grant codeBase "file:/E:/work/java/"{
    permission java.security.AllPermission;
    permission java.net.SocketPermssion "*","accept,connect,resolve";
    My client fils are in E:/work/java ...
    I am getting errors in server side--
    Exception in thread "RMI TCP Connection(1)-127.0.0.1" java.security.AccessControlException: access denied (java.net.SocketPermission 127.0.0.1:2014 accept,resolve)
    at java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
    and client says--
    java.rmi.UnmarshalException: Error unmarshaling return header; nested exception is:
    java.io.EOFException
    at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:203)
    at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:343)
    at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
    at rmi.client.RmiClient.main(RmiClient.java:33)
    Caused by: java.io.EOFException
    i know I have done a blunder there.. I also followed from prev threads that I have to specify the codebase as a URL, but again I dont know how to make my client files accessilbe through http ? my files are in say E:/work/java/client directory.... how to access this through URL?
    also i tried this on linux where my files are in root/client/ ..
    Can you java Gurus help me in solving this, in both the windows and linux versions..
    Your help is gr8ly anticipated
    thankssss

    Any time you see this:
    java.security.AccessControlException: access denied (XXX)for any XXX you need to add the permission XXX inside the brackets to your security .policy file. The syntax required is similar but not identical - read the Javadocs.

  • Accessing BSP through HTTPS

    Hello,
    Anybody knows the steps to access a standard bsp application, or a copy of that, or an external alias through HTTPS instead of HTTP?
    Thanks.
    Paul.

    Yep - just read the documentation [Security aspects for BSP|http://help.sap.com/saphelp_nw04/helpdata/en/1c/db8d3f7057eb0ce10000000a114084/frameset.htm]
    Cheers
    Graham Robbo

  • How to access DMS through portal

    Hi
    We are planning to implement SAP DMS and also EP.
    I want to know how to connect sap dms from r3 to EP, so that we can upload documents from KM to the content server.
    I think the DMS to KM connector provides only read/display functionalities.
    Please give me any useful documents/ links on this
    Thanks in advance
    Prasad

    Hi Prasad
    I will need same usage in future on a new project. DMS to KM provides only read/display really? And if you have documents can you send to me please.
    Thanks

  • Null values in Weblogic 7 HTTP Request Parameters

    It appears weblogic 7 handles nulls passed from the request object
              differently than the previous versions. In my jsp's, if a parameter
              was not passed, I used to get a java null value:
              String s = request.getParameter("something_not_passed");
              if(s == null) {
              //do stuff
              Now, weblogic seems to return the string literal "null" so I would
              have to use:
              if(s.equals("null")) {
              //do stuff
              Is this a bug or am I missing something?
              Thanks,
              Paul
              

    HI, Thanks for the reply. I am using getString() to fetch values.
    DO u think its due to driver incompatibility?? Because, BEA claims WL7.0 supports
    Oracle 8.1.7 onwards!
    Thanks,
    Yogesh
    Joseph Weinstein <[email protected]> wrote:
    >
    >
    Yogesh wrote:
    Hi, I have ported my web application from weblogic 5.1 to weblogic 7.Set up is weblogic
    7 with database Oracle 8.1.6 and i am using OCI driver for DB connectionpool. I
    am facing some problems like, the values that were retrieved as blanksin weblogic
    5.1 are being retrieved as null(string literal value) in 7. The same thinghappens
    when parameters were passed through HTTP request object. Any idea aboutthis?
    Thanks,
    YogeshHi. This sounds like a driver bug. Let's isolate it to a simple standalone
    program
    that uses our driver to select null data. How are you asking for the object?
    GetString(),
    GetObject()?
    Joe

  • Is there a restriction on length of Http request posted to a Iplanet Web Server ?

    I am submitting an Http Request by POST method to my server. The request will be received and forwarded by Iplanet Web Server to a clustered Weblogic environment, which will then be handled by Java Servlets. The problem I am facing is that when the length of the request shoots up to around 2000 bytes, NES doesn't receive and forward the request to Weblogic. There is no fixed cut-off for the length, it keeps fluctuating.
    I observed the following after hitting the server hundreds of times with Http Requests that vary in length.
    1) If length of Request is below 1500 bytes, request always goes through successfully.
    2) In a range of 1500 bytes to 2000 bytes, request fails most of the times. (Around 80 %)
    3) Requests with length above 2000K invariably fail, though it just worked for a 2.4K request on one occasion (out of some 100 hits)
    Note that by "length of request", I mean the data I post through Http Request (I just have a single parameter in Http request having the literal "XML" as key and a well formed XML document as value. That is equivalent to submitting a HTML form just having a text area called "XML" containing a XML document. )
    I presume that the length of actual Http Request is slightly greater than that of XML (probably by around 100 bytes).
    My Iplanet documentation says that the upper limit on the length of a POST Http Request is 64 K, which is way above the value (2-3 K) at which I am facing the problem.

    Hi Ganesh
    Did you check the HTTP Persistent timeout of your server? Check the value which has been set up by default. Try increasing the timeout value and try again.
    follow these steps it might solve your problem:
    (1)Goto Web Server Administration Server, select the server you want to manage.
    (2)Select Preference >> Perfomance Tuning.
    (3)set HTTP Persistent Connection Timeout to your choice (eg 180 sec for three minutes)(note : if you are posting large amount of data or file increase the value accordingly)
    (4) Apply changes and restart the server.
    *Setting the timeout to a lower value, however, may    prevent the transfer of large files as timeout does not refer to the time that the connection has been idle. For example, if you are using a 2400 baud modem, and the request timeout is set to 180 seconds, then the maximum file size that can be transferred before   the connection is closed is 432000 bits (2400 multiplied by 180)
    If this doesnot solve your problem notify me
    regards
    T.Raghulan
    [email protected]

  • XML through HTTP send

    Hello,
    I am having an requirement in which another web application would send XML through HTTP request to SAP which would be processed in SAP.
    I was thinking to use BSP where the external web application would send HTTP request to BSP URL. I was trying to find some method of request object which will be able to get this message but not getting suitable method.
    I tried using request->get_raw_message( ) but was not able to test. Basically i tried with sample msxml object using xmlhttp.send() method but couldn't find the response text.
    has anyone tried such thing. In java we do have response.set

    No i don't have that xhtmlb tag in my code.
    my code is very very simple..
    here is the code
    Method onRequest
    data: l_param type string value 't1'.
    lv_input = request->get_cdata( ).
    l_test = request->get_form_field( l_param ).
    Method onInitialization
    data: l_srno type i.
    select max( SRNO ) into l_srno from ztesthttp.
    if sy-subrc = 0.
      lv_num1 = l_srno + 1.
    endif.
    CALL FUNCTION 'Z_UPDATE_TEST'
    EXPORTING
       HTTPMESSAGE       = l_test
       SRNO              = lv_num1
    IMPORTING
       I_SUBRC           = i_subrc
       C_SUBRC           = c_subrc
    i_subrc = sy-subrc.
    and Layout
    The return code for insert is <%=i_subrc%> and commit code is <%=c_subrc%><br>
            The requested string is: <%=lv_input%> and <%=l_test%> and <%=pg_test%>
    Thanks..
    regards
    rajeev

  • Listen to "ALL" HTTP Requests

    Hello,
    I have an application with many 3rd party components on it.
    These components pull in a lot of external media (i.e images, data) but do not have a public Loader i can listen too.
    Is there any way Flex can give me access to all HTTP request coming in so I can show a progress bar for each download?
    Thoughts?
    Drew

    LinKe,
    I do not believe this is possible. The port associated with the URL of the Web Service Reference is determined from WSDL at the time of definition. There is no facility to alter the Web Service Reference definition at runtime.
    Joel

  • Re: (forte-users) HTTP request through proxy server

    Daniel -
    No, it does not. ;)
    How do you say to HTTPRequest to go through proxy?
    Thanks,
    Taras
    Daniel Nguyen wrote:
    >
    Hi,
    It works very well. I have experienced this model for a distant Forte client
    calling a Forte Server service Object for instance without any environment
    and without TCP access (passing through firewall for instance).
    It has also worked very well to make an injectot to improve Web Enterprise
    and IIS using the SendRequest from HTTPAccess.
    Hope this helps,
    Daniel Nguyen
    Freelance Forte Consultant
    http://perso.club-internet.fr/dnguyen/
    Taras Katkov a &eacute;crit:
    HTTP request through proxy server using forte HTTP library?
    Any experience?
    Thanks,
    Taras
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com--
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com

    You can also use the HTTP-DC project.... You don't
    need Web Enterprise for this. From what I can tell,
    this is available in L.x on....
    There is api documentation in M.2 (with scant
    examples.)
    There's a special process to put the project in your
    repository (it isn't installed in the repository in
    the standard install,) the documentation in M.2
    (probably in M.0 too, AFAIK) that tells you how to do
    this (look for HTTP-DC in the online help.)
    I haven't done much with it yet, I've just installed
    it. If anybody out there has examples, that'd be
    great. I'll try to contribute more the moment I get a
    chance to explore it....
    Christopher Fury
    BellSouth Communications Systems
    --- Daniel Nguyen <dnguyenclub-internet.fr> wrote:
    Hi,
    If you have Web Enterprise, you can user
    HttpAccess.SendRequest().
    Hope this helps,
    Daniel Nguyen
    Freelance Forte Consultant
    Amin, Kamran a &eacute;crit:
    Is there any way to make a HTTP request from TOOLto another HTTP Service?
    thanks in advance.
    For the archives, go to:
    http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. Tounsubscribe, send in a new
    email the word: 'Unsubscribe' to:forte-users-requestlists.xpedior.com
    For the archives, go to:
    http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To
    unsubscribe, send in a new
    email the word: 'Unsubscribe' to:
    forte-users-requestlists.xpedior.com
    Kick off your party with Yahoo! Invites.
    http://invites.yahoo.com/

  • Differentiating HTTP Request through a URL and a value change listener

    Version Details:
    Oracle JDeveloper 11g Release 1 11.1.1.4.0
    Studio Edition Version 11.1.1.4.0
    Build JDEVADF_11.1.1.4.0_GENERIC_101227.1736.5923
    IDE Version: 11.1.1.4.37.59.23
    Product ID: oracle.jdeveloper
    Product Version: 11.1.1.4.37.59.23
    ADF Business Components     11.1.1.59.23
    Java(TM) Platform     1.6.0_21
    Oracle IDE     11.1.1.4.37.59.23
    Versioning Support     11.1.1.4.37.59.23
    Base Details:
    The Product, that a different team is working on (<i><b>which I cannot access, code, touch,...</b></i>), creates reports and essentially generates a URL with a bunch of parameters:
    http://<host>:<port>/myApplication/main.jspx?parameter1=value1&parameter2=value2...When the user clicks on an "Edit" button, a modal popup window is displayed (using jQuery) with an embedded iFrame with its source pointing to the above URL.
    The "myApplication" is an ADF application which brings up an ADF form based on the parameters. Once the user enters the data, validations occur and the data is written into a total of 3 different Tables in the Database. Once the operation is finished, the user closes the popup by clicking on the "X" button of the popup window, which essentially does "popup.*hide()*".
    Limitations:
    <li>Since there are varied combination of parameter values and associated ADF forms, taskflows is not* an option.
    <li>Since the logic of generating the ADF form is not straightforward, ADF BC is not* an option.
    <li>Since validations are based on the value change listeners, the managed bean has to be a session scope_ bean.
    Problem:
    When, for the first time, the user clicks on the Edit button with a particular set of parameter values, the corresponding ADF form is displayed and things work normal. Since the managed bean is under session scope, the form generated for the first popup window stays the same for any subsequent popup windows, even when the URL and its parameters are completely different. As I can not listen to the popup close event, I cannot invalidate my session either.
    I tried using filters in the web.xml to grab the request and apply the business logic. Due to the presence of multiple value change listeners (too many <tt>autosubmit=true</tt>), every value change listener triggers a request and so the business logic gets applied with every value change.
    After some tests, I deduced that the difference between the call from iFrame and the call from value change is the HTTP Request Method - GET for iFrame and POST for value change listener. So in my filter I apply the business logic when there is a GET request and not apply when its a POST request.
    Turns out, that is not a valid enough differentiation between the two requests being made. Sometimes, even the value change listeners are issuing a GET request.
    Question:
    *<font color="red">1</font>*. Is there a way to force the value change listeners to always trigger a POST request?
    *<font color="red">2</font>*. Is there a way to differentiate the requests originating from the other team's Product and those generated by my own value change listeners?
    *<font color="red">3</font>*. Is there a different approach, incorporating the above-mentioned limitations, to clear out the session scope each time when a request is made through iFrame? That is, whenever a request is made through the other team's Product?
    Edited by: user737922 on Apr 13, 2011 10:58 AM

    _(Temporary) Solution_:
    Summary:
    I am using the request parameter <b><tt>_adf.ctrl-state</tt></b> to differentiate between the HTTP requests that my application receives.
    Details:
    When I receive the request from the other team's Product, I receive a <tt>GET</tt> and a <tt>adf.ctrl-state</tt> value which I store into a local variable in my session-scoped managed bean. The <tt>adf.ctrl-state</tt> value stays the same for all requests (<tt>GET</tt> or <tt>POST</tt>) made from within my own application. It changes only when there is a new request from the other team's Product.
    Also, as my application is accessed through an iFrame, there is no possibility of the generated URL being modified by the end-user.
    For now it seems that the solution is appropriate but I am not fully confident if relying on the <tt>_adf.ctrl-state</tt> value is the best approach.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Recording video/audio files using Flash Meida Server through rmtp, and allow users to access the recorded files through http.

    As titled, what is the way to record video/audio files using Flash Meida Server through rmtp, and allow users to access the recorded files through http?
    What I am trying to do, is to record a user's microphone's input and save it to the server. Afterwards, I would like other users to be able to access the recorded files and mainuplating the audio data, by computeSpectrum(), to do some visualization of the audio. As I know computeSpectrum() cannot work on streaming files, so I think I need to access the recorded files using http instead of rmtp. Is that true?
    How can I redirect the http request to the files I was recorded into my applications/appName folder? Or I need to somehow moved the recorded files to the /webroot folder?
    Thanks!

    I probably have asked a stupid question.
    My recorded streams are still saved in the applications/appName/streams folder.
    And I redirect the www.mydomain.com/streams to point to the applications/appName/streams folder.
    And the rmtp recorded streams are abled to connect through http now.

  • Logout from AM session through Proramatically ( using an http request)

    Hi Everyone,
    I want to logout from the AccessManager via Programatically through an http request? Is there any such url by invoking an HTTP post request we can logout from the Access Manager session?
    Thanks,
    Ranjith.

    Hi,
    You can do a post to /amserver/UI/Logout ar you ca programatically destroy the session using something like:
    SSOTokenManager manager = SSOTokenManager.getInstance();
    SSOToken token = manager.createSSOToken(cookieValue.trim());
    manager.destroyToken(token);
    Andrei

  • Targeted HTTP Requests through SonicWALL Site-to-Site VPN

    I have a B2B tunnel to one of our customers. All HTTP/HTTPS traffic from our main office for those addresses goes across the B2B.Now, I have a remote office connected to the main office via site-to-site VPN. How can I target HTTP/HTTPS requests for only the customer websites to use the site-to-site VPN to our office, then the B2B, while allowing other Web traffic to go straight out through the remote office? I have already added the subnets used by the B2B to the access lists at both ends of the site-to-site, but computers at the remote office cannot load Web pages, because the requests are not coming from our B2B IP address. nslookup and ping work from the remote office; DNS is resolving the name to the correct IP address. However, the HTTP/HTTPS requests are going straight out through the remote office firewall without hitting the...
    This topic first appeared in the Spiceworks Community

    Hi
    I looked through the similar questions and I cannot find the answer. My VPN is working correctly and I can ping every LAN interface address objects specified in my routes but I'm unable to ping or access end devices beyond that. IPS and the GAV is not enable since I don't have the licenses, so theirs no concern there. Something is telling me that it could be a basic route needs to be in place on VPN > LAN but that was created in the initial VPN configuration.
    For example I can ping Remote LAN interfaces 172.16.0.254, 172.18.0.254 but I cant ping the devices in those subnets. 
    This topic first appeared in the Spiceworks Community

Maybe you are looking for

  • In pse 9 when edited photo is saved it doesn't appear in organizer

    This happens even though the box entitled "include in organizer" has been checked.

  • Required details not found in foundation tables (FND_TABLES, FND_COLUMNS)

    Hi, We are trying to extract the details of database tables in Oracle E-business Suite(12.1.1) applications (and column details of these tables). For this, we are using following foundation tables in Oracle E-Business Suite database: FND_TABLES and F

  • Quick Sizer (Message size) Input

    Hi Guys, What could be best way to get actual message size to give input to the Quick Sizer for calculating the System conf for the XI. In RWB of Message Monitoring we see below details of individual Message size in Bytes avg 9317 , 9765, 4765,9317,B

  • Match sequence settings to clip settings should avoid rendering, right?

    I drag my media to my timeline and that helpful pop-up stops and asks to match the sequence settings to the clip settings. I say yes, and because the two now match perfectly, this should eliminate the need to render --- right?? I've tried to match th

  • Mapping one-to-one relationship

    Hi mates, i have two tables // Car Table CREATE TABLE CAR ( CAR_ID NUMBER(19,0) DEFAULT 1 NOT NULL, LAST_UPDATE TIMESTAMP DEFAULT SYSDATE, MAKE VARCHAR2(20), MODEL NUMBER(5,0), REGISTRATION VARCHAR2(25), MILEAGE NUMBER, ENGINE_SIZE NUMBER(1,1), TANK_