Click here to Skip to main content
15,915,869 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: Which approach should use for Voice Instruction for user in WPF Pin
Richard MacCutchan5-Nov-14 22:29
mveRichard MacCutchan5-Nov-14 22:29 
QuestionProject Output Type Class Library and Windows Application Pin
Ashfaque Hussain2-Nov-14 18:47
Ashfaque Hussain2-Nov-14 18:47 
AnswerRe: Project Output Type Class Library and Windows Application Pin
Pete O'Hanlon2-Nov-14 22:21
mvePete O'Hanlon2-Nov-14 22:21 
GeneralRe: Project Output Type Class Library and Windows Application Pin
Ashfaque Hussain2-Nov-14 22:46
Ashfaque Hussain2-Nov-14 22:46 
GeneralRe: Project Output Type Class Library and Windows Application Pin
Pete O'Hanlon2-Nov-14 23:52
mvePete O'Hanlon2-Nov-14 23:52 
GeneralRe: Project Output Type Class Library and Windows Application Pin
Ashfaque Hussain3-Nov-14 0:28
Ashfaque Hussain3-Nov-14 0:28 
GeneralRe: Project Output Type Class Library and Windows Application Pin
Pete O'Hanlon3-Nov-14 0:43
mvePete O'Hanlon3-Nov-14 0:43 
GeneralRe: Project Output Type Class Library and Windows Application Pin
Ashfaque Hussain3-Nov-14 0:57
Ashfaque Hussain3-Nov-14 0:57 
GeneralRe: Project Output Type Class Library and Windows Application Pin
Pete O'Hanlon3-Nov-14 1:30
mvePete O'Hanlon3-Nov-14 1:30 
GeneralRe: Project Output Type Class Library and Windows Application Pin
Ashfaque Hussain3-Nov-14 1:57
Ashfaque Hussain3-Nov-14 1:57 
GeneralRe: Project Output Type Class Library and Windows Application Pin
cjb11019-Nov-14 23:55
cjb11019-Nov-14 23:55 
GeneralRe: Project Output Type Class Library and Windows Application Pin
Ashfaque Hussain20-Nov-14 0:05
Ashfaque Hussain20-Nov-14 0:05 
GeneralRe: Project Output Type Class Library and Windows Application Pin
cjb11020-Nov-14 0:43
cjb11020-Nov-14 0:43 
GeneralRe: Project Output Type Class Library and Windows Application Pin
Ashfaque Hussain20-Nov-14 1:11
Ashfaque Hussain20-Nov-14 1:11 
GeneralRe: Project Output Type Class Library and Windows Application Pin
cjb11020-Nov-14 3:06
cjb11020-Nov-14 3:06 
QuestionAdd a table to a DockPanel Pin
zhshqzyc31-Oct-14 8:56
zhshqzyc31-Oct-14 8:56 
AnswerRe: Add a table to a DockPanel Pin
Mycroft Holmes31-Oct-14 13:44
professionalMycroft Holmes31-Oct-14 13:44 
GeneralRe: Add a table to a DockPanel Pin
zhshqzyc31-Oct-14 15:51
zhshqzyc31-Oct-14 15:51 
GeneralRe: Add a table to a DockPanel Pin
Mycroft Holmes2-Nov-14 21:07
professionalMycroft Holmes2-Nov-14 21:07 
QuestionProblem connection database Silverlight project Pin
Hi I am Kevin29-Oct-14 5:55
Hi I am Kevin29-Oct-14 5:55 
AnswerRe: Problem connection database Silverlight project Pin
Mycroft Holmes31-Oct-14 13:38
professionalMycroft Holmes31-Oct-14 13:38 
No one is going to be able to help you with so little information and setting up a WCF config is difficult. What I do is to split the project into 2, WCF and UI.

I then build the wcf and run it locally and test the connection using the Wcf Test Client and pull back the GetData.

I then change the web config and include the client access policy and cross domain xml files. Youwill need to find a couple of decent examples to work from, this is my config file

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

  <configSections>
  </configSections>
  <system.web>
    <compilation debug="true" targetFramework="4.0" />
		<httpRuntime maxRequestLength="40000"/>
		<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm" />
	</system.web>
	<system.serviceModel>
		<bindings>
			<basicHttpBinding>
				<binding name="BasicBinding"
         maxReceivedMessageSize="2147483647">
					<readerQuotas  maxDepth="64"
             maxStringContentLength="2147483647"
             maxArrayLength="2147483647"
             maxBytesPerRead="4096"
             maxNameTableCharCount="16384" />
				</binding>
			</basicHttpBinding>
		</bindings>
		<services>
   <service behaviorConfiguration="XXXPSsvcBehavior" 
						name="XXXPS.WCF.XXXPSsvc">
    <endpoint address="XXXPSWCF" 
							bindingConfiguration="BasicBinding"
							binding="basicHttpBinding" 
							contract="XXXPS.WCF.IXXXPSsvc" />
   </service>
  </services>
		<behaviors>
			<serviceBehaviors>
				<behavior name="XXXPSsvcBehavior">
					<serviceMetadata httpGetEnabled="true" />
					<serviceDebug includeExceptionDetailInFaults="True" />
				</behavior>				
			</serviceBehaviors>
		</behaviors>
		<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
		<!--<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />-->
	</system.serviceModel>
	<system.webServer>
		<modules runAllManagedModulesForAllRequests="true" />
		<directoryBrowse enabled="true" />
	</system.webServer>

	<appSettings>		
		<add key="DBServer" value="ServerName.arvixe.com" />
	</appSettings>
</configuration>

Never underestimate the power of human stupidity
RAH

QuestionWPF Navigation system Pin
Hi-I-am-Tang29-Oct-14 4:58
Hi-I-am-Tang29-Oct-14 4:58 
AnswerRe: DataTransferManager RT Only? Pin
Richard Deeming27-Oct-14 11:56
mveRichard Deeming27-Oct-14 11:56 
GeneralRe: DataTransferManager RT Only? Pin
Richard Deeming28-Oct-14 4:14
mveRichard Deeming28-Oct-14 4:14 
GeneralRe: DataTransferManager RT Only? Pin
Richard Deeming28-Oct-14 7:34
mveRichard Deeming28-Oct-14 7:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.