Testing site with httpunit

Hello,
I am testing a site using httpUnit. The problem is I am not able to log in using login form. I supply all needed data, but log-in isn't performed:
try {
               final WebForm[] forms=resp.getForms();
               if (forms!=null && forms[0]!=null)
                    final WebForm form = forms[0];
                    /*cookies=wc.getCookieNames();
                    for (String cookie:cookies)
                         wc.putCookie(cookie, wc.getCookieValue(cookie));
                         System.out.println("Cookie name: "+cookie);
                    form.setParameter("username", "user");
                    form.setParameter("password", "password");
                    final String[] pNames=form.getParameterNames();
                    System.out.print('?');
                    for (final String pName:pNames)
                         System.out.print(pName+"="+form.getParameterValue(pName)+"&");
                    final SubmitButton button=form.getSubmitButton("action");
                    if (button!=null)
                         //System.out.println(button);
                         form.submit(button);
                    else
                         form.submit();
                    System.out.println(wc.getCurrentPage().getForms());
          } catch (SAXException e) {
               e.printStackTrace();
          } catch (IOException e) {
               e.printStackTrace();
          }also I use HTTP Sniffer to track HTTP requests, and all requests are fine. But log-in isn't performed. Can it be due to cookies processing or not?

The Nokia S60 and S40 SDKs (Software Development Kits) have Windows based emulators. You can download the SDKs from Forum Nokia:
http://forum.nokia.com

Similar Messages

  • Mom's IChat won't connect to apple test site.

    Trying to IChat with the mom on her older IMac. She runs OSX 10.2.8 with 768RAM and with IChat 2.0 We used to have no problem when I was in China and she in NYC. Now, nothing works. I can connect into the apple test sight, so the problem doesn't seem to be on my end. When she starts Ichat, she can preview herself, and gets a camera icon by her name. I see her on my Buddy list with a camera icon by her name. However, she only sees me with a phone icon, and she only sees the apple test site with a phone icon. Any ideas would be most appreciated.
    Powerbook G4 Mac OS X (10.4.8) 1G Ram 1.25 Mz 80G HD

    Thank you, Tony. The problem was solved immediately. Now Mom can watch her 4 year old granddaughter dance. Let's just say, your advice made for one very happy Grandma.

  • Both can connect to test sites but not videochat with each other

    I am using a 2GHz PPC iMac on 10.4.6 with external iSight. I can see the Apple ad from one of the test sites. My wife is using a G4 PowerBook running the latest Panther OS with external iSight. She is in a hotel but can also see the Apple ad from the test site. When she was home, we could videochat over Bonjour.
    But, while she is in the hotel out of town, we couldn't videochat with each other. Whether one initiated or the other did, we both get the "XXX failed to respond" message even though we obviously did accept the videocall.
    If we both can videochat with the test sites, how come we cannot videochat with each other?
    Given the above, I hope some experts can rule out a bunch of stuff and let me know the finite (and small) set of potential reasons affecting our situation so that I can work on resolving this efficiently.
    What could be the likely problem?
    On my side, I use an Apple AEBS that uses DHCP and NAT but my iMac is manually set to 10.0.1.201. I have set the ports in Firewall but even when I turned off Firewall it did not work.
    Any help is much appreciated.

    Hi Heng-Yee Yong,
    The test sites are most likely set to have the ports open by UPnP which does not use NAT.
    If you modem is routing and is using Port Forwarding and the Airport is as well then you have two lots of NAT going on at your end.
    I would Open Airport Admin Utilty (Applications/Utilities) and log on to the Airport
    Go to the Network tab.
    Deselect Distributing Addresses which wll trun off NAT in the Airport and make it a Wireless access device.
    This means your computer will have to take an IP form the Modem.
    This may not be rquired if the modem id is Bridge mode itself as this measn it is not routing and all port will be open without the use of NAT.
    This App can help identify if NAT is a problem
    http://bleu.west.spy.net/~dustin/projects/natcheck.xtp
    Or at least whether you have Consistent NAT or not.
    8:50 PM Wednesday; April 26, 2006

  • UIX Unit Test with HttpUnit

    Hi
    I would like to test my UIX pages with HttpUnit. I am always having an exception while trying to get a page. Here is my code:
    package mypackage;
    import com.meterware.httpunit.TableCell;
    import com.meterware.httpunit.WebTable;
    import junit.framework.TestCase;
    import com.meterware.httpunit.GetMethodWebRequest;
    import com.meterware.httpunit.WebConversation;
    import com.meterware.httpunit.WebRequest;
    import com.meterware.httpunit.WebResponse;
    public class TestThree extends TestCase
    public TestThree(String name)
    super(name);
    public void testTable() throws Exception
    WebConversation webConversation = new WebConversation();
    WebRequest request = new GetMethodWebRequest("http://localhost:8988/HttpUnitTest-View-context-root/table.do");
    WebResponse response = webConversation.getResponse(request);
    Here is the exception thrown:
    ReferenceError: "event" is not defined.
         at org.mozilla.javascript.NativeGlobal.constructError(NativeGlobal.java:597)
         at org.mozilla.javascript.NativeGlobal.constructError(NativeGlobal.java:557)
         at org.mozilla.javascript.ScriptRuntime.name(ScriptRuntime.java:1076)
         at org.mozilla.javascript.Interpreter.interpret(Interpreter.java:2265)
         at org.mozilla.javascript.InterpretedFunction.call(InterpretedFunction.java:58)
         at com.meterware.httpunit.javascript.JavaScript$JavaScriptEngine.performEvent(JavaScript.java:172)
         at com.meterware.httpunit.scripting.ScriptableDelegate.doEvent(ScriptableDelegate.java:56)
         at com.meterware.httpunit.WebResponse$Scriptable.load(WebResponse.java:689)
         at com.meterware.httpunit.javascript.JavaScript.load(JavaScript.java:89)
         at com.meterware.httpunit.javascript.JavaScriptEngineFactory.load(JavaScriptEngineFactory.java:58)
         at com.meterware.httpunit.RequestContext.runScripts(RequestContext.java:44)
         at com.meterware.httpunit.WebWindow.getResponse(WebWindow.java:122)
         at com.meterware.httpunit.WebClient.getResponse(WebClient.java:113)
         at mypackage.TestThree.testSailorsTable(TestThree.java:19)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at junit.framework.TestCase.runTest(TestCase.java:154)
         at junit.framework.TestCase.runBare(TestCase.java:127)
         at junit.framework.TestResult$1.protect(TestResult.java:106)
         at junit.framework.TestResult.runProtected(TestResult.java:124)
         at junit.framework.TestResult.run(TestResult.java:109)
         at junit.framework.TestCase.run(TestCase.java:118)
         at junit.framework.TestSuite.runTest(TestSuite.java:208)
         at junit.framework.TestSuite.run(TestSuite.java:203)
         at junit.framework.TestSuite.runTest(TestSuite.java:208)
         at junit.framework.TestSuite.run(TestSuite.java:203)
         at junit.swingui.TestRunner$16.run(TestRunner.java:623)
    Any help would be welcomed.

    My question is more precisely if Sql Developer takes into account an argument like type Table Of Record, or an argument like type ...%ROWTYPE (knowing there is no problems with an argument like type Record)
    Thank you for your answers.

  • Public SharePoint Online Site with External User Portal

    Hello Everyone,<o:p></o:p>
    My company switched over to Office 365 a few months ago, and now would like to start using our Public SharePoint site to share information (documents
    pertaining to their orders/drawings/etc.) with our customers (external users).<o:p></o:p>
    <o:p> </o:p>
    I have seen documentation on how to share documents with individual users, but we were looking to do something a little bit different. We would ultimately
    like to have a public site with generic company information (like hours, about us,directions etc.) that anyone can see.
    We would also like to use SharePoint as almost an "FTP type" service where we could post documents and share them with individual
    external
    users. HOWEVER, instead of sharing individual documents, we were wondering if there was a way that an external user (that we have granted
    access) could sign into the public SharePoint site, and then see information that ONLY pertains to them.
    I have been doing some research on this, and I haven't seen that anyone else has tried this. Has anyone had any luck? Or would you have suggestions on how to make
    this work? I had originally posted this question on the Office 365 SharePoint forum, and they suggested posting this question here. Any help would be appreciated. Thanks!

    Hi,
    did you finally manage to get what you requested here above ? Indeed, I am also struggling to set up the same (public website with individual content sharing with external authentified user).
    For external user, I am quite sure that we need to go through MS ID creation (I have created some test users using https://login.live.com).
    Our public website is done and (almost) working. I have then created a sub-site for the same, this one to manage permission based on authentified user
    But I am stuck when trying to assign a document library with relavant permission.
    Would be great to share our feedback and I have searched a lto on the web and did not find any satisfying answer to this design (If there is any... here is my doubt...)
    Thanks in advance
    stef

  • Suggestions for most efficient way to create a second app or site with minor rebranding

    I've been asked to create a new Foundation 2010 ite that's going to be 90% the same site as one for another division. The current website uses custom masterpages and some other customization. My understanding is that the differences are going to be a different
    URL and some minor branding stuff. THey are external presence sites. I don't believe it's using search or much else in the way of services, custom wsps, etc. Very simple sites.
    I'm thinking of backing up the dbs, restoring using different mdf/ldf and db names, creating a new app and attaching, but not sure if the GUIDs will conflict. I'm also thinking that what the masterpages call in _layouts may need to be changed, which should
    be pretty simple.
    Anything I'm overlooking?
    Also, apologies for using apps and sites interchangeably, I'm aware of the differences. I was actually asked to create a new site and assign a new URL to it, but if that's doable it sounds more complex to me.
    Thanks,
    Scott

    Hi,
    According to your post, my understanding is that you want to create a second app or site with minor rebranding.
    I recommend to create a test environment for existing production enviroment.
    For more information, you can refer to:
    Moving content between SharePoint environments
    Copy SharePoint production data to a test environment
    Build a SharePoint 2010 Test/Development Farm
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • Local Test site will not transfer files to prview in browser

    I designed a web site in DW the remote site works/views correctly, but the local testing site index page will not preview below the header in any browser with the files it need to view corrrectly. 
    I am working on a mac 10.6.8 using DW 5.5. I had my local testing server working correctly viewing these files from a browser for about 1.5 year then it stopped working and stopped transfering some files from the index page.
    The activity report lists all the files that were not transferred.
    and this report;
    File activity incomplete. 2 file(s) or folder(s) were not completed.
    Files updated: 2
    Files skipped: 20

    Just to clarify, you have defined a Local Testing Server in Dreamweaver.
    What are the setup details for your testing server?
    You have installed either MAMPP, XAMP or WAMP  on your computer.
    Are you sure your server is running?
    Does your index page contain valid code?
    Code Validation Tools
    CSS - http://jigsaw.w3.org/css-validator/
    HTML - http://validator.w3.org/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Canon 860 Series (Pixma) Printer Problems with OSX 10.8 (Mountain Lion) – links to Canon Support Site with Drivers and Software with install tips

    After spending several hours sorting out Canon Pixma OSX problems here are my thoughts:
    Canon 860 Series (Pixma 868) Printer Problems with OSX 10.8 (Mountain Lion) – links to Canon Support Site with Drivers and Software with install tips
    Problem:
    - New imac and MacBook Pro 2012 (OSX 10.8.2) had a problem using Canon Pixma 868 printer on network and would not scan or print using Canon Pixma software (Pixma MP Navigator 2.1 & Photo Print), which has advanced scanning and photo printing functions. 
    - When I connected the canon printer to my imac, OSX 10.8.2 automatically downloaded and installed drivers for Canon 860 series printer. I could then add the new printer (select ‘apple menu’ / ‘system preferences’ / ‘print and scan’ / “+”) and printer would work while connected via USB but could not get to print or scan over network wifi. 
    - The original Canon 860 Series CD does not work with 10.8 and the manual / online instructions did not make sense (as based on CD install). 
    Solution:
    1) Install Canon Printer Drivers and Software (from official Canon site)
    Go to canon support site, review FAQ, then download and install following Pixma 860 Series software & drivers for OSX 10.8 (links see below). The version I downloaded is in brackets but check for updated version. Full instructions are below.
    Canon 860 Series Drivers & Software  for OSX 10.8 Mountain Lion:
    The base software and drivers needed for using Canon 860 Series on Mac OS X 10.8 (USB) are
    1 Printer Driver
    (Canon MX860 series CUPS Printer Driver Ver. 10.67.1.0 (03-Aug-2012))
    2 Scanner Driver
    (Canon MX860 series Scanner Driver Ver. 14.11.4a (03-Aug-2012))
    3 Network Tool
    (Canon IJ Network Tool Ver. 4.1.0 for Intel Mac (27-Dec-2012)
    Canon Software for using advanced printing and scanning functions (while connected to network)
    4 Solution Menu
    (Canon Solution Menu Ver. 1.4.1 (27-Jul-2012 ))
    5 MP Navigator EX
    (Canon MP Nav EX Ver. 2.1.3 (02-Auf-2012))
    6 Easy-PhotoPrint EX
    (Canon Easy-PhotoPrint EX Ver. 4.1.6 (21-Jan-2013 ))
    Canon Support (HK) – check your local site
    http://www.canon.com.hk/en/download/main/index.do
    Select Product and drivers from support site eg http://support-hk.canon-asia.com/
    1. Choose a product category
    Multifunctional Printers
    2. Choose a product series
      Pixma
    3. Choose a product model
      Pixma MX868
    4. Choose type of document
    Downloads or FAQ
    If you have problems installing the software under 10.8, see the FAQ on Canon site. You will need to allow software installs from “unidentified developers by using “Control” Key or by changing your system preferences)
    2) Check Canon Printer and Software Working while connected via USB
    Once you have downloaded and installed drivers and software and restarted computer, check that the printer and Canon Pixma software (Pixma MP Navigator 2.1 & Photo Print) are working via USB.  Open the Canon IJ Network Tool App (Applications / Canon Utilities /IJ Network Tool / Canon IJ Network Tool App) and make sure you can see the Canon MX 860 series (xx.xx.xx.xx.xx.xx) and that it shows the correct SSID Wifi settings (under the Canon IJ Network Tool App ‘Setup menu’).  This is normally done as part of the automatic install but worth double checking
    3) Add new network printer using ‘apple menu’ / ‘system preferences’ / ‘print and scan’ / “+”).
    After you have checked USB printing turn off printer, unplug the USB cable and shutdown the Canon IJ Network Tool App.
    Then turn the printer back on and wait 30s. Then add a new printer using ‘apple menu’ / ‘system preferences’ / ‘print and scan’ / “+”). Once you select “+” (add new printer), wait 10-30s for the Wifi Networked Canon MX 860 Series printer to appear in the new window eg Canon MX 860 series (xx.xx.xx.xx.xx.xx) (Kind: “Canon IJ Network”)
    DO NOT ADD THE MX 860 SERIES BONJOUR SCANNER (the Bonjour Scanner is the built-in software, is not needed and often appears first on the add printer list).  The Canon scanner can be accessed used through the MP Nav EX Ver. 2.1.3 software (which has much better functions)
    You will now have two Printer Canon MX860 (USB) and Canon MX860 (Wifi / Network). Set the Canon MX860 (Wifi / Network) as default and test print and scan
    If the Wifi Networked Canon MX 860 Series printer does not appear, check the printer and make sure that the printer can see the wifi network. On the printer select Menu / Settings / Device Settings / Lan Settings / WLAN Setting List.  It should say WLAN Active, identify the SSID and have an IP address
    If the printer can not see the Wifi Network, plug the USB cable back in, then open the Canon IJ Network Tool App (Applications / Canon Utilities /IJ Network Tool / Canon IJ Network Tool App). Make sure you can see the Canon MX 860 series (xx.xx.xx.xx.xx.xx) and that it has your SSID settings (under setup), if it has this info, restart the computer and the printer and try again

    Hi, thaks for response, meant to post as a discussion (not question), wanted to save others time if they get the same problem

  • Safari will not open certain web sites with https or http

    safari will not open certain web sites with https or http,any help will be welcome,it must be a security setting,but i have not changed any settings.

    From your Safari menu bar click Safari > Preferences then select the Exensions tab.
    If there are any installed, switch the button to off, quit and relaunch Safari to test.
    If there is more than one extension insalled, uninstall one a time, quit and relaunch Safari and test.

  • Ipod Touch 3rd Gen - not recognized by computer or itunes.  Shows cable pointing to itunes logo.  Can't reset it.  Doesn't work at all.  Have tried all the supposed fixes on the apple site with no luck.  It suggested asking other users !

    I have a 3rd Generation ipod touch that is not recognized by itunes or my computer.  My itunes works with other apple devices I own.  I cannot reset the ipod touch and can never get to the screen where it is supposed to show a red battery to turn it off.  I can't reset it.  Have tried to use the suggestions on the apple site to no avail.  Any suggestions ?

    From my experience, the only way you're gonna get a PC afflicted with this disease to work with a 5th gen nano is to roll back to an earlier version of iTunes.  Those affected have been exhausted by this ongoing issue.  To update or not to update?  And I always say never update unless you have to, and turn off all that auto update mess!
    I have two core2duo lappies running 32b vista.  My workflow dictates 32b fyi.  One is acer aspire running itunes v 11.1 (.0.126),  5th gen nano was originally formatted and works just fine on this machine to this day.  My other is the bigger badder lenovo thinkpad and the 5th gen will NOT mount using any version of itunes past 11.0 (.1.12)  Windows mounts it just fine.  itunes is not having it.  no shirt no shoes no service.
    I have both a 4th and 5th gen nano.  The 4th gen works great on both machines, I even successfully tested it with the latest version (11.1.5) before subsequent deletion on the thinkpad!  Weird huh?  I think my next experiment might be to restore my 5th gen w/ a Mac and theeeeen plug it into PC itunez.
    I'm at a loss on the thinkpad.  Scanned for intruders.  Cut the Lenovo bloat.  Executed system and reg maintenance.  Took down msconfig to a safe mode + itunes level to attempt to resolve possible sw conflicts but to no avail.  NO NO NO.  Every single dang port, every time on the thinkpad.  Has me feeling like others might get the same treatment by the next itunes update.  :|
    So in summary for me:
    5th gen nano and thinkpad are a NoGo on 11.1^  last working version for me = 11.0.1
    5th gen nano is working on an acer aspire 11.1.0  but no way in the world am I updating
    4th gen nano is kicking 5th gen nano's @zz so what would make me want to buy a new ipod?

  • IWeb 09 Multiple sites with multiple MobileMe accounts

    Hi guys, one more for you,
    i have my MobileMe account and my website, i also create to more small sites just for testing purpose, i want to know if i can have multiple websites on iWeb and each one with their own MobileMe account.
    (e.g)
    -- site1 ( [email protected])
    -- site2 ( [email protected])
    -- site3 ( [email protected])
    i have only One Mac computer and i have to work on 3 different sites with only this computer.
    Help please... I am new to Mac world ( but i love it )

    Do you really have 3 separate users or just want to publish 3 separate sites? If it's the latter then you can do all of them with just one MMe account. In your domain file with three sites the top size will be the "alpha" site in that if you enter the minimum URL, http://web.me.com/YourMMe_AccountName/, the top site will come up. To go to the other two sites you'll need to add the site name on the end of the URL above, i.e. http://web.me.com/YourMMe_Account_Name/Site_1name/.
    In this economy if you can do what you want with one account that's saving some $$$$.
    OT

  • Problems deploying VS 2005 Web Site with Crystal Reports

    If it's not one assembly reported missing, it's another. Runs fine on my local machine, but can't deploy to a test environment on my company's server. How can I force crystal to install everything on the server that is needed so that my clients (end users) can run this report?
    We are not running Crystal RAS.
    When I set up my msi, I made sure to set it to take assemblies from my local machine. Yet, my local machine does not seem to contain all of the assemblies that it needs. They're not showing up in the bin anyway.
    I am using non-embedded report files (as you can see from my code below) so that I can change reports on the fly, if necessary without recompiling the entire app.
    I am using the ReportDocument object.
    Error as follows (when run from any desktop) in IE.
    Could not load file or assembly 'CrystalDecisions.ReportAppServer.CommLayer, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.IO.FileNotFoundException: Could not load file or assembly 'CrystalDecisions.ReportAppServer.CommLayer, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified.
    Source Error:
    Line 21:         'Server.MapPath(strPath)
    Line 22:
    Line 23:         crMissing218 = New ReportDocument
    Line 24:
    Line 25:         Dim file As String = Server.MapPath("\reports\CrystalReports\crmissing218.rpt")
    Source File: C:\Inetpub\wwwroot\MicsaReports\Missing218s.aspx.vb    Line: 23
    Assembly Load Trace: The following information can be helpful to determine why the assembly 'CrystalDecisions.ReportAppServer.CommLayer, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' could not be loaded.
    === Pre-bind state information ===
    LOG: User = NT AUTHORITY\NETWORK SERVICE
    LOG: DisplayName = CrystalDecisions.ReportAppServer.CommLayer, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304
    (Fully-specified)
    LOG: Appbase = file:///C:/Inetpub/wwwroot/MicsaReports/
    LOG: Initial PrivatePath = C:\Inetpub\wwwroot\MicsaReports\bin
    Calling assembly : CrystalDecisions.CrystalReports.Engine, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304.
    ===
    LOG: This bind starts in default load context.
    LOG: Using application configuration file: C:\Inetpub\wwwroot\MicsaReports\web.config
    LOG: Using host configuration file:
    ?\c:\windows\microsoft.net\framework\v2.0.50727\aspnet.config
    LOG: Using machine configuration file from C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\config\machine.config.
    LOG: Post-policy reference: CrystalDecisions.ReportAppServer.CommLayer, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304
    LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary ASP.NET Files/micsareports/aa1e0492/7939610/CrystalDecisions.ReportAppServer.CommLayer.DLL.
    LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary ASP.NET Files/micsareports/aa1e0492/7939610/CrystalDecisions.ReportAppServer.CommLayer/CrystalDecisions.ReportAppServer.CommLayer.DLL.
    LOG: Attempting download of new URL file:///C:/Inetpub/wwwroot/MicsaReports/bin/CrystalDecisions.ReportAppServer.CommLayer.DLL.
    LOG: Attempting download of new URL file:///C:/Inetpub/wwwroot/MicsaReports/bin/CrystalDecisions.ReportAppServer.CommLayer/CrystalDecisions.ReportAppServer.CommLayer.DLL.
    LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary ASP.NET Files/micsareports/aa1e0492/7939610/CrystalDecisions.ReportAppServer.CommLayer.EXE.
    LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary ASP.NET Files/micsareports/aa1e0492/7939610/CrystalDecisions.ReportAppServer.CommLayer/CrystalDecisions.ReportAppServer.CommLayer.EXE.
    LOG: Attempting download of new URL file:///C:/Inetpub/wwwroot/MicsaReports/bin/CrystalDecisions.ReportAppServer.CommLayer.EXE.
    LOG: Attempting download of new URL file:///C:/Inetpub/wwwroot/MicsaReports/bin/CrystalDecisions.ReportAppServer.CommLayer/CrystalDecisions.ReportAppServer.CommLayer.EXE.
    Stack Trace:
    [FileNotFoundException: Could not load file or assembly 'CrystalDecisions.ReportAppServer.CommLayer, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified.]
       CrystalDecisions.CrystalReports.Engine.ReportDocument..cctor() +0
    [TypeInitializationException: The type initializer for 'CrystalDecisions.CrystalReports.Engine.ReportDocument' threw an exception.]
       CrystalDecisions.CrystalReports.Engine.ReportDocument..ctor() +0
       Missing218s.Page_Load(Object sender, EventArgs e) in C:\Inetpub\wwwroot\MicsaReports\Missing218s.aspx.vb:23
       System.Web.UI.Control.OnLoad(EventArgs e) +99
       System.Web.UI.Control.LoadRecursive() +47
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1061
    Any help with this would be most appreciated. Is there a KB that deals with deploying a VS 2005 WEB SITE with Crystal?
    Thank you,
    Bob

    Okay. So I installed the correct MSMs, opened the deployment document that came with it entitled, "Crystal Reports for .net Framework 2.0 - Deployment using Merge Modules" and got to page 4. At the bottom of page 4. It had me create a new Web Setup Project. The MSMs are included in the project, as they should be.
    On page 4, #7, it says "Build the project."
    #8 says Run your development setup.
    There are 3 panes on my VS interface (4 including the Solution Explorer). To me, they look like they need the information regarding what Web Site this is to deploy.
    I don't see any instructions on how to do this. I just blew away my old MSIs that I created because the previous document said not to use them.
    So, how do I add my Web Site to these panes?
    Thank you for your help with this.
    Bob

  • How to go from test site to real site?

    I hope this is the right thread for this...if not my apologies.
    OK, I am very new to this, and trying to do this on my own for a small non-profit - very little funding, and 1 basic DW CS4 course, but I have managed to stumble through this far.   I have created a login page in DW CS4 (memberlogin.php).  I have tested it with phpMyAdmin and it is OK, other than it doesn't go to the correct page when username and password are OK (which I think will be solved if this question gets answered).  So, now that I have tested it in the test environment, what steps do I take to get it on my website? I can't seem to find any info on steps to do it in real world instead of test world.  I have saved the form to the real world site.  If you have an answer, please go slowly step by step!  Thanks.

    So we looked at it again and it's back to the mobile site. We don't now why or how but he doesn't want to question that. Thanks to Chris_CA for the suggestion.

  • I have installed and reinstaled Flash. When I go too your test site a Star pops up and it isn't work

    I have installed and reinstaled Flash. When I go too your test site a Star pops up and it isn't working. I need some help with this.

    Welcome to the Adobe Forums.
    The more information you supply about your situation, the better equipped other community members will be to answer. Please supply the following Information that you haven’t already (where applicable):
        •    Adobe product and version number
        •    Operating system and version number
        •    Browser and version number (where applicable)
        •    The full text of any error message(s)
        •    What you were doing when the problem occurred
        •    Screenshots of the problem (if possible)
        •    Computer hardware, such as CPU; GPU; amount of RAM; etc.

  • Mea Culpa - Internet Explorer now renders my iWeb 2 test site correctly?

    After umpteen server tweaks I finally got my iWeb 2 test site uploaded
    http://www.mjweber.com/mjwredsite/mjweber/welcome.html
    It displayed as designed in Safari on my MBP. I then fired up XP in Parallels and loaded the site in Internet Explorer. I didn't expect it to work but it did. Now I'm really stymied!
    I've had numerous compatibility issues with iWeb 2 and IE in the past week paralleled here by hundreds of other posts here. Now, when I finally upload the site, it suddenly works?
    Either the Internet gods are playing with me or the IE incompatibility stems from launching a published iWeb 2 folder from a local XP hard drive. That's where my navigation menus didn't display. What else can I say? I'm going to have a drink.
    I'd appreciate independent site validations by anyone not using Safari or OS X... Linux, Unix, Windows, Netscape, IE, etc. Thanks!
    http://www.mjweber.com/mjwredsite/mjweber/welcome.html

    Hi thanks for the advice, the text is centred vertically , left aligned and there is plenty of space at the end. I will try increasing width/height but not sure if that will help as box is already much bigger than text.
    In fact it works perfectly on another web page ...thats what surprising ....even the html for the two pages is identical from what we can see!
    Take a look at
    www.cibsys.com/cibsys1/index.html on the UK site and run down the various pages on the left side to see what happens (if you have IE on a PC). On the PC on some pages perhaps 30% eg workflow services the menu on the left fails to draw correctly leaving the text un readable.
    Thanks

Maybe you are looking for

  • Unable to save from .ai to .eps in Illustrator CS6 or CC

    I have created vector artwork in Illustrator CS6. I've saved the file successfully as an "ai" file. Now, I'm trying to do a new "save as" into an eps, but the file never saves nor appears in the folder I'm trying to save to. I've been using Illustrat

  • Nokia n9 update

    hi i bought my n9 in new zealand **bleep** smiths,watt software version should i be useing.on my phone is 10-2011-34-1-299.1pr299.but on the nokia web site it tells me 20-2011 is available,but my phone tell me its up to date??

  • Bill paid, but still shows as outstanding

    Hi, i recently contacted billing about this but haven't had a response. I paid my bill 2 weeks ago but it still shows as outstanding on my account. I don't want to be cut off again so i really need it resolved. I used an old bill to pay it as i could

  • MA collection validation

    Hi, We are using Sourcing 7. We have a requirement where we have to load contracts into the system as part of data migration. As soon as the contracts are loaded the contracts should get published to ERP. To achieve this I have created a collection v

  • Omit administrator permission for a certain application in windows 2012

    Hi Guys, How can i omit administrator permission for certain application in windows 2012 ? I have read that u can use process monitor and give the registry key sufficient permission but this sounds you can easily damage your machine, isn't there any