BizTalk Server Orchestration - Publishing Web Svc - Error

This is Interesting: Free IT Magazines  
Home > Archive > BizTalk Server Orchestration > October 2004 > Publishing Web Svc - Error





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author Publishing Web Svc - Error
BC

2004-08-06, 5:51 pm

Hi all,

I have a simple orchestration I'm trying to publish as an HTTP web service
with the wizard. I keep getting the following error. (I also got this error
when I went thru the second tutorial - the B2BOrchestrations).

Failed to create project "http://localhost/BTMemberLookup",
[System.ArtumentNullException] Value cannot be null.
Parameter name: type

Any direction would be Greatly appreciated.
Thanks.
Butch
Ed

2004-09-07, 8:47 pm

I've got the same problem. Have you worked it out? If so ... how?!?!

"BC" wrote:

> Hi all,
>
> I have a simple orchestration I'm trying to publish as an HTTP web service
> with the wizard. I keep getting the following error. (I also got this error
> when I went thru the second tutorial - the B2BOrchestrations).
>
> Failed to create project "http://localhost/BTMemberLookup",
> [System.ArtumentNullException] Value cannot be null.
> Parameter name: type
>
> Any direction would be Greatly appreciated.
> Thanks.
> Butch

Vikas Nahata [MSFT]

2004-09-08, 8:47 pm

First check if you are able to create a regular C Sharp webservice using
Visual Studio .NET.
If you get the same error doing that then it means that there is some
installation issue with Visual Studio .NET

if you are able to create a C Sharp webservice successfully then
Can you follow the steps below and send the trace log file:

Make the following changes in BTSWebSvcWiz.exe.config.
Set the value of ApplicationTraceSwitch to 4.
Uncomment the trace listener
Specify a full pathname for BTSWebSvcWiz.trace.log

<?xml version="1.0" encoding="utf-8" ?>
<configuration>

<system.diagnostics>
<switches>
<!-- TraceLevel 0=Off, 1=Error, 2=Warning, 3=Info, 4=Verbose -->
<add name="ApplicationTraceSwitch" value="4" />
</switches>
<trace autoflush="true" indentsize="4">
<listeners>
<add name="Trace"
type="System.Diagnostics.TextWriterTraceListener, System,
Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
initializeData=" C:\Program Files\Microsoft BizTalk Server
2004\BTSWebSvcWiz.trace.log" />
</listeners>
</trace>
</system.diagnostics>
</configuration>

Then, run the publishing wizard and send BTSWebSvcWiz.trace.log

--------------------
| >>Thread-Topic: Publishing Web Svc - Error
| >>thread-index: AcSVPjJOy8hOXeIfSdSZF6XvTYrzgw==
| >>X-WBNR-Posting-Host: 24.1.4.59
| >>From: "=?Utf-8?B?RWQ=?=" <Ed@discussions.microsoft.com>
| >>References: <17FD73A4-6F35-4A3A-A405-E313C1FA3DB2@microsoft.com>
| >>Subject: RE: Publishing Web Svc - Error
| >>Date: Tue, 7 Sep 2004 17:53:03 -0700
| >>Lines: 17
| >>Message-ID: <412E1272-A479-4E03-BF4F-7F37C5CB6250@microsoft.com>
| >>MIME-Version: 1.0
| >>Content-Type: text/plain;
| >> charset="Utf-8"
| >>Content-Transfer-Encoding: 7bit
| >>X-Newsreader: Microsoft CDO for Windows 2000
| >>Content-Class: urn:content-classes:message
| >>Importance: normal
| >>Priority: normal
| >>X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| >>Newsgroups: microsoft.public.biztalk.orchestration
| >>NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29
| >>Path: cpmsftngxa10.phx.gbl!TK2MSFTNGXA03.phx.gbl
| >>Xref: cpmsftngxa10.phx.gbl microsoft.public.biztalk.orchestration:8078
| >>X-Tomcat-NG: microsoft.public.biztalk.orchestration
| >>
| >>I've got the same problem. Have you worked it out? If so ... how?!?!
| >>
| >>"BC" wrote:
| >>
| >>> Hi all,
| >>>
| >>> I have a simple orchestration I'm trying to publish as an HTTP web
service
| >>> with the wizard. I keep getting the following error. (I also got
this error
| >>> when I went thru the second tutorial - the B2BOrchestrations).
| >>>
| >>> Failed to create project "http://localhost/BTMemberLookup",
| >>> [System.ArtumentNullException] Value cannot be null.
| >>> Parameter name: type
| >>>
| >>> Any direction would be Greatly appreciated.
| >>> Thanks.
| >>> Butch
| >>

This posting is provided "AS IS" with no warranties, and confers no rights.

EBusiness Server Team

Ed

2004-09-22, 9:56 pm

Thanks for the response. Here is the contents of the log:

========================================
========================================

INFO: BEGIN BTSWebSvcWiz.exe @ 2004-09-10 11:10:47Z
INFO: BTSWebSvcWiz, Version=3.0.1.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35
INFO: Arguments:
AppTraceSwitch.TraceLevel=Verbose

VERBOSE: ExistingProjectLocation() The system cannot find the path specified
VERBOSE: ExistingProjectLocation() The system cannot find the path specified
VERBOSE: ExistingProjectLocation() The system cannot find the path specified
VERBOSE: WebServiceBuilder.ctor()
INFO: Progress: (0, 0, 100) Creating project
"http://localhost/ExposeWebService_Proxy"...
INFO: CreateSolution: http://localhost/ExposeWebService_Proxy
INFO: Progress: (0, 10, 100) Creating solution at "/ExposeWebService_Proxy".
ERROR: Failed to create project "http://localhost/ExposeWebService_Proxy".
[System.ArgumentNullException] Value cannot be null.
Parameter name: type
ERROR: Progress: (0, 100, 100) Failed to create project
"http://localhost/ExposeWebService_Proxy".
ERROR: CreateSolution()Value cannot be null.
Parameter name: type

INFO: END BTSWebSvcWiz.exe @ 2004-09-10 11:11:16Z
INFO: Return value: 0
========================================
========================================


Thanks again!

"Vikas Nahata [MSFT]" wrote:

> First check if you are able to create a regular C Sharp webservice using
> Visual Studio .NET.
> If you get the same error doing that then it means that there is some
> installation issue with Visual Studio .NET
>
> if you are able to create a C Sharp webservice successfully then
> Can you follow the steps below and send the trace log file:
>
> Make the following changes in BTSWebSvcWiz.exe.config.
> Set the value of ApplicationTraceSwitch to 4.
> Uncomment the trace listener
> Specify a full pathname for BTSWebSvcWiz.trace.log
>
> <?xml version="1.0" encoding="utf-8" ?>
> <configuration>
> …
> <system.diagnostics>
> <switches>
> <!-- TraceLevel 0=Off, 1=Error, 2=Warning, 3=Info, 4=Verbose -->
> <add name="ApplicationTraceSwitch" value="4" />
> </switches>
> <trace autoflush="true" indentsize="4">
> <listeners>
> <add name="Trace"
> type="System.Diagnostics.TextWriterTraceListener, System,
> Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
> initializeData=" C:\Program Files\Microsoft BizTalk Server
> 2004\BTSWebSvcWiz.trace.log" />
> </listeners>
> </trace>
> </system.diagnostics>
> </configuration>
>
> Then, run the publishing wizard and send BTSWebSvcWiz.trace.log
>
> --------------------
> | >>Thread-Topic: Publishing Web Svc - Error
> | >>thread-index: AcSVPjJOy8hOXeIfSdSZF6XvTYrzgw==
> | >>X-WBNR-Posting-Host: 24.1.4.59
> | >>From: "=?Utf-8?B?RWQ=?=" <Ed@discussions.microsoft.com>
> | >>References: <17FD73A4-6F35-4A3A-A405-E313C1FA3DB2@microsoft.com>
> | >>Subject: RE: Publishing Web Svc - Error
> | >>Date: Tue, 7 Sep 2004 17:53:03 -0700
> | >>Lines: 17
> | >>Message-ID: <412E1272-A479-4E03-BF4F-7F37C5CB6250@microsoft.com>
> | >>MIME-Version: 1.0
> | >>Content-Type: text/plain;
> | >> charset="Utf-8"
> | >>Content-Transfer-Encoding: 7bit
> | >>X-Newsreader: Microsoft CDO for Windows 2000
> | >>Content-Class: urn:content-classes:message
> | >>Importance: normal
> | >>Priority: normal
> | >>X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
> | >>Newsgroups: microsoft.public.biztalk.orchestration
> | >>NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29
> | >>Path: cpmsftngxa10.phx.gbl!TK2MSFTNGXA03.phx.gbl
> | >>Xref: cpmsftngxa10.phx.gbl microsoft.public.biztalk.orchestration:8078
> | >>X-Tomcat-NG: microsoft.public.biztalk.orchestration
> | >>
> | >>I've got the same problem. Have you worked it out? If so ... how?!?!
> | >>
> | >>"BC" wrote:
> | >>
> | >>> Hi all,
> | >>>
> | >>> I have a simple orchestration I'm trying to publish as an HTTP web
> service
> | >>> with the wizard. I keep getting the following error. (I also got
> this error
> | >>> when I went thru the second tutorial - the B2BOrchestrations).
> | >>>
> | >>> Failed to create project "http://localhost/BTMemberLookup",
> | >>> [System.ArtumentNullException] Value cannot be null.
> | >>> Parameter name: type
> | >>>
> | >>> Any direction would be Greatly appreciated.
> | >>> Thanks.
> | >>> Butch
> | >>
>
> This posting is provided "AS IS" with no warranties, and confers no rights.
>
> EBusiness Server Team
>
>

