Latest developer linksBookmark and Share
 
HomeThis WeekTop MonthTop AlltimeSearchRegisterFAQ
  
 
Submit Your Link
Please login to submit your Link
 

ssevaccesssync service does not start

Posted: Jan/22/2011   By: nikhil   Points:15   Category: .NET  - ASP.Net    Views:101   Vote Up (0)   Vote Down (0)    

Ciao,

I'm newbie in synchronization so yoy must be patient (also for my english).

I'm trying to enable synch between an Access database on the thesktop and a mobile SQL Everywhere corresponding one..

I downloaded the Access Synchronizer but the example included give me the 2148012867 error

Looking for the ssevaccesssync service, I found that in my system (2000 Server) the library Httpapi.dll was not present.

I downloaded that library on the "system32" folder but when I start that service I get the error

"The procedure entry point RtlInitUnicodeStringEx could not be located in dynamic library ntdll.dll"

Any Idea

Thanks

Marcello

View Complete Post


Comments:
Be the first to comment this post.
 
Post Comment
Please login to post your comment
More Related Resources

Auto-Start ASP.NET Applications (VS 2010 and .NET 4.0 Series)

  
Auto-Start Web Applications with ASP.NET 4
Some web applications need to load large amounts of data, or perform expensive initialization processing, before they are ready to process requests. Developers using ASP.NET today often do this work using the "Application_Start" event handler within the Global.asax file of an application (which fires the first time a request executes). They then either devise custom scripts to send fake requests to the application to periodically "wake it up" and execute this code before a customer hits it, or simply cause the unfortunate first customer that accesses the application to wait while this logic finishes before processing the request (which can lead to a long delay for them).

ASP.NET 4 ships with a new feature called "auto-start" that better addresses this scenario, and is available when ASP.NET 4 runs on IIS 7.5 (which ships with Windows 7 and Windows Server 2008 R2). The auto-start feature provides a controlled approach for starting up an application worker process, initializing an ASP.NET application, and then accepting HTTP requests.

IIS Issues - Unable to start debugging on the web server. The underlying connection was closed. The connection was closed unexpectedly.

  

All of the sudden I'm getting the following error on my local web server (Win7 64bit, IIS 7.5).  I've uninstalled & reinstalled IIS locally and it didn't fix it.  IIS is set to start up automatically and I can see that the service has been successfully started.  Upon a fresh reboot if I go into IIS and click on start website I get the following error:
"The process cannot access the file because it is being used by another process.  (Exception from HRESULT:  0x80070020"
If I try to start debugging on my local website project I get the following error:
"Unable to start debugging on the web server.  The underlying connection was closed.  The connection was closed unexpectedly."
Any ideas on what I can try?  I've been doing research on the issue and Microsoft suggest making sure no other service is listening on the same ports.  I've verified that this isn't the issue.

All of the sudden I'm getting the following error on my local web server (Win7 64bit, IIS 7.5).  I've uninstalled & reinstalled IIS locally and it didn't fix it.  IIS is set to start up automatically and I can see that the service has been successfully started.  Upon a fresh reboot if I go into IIS and click on start website I get the following error:

"The process cannot access the file because it is being used by another process.  (Exception from HRESULT:  0x80070020"

If I try to start debugging on my local website project I get the following error:

"Unable to start debugging on the web server.  The underlying connection was closed.  The connection was closed unexpectedly."

Any ideas on what I can try?  I've been doing research on the issue and Microsoft suggest making sure no other service is listening on the same ports.  I've verified that this isn't the issue.


IIS Issues - Unable to start debugging on the web server. The underlying connection was closed. The connection was closed unexpectedly.

  

All of the sudden I'm getting the following error on my local web server (Win7 64bit, IIS 7.5).  I've uninstalled & reinstalled IIS locally and it didn't fix it.  IIS is set to start up automatically and I can see that the service has been successfully started.  Upon a fresh reboot if I go into IIS and click on start website I get the following error:
"The process cannot access the file because it is being used by another process.  (Exception from HRESULT:  0x80070020"
If I try to start debugging on my local website project I get the following error:
"Unable to start debugging on the web server.  The underlying connection was closed.  The connection was closed unexpectedly."
Any ideas on what I can try?  I've been doing research on the issue and Microsoft suggest making sure no other service is listening on the same ports.  I've verified that this isn't the issue.

