[CS4] Post login problem

Hi everybody,
I’m facing a problem I can’t solve as I’m not an expert with php : I have created a site of which first page is a login. On the second page I would like to retrieve informations from a database based on the logged on user ID. Here is the problem : I don’t know how I can insert the user ID on the SQL request (on page 2). I’ve tried to put as Run-Time value of my Recordset template $_GET[‘MM_Username’] but it does not work. Creating a session value into the bindings panel allows me to display the correct ID value (therefore MM_Username) on the HTML page but still I can’t do anything with it into my SQL request… I’m lost !
Thanks in advance for your help/advices
Best regards

Sure ! Here it is (code was generated using the server behaviors panel “Log InUser”)
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;   
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  return $theValue;
?>
<?php
// *** Validate request to login to this site.
if (!isset($_SESSION)) {
  session_start();
$loginFormAction = $_SERVER['PHP_SELF'];
if (isset($_GET['accesscheck'])) {
  $_SESSION['PrevUrl'] = $_GET['accesscheck'];
if (isset($_POST['Identifiant'])) {
  $loginUsername=$_POST['Identifiant'];
  $password=$_POST['Password'];
  $MM_fldUserAuthorization = "niveau";
  $MM_redirectLoginSuccess = "Menu.php";
  $MM_redirectLoginFailed = "erreur.htm";
  $MM_redirecttoReferrer = false;
  mysql_select_db($database_Main, $Main);
  $LoginRS__query=sprintf("SELECT identifiant, passe, niveau FROM repertoire WHERE identifiant=%s AND passe=%s",
  GetSQLValueString($loginUsername, "text"), GetSQLValueString($password, "text"));
  $LoginRS = mysql_query($LoginRS__query, $Main) or die(mysql_error());
  $loginFoundUser = mysql_num_rows($LoginRS);
  if ($loginFoundUser) {
    $loginStrGroup  = mysql_result($LoginRS,0,'niveau');
    //declare two session variables and assign them
    $_SESSION['MM_Username'] = $loginUsername;
    $_SESSION['MM_UserGroup'] = $loginStrGroup;            
    if (isset($_SESSION['PrevUrl']) && false) {
      $MM_redirectLoginSuccess = $_SESSION['PrevUrl'];             
    header("Location: " . $MM_redirectLoginSuccess );
  else {
    header("Location: ". $MM_redirectLoginFailed );
?>
De : MurraySummers [email protected]
Envoyé : vendredi 8 mars 2013 18:20
À : Berurier75
Objet : Post login problem
Re: Post login problem
created by MurraySummers <http://forums.adobe.com/people/MurraySummers>  in Dreamweaver - View the full discussion <http://forums.adobe.com/message/5132803#5132803

Similar Messages

  • Username availability in post-login application processes

    Hi there,
    I have a problem with a post-login application procedure that sets session variables. Some of the variables are based on the username of the user that is logging in. I'm using the function htmldb_custom_auth.get_username to return the username. However, it always reports 'nobody' as the username.
    Is there a way to get the username of the logged-in user in a post-login application procedure?
    Robert

    By "post-login application procedure," I mean an application process whose "Process Point" property is set to "On New Session: After Authentication".That firing point means once per session at the point during the rendering of the requested page after the step where the user identity (if any) has been determined. If the first page requested is a public page (which might be the login page specified by your authentication scheme) then the user identity has not yet been established and will be null, 'nobody', 'APEX_PUBLIC_USER', 'ANONYMOUS', or perhaps some other public user name, depending on "how your application works".
    You should put code like I think you have in this process into the authentication scheme's Post-Authentication Process. This block will be executed after the login API has processed the login request and after a session has been created and registered with the authenticated username.
    I'm not sure what you're asking about how my application works.I was looking for a technical description of what you intend to happen in the scenario, e.g., User starts browser -> user requests URL like f?p=100:1, -> user sees login page which is page number 101 in application 100 and is specified as the Session Not Valid Page in the application's authentication scheme -> user enters username and password and presses Login button -> On New Session process should fire after login page is submitted and capture authentication username -> etc.
    Scott

  • Web Center app with ADF Security - login problem

    I have a custome Oracle Web Center app.
    I have a page.html with an embedded login form posting to j_security_check. I've configured the ADF security policies to redirect to a JSPX on successful login.
    When I try the correct username/password, I get redirected not to the page I defined in ADF, but to the root page http://127.0.0.1:7101/MyApp-ViewController-context-root/
    and i get
    Error 403--Forbidden
    I've checked the weblogic.xml as per http://andrejusb.blogspot.com/2009/12/solving-error-403-forbidden-in-adf.html, all the required entries are there.
    This works fine if i use a Login link with
    destination="#{'/adfAuthentication?login=true&amp;end_url=/faces/postLogin.jspx'} "
    which redirects to the default login.html and then to the right page. I've copied the form from the default login.html into my master HTML page.
    Hope my question is clear. Any suggestions why it is going to the wrong URL after login.
    Is there anything specific I should see in the jazn-data.xml or web.xml regarding the post-login URL since i cant see that in either.
    P.S. Have been advised to try here when I originally asked this in the WebCenter forum. Web Center app ADF Security - login problem
    Edited by: new_to_webcenter on 18-Jan-2011 05:25

    Thanks for your response Frank.
    The web.xml has
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>adfAuthentication</web-resource-name>
    <url-pattern>/adfAuthentication</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>valid-users</role-name>
    </auth-constraint>
    </security-constraint>
    <login-config>
    <auth-method>FORM</auth-method>
    <form-login-config>
    <form-login-page>/login.html</form-login-page>
    <form-error-page>/error.html</form-error-page>
    </form-login-config>
    </login-config>
    When configuring ADF Security via JDev , I chose "Redirect upon successful authentication" to the Welcome Page
    "/faces/postLogin.jspx"
    this then adds into web.xml
    <servlet>
    <servlet-name>adfAuthentication</servlet-name>
    <servlet-class>oracle.adf.share.security.authentication.AuthenticationServlet</servlet-class>
    <init-param>
    <param-name>success_url</param-name>
    <param-value>/faces/postLogin.jspx</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    So the sequence which works is:
    Login via the '/adfAuthentication?login=true&end_url=/faces/postLogin.jspx' and this redirects to login.html (OOTB form which posts to j_security_check) and then to the postLogin.jspx
    I'm trying to do away with a Login link, and trying the simple login form embedded in my page alongwith other content.
    So should the form be posting to j_security_check directly or to the adfAuthentication ?

  • Web Center app ADF Security - login problem

    I'm making an Oracle Web Center app.
    I have an app page.html with an embedded login form posting to j_security_check. I've configured the ADF security policies to redirect to a JSPX on successful login.
    When I try the correct username/password, I get redirected not to the page I defined in ADF, but to the http://127.0.0.1:7101/MyApp-ViewController-context-root/
    and i get
    Error 403--Forbidden
    I've checked the weblogic.xml as per http://andrejusb.blogspot.com/2009/12/solving-error-403-forbidden-in-adf.html, all the entries are there.
    This works fine if i use a Login link with
    destination="#{'/adfAuthentication?login=true&amp;end_url=/faces/postLogin.jspx'} "
    which redirects to the default login.html and then to the right page. I've copied the form from the default login.html into my master HTML page.
    Hope my question is clear. Any suggestions why it is going to the wrong URL after login.
    Is there anything specific I should see in the jazn-data.xml or web.xml regarding the post-login URL since i cant see that in either.

    Ah so when you try to access a JSPX page it works but when you try to access an HTML page it does not work?
    I can't see what the problem could be if it works for a JSPX but not for an HTML. Perhaps something with the filters in the web.xml
    Maybe you should ask this at the ADF forum: JDeveloper and ADF
    The guys there have way more understanding about this stuff than here.

  • Unable to make RMI-based JMX connection with post login stored admin creden

    Hello,
    I've installed a stand-alone OC4J on a couple of servers with Red Hat Enterprise Linux Server release 5.1 (Tikanga).
    At one server I am not bale to start the OC4J properly.This server has two network adresses.
    2008-09-08 14:33:12,670 [EMUI_14_32_57_/console/postLogon] WARN app.PostLogonPageHandler testStoredCredentials.490 - unable to make RMI-based JMX connection with post login stored admin credentials
    java.net.ConnectException: Connection refused
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
    What could be the reason of this error? And how can I solve the problem?
    Thanks in advance,
    Regards Leon

    I don't know for sure, but perhaps the password encryption method uses something from the server to generate a key/seed for the encryption?
    Try and manually reset the credentials to see if it helps
    1. Edit the j2ee/home/config/system-jazn-data.xml file.
    2. Find the oc4jadmin user entry and modify the credentials tag to look like the following
                   <user>
                        <name>oc4jadmin</name>
                        <display-name>OC4J Administrator</display-name>
                        <guid>B23216B0102E11DDBF9DE5D93DCAFE54</guid>
                        <description>OC4J Administrator</description>
                        <credentials>!welcome1</credentials>
                   </user>3. Restart the container and see if you can then login using oc4jadmin/welcome1.
    No guarantees, but its worth a shot.
    -steve-

  • Hbogo login problems

    How can I find someone at Verizon to help me with hbogo.com login problems?  hbogo.com site says contact Verizon.  I have spent more than 20 hours on the phone with Verizon support over a period of 5 weeks amd keep getting transferred to other areas and then eventually back to the original support service (if not disconnected first).  hbogo.com is a service provided through Verizon.  Initially I had no problem signing up and using the service.  Then when I really wanted to use it while on vacation, I started received a message at logins that I had exceeded the maximum number of logins for this account - which I don't understand, since no one else is using the service or has my login info, to my knowledge.

    Dear sloopy,
    Are you using your verizon.net email to login?  Have you attempted to reset the password?  Please go to the secure link: https://www22.verizon.com/content/verizonsupport/ .  Enter your Fios account Name, Address, Phone and Email.  Please reply back once it has been completed.  Thanks for your patience
    Javier
    Verizon Telecom
    Fiber Solution Center
    Notice: Content posted by Verizon employees is meant to be informational and does not supercede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or Plan. Follow us on Twitter™!

  • Initermittent Connection Timeout at Post-Login when connect to AlwaysOn Availability Group listener

    Hi,
    I'm using SQL 2014 AlwaysOn Availability Group and my ASP .Net application is connected to the database thru the availability group listener (tcp:[myHAGroup],14330).
    Things work most of the time, but recently I started to see the following Connection Timeout exception in Event Log. It looks like under heavy traffic the application can't connect to the availability group listener.
    Timestamp: 8/17/2014 10:07:28 AM
    Message: System.Data.EntityException: The underlying provider failed on Open. ---> System.Data.SqlClient.SqlException: Connection Timeout Expired. The timeout period elapsed during the post-login phase. The connection could have timed out while waiting for server to complete the login process and respond; Or it could have timed out while attempting to create multiple active connections. The duration spent while attempting to connect to this server was - [Pre-Login] initialization=2; handshake=0; [Login] initialization=0; authentication=0; [Post-Login] complete=15008; ---> System.ComponentModel.Win32Exception: The wait operation timed out
    --- End of inner exception stack trace ---
    I've checked SQL Profiler and don't see any memory or CPU peak at that time. Looks like somethings happened during the Post-Login stage, but I couldn't figure out what or why....
    I'm using 2 SQL servers (1 primary, 1 secondary): SQL 2014 ENT, 8GB RAM, 8 core 2.67 Xeon X5650.
    Application: ASP .Net, framework 4.0.
    All servers are VMWare virtualization servers, running on 1 virtual switch, so internal traffic should not be a problem.
    Comments/ideas are appreciated.
    Eric.

    Hi Eric Nguyen,
    According to your description and error message, we need to verify if there are some queries/transaction lock your database via SQL trace. If yes,
     you have to find out which queries are blocking and rewrite them/run them at other time to avoid blocking other processes.
    In addition, you can use performance monitor to track connection pool connections. If you set default connection limit and timeout limit with a small number, the error of “wait operation timed out” will occur. Meanwhile, you also need to monitor disk usage
    on SQL Server , and set the auto increment size of your transaction log and database with a fixed size instead of a percentage of the current files due to avoid transaction timeout. For more information, see:
    http://stackoverflow.com/questions/7743725/how-to-troubleshoot-intermittent-sql-timeout-errors
    There is an similar issue about connection failed from webservers to SQL Server AlwaysOn Listener, you can review it.
    http://stackoverflow.com/questions/23416492/connection-timeouts-when-using-multisubnetfailover-true
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Oracle 8.0.5 Post Installation Problem

    Hi all,
    I have installed Oracle 8.0.5.1 is installed on my RH 6.0 box.
    However, I am running into a couple of post-installation
    problems.
    1. root.sh (sucessfully ran).
    2. glibc patch (successfuly ran). There were a few errors on the
    screen with the "mv" commands (file does not exist). Is tha
    alright?
    3. catrep.sql (problem). This is where I have a problem.
    I ran dbstart as oracle805 (installation account), but I have no
    idea whether or not I really started the database. ps -aux did
    not yield any clue.
    I also tried svrmgrl and "startup", but the file "initXXX.ora"
    did not exist, so I copied the existing "init.ora" to
    "initXXX.ora". XXX is my ORACLE_SID. Instead alert_XXX.log gave
    me the following:
    ORA-00202: controlfile: 'ora_control1'
    ORA-27037: unable to obtain file status
    So, in other words, I have no idea whether or not I have
    successfully installed Oracle. All insights are greatly
    appreciated.
    Thanks a bunch...
    Anh
    null

    Phan Anh Tran (guest) wrote:
    : Hi all,
    : I have installed Oracle 8.0.5.1 is installed on my RH 6.0 box.
    : However, I am running into a couple of post-installation
    : problems.
    : 1. root.sh (sucessfully ran).
    : 2. glibc patch (successfuly ran). There were a few errors on
    the
    : screen with the "mv" commands (file does not exist). Is tha
    : alright?
    : 3. catrep.sql (problem). This is where I have a problem.
    : I ran dbstart as oracle805 (installation account), but I have
    no
    : idea whether or not I really started the database. ps -aux did
    : not yield any clue.
    : I also tried svrmgrl and "startup", but the file "initXXX.ora"
    : did not exist, so I copied the existing "init.ora" to
    : "initXXX.ora". XXX is my ORACLE_SID. Instead alert_XXX.log
    gave
    : me the following:
    : ORA-00202: controlfile: 'ora_control1'
    : ORA-27037: unable to obtain file status
    : So, in other words, I have no idea whether or not I have
    : successfully installed Oracle. All insights are greatly
    : appreciated.
    : Thanks a bunch...
    : Anh
    Hei !
    I also did this fault :-( See this webpage - it's excellent
    and describes everything.
    http://jordan.fortwayne.com/oracle/rh6x.html
    null

  • Oracle 10g express edition browser login problem

    Hi
    I installed oracle 10g express edition and after installing successfully logged in browser , unlocked hr login and also created one form then I shutdown the database and rebooted my pc and since then when I try to login to "go to Database Home page" after starting database , I get a cookie 127.0.0.1 with username and password, First of all I am not sure what username/password it is expecting, I believe it requires my Windows XP username and password , I tried to enter couple of times my pc login username which has administrator privileges, I also checked it has ora_dba group but after entering pc username , password browser opens saying "unauthorized". I created another os user and tried with that still same. I tried entering oracle password "SYSTEM" and password for it but still could not login, I tried HR username password still nothing.
    I tried disabling firewall but still same issue. I tried to re-install two time but still same .
    Start database dos prompt does show all the process are started successfully .
    I also did ping for 127.0.0.1 and it does ping.
    I tried everything what I knew.
    Can anyone please help me ..to resolve this issue .

    Hi
    This is how I resolved the browser login problem .
    I checked the listener log
    C:\OracleXE\app\oracle\product\10.2.0\server\NETWORK\log
    And found the error
    TNS-12542: TNS:address already in use
    TNS-12560: TNS:protocol adapter error
    TNS-00512: Address already in use
    I have another version for oracle installed on my pc .
    I ended both the oracle process (Oracle.exe) through the Task Manager
    Then manually started “OracleServiceXe” service through Component Services
    Control Panel – Performance & Maintenance – Administrative – Component Services
    Then did following
    Programs – Oracle Database10g ExpressEdition – Start Database
    Programs – Oracle Databse10g ExpressEdition – Go to Database Homepage –
    Enter username SYSTEM
    Enter password xxxxxx … whatever given at the time of installing.
    And I did successfully login to the browser .
    Hope this will help to those of you who have run into similar problem which I faced
    Good Luck .
    A. Patil

  • Posted these problems of Zen Micro bef

    oh man, I posted this problem before, and I'll probably get the same answer, but anyways, I'm kinda mad because my Zen Micro is having soooo many problems right now. .battery drain when not on, and no, I do not have that one fimware that has that known problem. 2. if the headphone is not in just right, the sound when seem like it's far away. 3. If I touch the top of the jack of the headphones that goes into the Micro, the music will stop playing, until I ge the jack EXACTLY in the right place. that is all the problems I have right now......but anyways, It is very annoying to recharge your Micro overnight, take it school, only to have the battery dead cuz it said overnight after it was done charging........ I'll probably get the same answer I got last time, contact creative, but I was wondering if you think the place I bouught it at would take it back, (Circuit City)i'm gettin pretty mad Creative....... I bought this hoping I wouldnt have this many problems.....Message Edited by augi55 on 08-20-2005 09:3 AM

    On account of it being a headphone jack problem, of which there are many, it's quite possible they'll cover it for free even if you're beyond the warranty period (Parts: year, Labor: 90 days). Normally you'll need your receipt for proof of purchase date, but again, with the issue being a headphone jack, it may not even be required.

  • Post installation problems in vista 32bit

    Sir
    i am newbie.i installed 10gr2 in my vista,but sometimes its starting perfectly and sometimes not.Then i need to restart my machine and then only i am getting access in sql*plus.i have posted it here but the problem is still the same.[post installation problem its not solved yet|http://forums.oracle.com/forums/thread.jspa?threadID=930824&tstart=0] .
    when the command maintained bellow is leaving no output at all.
    emctl start dbconsoleIN the service panel is showing dbconsole status as server starting only.
    what to do?
    regards
    Sayantan

    Hans F wrote:
    1) Vista is not an operating system. It is a family of operating systems. Which operating system within that family are you using?windows 7.
    >
    2) Oracle Database is designed to work on a server. It should have a static IP address and host name, or at least use a loopback adapter as a workaround. How is the IP address and host name on your Vista-xyz assigned?
    using it for local machine in laptop.
    HOST = FAXCOOLWAREZ037)(PORT = 1521)
    >
    Hopefully you are not using DHCP to assign the IP address, or you were sharp enough to install the loopback adapter first.

  • IMac login problems on any 10.6 update

    I have a 24" iMac that is 2 years old. After using snow leopard on my husband's new macbook I decided to get it for my imac. The base install of 10.6 works fine but of course it immediately wants to be updated to a new release. If I update it past the base install from the CD I get login problems.
    What happens is that the desktop appears and the finder menu is at the top but the date and network status etc - everything from the top right of the menu bar is missing. The computer will not move forward. No amount of waiting or button pushing will improve the situation.
    Sometimes I could log in to another account but then it would start happening on that acocunt too. I made myself a new account and it started happening on that too. Every time if I did a re-install of the base 10.6 from the CD it went back to working fine. I would have to say no to every update of 10.6 on software update. This has been going on for 6 months. I thought maybe with 10.6.4 they fixed it but it did it again.
    yesterday I did a fresh install. Thinking it was caused by my old quicken 2007 or parallels (though its v 5) or something else that has some bit that starts at login I formatted the HD , installed 10.6 fresh and installed nothing but ilife 9. I downloaded the 10.6.4 update and it still happens. I logged off my account and logged back in to test and it froze again. I am at my wits end. The only thing I saved from my old profile was my mail folder. I can find nothing else to fix. Any ideas?

    SamNS wrote:
    the desktop appears and the finder menu is at the top but the date and network status etc - everything from the top right of the menu bar is missing.
    Do things behave better if you boot into "safe mode" by holding down a shift key while your Mac is booting?
    http://support.apple.com/kb/HT1455

  • Simultaneous login problem

    Hi 
    I am having simultaneous login problems. In the past I have been able to sign into my skype account on both my Mac Book Pro and my Windows 7 desktop PC. However since I had to change my password I can only login into one machine at a time now. Also when I change my password on the desktop PC I can only sign into that skype / computer. Whenever I type the same account name and same exact password on my Mac Book Pro, it says it doesn't recognize my sign-in details but I am 100% sure that I typed it in exactly the same way as I did on my desktop. Another is that when I reset my password on my Mac Book those details won't work on the Desktop PC and vice-versa.
    I would like to know what is the problem in this situation, I am not sure if this is an application error or a networking error where the account details are not signing in from a different IP or MAC address.
    Please and thank you!

    "The load balancing was already functional:"
    Do you have a description how to do that?
    I Would like to know how.
    "so ALL traffic, not going to the LAN network and so over this interface, went out on the DMZ interface, with source IP from LAN."
    If you put the VPN servers behind 1-1 NAT instead they will use the firewall as GW and the VPN clients will get at your remote sites/LAN IF you add routing definitions in VPN config what networks are reachable through VPN.
    Or you keep servers as they are but also add add more routing definitions in VPN AND static routes to each server with the firewall as gw to those remote networks. Default gw will still be through the DMZ IPs though.
    The problem with more than one VPN client from behind same IP address is, with your current server settings, most likely because of the client side NAT router isn't coping with the task. Your public IP VPN server(s) should mean NAT VPN problem is at the other end (customer/client network router/firewall).
    If two VPN clients behind same NAT router connected to different servers at your end, "12.34.56.80" and "12.34.56.81" (both are public IPs?) respectively I believe at least two should be able to connect.
    3G/4G modems isn't an option?
    Maybe try bringing your own tested working portable router (ethernet/wifi maybe includes a VPN client that connect to your servers) to the customer and put it temporarily on their LAN? There are these small new 3G/WiFi routers too. Depends on wether you need to be connected to customer LAN or not.
    Try other VPN solution, SSL or OpenVPN?
    Use both PPTP and L2TP simultaneously (PPTP could be troubelsome if GRE/TCP 1723 passthrough is disabled)?

  • Photoshop CS4 file saving problem...

    Photoshop CS4 file saving problem: When no file name is specified, Photoshop saves file to the root directory of the drive instead of the current folder. It auto names the image with the name of the folder that was active. Can this be fixed?
    BTW: I was using "save for web"--not sure if it that matters.

    Bug reports should go in the main forum.
    And yes, SFW has it's own file code so that is a very important detail.

  • Skype login problem on Nokia E5

    I have login problem in Nokia E5 kindly help me to make successful login

    i tried your method but my web browser doesnt give me the option:  'yes,allow always'. it only gives "continue"and "certificate details. no "yes, allow always." :/
    how can i proceed pls?

Maybe you are looking for

  • Can i create new CRM in 11i

    I have a question, can i create new CRM(Conflict resolution Manager) additionally in 11i EBS..?

  • Sales Order Management - Stock reservation

    Need some help on the solution for a sales order management situvation for a hardline retailer A hardline retailer takes direct orders for customer at the store and the stock is delivered to the customer from the warehouse. They have one central ware

  • Live Office

    We have BOE XI 3.1 (SP2) installed and integrated with BW 7.0 (via SAP Integration Kits 3.1 (SP2). We have Xcelsius Enterprise 2008 (SP3), Crystal Report 2008 and SAP Integration Kits 3.1 (SP2) installed on the developer machine, who will be creating

  • Java Code to scrape a hotmail address book

    Hi all... Can anyone help with trying to scrape a hotmail address book based on the user-id and password given with the help of a java program.. I tried using HTML Unit to do this but the process seems too tedious.. and cant really figure out the hid

  • Wonderware and OPC; reading arrays ?

    I have a contact on a project that says Wonderware is not able to read OPC data (Shared Variables) from LabVIEW in the form of arrays of double, all data must be single values. Can anybody confirm this statement, or tell me otherwise ? I find it stra