Vikas Nahata [MSFT]

2004-10-04, 5:52 pm

Looks like it may be a directory permission issue. Can you try to delete
the physical directory manually if it exists and then try to publish.
Is IIS and app pools started?

Are there any IIS applications on the system? (Sharepoint, etc.)

This posting is provided "AS IS" with no warranties, and confers no rights.

EBusiness Server Team
--------------------
| >>Thread-Topic: Publishing Web Svc - Error
| >>thread-index: AcScMa7VFQuagsM8RBauKdHuQOyVTw==
| >>X-WBNR-Posting-Host: 24.1.4.59
| >>From: "=?Utf-8?B?RWQ=?=" <Ed@discussions.microsoft.com>
| >>References: <17FD73A4-6F35-4A3A-A405-E313C1FA3DB2@microsoft.com>
<412E1272-A479-4E03-BF4F-7F37C5CB6250@microsoft.com>
<C2I2ixglEHA.3436@cpmsftngxa10.phx.gbl>
| >>Subject: RE: Publishing Web Svc - Error
| >>Date: Thu, 16 Sep 2004 14:11:07 -0700
| >>Lines: 119
| >>Message-ID: <AD6DD242-58A7-487C-A253-F882BDB215BB@microsoft.com>
| >>MIME-Version: 1.0
| >>Content-Type: text/plain;
| >> charset="Utf-8"
| >>Content-Transfer-Encoding: 8bit
| >>X-Newsreader: Microsoft CDO for Windows 2000
| >>Content-Class: urn:content-classes:message
| >>Importance: normal
| >>Priority: normal
| >>X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| >>Newsgroups: microsoft.public.biztalk.orchestration
| >>NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29
| >>Path: cpmsftngxa06.phx.gbl!TK2MSFTNGXA03.phx.gbl
| >>Xref: cpmsftngxa06.phx.gbl microsoft.public.biztalk.orchestration:8216
| >>X-Tomcat-NG: microsoft.public.biztalk.orchestration
| >>
| >>Thanks for the response. Here is the contents of the log:
| >>
========================================
====================================
====
| >>INFO: BEGIN BTSWebSvcWiz.exe @ 2004-09-10 11:10:47Z
| >>INFO: BTSWebSvcWiz, Version=3.0.1.0, Culture=neutral,
| >>PublicKeyToken=31bf3856ad364e35
| >>INFO: Arguments:
| >>AppTraceSwitch.TraceLevel=Verbose
| >>
| >>VERBOSE: ExistingProjectLocation() The system cannot find the path
specified
| >>VERBOSE: ExistingProjectLocation() The system cannot find the path
specified
| >>VERBOSE: ExistingProjectLocation() The system cannot find the path
specified
| >>VERBOSE: WebServiceBuilder.ctor()
| >>INFO: Progress: (0, 0, 100) Creating project
| >>"http://localhost/ExposeWebService_Proxy"...
| >>INFO: CreateSolution: http://localhost/ExposeWebService_Proxy
| >>INFO: Progress: (0, 10, 100) Creating solution at
"/ExposeWebService_Proxy".
| >>ERROR: Failed to create project
"http://localhost/ExposeWebService_Proxy".
| >>[System.ArgumentNullException] Value cannot be null.
| >>Parameter name: type
| >>ERROR: Progress: (0, 100, 100) Failed to create project
| >>"http://localhost/ExposeWebService_Proxy".
| >>ERROR: CreateSolution()Value cannot be null.
| >>Parameter name: type
| >>
| >>INFO: END BTSWebSvcWiz.exe @ 2004-09-10 11:11:16Z
| >>INFO: Return value: 0
========================================
====================================
====
| >>
| >>Thanks again!
| >>
| >>"Vikas Nahata [MSFT]" wrote:
| >>
| >>> First check if you are able to create a regular C Sharp webservice
using
| >>> Visual Studio .NET.
| >>> If you get the same error doing that then it means that there is some
| >>> installation issue with Visual Studio .NET
| >>>
| >>> if you are able to create a C Sharp webservice successfully then
| >>> Can you follow the steps below and send the trace log file:
| >>>
| >>> Make the following changes in BTSWebSvcWiz.exe.config.
| >>> Set the value of ApplicationTraceSwitch to 4.
| >>> Uncomment the trace listener
| >>> Specify a full pathname for BTSWebSvcWiz.trace.log
| >>>
| >>> <?xml version="1.0" encoding="utf-8" ?>
| >>> <configuration>
| >>> …
| >>> <system.diagnostics>
| >>> <switches>
| >>> <!-- TraceLevel 0=Off, 1=Error, 2=Warning, 3=Info, 4=Verbose -->
| >>> <add name="ApplicationTraceSwitch" value="4" />
| >>> </switches>
| >>> <trace autoflush="true" indentsize="4">
| >>> <listeners>
| >>> <add name="Trace"
| >>> type="System.Diagnostics.TextWriterTraceListener, System,
| >>> Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
| >>> initializeData=" C:\Program Files\Microsoft BizTalk Server
| >>> 2004\BTSWebSvcWiz.trace.log" />
| >>> </listeners>
| >>> </trace>
| >>> </system.diagnostics>
| >>> </configuration>
| >>>
| >>> Then, run the publishing wizard and send BTSWebSvcWiz.trace.log
| >>>
| >>> --------------------
| >>> | >>Thread-Topic: Publishing Web Svc - Error
| >>> | >>thread-index: AcSVPjJOy8hOXeIfSdSZF6XvTYrzgw==
| >>> | >>X-WBNR-Posting-Host: 24.1.4.59
| >>> | >>From: "=?Utf-8?B?RWQ=?=" <Ed@discussions.microsoft.com>
| >>> | >>References: <17FD73A4-6F35-4A3A-A405-E313C1FA3DB2@microsoft.com>
| >>> | >>Subject: RE: Publishing Web Svc - Error
| >>> | >>Date: Tue, 7 Sep 2004 17:53:03 -0700
| >>> | >>Lines: 17
| >>> | >>Message-ID: <412E1272-A479-4E03-BF4F-7F37C5CB6250@microsoft.com>
| >>> | >>MIME-Version: 1.0
| >>> | >>Content-Type: text/plain;
| >>> | >> charset="Utf-8"
| >>> | >>Content-Transfer-Encoding: 7bit
| >>> | >>X-Newsreader: Microsoft CDO for Windows 2000
| >>> | >>Content-Class: urn:content-classes:message
| >>> | >>Importance: normal
| >>> | >>Priority: normal
| >>> | >>X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| >>> | >>Newsgroups: microsoft.public.biztalk.orchestration
| >>> | >>NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29
| >>> | >>Path: cpmsftngxa10.phx.gbl!TK2MSFTNGXA03.phx.gbl
| >>> | >>Xref: cpmsftngxa10.phx.gbl
microsoft.public.biztalk.orchestration:8078
| >>> | >>X-Tomcat-NG: microsoft.public.biztalk.orchestration
| >>> | >>
| >>> | >>I've got the same problem. Have you worked it out? If so ...
how?!?!
| >>> | >>
| >>> | >>"BC" wrote:
| >>> | >>
| >>> | >>> Hi all,
| >>> | >>>
| >>> | >>> I have a simple orchestration I'm trying to publish as an
HTTP web
| >>> service
| >>> | >>> with the wizard. I keep getting the following error. (I also
got
| >>> this error
| >>> | >>> when I went thru the second tutorial - the B2BOrchestrations).
| >>> | >>>
| >>> | >>> Failed to create project "http://localhost/BTMemberLookup",
| >>> | >>> [System.ArtumentNullException] Value cannot be null.
| >>> | >>> Parameter name: type
| >>> | >>>
| >>> | >>> Any direction would be Greatly appreciated.
| >>> | >>> Thanks.
| >>> | >>> Butch
| >>> | >>
| >>>
| >>> This posting is provided "AS IS" with no warranties, and confers no
rights.
| >>>
| >>> EBusiness Server Team
| >>>
| >>>
| >>