All of the sudden I'm getting the following error on my local web server (Win7 64bit, IIS 7.5).  I've uninstalled & reinstalled IIS locally and it didn't fix it.  IIS is set to start up automatically and I can see that the service has been successfully started.  Upon a fresh reboot if I go into IIS and click on start website I get the following error:

"The process cannot access the file because it is being used by another process.  (Exception from HRESULT:  0x80070020"

If I try to start debugging on my local website project I get the following error:

"Unable to start debugging on the web server.  The underlying connection was closed.  The connection was closed unexpectedly."

Any ideas on what I can try?  I've been doing research on the issue and Microsoft suggest making sure no other service is listening on the same ports.  I've verified that this isn't the issue.


Populate Dropdown Listbox using a Web Service

  

Hello, I would like to know how to populate a drop down listbox (dlName) from a web service with last and first name i.e. (LastName, FirstName). My Web Service XML that I am requesting is as follows:

<?xml version="1.0" encoding="utf-16"?>

<FindPartnerContactsAction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">

    <CompanyName>training</CompanyName>

    <IntegrationLoginId>cscw</IntegrationLoginId>

    <IntegrationPassword>cscw10</IntegrationPassword>

 

       <!-- Search conditions  Available fields are:

                - ContactRecID (number)

                - FirstName (text)

                - LastName (text)

                - CompanyName (text)

                - Phone (text)

                - Email (text)

                - Type (text)

                - Relationship (text)

                - DefaultFlag (boolean)

                - AddressLine1 (text)

                - AddressLine2 (text)

                - City (text)

                - State (text)

                - Zip (text)

                - Country (text)

        -->

   

    <Limit>10</Limit>

 

 

 

</FindPartnerContactsAction>

 

The following is the WebService Response XML.

<?xml version="1.0" encoding="utf-16"?>

<FindPartnerContactsAction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">

  <MemberID>zadmin</MemberID>

  <CompanyName>training</CompanyName>

  <IntegrationLoginId>mylogin</IntegrationLoginId>

  <IntegrationPassword>mypassword</IntegrationPassword>

  <Limit>1</Limit>

  <Skip xsi:nil="true" />

  <Contacts>

    <Contact>

      <ContactRecID>77</ContactRecID>

      <FirstName>Arnie</FirstName>

      <LastName>Bellini</LastName>

      <CompanyName>Your Company</CompanyName>

      <Type />

      <DefaultFlag>true</DefaultFlag>

    </Contact>

  </Contacts>

</FindPartnerContactsAction>



