Direct login into a CIVS-IPC-2500: username & password required

Hi,
I'm integrating a couple of CIVS-IPC-2500 in a domotics project.
So far, I've setup the cams, I'm able to see a picture with a browser and http://<ip>/img/video.mjpeg.
I'm unable to get the picture in the domotics supervisor. I realize now that when I use the http://<ip>/img/video.mjpeg syntax on a new PC, I get a pop-up asking for username & password. On my "work" PC, this syntax works because I've already done a logon, so username & password are cached.
Is it possible to login directly into the cam without supplying any username & password ?
I've reset the cam to factory defaults and done the setup again, trying blank password, but it's not allowed
Any hint ?
Thanks

Hi,
Thanks for the quick reply.
Indeed, security isn't a concern, so I thought about the trick to embed the username & password.
The problem: the domotic supervisor doesn't allow me to do that.
I'm stuck

Similar Messages

  • Howto disable direct login into DB server

    Hello Experts,
    I have a very old system with me(SAP 4.0B running on AIX/Oracle DB) which has 7 application servers, however there is too much load on all servers.
    I wish to restrict users logging directly onto the DB server.
    Is there a way to disable users login into DB servers, I know about SAP logon groups, however a user would still be able to bypass it by configuring direct connection in the saplogon.
    There could be a parameter perhaps that I don't recollect right now !
    Any help is appreciated.
    Regards,
    Siddhesh

    Hi Ermanno,
    I was aware of this solution, but didn't have detailed knowledge about it , cause I am primarily a Basis guy.
    I have assigned some points to you currently, I will check with my ABAPers and let you know.
    Meanwhile I'll keep the question open, just in case if someone has some parameter or some other easier option available..
    Thanks again.
    Regards,
    Siddhesh

  • XDB  username & password Required in Apex 4.0.1

    Hello,
    i have installed the Apex 4.0.1 on Oracle 11g R 2 windows 2003 R2.
    i installed the apex 4.0.1 using Embendded PL/SQL Gateway method.
    after installation when i run in url = http://localhost:8080/pls/apex/apex_admin it pop up one small window which required XDB username & password.
    i do not understand what to do to resolve this issue.
    i installed the apex by follwoing steps.
    please help.
    Thanks
    ---- Apex Installation Steps ---
    @apexins SYSAUX SYSAUX TEMP /i/
    @apxchpwd
    @apex_epg_config.sql c:\apex_4.0.1
    ALTER USER ANONYMOUS ACCOUNT UNLOCK;
    EXEC DBMS_XDB.SETHTTPPORT(8080);
    DECLARE
    ACL_PATH VARCHAR2(4000);
    ACL_ID RAW(16);
    BEGIN
    -- Look for the ACL currently assigned to '*' and give APEX_040000
    -- the "connect" privilege if APEX_040000 does not have the privilege yet.
    SELECT ACL INTO ACL_PATH FROM DBA_NETWORK_ACLS
    WHERE HOST = '*' AND LOWER_PORT IS NULL AND UPPER_PORT IS NULL;
    -- Before checking the privilege, ensure that the ACL is valid
    -- (for example, does not contain stale references to dropped users).
    -- If it does, the following exception will be raised:
    -- ORA-44416: Invalid ACL: Unresolved principal 'APEX_040000'
    -- ORA-06512: at "XDB.DBMS_XDBZ", line ...
    SELECT SYS_OP_R2O(extractValue(P.RES, '/Resource/XMLRef')) INTO ACL_ID
    FROM XDB.XDB$ACL A, PATH_VIEW P
    WHERE extractValue(P.RES, '/Resource/XMLRef') = REF(A) AND
    EQUALS_PATH(P.RES, ACL_PATH) = 1;
    DBMS_XDBZ.ValidateACL(ACL_ID);
    IF DBMS_NETWORK_ACL_ADMIN.CHECK_PRIVILEGE(ACL_PATH, 'APEX_040000',
    'connect') IS NULL THEN
    DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE(ACL_PATH,
    'APEX_040000', TRUE, 'connect');
    END IF;
    EXCEPTION
    -- When no ACL has been assigned to '*'.
    WHEN NO_DATA_FOUND THEN
    DBMS_NETWORK_ACL_ADMIN.CREATE_ACL('power_users.xml',
    'ACL that lets power users to connect to everywhere',
    'APEX_040000', TRUE, 'connect');
    DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL('power_users.xml','*');
    END;
    commit;
    SELECT par_value FROM ctxsys.ctx_parameters WHERE par_name = 'FILE_ACCESS_ROLE';
    CREATE ROLE APEX_URL_DATASTORE_ROLE;
    GRANT APEX_URL_DATASTORE_ROLE to APEX_040000;
    EXEC ctxsys.ctx_adm.set_parameter('file_access_role', 'APEX_URL_DATASTORE_ROLE');
    ALTER SYSTEM SET JOB_QUEUE_PROCESSES =1000;
    ALTER SYSTEM SET SHARED_SERVERS = 5 SCOPE=BOTH;

    Hi All,
    there is some thing wrong in documentation of Apex 4.0.1
    when i read to configure Embadded Pl/SQL gateway i followed everything from documentation and after instllation it is mentioned how to login to Apex as follwoing.
    http://hostname:port/pls/apex/apex_admin
    in following statment which i copied from documentation does not describe anything for "PLS". which is making confussion to me that there is something i missed during installation.
    3.4.12.1 Creating a Workspace Manually
    To create an Oracle Application Express workspace manually:
    1.Log in to Oracle Application Express Administration Services. Oracle Application Express Administration Services is a separate application for managing an entire Oracle Application Express instance. You log in using the ADMIN account and password created or reset during the installation process.
    a.In a Web browser, navigate to the Oracle Application Express Administration Services application.
    Because your setup uses the embedded PL/SQL gateway, go to:
    http://hostname:port/pls/apex/apex_admin
    Where:
    hostname is the name of the system where Oracle XML DB HTTP server is installed.
    port is the port number assigned to Oracle XML DB HTTP server. In a default installation, this number is 8080.
    apex is the database access descriptor (DAD) defined in the configuration file.
    where as for installation chossing HTTP server it states to login by following
    3.3.12.3 Logging in to Your Workspace
    Once you create a workspace, you must log in to it using your login credentials (that is, the workspace name, user name, and password).
    See Also:
    See "Creating Workspaces" and "Managing Workspace Requests" in Oracle Application Express Administration Guide
    To log in to your workspace:
    1.In a Web browser, navigate to the Oracle Application Express Login page.
    Because your setup uses the Oracle Application Express Listener, go to:
    http://hostname:port/apex
    Where:
    ◦hostname is the name of the system where Oracle XML DB HTTP server is installed.
    ◦port is the port number assigned to Oracle HTTP Server. In a default installation, for Oracle WebLogic Server this number is 7001, in OC4J this number is 8888, in Oracle Glassfish Server this number is 8080. These defaults are correct at the time this document was written. Please review the related Web server documentation for the latest default port if necessary.
    ◦apex is the mount point defined in the Web Server configuration file.
    -what is your opnion ??
    please reply
    Suhaib

  • What exactly is the receiving username/password required for

    Hi All,
    I have the ServiceDesk Appliance installed and trying to set it up.
    I am now at Setup > Email > Server. Here in the "Receiving" section, what exactly do I need the "UserName"/"Password" for?
    Can I use and existing username? or do I need a have a separate Username dedicated for the ServiceDesk?
    Regards,
    Yaser.

    Yaser,
    I will usually create an account specific for Service Desk. This is the user
    account that will authenticate and Pop the mail form your mail
    system(GroupWise..:-) ) back into the Service Desk application.
    Hope that helps
    Paul
    >>>
    > Hi All,
    > I have the ServiceDesk Appliance installed and trying to set it up.
    >
    > I am now at Setup > Email > Server. Here in the "Receiving" section,
    > what exactly do I need the "UserName"/"Password" for?
    >
    > Can I use and existing username? or do I need a have a separate
    > Username dedicated for the ServiceDesk?
    >
    > Regards,
    > Yaser.
    Paul

  • Update Firmware on 5800. Username/Password require...

    I want to install Google Maps on my 5800 but have the same probnlem as many users (Certificates Expired). Thus I tried to update the firmware. But I can't because it says 'username or password' is invalid and I have to type in both.
    What username/password? I haven't a glue what username or password I have to use. Can someone help?

    Update:
    I have called T-Mobile and they told me to download the Nokia Software Updater from their website (http://www.t-mobile.de/business/mein-handy/1,15556,20345-_,00.html  > got to downloads).
    On this page is written: Current Version is 20.0.012
    After downloading it and trying to update my firmware the NSU says my 5800 has version 11 installed and there is no newer version available. T-Mobile told me v.20 is not stable and it is not for T-Mobile users. Why do they write it on their page?
    Does anybody have v.20 installed on his T-Mobile 5800? How did you do that?

  • Auto Login to another page with BPM username/password

    Hi,
    I would like to use the same username and password (with which i logged into BPM workspace) to login to another web page automatically.
    I created an ADF page for one of the tasks in BPM.I have a button in my ADF page which opens up a new page. When a new page is opened, it is asking for username and password. This username and password is same as the the one i used to login to workspace.
    When i click on this button, can i open the web page without entering the credentials?
    Thanks,
    Lakshmi.

    Thanks. The problem is that I can't put it after the APEX form, because I need to have it in the middle of page content. And the whole page content is in the APEX form. I tried using </form> here i inserted my code <form> to end and start again the APEX form but it did not work for IE.

  • How do you login to OEM - What is the username/password?

    Hi everyone:
    I installed Oracle9i Application Server on Windows 2000. The install was successful and I was able to install the database infrastructure as well as the complete options (forms, reports, portal, wireless, etc.) options for the application server. I tried to logon to the Enterprise Manager Website to change some settings in my database but could not log on. I get the welcome screen (connection is fine with the default port settings) but it asks me for a login username and password. I tried the traditional sys, system but I get no where. What does the defualt installation assign in order to gain acess to the OEM website?

    Hi Jafar,
    I too facing the same problem.My enterprise manager connected with sysman/oem_temp after that i changed the password. From the OEM when i click monitor 9IAS, its asking for the network password in the browser.
    Please let me know when u find a solution. Thanks in advance. [email protected]

  • View Accounting Login Screen username & Password required !!!!

    Hi,
    We have installed Oracle Application R12 on RHEL 4 Update 5 64 bit.
    When ever any user Login with Oracle applications, and try to open an View accounting screen of any INVOICE, it opens a new browser and again ask for the Username and Password.
    The question we need to ask is '*IS IT THE DEFAULT FEATURE OF ORACLE APPLICATION DUE TO SECURITY*' or '*THERE IS SOMETHING WRONG WITH THE APPLICATION (BUG)'* .???
    Thanks.

    Try this
    On your PC, go to Control Panel -> Java -> Advanced -> Java Plug-in
    Find "Enable the next generation Java Plug-in".
    If it is checked, un-check it.
    Hope this helps
    Sandeep Gandhi

  • Got premium with Facebook login - how do i set a username/password for regular login

    Hello all,i got the student premium whilest logged in with facebook, but i would like to set a usename/password to log in 'normally'. how can i do that?thank you!

    Hey there , welcome to the community!
    I apologize for the late reply. The workaround for this would be to create a new account. If you contact the accounts team through the online contact form they can set you up with a new account and transfer over all your content. If you receive an automated reply directing you back to the community, just reply to it and you will be connect with an agent that can assist you.

  • HT1766 since os7 update for ipad, I can't sign into Facetime. I enter username & password & the message I get back is "FaceTime Activation could not sign in. Pls check your network connect". There is nothing wrong with my wifi connect. What's up with this

    Any takers on this question ? FaceTime is one of the apps I used all the time prior to Os7 update, now i can't get in because when I try to sign in, the message I receive says Activation could not sign in and I should check my network connection. My network connection works fine, I can use the internet or twitter or all the other apps which require a working network, but not FaceTime.......What's up with that ??

    there has been a big problem with facetime and imessage. The best solution for this case is to restore your device http://support.apple.com/kb/HT1414
    Make sure you back it up. and I would set up facetime before you reinstall your backup and  make sure its working.

  • Username password required for stress testing of 10G ESB process

    Hi I have an 10G ESB process.
    while stresstesting ESb process,getting the prompt saying server(name) requires authencation.SOASuit10G is installed in HP-UX server.
    have tried my HP server username/ pwd,windows login credentials,oc4jadmin..ect but no luck
    can you pls let me know what username/pwd its expecting..?
    Regards,
    Narasimha.

    My ESB process enqueues messages into the JMS queue.when I select stress test option,its prompting me to enter details of username/pwd.

  • Local Host Username & Password required???

    When I try to test the localhost by
    http://localhost:8500/ows/ or
    even
    http://127.0.0.1 ....... I am prompted
    to enter a username and a password... I have no idea why or what
    the username or password is. Is there a default that I am unaware
    of? or how do i disable it from asking for a username and
    password?

    I am prompted to enter a username and a password... I
    have no idea why or what the username or password is. Is
    there a default
    that I am unaware of? or how do i disable it from asking for
    a username
    and password?
    Are you using IIS? Is the website setup with something other
    then
    "anonymous" under the Directory Security in said IIS? That
    would
    require you to log in with some kind of password.

  • Unable to start replicat due to invalid username/password

    below is my parameter:
    REPLICAT MSREP
    SOURCEDEFS /u01/app/oracle/gg/dirdef/emp.def
    USERID gg_user, PASSWORD welcome1
    MAP hrschema.emp, TARGET gg_user.emp;
    when I start the replicat, I got an error invalid username/password. If I log into SQLPLUS with the same username/password, it's working fine.......
    thoughts?

    It doesn't know. A GGS install directory can have Extracts and Replicats for any number of databases on a server. If you really do want to use a different GGS install directory for each database (which you certainly don't have to), then you can simply name your OGG intall directories to suit your needs, such as /u01/app/oracle/product/ogg/db1 and /u01/app/oracle/product/ogg/db2.
    If you use only 1 OGG install directory, then when you add and Extract or Replicat, there's an option in the command to add a description as well, and you could put something in each description like "Extract for DB1" or "Replicat for DB2", and when you query those components in GGSCI with INFO ALL for example, you'd see that description next to the name of the component.
    Also, for Oracle databases, your Replicat and Extract can contain a SETENV parameter which includes the ability to set the ORACLE_HOME and SID for the respective database.
    For example:
    SETENV (ORACLE_HOME = “/home/oracle/ora9/product”)
    SETENV (ORACLE_SID = “ora9”)
    If this were SQL Server, your connection parameter in the Extract or Replicat would point to a System DSN (such as DBLOGIN SOURCEDB dsn_name) and that DSN that you reference and create with the ODBC applet, contains the db instance and database name, which makes it unique.

  • I have a iphone 5 and I can login with my apple id to purchase music. However, when I try to login into icloud using the very same username and password that I use in the apple store it does not work to enter icloud, so what what gives???

    I have a iphone 5 and I can login with my apple id to purchase music. However, when I try to login into icloud using the very same username and password that I use in the apple store it does not work to enter icloud, so what what gives???

    I could do that, however when I select the icloud button (or whatever the heck it is) I am asked to enter the apple id and password. So if you are suppose to create another one for icloud you'd think it would give you the option at this point which would be logical.

  • Error to login into EM

    Hi,
    I am unable to login into enterprise manager. I want see oracle memory advisor throug OEM but getting error in connect string.
    Username - sys    
    Password - xxxxx
    Connect String -
    connect as sysdba.
    Please do let me know what should I give in connect string.
    Regards,
    Michel.

    I have link https://localhost:1158/em for connecting the EM. And Below are details for lnnrctl status:
    [oracle@localhost ~]$ lsnrctl services
    LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 02-OCT-2013 13:36:51
    Copyright (c) 1991, 2009, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    Services Summary...
    Service "orcl" has 1 instance(s).
      Instance "orcl", status READY, has 1 handler(s) for this service...
        Handler(s):
          "DEDICATED" established:960 refused:0 state:ready
             LOCAL SERVER
    Service "orclXDB" has 1 instance(s).
      Instance "orcl", status READY, has 1 handler(s) for this service...
        Handler(s):
          "D000" established:0 refused:0 current:0 max:1022 state:ready
             DISPATCHER <machine: localhost.localdomain, pid: 4468>
             (ADDRESS=(PROTOCOL=tcp)(HOST=localhost.localdomain)(PORT=61087))
    The command completed successfully
    [oracle@localhost ~]$ lsnrctl status
    LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 02-OCT-2013 13:37:06
    Copyright (c) 1991, 2009, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for Linux: Version 11.2.0.1.0 - Production
    Start Date                02-OCT-2013 08:45:46
    Uptime                    0 days 4 hr. 51 min. 20 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   /u01/home/oracle/product/11.2.0/db_1/network/admin/listener.ora
    Listener Log File         /u01/app/oracle/diag/tnslsnr/localhost/listener/alert/log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost.localdomain)(PORT=1521)))
    Services Summary...
    Service "orcl" has 1 instance(s).
      Instance "orcl", status READY, has 1 handler(s) for this service...
    Service "orclXDB" has 1 instance(s).
      Instance "orcl", status READY, has 1 handler(s) for this service...
    The command completed successfully

Maybe you are looking for

  • IPhoto 9.6.1 can't compare photos?!?!

    Okay, so all of Apple's support documents say if you have two images highlighted in an album you can click the 'Edit' button & they will display side-by-side so you can compare and/or edit them. A more complex process than on previous iPhoto version

  • Help for running C at Solaris 10 using cc complier

    I have installed a Sun Studio 11 on Solaris 10. And when i use cc command to compile the c program then it is showing "C:language optional component is required". How can i run the c on solaris 10

  • Disable Plug in for certain Applet applications

    I have a situation where I have 2 applets on a project. The first applet (written using <APPLET> tag) uses simple AWT and hence does not need the Sun Java Plugin and works great using the Browser's JVM. But this second applet (also uses <APPLET> tag)

  • Convert digits to words

    hi all i wanna know how to convert a number value to words for example, 150 to one hundred and fifty remember i wnat this only in sql statement

  • Are you going to reestablish compatibility with the Norton tool bar?

    Are you going to reestablish compatibility with the Norton tool bar? Version 4 seems to have lost this compatibility, which version 3 had.