Ed

2004-10-05, 5:54 pm

Vikas,

The directory never get's created. IIS is running. I can create web
services but then if I turn around and run the wizard it still fails. I
don't have any other IIS applications installed.

Thanks!!

ed

"Vikas Nahata [MSFT]" wrote:

> Looks like it may be a directory permission issue. Can you try to delete
> the physical directory manually if it exists and then try to publish.
> Is IIS and app pools started?
>
> Are there any IIS applications on the system? (Sharepoint, etc.)
>
> This posting is provided "AS IS" with no warranties, and confers no rights.
>
> EBusiness Server Team
> --------------------
> | >>Thread-Topic: Publishing Web Svc - Error
> | >>thread-index: AcScMa7VFQuagsM8RBauKdHuQOyVTw==
> | >>X-WBNR-Posting-Host: 24.1.4.59
> | >>From: "=?Utf-8?B?RWQ=?=" <Ed@discussions.microsoft.com>
> | >>References: <17FD73A4-6F35-4A3A-A405-E313C1FA3DB2@microsoft.com>
> <412E1272-A479-4E03-BF4F-7F37C5CB6250@microsoft.com>
> <C2I2ixglEHA.3436@cpmsftngxa10.phx.gbl>
> | >>Subject: RE: Publishing Web Svc - Error
> | >>Date: Thu, 16 Sep 2004 14:11:07 -0700
> | >>Lines: 119
> | >>Message-ID: <AD6DD242-58A7-487C-A253-F882BDB215BB@microsoft.com>
> | >>MIME-Version: 1.0
> | >>Content-Type: text/plain;
> | >> charset="Utf-8"
> | >>Content-Transfer-Encoding: 8bit
> | >>X-Newsreader: Microsoft CDO for Windows 2000
> | >>Content-Class: urn:content-classes:message
> | >>Importance: normal
> | >>Priority: normal
> | >>X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
> | >>Newsgroups: microsoft.public.biztalk.orchestration
> | >>NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29
> | >>Path: cpmsftngxa06.phx.gbl!TK2MSFTNGXA03.phx.gbl
> | >>Xref: cpmsftngxa06.phx.gbl microsoft.public.biztalk.orchestration:8216
> | >>X-Tomcat-NG: microsoft.public.biztalk.orchestration
> | >>
> | >>Thanks for the response. Here is the contents of the log:
> | >>
> ========================================
====================================
> ====
> | >>INFO: BEGIN BTSWebSvcWiz.exe @ 2004-09-10 11:10:47Z
> | >>INFO: BTSWebSvcWiz, Version=3.0.1.0, Culture=neutral,
> | >>PublicKeyToken=31bf3856ad364e35
> | >>INFO: Arguments:
> | >>AppTraceSwitch.TraceLevel=Verbose
> | >>
> | >>VERBOSE: ExistingProjectLocation() The system cannot find the path
> specified
> | >>VERBOSE: ExistingProjectLocation() The system cannot find the path
> specified
> | >>VERBOSE: ExistingProjectLocation() The system cannot find the path
> specified
> | >>VERBOSE: WebServiceBuilder.ctor()
> | >>INFO: Progress: (0, 0, 100) Creating project
> | >>"http://localhost/ExposeWebService_Proxy"...
> | >>INFO: CreateSolution: http://localhost/ExposeWebService_Proxy
> | >>INFO: Progress: (0, 10, 100) Creating solution at
> "/ExposeWebService_Proxy".
> | >>ERROR: Failed to create project
> "http://localhost/ExposeWebService_Proxy".
> | >>[System.ArgumentNullException] Value cannot be null.
> | >>Parameter name: type
> | >>ERROR: Progress: (0, 100, 100) Failed to create project
> | >>"http://localhost/ExposeWebService_Proxy".
> | >>ERROR: CreateSolution()Value cannot be null.
> | >>Parameter name: type
> | >>
> | >>INFO: END BTSWebSvcWiz.exe @ 2004-09-10 11:11:16Z
> | >>INFO: Return value: 0
> ========================================
====================================
> ====
> | >>
> | >>Thanks again!
> | >>
> | >>"Vikas Nahata [MSFT]" wrote:
> | >>
> | >>> First check if you are able to create a regular C Sharp webservice
> using
> | >>> Visual Studio .NET.
> | >>> If you get the same error doing that then it means that there is some
> | >>> installation issue with Visual Studio .NET
> | >>>
> | >>> if you are able to create a C Sharp webservice successfully then
> | >>> Can you follow the steps below and send the trace log file:
> | >>>
> | >>> Make the following changes in BTSWebSvcWiz.exe.config.
> | >>> Set the value of ApplicationTraceSwitch to 4.
> | >>> Uncomment the trace listener
> | >>> Specify a full pathname for BTSWebSvcWiz.trace.log
> | >>>
> | >>> <?xml version="1.0" encoding="utf-8" ?>
> | >>> <configuration>
> | >>> …
> | >>> <system.diagnostics>
> | >>> <switches>
> | >>> <!-- TraceLevel 0=Off, 1=Error, 2=Warning, 3=Info, 4=Verbose -->
> | >>> <add name="ApplicationTraceSwitch" value="4" />
> | >>> </switches>
> | >>> <trace autoflush="true" indentsize="4">
> | >>> <listeners>
> | >>> <add name="Trace"
> | >>> type="System.Diagnostics.TextWriterTraceListener, System,
> | >>> Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
> | >>> initializeData=" C:\Program Files\Microsoft BizTalk Server
> | >>> 2004\BTSWebSvcWiz.trace.log" />
> | >>> </listeners>
> | >>> </trace>
> | >>> </system.diagnostics>
> | >>> </configuration>
> | >>>
> | >>> Then, run the publishing wizard and send BTSWebSvcWiz.trace.log
> | >>>
> | >>> --------------------
> | >>> | >>Thread-Topic: Publishing Web Svc - Error
> | >>> | >>thread-index: AcSVPjJOy8hOXeIfSdSZF6XvTYrzgw==
> | >>> | >>X-WBNR-Posting-Host: 24.1.4.59
> | >>> | >>From: "=?Utf-8?B?RWQ=?=" <Ed@discussions.microsoft.com>
> | >>> | >>References: <17FD73A4-6F35-4A3A-A405-E313C1FA3DB2@microsoft.com>
> | >>> | >>Subject: RE: Publishing Web Svc - Error
> | >>> | >>Date: Tue, 7 Sep 2004 17:53:03 -0700
> | >>> | >>Lines: 17
> | >>> | >>Message-ID: <412E1272-A479-4E03-BF4F-7F37C5CB6250@microsoft.com>
> | >>> | >>MIME-Version: 1.0
> | >>> | >>Content-Type: text/plain;
> | >>> | >> charset="Utf-8"
> | >>> | >>Content-Transfer-Encoding: 7bit
> | >>> | >>X-Newsreader: Microsoft CDO for Windows 2000
> | >>> | >>Content-Class: urn:content-classes:message
> | >>> | >>Importance: normal
> | >>> | >>Priority: normal
> | >>> | >>X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
> | >>> | >>Newsgroups: microsoft.public.biztalk.orchestration
> | >>> | >>NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29
> | >>> | >>Path: cpmsftngxa10.phx.gbl!TK2MSFTNGXA03.phx.gbl
> | >>> | >>Xref: cpmsftngxa10.phx.gbl
> microsoft.public.biztalk.orchestration:8078
> | >>> | >>X-Tomcat-NG: microsoft.public.biztalk.orchestration
> | >>> | >>
> | >>> | >>I've got the same problem. Have you worked it out? If so ...
> how?!?!
> | >>> | >>
> | >>> | >>"BC" wrote:
> | >>> | >>
> | >>> | >>> Hi all,
> | >>> | >>>
> | >>> | >>> I have a simple orchestration I'm trying to publish as an
> HTTP web
> | >>> service
> | >>> | >>> with the wizard. I keep getting the following error. (I also
> got
> | >>> this error
> | >>> | >>> when I went thru the second tutorial - the B2BOrchestrations).
> | >>> | >>>
> | >>> | >>> Failed to create project "http://localhost/BTMemberLookup",
> | >>> | >>> [System.ArtumentNullException] Value cannot be null.
> | >>> | >>> Parameter name: type
> | >>> | >>>
> | >>> | >>> Any direction would be Greatly appreciated.
> | >>> | >>> Thanks.
> | >>> | >>> Butch
> | >>> | >>
> | >>>
> | >>> This posting is provided "AS IS" with no warranties, and confers no
> rights.
> | >>>
> | >>> EBusiness Server Team
> | >>>
> | >>>
> | >>
>
>