My code that I am using to populate the drop down list box is as follows which needs correcting:

   public  void btnSubmit_Click(object sender, EventArgs e)

        {

                        const string contactCompanyId = "3esi";

 

 

            var xmlRequest = new XElement("FindPartnerContactsAction", new XAttribute(XNamespace.Xmlns + "xsi", "http://www.w3.org/2001/XMLSchema-instance"), new XAttribute(XNamespa

JQuery Autocomplete Call WCF Service Method

  

I am trying to use the below code to call a wcf service method for Autocomplete functionality in a TextBox.  I have written the following query:

$(document).ready(function () {
            $("#<%= txtCompany.ClientID %>").autocomplete(http://localhost/PieScore/PieScore.Application.Services/EmployeeService.svc/GetTestCompanyList, {
                dataType: 'json',
                parse: function (data) {
                    var items = data.d;
                    var parsed = [];
                    for (var i = 0; i < items.length; i++)
                        parsed[i] = {
                            data: [items[i]],
                            value: items[i],
                            result: [items[i]]
                        };
                    return parsed;
                }
            });
        }); 


The same query works if I pass a Java Script array variable instead of the wcf service method.

Can someone please help me understand what I am doing wrong in this...



The wcf service method contract is :

[OperationContract]
        [WebInvoke(Method = "GET", BodyStyle = WebMessageBodyStyle.WrappedRequest, ResponseFormat = WebMessageFormat.Json)]
        string[] GetTestCompanyList(string prefixText, int count);









WCF Service Hosting with Certificate

  

Keyset does not exist

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.Security.Cryptography.CryptographicException: Keyset does not exist


Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:

[CryptographicException: Keyset does not exist
]
System.Security.Cryptography.Utils.CreateProvHandle(CspParameters parameters, Boolean randomKeyContainer) +369
System.Security.Cryptography.Utils.GetKeyPairHelper(CspAlgorithmType keyType, CspParameters parameters, Boolean randomKeyContainer, Int32 dwKeySize, SafeProvHandle& safeProvHandle, SafeKeyHandle& safeKeyHandle) +151
System.Security.Cryptography.RSACryptoServiceProvider.GetKeyPair() +85
System.Security.Cryptography.RSACryptoServiceProvider..ctor(Int32 dwKeySize, CspParameters parameters, Boolean useDefaultKeySize) +280
System.Security.Cryptography.X509Certificates.X509Certificate2.get_PrivateKey() +468
System.ServiceModel.Security.SecurityUtils.EnsureCertificateCanDoKeyExchange(X509Certificate2 certificate) +85


WHAT I DID SO FAR:


Created a WCF project

Used wsHttpBinding

Created a Certificate Root Authority on server

Created a Certificate from it

Hosted the service on MS Windows 2008 Server, IIS 7 as Web Application under Default Web site (tried to create a seperate web site as well, but didnt work)

and the result is above.


CHEKED LIST:

Network Service user has the rights to the key of certificate


All of the above was done exactly as above on the development enviroment, and it is working smooth, on production i need to test this, but it is not going through...any ideas???







EL Exception Handling block and WCF custom Service Fault Exception

  

I am currently working on a project to integrate WCF custom fault along with enterprise library exception block. 

I was following Guy Burstein's blog for doing this :

http://blogs.microsoft.co.il/blogs/bursteg/archive/2007/04/07/Shielding-WCF-Services-with-Exception-Handling-Application-Block-_2D00_-Part-1.aspx

This example only shows mapping for message and id. The message is of string data type and id is Guid data type.

But what if I have some other custom fields in my custom Fault object in which I have a CategoryID of type string to which I need to map the id of type Guid ?

When I try to do the mapping and propogate it, I get the value as null. Is there some way I could convert the Guid to string type while doing the mapping in EL?

[DataContract]

public class ServiceFault

{

    private string categoryCode;

    private string message;

  

    [DataMember]

    public string CategoryCode   

    {

        get { return categoryCode; }

        set { categoryCode = value; }

    }

 

 

    [DataMember]

    public string MessageText

    {

        get { return message; }

        set { message = value; }

    }

 

  }

 

 

 

 

 


Any framework for creating a job scheduler service?

  

Just curious to know if there was any official Microsoft code blocks, classes, or such for writing a service that runs other assemblies or WCF services?  That can be configured easily from a web page, pre-coded, for running tasks at certain times on certain recurring intervals?  I've already built one but am open to anything done better- which I'm sure there is.  Thanks!!!


PunchIn Tracking failed to start

  

I installed time card management template in sharepoint 2007. when start the punchin it is not working. I check the Time log list it is showing "PunchIn Tracking failed to start ."

So i try create to test simple work flow using sharepoint designer 2007 when publish the workflow in sharepoint desinger it will show the error "Error were found when compiling the workflow. the workflow file were saved but cannot be run." also the advanced area error "Unexpected error on server associating the workflow"

How to solve this issue?


Service Unavailable opening Sharepoint 3.0 Central Administration

  

 

Hi everyone,

 

I have a Windows Server 2003 running WSS 3.0 that has started displaying "Service Unavailable" when I try to open the Central Administration page. I also get the following errors in the Event Viewer:

 

 

"The start address <sts3://servus-rkfdsp/contentdbid={126e686a-71da-426f-a5b1-102b6cd50f44}> cannot be crawled.

Context: Application 'Search index file on the search server', Catalog 'Search'

Details:
 Access is denied. Check that the Default Content Access Account has access to this content, or add a crawl rule to crawl this content.   (0x80041205)"

 

"The update cannot be started because the content sources cannot be accessed. Fix the errors and try the update again.

Context: Application 'Search', Catalog 'index file on the search server Search'"

 


"The Execute method of job definition Microsoft.SharePoint.Administration.Backup.SPBackupRestoreJobDefinition (ID 04a4cfe1-309c-479c-940b-e262ae9f4c23) threw an exception. More information is included below.

The backup job failed. For more information, see the error log that is located in the backup directory."

 

I have tried everything that I have found in the support center (find the assembly, run Repair) with no success. I cannot replce the assembly which I can't find anywhere. Has anyone else had this happen, and fixed it?


 
Categories:
.NET
Java
PHP
C/C++/VC++
HTML/XML
SAP
MainFrames
Data Warehousing
Testing
MySQL
SQL Server
Oracle
Javascript/VB Script
Others
Login
 
 
 
 
 Forgot password
 Contact Us   Terms Of use   Share your knowledge