| find out device neme of a pocket pc |
|
 |
Index ‹ Information Technology ‹ Compact
|
- Previous
- 1
- Crm >> creating contacts from Account>From within an account, if I try to create a new contact by clicking
on the Contact button>new contact, populate the required fields, in
this case just the last name seems required (in Red), the first name
recommended (in Blue), and hit save, I get the following:
Server Error in '/' Application.
--------------------------------------------------------------------------------
The parameter is incorrect.
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.ArgumentException: The parameter is
incorrect.
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:
[ArgumentException: The parameter is incorrect.]
Microsoft.Crm.Platform.ComProxy.CRMContactClass.Create(CUserAuth&
Caller, String Contact) +0
Microsoft.Crm.Application.Platform.Contact.InternalCreate(String
xml) +31
Microsoft.Crm.Application.Platform.Contact.InternalCreateAndRetrieve(String
xml, String columnSet) +9
Microsoft.Crm.Application.Platform.Entity.CreateAndRetrieve(String
columnSet) +131
Microsoft.Crm.Application.Forms.AppForm.RaiseDataEvent(FormEventId
eventId) +286
Microsoft.Crm.Application.Forms.EndUserForm.Initialize(Entity
entity) +56
Microsoft.Crm.Application.Forms.CustomizableForm.Execute(Entity
entity, String formId, String formType) +83
Microsoft.Crm.Application.Forms.CustomizableForm.Execute(Entity
entity) +13
Microsoft.Crm.Web.SFA.ContactDetailPage.ConfigureForm() +238
Microsoft.Crm.Application.Controls.AppPage.OnPreRender(EventArgs e)
+30
System.Web.UI.Control.PreRenderRecursiveInternal() +62
System.Web.UI.Page.ProcessRequestMain() +1499
Can anyone help me decifer this? Please.
- 2
- SVCS >> adsi groups in ouHi
I'm trying to return a list of groups in a particular OU.
This works (returns all groups):
SELECT * FROM OpenQuery( ADSI, 'SELECT name, adsPath, displayName FROM
''LDAP://DC=MyDomain,DC=com''
WHERE objectClass= ''group'' ')
This doesn't (return all groups in this OU):
SELECT * FROM OpenQuery( ADSI, 'SELECT adsPath FROM
''LDAP://OU=MyOU,DC=MyDomain,DC=com''
WHERE objectClass= ''group'' ').
It returns a 'prepare' error.
The OU path is correct and there are groups in the OU because if I include
CN=MyGroup (''LDAP://CN=MyGroup, OU=MyOU,DC=MyDomain,DC=com''), it returns my
group.
Any help would be appreciated.
Thanks
- 3
- SVCS >> Printing IssuesHi all;
I am using SSRS 2005 for creating my reports and its working perfectly,
except I need to adjust the printing issues for some reports, I need a
technique to tell the report to take the landscape not portrait setting also
I need to print using A4, is there any way through the code or what so ever.
I have to mention here that I have created the reports at my server and it
gets the setting I wish when I try to print, but at the customer server it
gets another setting like portrait and so.
Also I have tried many printers on my server (I thought the printer is
changing the settings) but it works fine
Any help will be appreciated
- 4
- Crm >> Loading lookup field text into another form fieldI am using an 'onchange' event against a lookup field to populate another
form field using
crmForm.all.nswit_schoolname.DataValue =
crmForm.all.nswit_schoolsemployedid.SelectedText
but cannot seem to make it work. Tried it on a form save event as well.
Simple but ??? The reason for this is that I am attempting to update an
attribute in a parent entity with the latest value in a linked entity using
workflow.
- 5
- Crm >> CRM installed on SBS - when viewing reports it prompts again for username?recently installed CRM on top of Small Business Server, install went fine as
I have done this a few times before. When I was doing the initial log in as
the administrator, I noticed something a little bit odd though. when I go
to view specific reports, it prompts me to authenticate again, at which time
I enter the adiministrator info again and it lets me right in.
Anyone have any insight into this? Is there something I can change so that
it doesn't prompt me to authenticate to view the reports?
Thanks for the response!
-Dave Vandenberghe
dave@global-image.com
- 6
- Messanger >> Messenger tries to reinstall?!!!Right bit of a problem and i dont know how to get rid of it! Im running
Messenger Live (beta) and it tries to reinstall its self every time i start
it up. Messenger appears to start normally, signs me in then, signs me out
and reinstalls its self. The weird thing is that it only does this if i start
Messenger from the 'start' menu, never if i use the link from my desktop! Any
suggestions?
- 7
- Compact >> Net CF 2.0 SP1 : pattern for multithreaded job poolHi,
I've build an application that download a set of file through http.
I'd like to optimize time to download with a pool of thread to download
simultaneously several downloads.
I'm looking for a howto or best practice to reach my goal.
Thanks in advance,
Steve
- 8
- SVCS >> How can I do this expression please?Ok,
Sometimes the shipping department puts in a "_____" instead of a value
like this "23". The underbar should never show up on the report. The
textbox should only display its contents if there is a real value.
Here is the current expression for that textbox:
= Fields!QtyShipped.Value
How can I change this expression to only display the contents of the
textbox if there is a real value of any number in it so that nothing
else they put in the field shows up?
Thanks,
Trint
- 9
- 10
- SVCS >> Unable to get sample reporting services to workI am totally new to reporting services, and am trying to use the SQL Server
2005 sample reporting services. I have the samples AdventureWorks database
set up, I have the VS 2005 reports project built and deployed, I can see all
the sample reports at http://localhost/reports$SQLExpress, but as soon as I
try to run any of them, I get an error of the form
a.. An error has occurred during report processing.
a.. Cannot create a connection to data source 'AdventureWorks'.
a.. Cannot open database requested in login 'AdventureWorks'. Login
fails. Login failed for user 'XXX'. b.. c.. d..
I cannot see why I am unable to log into the DB. I have been trying all
sorts of things with permissions using Management Studio but cannot get
anywhere. I am tearing my hair out over this. Any ideas?
- 11
- Compact >> md5Hello I'm using the md5 methed below to encript data and send it to a
server, i'm using a database function to do the md5 on the server.
The problem is the methed below only works about 90% of the time and I
need it to work 100% of the time can anyone help me with this problem.
The problem could be on the server, but its a system thing so my guess
is the problem lies in the Methed below.
Thanks for the help!
public static String GetMD5(string toEncode)
{
/* variables to be used and returned */
String encodedString = "";
string[] stringArray = new String[16];
/* instantiate a new MD5 */
MD5 md5 = new MD5CryptoServiceProvider();
/* get data as octets */
byte[] data =
System.Text.Encoding.ASCII.GetBytes(toEncode);
/* calculate the MD5 hashcode representing the octets */
byte[] result = md5.ComputeHash(data);
/* reconstruct the first 16 octets into the resulting
byte[] */
for (int i = 0; i < result.Length; i++)
{
//stringArray[i] = (result[i].ToString("x")); // where
"x" represents a hexadecimal conversion
//encodedString += stringArray[i];
encodedString += result[i] < 0xF ? "0" +
result[i].ToString("x"): result[i].ToString("x");
}
return encodedString;
- 12
- SBS >> Folders, Files & Permissions?Hi,
Is there a method to configure the permissions of a folder that allows users
to create folders in a shared folder, but doesn't allow users to create,
copy or move files in the shared folder?
Best regards,
Dennis.
- 13
- SBS >> Web Mail.Hi All,
Any ideas why users can nolonger access webmail from remote locations...
we used the command https://000.000.000.000/exchange ( not real ip address )
and we were presented with the Outlook log on screen. Can it be blocked by
firewall? If so which port should be unblocked ...
We can address the webmail internally ie .. http://server1/exchange and it
works ok .... it has been working fine for months ...
Thanks All...
- 14
- Messanger >> Messenger -all contacts are always offline-Hi, I have the following problem: Everytime I log on with MSN Messenger I see
all my contacts as offline, even when they are online. No one (friends,
family,...) blocks me. I also sent a request to new contacts and they
accepted me, but I don't get a confirmation of MSN Messenger and I also see
these contacts as offline.
I'm all-day logged on to MSN and i'm trying to find a solution to my problem
in the options/configs, but I haven't found it yet and I'm searching since 1
month! My firewall is also off.
Can anyone help me out plz?
Thx for replying! ;-)
- 15
- Crm >> can I update directly CRM TableHi,
I use CRM 1.2
I would like remove a licence of user, he don't exist in Active Directory.
so I would like do delete the good row in the table
SystemUsersLicences
Can I do that ?
|
| Author |
Message |
Paby

|
Posted: Fri Apr 14 16:16:58 CDT 2006 |
Top |
Compact >> find out device neme of a pocket pc
Hi NG,
how can I find out the device name of a pocket pc when connecting with rapi?
Thanks
Werner Leupold
Information Technology44
|
| |
|
| |
 |
Alex

|
Posted: Fri Apr 14 16:16:58 CDT 2006 |
Top |
Compact >> find out device neme of a pocket pc
You can query device registry - it's under HKLM\Ident\Name
"Werner Leupold" <EMail@HideDomain.com> wrote in message
news:EMail@HideDomain.com...
> Hi NG,
> how can I find out the device name of a pocket pc when connecting with
> rapi?
>
> Thanks
>
> Werner Leupold
>
|
| |
|
| |
 |
Alex

|
Posted: Fri Apr 14 16:22:46 CDT 2006 |
Top |
Compact >> find out device neme of a pocket pc
It's in the registry:
HKEY_CURRENT_USER\Software\Microsoft\Windows CE Services\Partners
-Alex
"Werner Leupold" <EMail@HideDomain.com> wrote in message
news:EMail@HideDomain.com...
> Hi NG,
> how can I find out the device name of a pocket pc when connecting with
> rapi?
>
> Thanks
>
> Werner Leupold
>
|
| |
|
| |
 |
WernerLeupold

|
Posted: Sat Apr 15 02:36:01 CDT 2006 |
Top |
Compact >> find out device neme of a pocket pc
Thank you, but that is not what I wanted to know.
I want to find out the name of the connected device by using the RAPI
functions searching within the registry of the device.
There is a function I used in VB6:
Declare Function CeRegOpenKeyEx Lib "rapi.dll" ( _
ByVal hkey As Long, _
ByVal lpSubKey As Long, _
ByVal ulOptions As Long, _
ByVal samDesired As Long, _
phkResult As Long) As Long
but it seems not to work properly in VB.Net
Any idea?
Thanks Werner
"Alex Yakhnin" wrote:
> It's in the registry:
>
> HKEY_CURRENT_USER\Software\Microsoft\Windows CE Services\Partners
>
> -Alex
>
> "Werner Leupold" <EMail@HideDomain.com> wrote in message
> news:EMail@HideDomain.com...
> > Hi NG,
> > how can I find out the device name of a pocket pc when connecting with
> > rapi?
> >
> > Thanks
> >
> > Werner Leupold
> >
>
>
>
|
| |
|
| |
 |
ctacke/>

|
Posted: Sat Apr 15 22:30:59 CDT 2006 |
Top |
Compact >> find out device neme of a pocket pc
Well you don't show your calling code or the fact that you've called
CeRapiInit or any clue about a return code....
-Chris
"Werner Leupold" <EMail@HideDomain.com> wrote in message
news:EMail@HideDomain.com...
> Thank you, but that is not what I wanted to know.
> I want to find out the name of the connected device by using the RAPI
> functions searching within the registry of the device.
>
> There is a function I used in VB6:
>
> Declare Function CeRegOpenKeyEx Lib "rapi.dll" ( _
> ByVal hkey As Long, _
> ByVal lpSubKey As Long, _
> ByVal ulOptions As Long, _
> ByVal samDesired As Long, _
> phkResult As Long) As Long
>
> but it seems not to work properly in VB.Net
>
> Any idea?
>
> Thanks Werner
>
>
> "Alex Yakhnin" wrote:
>
>> It's in the registry:
>>
>> HKEY_CURRENT_USER\Software\Microsoft\Windows CE Services\Partners
>>
>> -Alex
>>
>> "Werner Leupold" <EMail@HideDomain.com> wrote in
>> message
>> news:EMail@HideDomain.com...
>> > Hi NG,
>> > how can I find out the device name of a pocket pc when connecting with
>> > rapi?
>> >
>> > Thanks
>> >
>> > Werner Leupold
>> >
>>
>>
>>
|
| |
|
| |
 |
WernerLeupold

|
Posted: Sun Apr 16 01:06:01 CDT 2006 |
Top |
Compact >> find out device neme of a pocket pc
Well, it's much easier than I thought:
System.Net.Dns.GetHostName.ToString()
I wanted to adapt a VB6 code, that was the problem.
Thanks Werner
"<ctacke/>" wrote:
> Well you don't show your calling code or the fact that you've called
> CeRapiInit or any clue about a return code....
>
> -Chris
>
> "Werner Leupold" <EMail@HideDomain.com> wrote in message
> news:EMail@HideDomain.com...
> > Thank you, but that is not what I wanted to know.
> > I want to find out the name of the connected device by using the RAPI
> > functions searching within the registry of the device.
> >
> > There is a function I used in VB6:
> >
> > Declare Function CeRegOpenKeyEx Lib "rapi.dll" ( _
> > ByVal hkey As Long, _
> > ByVal lpSubKey As Long, _
> > ByVal ulOptions As Long, _
> > ByVal samDesired As Long, _
> > phkResult As Long) As Long
> >
> > but it seems not to work properly in VB.Net
> >
> > Any idea?
> >
> > Thanks Werner
> >
> >
> > "Alex Yakhnin" wrote:
> >
> >> It's in the registry:
> >>
> >> HKEY_CURRENT_USER\Software\Microsoft\Windows CE Services\Partners
> >>
> >> -Alex
> >>
> >> "Werner Leupold" <EMail@HideDomain.com> wrote in
> >> message
> >> news:EMail@HideDomain.com...
> >> > Hi NG,
> >> > how can I find out the device name of a pocket pc when connecting with
> >> > rapi?
> >> >
> >> > Thanks
> >> >
> >> > Werner Leupold
> >> >
> >>
> >>
> >>
>
>
>
|
| |
|
| |
 |
| |
 |
Index ‹ Information Technology ‹ Compact |
- Next
- 1
- Crm >> CRM 1.2 Redeployment problems with Step 5, mapping usersI have followed the redeployment steps very carefully but
no matter how many times I try to redeploy, I fail on
Step 5. Here is what I have done and my scenario.
Current System with CRM Server V1.2 Installed:
domain: crmdomain1.local
New System that I want to install CRM on:
domain: crmdomain2.local
Step 1: I used the data export tool and the current
system and successfully created 2 xml files with the OU,
security roles, etc all intact.
Step 2: took a copy of the SQL databases and followed the
directions to do it how crm wants you to.
Step 3: On the new crm system I installed active
directory and a new domain controller (which I will call
crmdomain2.local) and installed sql server
Step 4: I restored copy of crm databases as statementin
the implementation guide. I also created a blank crystal
reports document.
Steps 1 through 4 were fine, but here is where I run into
trouble
Step 5: I installed and ran the crm redeployment tool. In
one of the steps I pointed to my 2 xml files (one is for
mapping and the other is for deploying) and this was
fine. When I click on install, after about 5 or 10
seconds into the installation this error occurs:
"An error occurred when populating Microsoft CRM user
groups. Ensure that CRM user accounts are accessible from
the current domain and run the wizard again."
I have no altered the user accounts and security roles in
any way and I cannot figure out how to resolve this issue
or find a workaround.
- 2
- SBS >> OWA shared calendarHi
I have a problem to see a users shared calendar in OWA.
We have SBS2003 with XPSP2 clients. Sharing one of the users calendar,
everybody can see it in the network. But when logging to OWA, nobody can see
the shared calendar. I looked at the posts here but couldnt add the shared
calendar in OWA.
Do i have to use public folder and add a calendar there or is there any
other way to add the shared calendar to OWA? Also, just realised that when
looking at the users own calendar in OWA, only the 1 DAY VIEW works and
clicking on 1 WEEK or 1 MONTH sends the calendar to a constant loop of
"UPDATING VIEW".
Many thanks
Koosha
- 3
- SBS >> Server DOwn every Sunday and unable to view \\companyweb\Hi,
I have installed 2 identical servers at 2 seperate golf clubs over the last
2 weeks, however i have the following problems which are driving me crazy!!
1) The first Server ( FHG ) seems to be shutting down during the early
hours, not everyday - but the last 2 sundays the server has been unavailable
on the network and on a remote connection when they have come in and it has
required a reboot.
2) The second server (BH) seems to be fine exept i have no access to
\\companyweb\ and the System Monitoring jast "Unable to find page" when i try
to check my server logs.
This is causing me some big problems and some considerable embarrasment i
woul dbe very grateful for any assistance that can be offered.
Thanks,
Rob
- 4
- SVCS >> SSL ReportManager ErrorHello,
I can't access Report Manager after setting Reporting Services to use SSL.
I receive an error message: Remotename can not be resolved: 'https'
I try to access report manager using
http://localhost/reports
https://localhost/reports
https://[Domainname]/reports [Domainname]= the domainname the certificate
is registered for
...
I can access reportserver and also access reports using the https:... URL
I can deploy reports with Visual Studio .Net
But I can't access reportmanager anymore.
I assume it would work if I deactivate SSL, but this seems not to be
sensibel. I can't imagine that I should deactivate it each time if I need to
access report manager.
Any help would be appreciated - it's urgend!
- 5
- SBS >> 2 SBS's on 2 sites 1 email domain?Hi,
I have two sites for one company I was thinking of setting the new SBS
site to just pop the email from the older (SBS 2000) site. or is there a
smtp way of doing this, theres only 3 users on the second site. so possibly
could just leave the exchange dormant, and get email via pop from teh remote
clients.
I guess I could setup a second domain and have seperate DNS setup at the ISP
and have forwarding rules on the old server for the email of the 3 users. So
they would effectively have 2 email addresses.
Basically I want the simplest & most robust solution.
Any suggestions
Cheers
Aart
- 6
- Crm >> Will pay for helpI know I can buy a website connector solution from c360 and others, but I
want to learn to do this myself. I have this book
http://www.microsoft.com/mspress/companion/0-7356-2259-0/
The sample code is also on the same page. The readme file from the sample
code
Working with Microsoft Dynamicsâ?¢ CRM 3.0 Sample Code Installation
Instructions
--------------------------------------------------------------------------------
This installer will copy all files to the directory you choose (default will
be C:\Microsoft Press\Working with CRM) and create two virtual Web sites
(workingwithcrm and websiteconnector).
To get the accompanying WorkingWithCrm.sln working you will need to do the
following:
Update all of the Web references to point to your Microsoft CRM Web server.
Update Callout reference in the WorkingWithCrm.Callout project. You will
need to add the correct path to the Microsoft.Crm.Platform.Callout.Base.dll
reference. The dll is located in \WorkingWithCrm.Callout\Utils folder
Configuration
In the WorkingWithCrm Web project, update the documentredirect.aspx url
variable with your sharepoint server.
For the WorkingWithCrm.Callout project, the LeadCallout.cs file, update the
callerid with a user that has global read access to the lead record
---------------------------------------------------------------------------
There are two projects I want to implement, the "workingwithcrm.workflow"
and "websiteconnector". The 1st takes an email to support@mydomain.com and
runs a workflow against that to create a case, the 2nd is of course the
website connector to capture the data.
What I want;
Someone who is capable, and patient to work with me via phone/internet to
walk me through the process of modifying this code, deploying it and making
it work and also helping me to understand this, so I can do other things
myself. I desperately want to understand this, but just can't figure it out
myself. I would prefer to pay via PayPal, but am flexible if you cannot
accommodate this. I am GMT-6 and am available very early AM and very late PM
during the week and most weekends. Please contact me so we can define the
scope of work and compensation.
Thanks!
- 7
- Crm >> tool bar icons for insertion into instruction documentI understand I may be in the wrong group, but I am trying
to prepare a rather remedial teaching document and wanted
to be able to insert a tool bar icon for recognition into
the document but have been unable to locate or determine
where I should go to retrieve and insert these icons for
visual reference on my training document. Please help.
Thanks.
- 8
- SVCS >> Will SSRS 2005 work with SQL Server 2000 database?Hi,
My manager wants to upgrade from SSRS-2000 to SSRS-2005, but he doesn't want
to upgrade to SQL Server-2005 yet. Can we do this? Will SSRS-2005 work with
a SQL Server 2000 Reporting Services database/Report Catalog?
--
Thanks,
Jeff
- 9
- 10
- SVCS >> Re: just started: an error (3) Could not establish secure channel for SSL/TLSIt helpded - thank you very much.
It's a kind of nightmare - when I fix one error (with your help) I got
another... :((
After fixing aspnet credentials I got something like this:
The underlying connection was closed: Could not establish secure channel for
SSL/TLS.
I unchecked SSL connetction option during installation...
U¿ytkownik "Christopher Conner" <someone@someplace.com> napisa³ w wiadomo¶ci
news:%23ALkMQdGFHA.2412@TK2MSFTNGP14.phx.gbl...
> Do this:
> go to command prompt:
>
> cd %systemroot%\microsoft.net\framework\v1.1.4322\
>
> aspnet_regiis -u
> aspnet_regiis -i -enable
>
> reboot.
>
> This should set the aspnet account credentials properly on the web server.
>
> =-Chris
>
>
> "Ciekawy" <ciekawy@poczta.pl> wrote in message
> news:cvi7dl$2vls$1@news2.ipartners.pl...
>> Well, I found a solution. I had to add permissions for ASP.NET user.
>> But finally, after opening the page http://<ServerName>/Reports I got
>> another error:
>>
>> "An internal error occurred on the report server. See the error log for
>> more
>> details. (rsInternalError) Get Online Help The system cannot find the
>> file
>> specified."
>>
>> More detailed info taken from log file:
>> " aspnet_wp!library!9e0!2005-02-23-16:27:37:: e ERROR: Throwing
>> Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
>> An internal error occurred on the report server. See the error log for
>> more
>> details., Error getting running jobs;
>> Info:
>> Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
>> An internal error occurred on the report server. See the error log for
>> more
>> details. ---> System.IO.FileNotFoundException: The system cannot find the
>> file specified.
>> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
>> errorCode, IntPtr errorInfo)"
>>
>>
>> Regards.
>>
>>
>>> Is there any kind of software you have running which monitors and
>>> reports
>>> on changes to any production file?( specifically in inetpub?)...I would
>>> maybe post this in the IE forum...
>>>
>>> --
>>> Wayne Snyder, MCDBA, SQL Server MVP
>>> Mariner, Charlotte, NC
>>> www.mariner-usa.com
>>> (Please respond only to the newsgroups.)
>>>
>>> I support the Professional Association of SQL Server (PASS) and it's
>>> community of SQL Server professionals.
>>> www.sqlpass.org
>>>
>>> "Ciekawy" <ciekawy@poczta.pl> wrote in message
>>> news:cvf5e3$17mc$1@news2.ipartners.pl...
>>>> Hell everybody,
>>>> I have just installed Reporting Services (the server part). I did it
>>>> preciously according to the instructions and completed it successfully.
>>>> As a test I opened IE and prompted http://<ServerName>/Reports and I
>>>> got
>>>> something like that:
>>>> (any help appreciated)
>>>>
>>>>
>>>> Server Error in '/Reports' Application.
>>>> --------------------------------------------------------------------------------
>>>>
>>>> Access denied to 'c:\inetpub'. Failed to start monitoring file changes.
>>>> 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.Web.HttpException: Access denied to
>>>> 'c:\inetpub'. Failed to start monitoring file changes.
>>>>
>>>> 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:
>>>>
>>>>
>>>> [HttpException (0x80070005): Access denied to 'c:\inetpub'. Failed to
>>>> start monitoring file changes.]
>>>> System.Web.FileChangesMonitor.FindDirectoryMonitor(String dir,
>>>> Boolean
>>>> addIfNotFound, Boolean throwOnError) +527
>>>> System.Web.FileChangesMonitor.StartMonitoringPath(String alias,
>>>> FileChangeEventHandler callback) +477
>>>> System.Web.Caching.CacheDependency.Init(Boolean isPublic, Boolean
>>>> isSensitive, String[] filenamesArg, String[] cachekeysArg,
>>>> CacheDependency dependency, DateTime utcStart) +1535
>>>> System.Web.Caching.CacheDependency..ctor(Boolean isSensitive,
>>>> String[]
>>>> filenames, DateTime utcStart) +50
>>>>
>>>> System.Web.Configuration.HttpConfigurationSystem.GetCacheDependencies(Hashtable
>>>> cachedeps, DateTime utcStart) +151
>>>> System.Web.Configuration.HttpConfigurationSystem.ComposeConfig(String
>>>> reqPath, IHttpMapPath configmap) +697
>>>> System.Web.HttpContext.GetCompleteConfigRecord(String reqpath,
>>>> IHttpMapPath configmap) +434
>>>> System.Web.HttpContext.GetCompleteConfig() +48
>>>> System.Web.HttpContext.GetConfig(String name) +195
>>>> System.Web.CustomErrors.GetSettings(HttpContext context, Boolean
>>>> canThrow) +20
>>>> System.Web.HttpResponse.ReportRuntimeError(Exception e, Boolean
>>>> canThrow) +40
>>>> System.Web.HttpRuntime.FinishRequest(HttpWorkerRequest wr,
>>>> HttpContext
>>>> context, Exception e) +480
>>>>
>>>>
>>>>
>>>>
>>>> --------------------------------------------------------------------------------
>>>> Version Information: Microsoft .NET Framework Version:1.1.4322.573;
>>>> ASP.NET Version:1.1.4322.573
>>>>
>>>>
>>>
>>>
>>
>>
>>
>>
>>
>
>
- 11
- SBS >> I have done a fresh install of 2003 SBE and I do not see ISAWhat happened. History: The server had previously been SBE 2000 and upgraded
to 2003 SBE, It died. It has been repaired, I have reinstalled a fresh copy
of SBE 2003 and I do not see ISA or the Firewall client install option in the
client tools. Please give me some insight. The clients that had the
Firewall client installed prior to the server meltdown show a message when
you hover over the Firewall client icon 'The server does not appear to be an
ISA server." or something to that effect. When I say I do not see it I mean
in the Server Management under Advanced management etc.
- 12
- Crm >> incedent.Create ErrorCan someone tell me what I am doing wrong?
I have taken the code directly from the CRM SDK to create an
incident(CRMIncident), converted it to VB. I know that my AccountID is
correct and
the UserID has Admin rights. All I get as far as an Error on the Create is
""SOAP Server Application Faulted"
strIncidentXml = "<incident>"
strIncidentXml += "<title>" & strTitle & "</title>"
strIncidentXml += "<accountid>" + strAccountId + "</accountid>"
strIncidentXml += "<ownerid type=/"""
strIncidentXml += Microsoft.CRM.Flags.ObjectType.otSystemUser.ToString
strIncidentXml += "/"" > """
strIncidentXml += UserAuth.UserId + "</ownerid>"
strIncidentXml += "</incident>"
'Create an incident
strIncidentId = incident.Create(UserAuth, strIncidentXml)
Thanks in Advance,
Rick
- 13
- SVCS >> Email Subscription Failure 1355I am getting the following exception in the ReportingService log file
ReportingServicesService!dbpolling!f24!1/11/2005-17:47:37::
NotificationPolling processing item 5f66ca82-c424-424b-b5f0-d149f8627dd2
ReportingServicesService!library!f24!01/11/2005-17:47:37:: i INFO:
Initializing EnableIntegratedSecurity to 'True' as specified in Server
system properties.
ReportingServicesService!library!f24!01/11/2005-17:47:38:: i INFO: Call to
RenderFirst( '/LUR_RPT/Blank Test' )
ReportingServicesService!library!f24!01/11/2005-17:47:38:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
The Report Server has encountered a configuration error; more details in the
log files, AuthzInitializeContextFromSid: Win32 error: 1355;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
The Report Server has encountered a configuration error; more details in the
log files
ReportingServicesService!library!f24!01/11/2005-17:47:38:: i INFO:
Initializing EnableExecutionLogging to 'True' as specified in Server system
properties.
ReportingServicesService!emailextension!f24!01/11/2005-17:47:38:: Error
sending email. Microsoft.ReportingServices.Diagnostics.Utilities.RSException:
The Report Server has encountered a configuration error; more details in the
log files --->
Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
The Report Server has encountered a configuration error; more details in the
log files
at
Microsoft.ReportingServices.Authorization.Native.GetAuthzContextForUser(IntPtr userSid)
at Microsoft.ReportingServices.Authorization.Native.IsAdmin(String
userName)
at
Microsoft.ReportingServices.Authorization.WindowsAuthorization.IsAdmin(String
userName, IntPtr userToken)
at
Microsoft.ReportingServices.Authorization.WindowsAuthorization.CheckAccess(String
userName, IntPtr userToken, Byte[] secDesc, ReportOperation requiredOperation)
at Microsoft.ReportingServices.Library.Security.CheckAccess(ItemType
catItemType, Byte[] secDesc, ReportOperation rptOper)
at
Microsoft.ReportingServices.Library.RSService._GetReportParameterDefinitionFromCatalog(CatalogItemContext
reportContext, String historyID, Boolean forRendering, Guid& reportID, Int32&
executionOption, String& savedParametersXml, ReportSnapshot&
compiledDefinition, ReportSnapshot& snapshotData, Guid& linkID, DateTime&
historyDate)
at
Microsoft.ReportingServices.Library.RSService._GetReportParameters(String
report, String historyID, Boolean forRendering, NameValueCollection values,
DatasourceCredentialsCollection credentials)
at
Microsoft.ReportingServices.Library.RSService.RenderAsLiveOrSnapshot(CatalogItemContext
reportContext, ClientRequest session, Warning[]& warnings,
ParameterInfoCollection& effectiveParameters)
at
Microsoft.ReportingServices.Library.RSService.RenderFirst(CatalogItemContext
reportContext, ClientRequest session, Warning[]& warnings,
ParameterInfoCollection& effectiveParameters, String[]& secondaryStreamNames)
at Microsoft.ReportingServices.Library.RenderFirstCancelableStep.Execute()
at
Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()
--- End of inner exception stack trace ---
at
Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()
at
Microsoft.ReportingServices.Library.RenderFirstCancelableStep.RenderFirst(RSService
rs, CatalogItemContext reportContext, ClientRequest session, JobTypeEnum
type, Warning[]& warnings, ParameterInfoCollection& effectiveParameters,
String[]& secondaryStreamNames)
at Microsoft.ReportingServices.Library.ReportImpl.Render(String
renderFormat, String deviceInfo)
at
Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.ConstructMessageBody(IMessage message, Notification notification, SubscriptionData data)
at
Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.CreateMessage(Notification notification)
at
Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.Deliver(Notification notification)
ReportingServicesService!notification!f24!01/11/2005-17:47:38:: Notification
5f66ca82-c424-424b-b5f0-d149f8627dd2 completed. Success: False, Status:
Failure sending mail: The Report Server has encountered a configuration
error; more details in the log files, DeliveryExtension: Report Server Email,
Report: Blank Test, Attempt 0
ReportingServicesService!dbpolling!f24!01/11/2005-17:47:38::
NotificationPolling finished processing item
5f66ca82-c424-424b-b5f0-d149f8627dd2
The Report Service Account is NT Authority\NetworkService
We have SP1 installed.
I get the problem whether my config file is:
<RSEmailDPConfiguration>
<SMTPServer>localhost</SMTPServer>
<SMTPServerPort></SMTPServerPort>
<SMTPAccountName></SMTPAccountName>
<SMTPConnectionTimeout></SMTPConnectionTimeout>
<SMTPServerPickupDirectory>C:\Inetpub\mailroot\Pickup</SMTPServerPickupDirectory>
<SMTPUseSSL></SMTPUseSSL>
<SendUsing>1</SendUsing>
<SMTPAuthenticate></SMTPAuthenticate>
<From>sqlagent@perryjudds.com</From>
<EmbeddedRenderFormats>
<RenderingExtension>MHTML</RenderingExtension>
</EmbeddedRenderFormats>
<PrivilegedUserRenderFormats></PrivilegedUserRenderFormats>
<ExcludedRenderFormats>
<RenderingExtension>HTMLOWC</RenderingExtension>
<RenderingExtension>NULL</RenderingExtension>
</ExcludedRenderFormats>
<SendEmailToUserAlias>True</SendEmailToUserAlias>
<DefaultHostName></DefaultHostName>
<PermittedHosts></PermittedHosts>
</RSEmailDPConfiguration>
Or this:
<RSEmailDPConfiguration>
<SMTPServer>smtpserver.domain.com</SMTPServer>
<SMTPServerPort></SMTPServerPort>
<SMTPAccountName></SMTPAccountName>
<SMTPConnectionTimeout></SMTPConnectionTimeout>
<SMTPServerPickupDirectory></SMTPServerPickupDirectory>
<SMTPUseSSL></SMTPUseSSL>
<SendUsing></SendUsing>
<SMTPAuthenticate></SMTPAuthenticate>
<From>sqlagent@domain.com</From>
<EmbeddedRenderFormats>
<RenderingExtension>MHTML</RenderingExtension>
</EmbeddedRenderFormats>
<PrivilegedUserRenderFormats></PrivilegedUserRenderFormats>
<ExcludedRenderFormats>
<RenderingExtension>HTMLOWC</RenderingExtension>
<RenderingExtension>NULL</RenderingExtension>
</ExcludedRenderFormats>
<SendEmailToUserAlias>True</SendEmailToUserAlias>
<DefaultHostName></DefaultHostName>
<PermittedHosts></PermittedHosts>
</RSEmailDPConfiguration>
sqlagent@domain.com is a valid user id on our domain. The SMTP server has
been a Microsoft Exchange 5.5 server or IIS SMTP service. Both are
configured to allow the machine to anonymous send. I have a tool that I can
send from this machine via SMTP without problem. We have 2 other
applicaitons that use the SMTP servers (any and all) without problem.
I assume that this is a Domain problem with the Authenticaing account, but
which one?
I am able to generate reports and we have the SOAP connector working.
Anyone know what I can do?
- 14
- Money >> Money for PPCI use Money for Pocket PC and Money for small business, but I can't make that
my PPC shows any transaction made using invoices in my desktop application.
If I make a business transaction using invoices the account I use for my
business cash updates in my desktop but not in my PPC... Am I doing something
wrong in account set up or it is that assets accounts don't show up in PPCs?
- 15
- SBS >> Backup DeviceI am using a Seagate Travan Backup device but this keeps failing saying it
can't mount the media!
I have it connected as a slave on the 2nd cable position. It shares this
connection with a CD Rom!
Any suggestions / experiences?
Falcon
|
|
|