Andrew Luty [MSFT]

2004-10-15, 9:09 pm

Can you check the values under the following registry key:
HKEY_CLASSES_ROOT\VisualStudio.Solution?
You can do this with the registry editor utility: Start --> Run -->
RegEdit.exe.

If the key is not present, then a repair of Visual Studio may help. If the
key is present, the values underneath should indicate version 7.1 of Visual
Studio. Here's what should be in the registry:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\VisualStudio.Solution]
@="Microsoft Visual Studio Solution Object"

[HKEY_CLASSES_ROOT\VisualStudio.Solution\CLSID]
@="{246C57AE-40DD-4d6b-9E8D-B0F5757BB2A8}"

[HKEY_CLASSES_ROOT\VisualStudio.Solution\CurVer]
@="VisualStudio.Solution.7.1"


--------------------
| >Thread-Topic: Publishing Web Svc - Error
| >thread-index: AcSrDNFouC12VhZeQl2l4kEYL+IDLQ==
| >X-WBNR-Posting-Host: 63.166.226.83
| >From: "=?Utf-8?B?RWQ=?=" <Ed@discussions.microsoft.com>
| >References: <17FD73A4-6F35-4A3A-A405-E313C1FA3DB2@microsoft.com>
<412E1272-A479-4E03-BF4F-7F37C5CB6250@microsoft.com>
<C2I2ixglEHA.3436@cpmsftngxa10.phx.gbl>
<AD6DD242-58A7-487C-A253-F882BDB215BB@microsoft.com>
<hQH1NlkqEHA.740@cpmsftngxa06.phx.gbl>
| >Subject: RE: Publishing Web Svc - Error
| >Date: Tue, 5 Oct 2004 11:55:01 -0700
| >Lines: 183
| >Message-ID: <39F62218-9233-47A0-9E3C-DC57F4B9D32D@microsoft.com>
| >MIME-Version: 1.0
| >Content-Type: text/plain;
| > charset="Utf-8"
| >Content-Transfer-Encoding: 8bit
| >X-Newsreader: Microsoft CDO for Windows 2000
| >Content-Class: urn:content-classes:message
| >Importance: normal
| >Priority: normal
| >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| >Newsgroups: microsoft.public.biztalk.orchestration
| >NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29
| >Path: cpmsftngxa06.phx.gbl!TK2MSFTNGXA03.phx.gbl
| >Xref: cpmsftngxa06.phx.gbl microsoft.public.biztalk.orchestration:8510
| >X-Tomcat-NG: microsoft.public.biztalk.orchestration
| >
| >Vikas,
| >
| >The directory never get's created. IIS is running. I can create web
| >services but then if I turn around and run the wizard it still fails. I
| >don't have any other IIS applications installed.
| >
| >Thanks!!
| >
| >ed
| >
| >"Vikas Nahata [MSFT]" wrote:
| >
| >> Looks like it may be a directory permission issue. Can you try to
delete
| >> the physical directory manually if it exists and then try to publish.
| >> Is IIS and app pools started?
| >>
| >> Are there any IIS applications on the system? (Sharepoint, etc.)
| >>
| >> This posting is provided "AS IS" with no warranties, and confers no
rights.
| >>
| >> EBusiness Server Team
| >> --------------------
| >> | >>Thread-Topic: Publishing Web Svc - Error
| >> | >>thread-index: AcScMa7VFQuagsM8RBauKdHuQOyVTw==
| >> | >>X-WBNR-Posting-Host: 24.1.4.59
| >> | >>From: "=?Utf-8?B?RWQ=?=" <Ed@discussions.microsoft.com>
| >> | >>References: <17FD73A4-6F35-4A3A-A405-E313C1FA3DB2@microsoft.com>
| >> <412E1272-A479-4E03-BF4F-7F37C5CB6250@microsoft.com>
| >> <C2I2ixglEHA.3436@cpmsftngxa10.phx.gbl>
| >> | >>Subject: RE: Publishing Web Svc - Error
| >> | >>Date: Thu, 16 Sep 2004 14:11:07 -0700
| >> | >>Lines: 119
| >> | >>Message-ID: <AD6DD242-58A7-487C-A253-F882BDB215BB@microsoft.com>
| >> | >>MIME-Version: 1.0
| >> | >>Content-Type: text/plain;
| >> | >> charset="Utf-8"
| >> | >>Content-Transfer-Encoding: 8bit
| >> | >>X-Newsreader: Microsoft CDO for Windows 2000
| >> | >>Content-Class: urn:content-classes:message
| >> | >>Importance: normal
| >> | >>Priority: normal
| >> | >>X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| >> | >>Newsgroups: microsoft.public.biztalk.orchestration
| >> | >>NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29
| >> | >>Path: cpmsftngxa06.phx.gbl!TK2MSFTNGXA03.phx.gbl
| >> | >>Xref: cpmsftngxa06.phx.gbl
microsoft.public.biztalk.orchestration:8216
| >> | >>X-Tomcat-NG: microsoft.public.biztalk.orchestration
| >> | >>
| >> | >>Thanks for the response. Here is the contents of the log:
| >> | >>
| >>
========================================
====================================
| >> ====
| >> | >>INFO: BEGIN BTSWebSvcWiz.exe @ 2004-09-10 11:10:47Z
| >> | >>INFO: BTSWebSvcWiz, Version=3.0.1.0, Culture=neutral,
| >> | >>PublicKeyToken=31bf3856ad364e35
| >> | >>INFO: Arguments:
| >> | >>AppTraceSwitch.TraceLevel=Verbose
| >> | >>
| >> | >>VERBOSE: ExistingProjectLocation() The system cannot find the path
| >> specified
| >> | >>VERBOSE: ExistingProjectLocation() The system cannot find the path
| >> specified
| >> | >>VERBOSE: ExistingProjectLocation() The system cannot find the path
| >> specified
| >> | >>VERBOSE: WebServiceBuilder.ctor()
| >> | >>INFO: Progress: (0, 0, 100) Creating project
| >> | >>"http://localhost/ExposeWebService_Proxy"...
| >> | >>INFO: CreateSolution: http://localhost/ExposeWebService_Proxy
| >> | >>INFO: Progress: (0, 10, 100) Creating solution at
| >> "/ExposeWebService_Proxy".
| >> | >>ERROR: Failed to create project
| >> "http://localhost/ExposeWebService_Proxy".
| >> | >>[System.ArgumentNullException] Value cannot be null.
| >> | >>Parameter name: type
| >> | >>ERROR: Progress: (0, 100, 100) Failed to create project
| >> | >>"http://localhost/ExposeWebService_Proxy".
| >> | >>ERROR: CreateSolution()Value cannot be null.
| >> | >>Parameter name: type
| >> | >>
| >> | >>INFO: END BTSWebSvcWiz.exe @ 2004-09-10 11:11:16Z
| >> | >>INFO: Return value: 0
| >>
========================================
====================================
| >> ====
| >> | >>
| >> | >>Thanks again!
| >> | >>
| >> | >>"Vikas Nahata [MSFT]" wrote:
| >> | >>
| >> | >>> First check if you are able to create a regular C Sharp
webservice
| >> using
| >> | >>> Visual Studio .NET.
| >> | >>> If you get the same error doing that then it means that there is
some
| >> | >>> installation issue with Visual Studio .NET
| >> | >>>
| >> | >>> if you are able to create a C Sharp webservice successfully then
| >> | >>> Can you follow the steps below and send the trace log file:
| >> | >>>
| >> | >>> Make the following changes in BTSWebSvcWiz.exe.config.
| >> | >>> Set the value of ApplicationTraceSwitch to 4.
| >> | >>> Uncomment the trace listener
| >> | >>> Specify a full pathname for BTSWebSvcWiz.trace.log
| >> | >>>
| >> | >>> <?xml version="1.0" encoding="utf-8" ?>
| >> | >>> <configuration>
| >> | >>> …
| >> | >>> <system.diagnostics>
| >> | >>> <switches>
| >> | >>> <!-- TraceLevel 0=Off, 1=Error, 2=Warning, 3=Info,
4=Verbose -->
| >> | >>> <add name="ApplicationTraceSwitch" value="4" />
| >> | >>> </switches>
| >> | >>> <trace autoflush="true" indentsize="4">
| >> | >>> <listeners>
| >> | >>> <add name="Trace"
| >> | >>> type="System.Diagnostics.TextWriterTraceListener,
System,
| >> | >>> Version=1.0.5000.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089"
| >> | >>> initializeData=" C:\Program Files\Microsoft BizTalk
Server
| >> | >>> 2004\BTSWebSvcWiz.trace.log" />
| >> | >>> </listeners>
| >> | >>> </trace>
| >> | >>> </system.diagnostics>
| >> | >>> </configuration>
| >> | >>>
| >> | >>> Then, run the publishing wizard and send BTSWebSvcWiz.trace.log
| >> | >>>
| >> | >>> --------------------
| >> | >>> | >>Thread-Topic: Publishing Web Svc - Error
| >> | >>> | >>thread-index: AcSVPjJOy8hOXeIfSdSZF6XvTYrzgw==
| >> | >>> | >>X-WBNR-Posting-Host: 24.1.4.59
| >> | >>> | >>From: "=?Utf-8?B?RWQ=?=" <Ed@discussions.microsoft.com>
| >> | >>> | >>References:
<17FD73A4-6F35-4A3A-A405-E313C1FA3DB2@microsoft.com>
| >> | >>> | >>Subject: RE: Publishing Web Svc - Error
| >> | >>> | >>Date: Tue, 7 Sep 2004 17:53:03 -0700
| >> | >>> | >>Lines: 17
| >> | >>> | >>Message-ID:
<412E1272-A479-4E03-BF4F-7F37C5CB6250@microsoft.com>
| >> | >>> | >>MIME-Version: 1.0
| >> | >>> | >>Content-Type: text/plain;
| >> | >>> | >> charset="Utf-8"
| >> | >>> | >>Content-Transfer-Encoding: 7bit
| >> | >>> | >>X-Newsreader: Microsoft CDO for Windows 2000
| >> | >>> | >>Content-Class: urn:content-classes:message
| >> | >>> | >>Importance: normal
| >> | >>> | >>Priority: normal
| >> | >>> | >>X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| >> | >>> | >>Newsgroups: microsoft.public.biztalk.orchestration
| >> | >>> | >>NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29
| >> | >>> | >>Path: cpmsftngxa10.phx.gbl!TK2MSFTNGXA03.phx.gbl
| >> | >>> | >>Xref: cpmsftngxa10.phx.gbl
| >> microsoft.public.biztalk.orchestration:8078
| >> | >>> | >>X-Tomcat-NG: microsoft.public.biztalk.orchestration
| >> | >>> | >>
| >> | >>> | >>I've got the same problem. Have you worked it out? If so
...
| >> how?!?!
| >> | >>> | >>
| >> | >>> | >>"BC" wrote:
| >> | >>> | >>
| >> | >>> | >>> Hi all,
| >> | >>> | >>>
| >> | >>> | >>> I have a simple orchestration I'm trying to publish as
an
| >> HTTP web
| >> | >>> service
| >> | >>> | >>> with the wizard. I keep getting the following error. (I
also
| >> got
| >> | >>> this error
| >> | >>> | >>> when I went thru the second tutorial - the
B2BOrchestrations).
| >> | >>> | >>>
| >> | >>> | >>> Failed to create project "http://localhost/BTMemberLookup",
| >> | >>> | >>> [System.ArtumentNullException] Value cannot be null.
| >> | >>> | >>> Parameter name: type
| >> | >>> | >>>
| >> | >>> | >>> Any direction would be Greatly appreciated.
| >> | >>> | >>> Thanks.
| >> | >>> | >>> Butch
| >> | >>> | >>
| >> | >>>
| >> | >>> This posting is provided "AS IS" with no warranties, and confers
no
| >> rights.
| >> | >>>
| >> | >>> EBusiness Server Team
| >> | >>>
| >> | >>>
| >> | >>
| >>
| >>
| >

Ed

2004-10-18, 5:48 pm

Andrew,

The keys were present however there were no values. I'll try repairing and
advise.

Thanks for your help!

ed

"Andrew Luty [MSFT]" wrote:

> Can you check the values under the following registry key:
> HKEY_CLASSES_ROOT\VisualStudio.Solution?
> You can do this with the registry editor utility: Start --> Run -->
> RegEdit.exe.
>
> If the key is not present, then a repair of Visual Studio may help. If the
> key is present, the values underneath should indicate version 7.1 of Visual
> Studio. Here's what should be in the registry:
>
> Windows Registry Editor Version 5.00
>
> [HKEY_CLASSES_ROOT\VisualStudio.Solution]
> @="Microsoft Visual Studio Solution Object"
>
> [HKEY_CLASSES_ROOT\VisualStudio.Solution\CLSID]
> @="{246C57AE-40DD-4d6b-9E8D-B0F5757BB2A8}"
>
> [HKEY_CLASSES_ROOT\VisualStudio.Solution\CurVer]
> @="VisualStudio.Solution.7.1"
>
>
> --------------------
> | >Thread-Topic: Publishing Web Svc - Error
> | >thread-index: AcSrDNFouC12VhZeQl2l4kEYL+IDLQ==
> | >X-WBNR-Posting-Host: 63.166.226.83
> | >From: "=?Utf-8?B?RWQ=?=" <Ed@discussions.microsoft.com>
> | >References: <17FD73A4-6F35-4A3A-A405-E313C1FA3DB2@microsoft.com>
> <412E1272-A479-4E03-BF4F-7F37C5CB6250@microsoft.com>
> <C2I2ixglEHA.3436@cpmsftngxa10.phx.gbl>
> <AD6DD242-58A7-487C-A253-F882BDB215BB@microsoft.com>
> <hQH1NlkqEHA.740@cpmsftngxa06.phx.gbl>
> | >Subject: RE: Publishing Web Svc - Error
> | >Date: Tue, 5 Oct 2004 11:55:01 -0700
> | >Lines: 183
> | >Message-ID: <39F62218-9233-47A0-9E3C-DC57F4B9D32D@microsoft.com>
> | >MIME-Version: 1.0
> | >Content-Type: text/plain;
> | > charset="Utf-8"
> | >Content-Transfer-Encoding: 8bit
> | >X-Newsreader: Microsoft CDO for Windows 2000
> | >Content-Class: urn:content-classes:message
> | >Importance: normal
> | >Priority: normal
> | >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
> | >Newsgroups: microsoft.public.biztalk.orchestration
> | >NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29
> | >Path: cpmsftngxa06.phx.gbl!TK2MSFTNGXA03.phx.gbl
> | >Xref: cpmsftngxa06.phx.gbl microsoft.public.biztalk.orchestration:8510
> | >X-Tomcat-NG: microsoft.public.biztalk.orchestration
> | >
> | >Vikas,
> | >
> | >The directory never get's created. IIS is running. I can create web
> | >services but then if I turn around and run the wizard it still fails. I
> | >don't have any other IIS applications installed.
> | >
> | >Thanks!!
> | >
> | >ed
> | >
> | >"Vikas Nahata [MSFT]" wrote:
> | >
> | >> Looks like it may be a directory permission issue. Can you try to
> delete
> | >> the physical directory manually if it exists and then try to publish.
> | >> Is IIS and app pools started?
> | >>
> | >> Are there any IIS applications on the system? (Sharepoint, etc.)
> | >>
> | >> This posting is provided "AS IS" with no warranties, and confers no
> rights.
> | >>
> | >> EBusiness Server Team
> | >> --------------------
> | >> | >>Thread-Topic: Publishing Web Svc - Error
> | >> | >>thread-index: AcScMa7VFQuagsM8RBauKdHuQOyVTw==
> | >> | >>X-WBNR-Posting-Host: 24.1.4.59
> | >> | >>From: "=?Utf-8?B?RWQ=?=" <Ed@discussions.microsoft.com>
> | >> | >>References: <17FD73A4-6F35-4A3A-A405-E313C1FA3DB2@microsoft.com>
> | >> <412E1272-A479-4E03-BF4F-7F37C5CB6250@microsoft.com>
> | >> <C2I2ixglEHA.3436@cpmsftngxa10.phx.gbl>
> | >> | >>Subject: RE: Publishing Web Svc - Error
> | >> | >>Date: Thu, 16 Sep 2004 14:11:07 -0700
> | >> | >>Lines: 119
> | >> | >>Message-ID: <AD6DD242-58A7-487C-A253-F882BDB215BB@microsoft.com>
> | >> | >>MIME-Version: 1.0
> | >> | >>Content-Type: text/plain;
> | >> | >> charset="Utf-8"
> | >> | >>Content-Transfer-Encoding: 8bit
> | >> | >>X-Newsreader: Microsoft CDO for Windows 2000
> | >> | >>Content-Class: urn:content-classes:message
> | >> | >>Importance: normal
> | >> | >>Priority: normal
> | >> | >>X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
> | >> | >>Newsgroups: microsoft.public.biztalk.orchestration
> | >> | >>NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29
> | >> | >>Path: cpmsftngxa06.phx.gbl!TK2MSFTNGXA03.phx.gbl
> | >> | >>Xref: cpmsftngxa06.phx.gbl
> microsoft.public.biztalk.orchestration:8216
> | >> | >>X-Tomcat-NG: microsoft.public.biztalk.orchestration
> | >> | >>
> | >> | >>Thanks for the response. Here is the contents of the log:
> | >> | >>
> | >>
> ========================================
====================================
> | >> ====
> | >> | >>INFO: BEGIN BTSWebSvcWiz.exe @ 2004-09-10 11:10:47Z
> | >> | >>INFO: BTSWebSvcWiz, Version=3.0.1.0, Culture=neutral,
> | >> | >>PublicKeyToken=31bf3856ad364e35
> | >> | >>INFO: Arguments:
> | >> | >>AppTraceSwitch.TraceLevel=Verbose
> | >> | >>
> | >> | >>VERBOSE: ExistingProjectLocation() The system cannot find the path
> | >> specified
> | >> | >>VERBOSE: ExistingProjectLocation() The system cannot find the path
> | >> specified
> | >> | >>VERBOSE: ExistingProjectLocation() The system cannot find the path
> | >> specified
> | >> | >>VERBOSE: WebServiceBuilder.ctor()
> | >> | >>INFO: Progress: (0, 0, 100) Creating project
> | >> | >>"http://localhost/ExposeWebService_Proxy"...
> | >> | >>INFO: CreateSolution: http://localhost/ExposeWebService_Proxy
> | >> | >>INFO: Progress: (0, 10, 100) Creating solution at
> | >> "/ExposeWebService_Proxy".
> | >> | >>ERROR: Failed to create project
> | >> "http://localhost/ExposeWebService_Proxy".
> | >> | >>[System.ArgumentNullException] Value cannot be null.
> | >> | >>Parameter name: type
> | >> | >>ERROR: Progress: (0, 100, 100) Failed to create project
> | >> | >>"http://localhost/ExposeWebService_Proxy".
> | >> | >>ERROR: CreateSolution()Value cannot be null.
> | >> | >>Parameter name: type
> | >> | >>
> | >> | >>INFO: END BTSWebSvcWiz.exe @ 2004-09-10 11:11:16Z
> | >> | >>INFO: Return value: 0
> | >>
> ========================================
====================================
> | >> ====
> | >> | >>
> | >> | >>Thanks again!
> | >> | >>
> | >> | >>"Vikas Nahata [MSFT]" wrote:
> | >> | >>
> | >> | >>> First check if you are able to create a regular C Sharp
> webservice
> | >> using
> | >> | >>> Visual Studio .NET.
> | >> | >>> If you get the same error doing that then it means that there is
> some
> | >> | >>> installation issue with Visual Studio .NET
> | >> | >>>
> | >> | >>> if you are able to create a C Sharp webservice successfully then
> | >> | >>> Can you follow the steps below and send the trace log file:
> | >> | >>>
> | >> | >>> Make the following changes in BTSWebSvcWiz.exe.config.
> | >> | >>> Set the value of ApplicationTraceSwitch to 4.
> | >> | >>> Uncomment the trace listener
> | >> | >>> Specify a full pathname for BTSWebSvcWiz.trace.log
> | >> | >>>
> | >> | >>> <?xml version="1.0" encoding="utf-8" ?>
> | >> | >>> <configuration>
> | >> | >>> …
> | >> | >>> <system.diagnostics>
> | >> | >>> <switches>
> | >> | >>> <!-- TraceLevel 0=Off, 1=Error, 2=Warning, 3=Info,
> 4=Verbose -->
> | >> | >>> <add name="ApplicationTraceSwitch" value="4" />
> | >> | >>> </switches>
> | >> | >>> <trace autoflush="true" indentsize="4">
> | >> | >>> <listeners>
> | >> | >>> <add name="Trace"
> | >> | >>> type="System.Diagnostics.TextWriterTraceListener,
> System,
> | >> | >>> Version=1.0.5000.0, Culture=neutral,
> PublicKeyToken=b77a5c561934e089"
> | >> | >>> initializeData=" C:\Program Files\Microsoft BizTalk
> Server
> | >> | >>> 2004\BTSWebSvcWiz.trace.log" />
> | >> | >>> </listeners>
> | >> | >>> </trace>
> | >> | >>> </system.diagnostics>
> | >> | >>> </configuration>
> | >> | >>>
> | >> | >>> Then, run the publishing wizard and send BTSWebSvcWiz.trace.log
> | >> | >>>
> | >> | >>> --------------------
> | >> | >>> | >>Thread-Topic: Publishing Web Svc - Error
> | >> | >>> | >>thread-index: AcSVPjJOy8hOXeIfSdSZF6XvTYrzgw==
> | >> | >>> | >>X-WBNR-Posting-Host: 24.1.4.59
> | >> | >>> | >>From: "=?Utf-8?B?RWQ=?=" <Ed@discussions.microsoft.com>
> | >> | >>> | >>References:
> <17FD73A4-6F35-4A3A-A405-E313C1FA3DB2@microsoft.com>
> | >> | >>> | >>Subject: RE: Publishing Web Svc - Error
> | >> | >>> | >>Date: Tue, 7 Sep 2004 17:53:03 -0700
> | >> | >>> | >>Lines: 17
> | >> | >>> | >>Message-ID:
> <412E1272-A479-4E03-BF4F-7F37C5CB6250@microsoft.com>
> | >> | >>> | >>MIME-Version: 1.0
> | >> | >>> | >>Content-Type: text/plain;
> | >> | >>> | >> charset="Utf-8"
> | >> | >>> | >>Content-Transfer-Encoding: 7bit
> | >> | >>> | >>X-Newsreader: Microsoft CDO for Windows 2000
> | >> | >>> | >>Content-Class: urn:content-classes:message
> | >> | >>> | >>Importance: normal
> | >> | >>> | >>Priority: normal
> | >> | >>> | >>X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
> | >> | >>> | >>Newsgroups: microsoft.public.biztalk.orchestration
> | >> | >>> | >>NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29
> | >> | >>> | >>Path: cpmsftngxa10.phx.gbl!TK2MSFTNGXA03.phx.gbl
> | >> | >>> | >>Xref: cpmsftngxa10.phx.gbl
> | >> microsoft.public.biztalk.orchestration:8078
> | >> | >>> | >>X-Tomcat-NG: microsoft.public.biztalk.orchestration
> | >> | >>> | >>
> | >> | >>> | >>I've got the same problem. Have you worked it out? If so
> ...
> | >> how?!?!
> | >> | >>> | >>
> | >> | >>> | >>"BC" wrote:
> | >> | >>> | >>
> | >> | >>> | >>> Hi all,
> | >> | >>> | >>>
> | >> | >>> | >>> I have a simple orchestration I'm trying to publish as
> an
> | >> HTTP web
> | >> | >>> service
> | >> | >>> | >>> with the wizard. I keep getting the following error. (I
> also
> | >> got
> | >> | >>> this error
> | >> | >>> | >>> when I went thru the second tutorial - the
> B2BOrchestrations).
> | >> | >>> | >>>
> | >> | >>> | >>> Failed to create project "http://localhost/BTMemberLookup",
> | >> | >>> | >>> [System.ArtumentNullException] Value cannot be null.
> | >> | >>> | >>> Parameter name: type
> | >> | >>> | >>>
> | >> | >>> | >>> Any direction would be Greatly appreciated.
> | >> | >>> | >>> Thanks.
> | >> | >>> | >>> Butch
> | >> | >>> | >>
> | >> | >>>
> | >> | >>> This posting is provided "AS IS" with no warranties, and confers
> no
> | >> rights.
> | >> | >>>
> | >> | >>> EBusiness Server Team
> | >> | >>>
> | >> | >>>
> | >> | >>
> | >>
> | >>
> | >
>
>

Ed

2004-10-26, 8:46 pm

Adding the registry items fixed the error. I wasn't able to test. Following
making the change I updated dbghelp.dll on my machine and ended up having to
refront the machine! After I get everything else re-installed, I'll test it
out again.

Thanks for the help!

ed

"Andrew Luty [MSFT]" wrote:

> Can you check the values under the following registry key:
> HKEY_CLASSES_ROOT\VisualStudio.Solution?
> You can do this with the registry editor utility: Start --> Run -->
> RegEdit.exe.
>
> If the key is not present, then a repair of Visual Studio may help. If the
> key is present, the values underneath should indicate version 7.1 of Visual
> Studio. Here's what should be in the registry:
>
> Windows Registry Editor Version 5.00
>
> [HKEY_CLASSES_ROOT\VisualStudio.Solution]
> @="Microsoft Visual Studio Solution Object"
>
> [HKEY_CLASSES_ROOT\VisualStudio.Solution\CLSID]
> @="{246C57AE-40DD-4d6b-9E8D-B0F5757BB2A8}"
>
> [HKEY_CLASSES_ROOT\VisualStudio.Solution\CurVer]
> @="VisualStudio.Solution.7.1"
>
>
> --------------------
> | >Thread-Topic: Publishing Web Svc - Error
> | >thread-index: AcSrDNFouC12VhZeQl2l4kEYL+IDLQ==
> | >X-WBNR-Posting-Host: 63.166.226.83
> | >From: "=?Utf-8?B?RWQ=?=" <Ed@discussions.microsoft.com>
> | >References: <17FD73A4-6F35-4A3A-A405-E313C1FA3DB2@microsoft.com>
> <412E1272-A479-4E03-BF4F-7F37C5CB6250@microsoft.com>
> <C2I2ixglEHA.3436@cpmsftngxa10.phx.gbl>
> <AD6DD242-58A7-487C-A253-F882BDB215BB@microsoft.com>
> <hQH1NlkqEHA.740@cpmsftngxa06.phx.gbl>
> | >Subject: RE: Publishing Web Svc - Error
> | >Date: Tue, 5 Oct 2004 11:55:01 -0700
> | >Lines: 183
> | >Message-ID: <39F62218-9233-47A0-9E3C-DC57F4B9D32D@microsoft.com>
> | >MIME-Version: 1.0
> | >Content-Type: text/plain;
> | > charset="Utf-8"
> | >Content-Transfer-Encoding: 8bit
> | >X-Newsreader: Microsoft CDO for Windows 2000
> | >Content-Class: urn:content-classes:message
> | >Importance: normal
> | >Priority: normal
> | >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
> | >Newsgroups: microsoft.public.biztalk.orchestration
> | >NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29
> | >Path: cpmsftngxa06.phx.gbl!TK2MSFTNGXA03.phx.gbl
> | >Xref: cpmsftngxa06.phx.gbl microsoft.public.biztalk.orchestration:8510
> | >X-Tomcat-NG: microsoft.public.biztalk.orchestration
> | >
> | >Vikas,
> | >
> | >The directory never get's created. IIS is running. I can create web
> | >services but then if I turn around and run the wizard it still fails. I
> | >don't have any other IIS applications installed.
> | >
> | >Thanks!!
> | >
> | >ed
> | >
> | >"Vikas Nahata [MSFT]" wrote:
> | >
> | >> Looks like it may be a directory permission issue. Can you try to
> delete
> | >> the physical directory manually if it exists and then try to publish.
> | >> Is IIS and app pools started?
> | >>
> | >> Are there any IIS applications on the system? (Sharepoint, etc.)
> | >>
> | >> This posting is provided "AS IS" with no warranties, and confers no
> rights.
> | >>
> | >> EBusiness Server Team
> | >> --------------------
> | >> | >>Thread-Topic: Publishing Web Svc - Error
> | >> | >>thread-index: AcScMa7VFQuagsM8RBauKdHuQOyVTw==
> | >> | >>X-WBNR-Posting-Host: 24.1.4.59
> | >> | >>From: "=?Utf-8?B?RWQ=?=" <Ed@discussions.microsoft.com>
> | >> | >>References: <17FD73A4-6F35-4A3A-A405-E313C1FA3DB2@microsoft.com>
> | >> <412E1272-A479-4E03-BF4F-7F37C5CB6250@microsoft.com>
> | >> <C2I2ixglEHA.3436@cpmsftngxa10.phx.gbl>
> | >> | >>Subject: RE: Publishing Web Svc - Error
> | >> | >>Date: Thu, 16 Sep 2004 14:11:07 -0700
> | >> | >>Lines: 119
> | >> | >>Message-ID: <AD6DD242-58A7-487C-A253-F882BDB215BB@microsoft.com>
> | >> | >>MIME-Version: 1.0
> | >> | >>Content-Type: text/plain;
> | >> | >> charset="Utf-8"
> | >> | >>Content-Transfer-Encoding: 8bit
> | >> | >>X-Newsreader: Microsoft CDO for Windows 2000
> | >> | >>Content-Class: urn:content-classes:message
> | >> | >>Importance: normal
> | >> | >>Priority: normal
> | >> | >>X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
> | >> | >>Newsgroups: microsoft.public.biztalk.orchestration
> | >> | >>NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29
> | >> | >>Path: cpmsftngxa06.phx.gbl!TK2MSFTNGXA03.phx.gbl
> | >> | >>Xref: cpmsftngxa06.phx.gbl
> microsoft.public.biztalk.orchestration:8216
> | >> | >>X-Tomcat-NG: microsoft.public.biztalk.orchestration
> | >> | >>
> | >> | >>Thanks for the response. Here is the contents of the log:
> | >> | >>
> | >>
> ========================================
====================================
> | >> ====
> | >> | >>INFO: BEGIN BTSWebSvcWiz.exe @ 2004-09-10 11:10:47Z
> | >> | >>INFO: BTSWebSvcWiz, Version=3.0.1.0, Culture=neutral,
> | >> | >>PublicKeyToken=31bf3856ad364e35
> | >> | >>INFO: Arguments:
> | >> | >>AppTraceSwitch.TraceLevel=Verbose
> | >> | >>
> | >> | >>VERBOSE: ExistingProjectLocation() The system cannot find the path
> | >> specified
> | >> | >>VERBOSE: ExistingProjectLocation() The system cannot find the path
> | >> specified
> | >> | >>VERBOSE: ExistingProjectLocation() The system cannot find the path
> | >> specified
> | >> | >>VERBOSE: WebServiceBuilder.ctor()
> | >> | >>INFO: Progress: (0, 0, 100) Creating project
> | >> | >>"http://localhost/ExposeWebService_Proxy"...
> | >> | >>INFO: CreateSolution: http://localhost/ExposeWebService_Proxy
> | >> | >>INFO: Progress: (0, 10, 100) Creating solution at
> | >> "/ExposeWebService_Proxy".
> | >> | >>ERROR: Failed to create project
> | >> "http://localhost/ExposeWebService_Proxy".
> | >> | >>[System.ArgumentNullException] Value cannot be null.
> | >> | >>Parameter name: type
> | >> | >>ERROR: Progress: (0, 100, 100) Failed to create project
> | >> | >>"http://localhost/ExposeWebService_Proxy".
> | >> | >>ERROR: CreateSolution()Value cannot be null.
> | >> | >>Parameter name: type
> | >> | >>
> | >> | >>INFO: END BTSWebSvcWiz.exe @ 2004-09-10 11:11:16Z
> | >> | >>INFO: Return value: 0
> | >>
> ========================================
====================================
> | >> ====
> | >> | >>
> | >> | >>Thanks again!
> | >> | >>
> | >> | >>"Vikas Nahata [MSFT]" wrote:
> | >> | >>
> | >> | >>> First check if you are able to create a regular C Sharp
> webservice
> | >> using
> | >> | >>> Visual Studio .NET.
> | >> | >>> If you get the same error doing that then it means that there is
> some
> | >> | >>> installation issue with Visual Studio .NET
> | >> | >>>
> | >> | >>> if you are able to create a C Sharp webservice successfully then
> | >> | >>> Can you follow the steps below and send the trace log file:
> | >> | >>>
> | >> | >>> Make the following changes in BTSWebSvcWiz.exe.config.
> | >> | >>> Set the value of ApplicationTraceSwitch to 4.
> | >> | >>> Uncomment the trace listener
> | >> | >>> Specify a full pathname for BTSWebSvcWiz.trace.log
> | >> | >>>
> | >> | >>> <?xml version="1.0" encoding="utf-8" ?>
> | >> | >>> <configuration>
> | >> | >>> …
> | >> | >>> <system.diagnostics>
> | >> | >>> <switches>
> | >> | >>> <!-- TraceLevel 0=Off, 1=Error, 2=Warning, 3=Info,
> 4=Verbose -->
> | >> | >>> <add name="ApplicationTraceSwitch" value="4" />
> | >> | >>> </switches>
> | >> | >>> <trace autoflush="true" indentsize="4">
> | >> | >>> <listeners>
> | >> | >>> <add name="Trace"
> | >> | >>> type="System.Diagnostics.TextWriterTraceListener,
> System,
> | >> | >>> Version=1.0.5000.0, Culture=neutral,
> PublicKeyToken=b77a5c561934e089"
> | >> | >>> initializeData=" C:\Program Files\Microsoft BizTalk
> Server
> | >> | >>> 2004\BTSWebSvcWiz.trace.log" />
> | >> | >>> </listeners>
> | >> | >>> </trace>
> | >> | >>> </system.diagnostics>
> | >> | >>> </configuration>
> | >> | >>>
> | >> | >>> Then, run the publishing wizard and send BTSWebSvcWiz.trace.log
> | >> | >>>
> | >> | >>> --------------------
> | >> | >>> | >>Thread-Topic: Publishing Web Svc - Error
> | >> | >>> | >>thread-index: AcSVPjJOy8hOXeIfSdSZF6XvTYrzgw==
> | >> | >>> | >>X-WBNR-Posting-Host: 24.1.4.59
> | >> | >>> | >>From: "=?Utf-8?B?RWQ=?=" <Ed@discussions.microsoft.com>
> | >> | >>> | >>References:
> <17FD73A4-6F35-4A3A-A405-E313C1FA3DB2@microsoft.com>
> | >> | >>> | >>Subject: RE: Publishing Web Svc - Error
> | >> | >>> | >>Date: Tue, 7 Sep 2004 17:53:03 -0700
> | >> | >>> | >>Lines: 17
> | >> | >>> | >>Message-ID:
> <412E1272-A479-4E03-BF4F-7F37C5CB6250@microsoft.com>
> | >> | >>> | >>MIME-Version: 1.0
> | >> | >>> | >>Content-Type: text/plain;
> | >> | >>> | >> charset="Utf-8"
> | >> | >>> | >>Content-Transfer-Encoding: 7bit
> | >> | >>> | >>X-Newsreader: Microsoft CDO for Windows 2000
> | >> | >>> | >>Content-Class: urn:content-classes:message
> | >> | >>> | >>Importance: normal
> | >> | >>> | >>Priority: normal
> | >> | >>> | >>X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
> | >> | >>> | >>Newsgroups: microsoft.public.biztalk.orchestration
> | >> | >>> | >>NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29
> | >> | >>> | >>Path: cpmsftngxa10.phx.gbl!TK2MSFTNGXA03.phx.gbl
> | >> | >>> | >>Xref: cpmsftngxa10.phx.gbl
> | >> microsoft.public.biztalk.orchestration:8078
> | >> | >>> | >>X-Tomcat-NG: microsoft.public.biztalk.orchestration
> | >> | >>> | >>
> | >> | >>> | >>I've got the same problem. Have you worked it out? If so
> ...
> | >> how?!?!
> | >> | >>> | >>
> | >> | >>> | >>"BC" wrote:
> | >> | >>> | >>
> | >> | >>> | >>> Hi all,
> | >> | >>> | >>>
> | >> | >>> | >>> I have a simple orchestration I'm trying to publish as
> an
> | >> HTTP web
> | >> | >>> service
> | >> | >>> | >>> with the wizard. I keep getting the following error. (I
> also
> | >> got
> | >> | >>> this error
> | >> | >>> | >>> when I went thru the second tutorial - the
> B2BOrchestrations).
> | >> | >>> | >>>
> | >> | >>> | >>> Failed to create project "http://localhost/BTMemberLookup",
> | >> | >>> | >>> [System.ArtumentNullException] Value cannot be null.
> | >> | >>> | >>> Parameter name: type
> | >> | >>> | >>>
> | >> | >>> | >>> Any direction would be Greatly appreciated.
> | >> | >>> | >>> Thanks.
> | >> | >>> | >>> Butch
> | >> | >>> | >>
> | >> | >>>
> | >> | >>> This posting is provided "AS IS" with no warranties, and confers
> no
> | >> rights.
> | >> | >>>
> | >> | >>> EBusiness Server Team
> | >> | >>>
> | >> | >>>
> | >> | >>
> | >>
> | >>
> | >
>
>

Sponsored Links






Free braindumps | Software forum | Database administration forum

Copyright 2003 - 2008 webservertalk.com